:root {
    /* Antologa Variables */
    --antologa-primary: #078282;
    --antologa-secondary: #004F71;
    --antologa-terciary: #C45A32;
    --antologa-contrast: #E1A951;
    --antologa-white: #F8F8F8;
    --antologa-light-gray: #E8E8E8;
    --antologa-gray: #9E9E9E;
    --antologa-dark: #282828;
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

/* ==========================================
   Base Layout
   ========================================== */
.antologa-post-container {
    background-color: #FFFFFF;
    min-height: 100vh;
    padding-bottom: 6rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   Typography
   ========================================== */
.post-title-main {
    font-family: var(--font-heading) !important;
    color: var(--antologa-primary);
    font-weight: 700;
    line-height: 1.2;
}

.post-heading-section {
    font-family: var(--font-heading) !important;
    color: var(--antologa-dark);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.post-body-text {
    font-family: var(--font-body) !important;
    color: var(--antologa-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ==========================================
   Article Content Elements
   ========================================== */
.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.article-sub-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.checklist-item {
    font-family: var(--font-body) !important;
    color: var(--antologa-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    color: var(--antologa-primary);
    font-size: 1.2rem;
}

/* ==========================================
   Sidebar (Popular Posts)
   ========================================== */
.sidebar-heading {
    font-family: var(--font-heading) !important;
    font-size: 1rem;
    font-weight: 700;
    color: var(--antologa-dark);
    margin-bottom: 1rem;
}

.popular-card-wrapper {
    transition: transform 0.2s;
    cursor: pointer;
}

    .popular-card-wrapper:hover {
        transform: translateX(4px);
    }

.popular-img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-title {
    font-family: var(--font-heading) !important;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--antologa-dark);
    line-height: 1.3;
}

.popular-author {
    font-family: var(--font-body) !important;
    font-size: 0.75rem;
    color: var(--antologa-gray);
}

/* ==========================================
   Comments Section
   ========================================== */
.comments-bg {
    background-color: var(--antologa-white);
    padding: 3rem 0;
    margin-top: 4rem;
}

.comment-input-field {
    background-color: #FFFFFF;
    border-radius: 8px;
}

.btn-post-comment {
    background-color: #4CAF50 !important; /* Green from design */
    color: white !important;
    text-transform: none;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-author {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--antologa-dark);
}

.comment-text {
    font-family: var(--font-body) !important;
    font-size: 0.9rem;
    color: var(--antologa-gray);
    line-height: 1.5;
}

.comment-meta {
    font-size: 0.75rem;
    color: var(--antologa-gray);
    font-weight: 500;
    cursor: pointer;
}

/* ==========================================
   Related Articles
   ========================================== */
.related-section {
    padding-top: 4rem;
}

.related-tag {
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--antologa-gray);
    font-weight: 600;
}

.related-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 960px) {
    .article-hero-image {
        height: 300px;
    }

    .article-sub-image {
        height: 200px;
        margin-bottom: 1rem;
    }

    /* On tablet/mobile, popular posts move to bottom or stack */
    .sidebar-wrapper {
        margin-top: 3rem;
    }
}
