/* Blog Index & Detail Pages Typography */

/* Blog Hero */
.blog-hero-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.blog-hero-subtitle {
    font-size: 18px !important;
    color: var(--muted) !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7 !important;
}

/* Article Detail Title */
.article-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.article-description {
    font-size: 18px !important;
    color: var(--muted) !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
}

/* ===== BLOG LAYOUT - CLEAN VERSION ===== */

/* Blog Layout Container */
.article-content-section .container {
    overflow: visible !important;
}

.article-content-row {
    align-items: flex-start;
    gap: 24px;
}

/* Main Content Column */
.article-main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Container */
.article-sidebar {
    width: 100%;
}

/* Sticky Sidebar for Blog Show Page */
.blog-sidebar-sticky {
    position: sticky;
    top: 100px;
    z-index: 10;
}

/* Regular Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

/* Responsive - Tablet (991px) */
@media (max-width: 991px) {
    .blog-hero-title,
    .article-title {
        font-size: 36px !important;
    }
    
    .blog-hero-subtitle,
    .article-description {
        font-size: 17px !important;
    }
    
    /* Reset sticky sidebar to normal layout on mobile */
    .blog-sidebar-sticky {
        position: static;
    }
    
    /* Reset to normal layout on mobile */
    .article-sidebar-col {
        width: 100%;
        order: 2; /* Sidebar after content on mobile */
    }
}

/* Responsive - Mobile (768px) */
@media (max-width: 768px) {
    .blog-hero-title,
    .article-title {
        font-size: 32px !important;
    }
    
    .blog-hero-subtitle,
    .article-description {
        font-size: 16px !important;
    }
}

/* Responsive - Small Mobile (480px) */
@media (max-width: 480px) {
    .blog-hero-title,
    .article-title {
        font-size: 28px !important;
    }
    
    .blog-hero-subtitle,
    .article-description {
        font-size: 15px !important;
    }
}