/*
Theme Name: Astra Child
Theme URI: https://yourwebsite.com/
Description: Astra Child Theme
Author: Your Name
Author URI: https://yourwebsite.com/
Template: astra
Version: 1.0.0
*/

/* Your custom CSS starts here */

/* Layout */
.astra-custom-single {
    max-width: 1200px!important;
    margin: auto;
    padding: 40px 20px;
}

.astra-single-wrapper {
    display: flex;
    gap: 40px;
}

/* Content */
.astra-single-content {
    flex: 0 0 70%;
    max-width: 70%;
}

.post-thumbnail img {
    width: 100%;
    border-radius: 12px;
}

.post-category a {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 15px;
}

.post-title {
    font-size: 34px;
    margin: 15px 0;
}

.post-meta {
    font-size: 14px;
    color: #777;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.post-content {
    font-size: 17px;
    line-height: 1.8;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

/* Sidebar */
.astra-single-sidebar {
    flex: 0 0 30%;
    max-width: 30%;
    position: sticky;
    top: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .astra-single-wrapper {
        flex-direction: column;
    }

    .astra-single-content,
    .astra-single-sidebar {
        max-width: 100%;
        flex: 100%;
    }

    .astra-single-sidebar {
        position: relative;
        top: 0;
    }
}