
.site-main{
    margin-top: 120px;
    margin-bottom: 50px;
}

/* ================================
   SINGLE BANNER
================================ */
.single-banner {
    position: relative;
    width: 100%;
    margin-top: 120px;
    margin-bottom: 40px;
}

.single-banner-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 0;
}

.single-banner-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
}

.single-post-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.single-meta {
    font-size: 16px;
    opacity: 0.9;
}

/* ================================
   SINGLE PAGE LAYOUT
================================ */
.single-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 0 auto;
    padding: 40px;
    max-width: 1140px;
    width: 100%;
}

.single-main {
    background: #fff;
    padding: 20px;
}

.single-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ================================
   AUTHOR BOX
================================ */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.author-avatar img {
    border-radius: 100%;
}

.author-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.author-info p {
    font-size: 16px;
    color: #555;
}

/* ================================
   POST NAVIGATION
================================ */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.post-navigation a {
    font-size: 16px;
    color: #0073e6;
    font-weight: 600;
    text-decoration: none;
}

/* ================================
   COMMENTS
================================ */
.comments-area {
    margin-top: 40px;
}

.comments-area h3 {
    margin-bottom: 20px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .single-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .single-banner-content {
        left: 20px;
        bottom: 20px;
    }

    .single-post-title {
        font-size: 30px;
    }
}
