/**
 * Section Header Component — Unified Design System
 *
 * All section headers across the site share this single component.
 * Centered layout only. No left alignment.
 *
 * @package VPK
 */

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 56px;
}

/* Title — bold, scalable, centered */
.section-header__title {
    margin: 0;
    color: var(--vpk-color-text);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    text-align: center;
}

/* Eyebrow — optional label above title */
.section-header__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--vpk-color-text-light);
    font-size: var(--vpk-font-size-sm);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Description — centered, limited width */
.section-header__description {
    display: block;
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--vpk-color-text-secondary);
    font-size: var(--vpk-font-size-md);
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 1024px) {
    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
}
