/* Category Page Styles */

.breadcrumb { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin-bottom: 2rem; 
}

.breadcrumb a { 
    color: var(--primary); 
    text-decoration: none; 
}

.category-hero { 
    text-align: center; 
    padding: 3rem 0 2rem; 
}

.category-hero h1 { 
    font-size: 2.8rem; 
    margin-bottom: 0.75rem; 
}

.category-hero p { 
    color: var(--text-muted); 
    max-width: 600px; 
    margin: 0 auto 1.5rem; 
    font-size: 1.05rem; 
    line-height: 1.7; 
}

.category-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.4rem; 
    background: var(--primary); 
    color: white; 
    font-size: 0.8rem; 
    font-weight: 600; 
    padding: 0.3rem 0.8rem; 
    border-radius: 20px; 
    margin-bottom: 1.5rem; 
}

.post-card { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
}

.post-meta { 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 0.5rem; 
}

.tag-chip { 
    background: var(--bg-dark); 
    border: 1px solid var(--card-border); 
    color: var(--text-muted); 
    font-size: 0.75rem; 
    padding: 0.2rem 0.6rem; 
    border-radius: 12px; 
}

.post-excerpt { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    line-height: 1.7; 
}

.category-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .category-hero h1 { font-size: 2.2rem; }
}
