/* 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;
}

/* 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;
    }
}

/* 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;
    }
}
