/* 
   ============================================
   EDITORIAL SECTION HEADERS SYSTEM
   ============================================
*/

.section-header {
    text-align: center;
    margin: 0 auto 4rem;
    max-width: 800px; /* Control content width for readability */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(249, 168, 37, 0.08); /* Using var(--brand-primary) with opacity */
    border-radius: 50px;
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.section-badge:hover {
    background: var(--brand-gradient);
    color: white;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--brand-gradient);
    border-radius: 4px;
    margin: 1.25rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

/* Optional spacing utility if needed */
.section-header-sm {
    margin-bottom: 2.5rem;
}
