/*
 * IEU Portal - Design System
 * Componentes visuales compartidos.
 */

/* =========================================================
   Encabezado compartido de sección
   ========================================================= */

.ieu-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    margin: 0 0 36px;
}

.ieu-section-header__content {
    min-width: 0;
}

.ieu-section-header__eyebrow {
    margin: 0 0 10px;
}

.ieu-section-header__title {
    margin: 0;
    color: var(--ieu-blue, var(--blue, #0b2d5e));
    font-family: Merriweather, Georgia, serif;
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ieu-section-header__description {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--ieu-muted, var(--muted, #64728a));
    font-size: 1rem;
    line-height: 1.7;
}

.ieu-section-header__link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--ieu-blue, var(--blue, #0b2d5e));
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.ieu-section-header__link:hover,
.ieu-section-header__link:focus-visible {
    color: var(--ieu-gold, var(--gold, #b68a35));
}

.ieu-section-header__link:hover span,
.ieu-section-header__link:focus-visible span {
    transform: translateX(3px);
}

.ieu-section-header__link span {
    transition: transform 180ms ease;
}

/* Alineación centrada */

.ieu-section-header--center {
    display: block;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ieu-section-header--center .ieu-section-header__description {
    margin-right: auto;
    margin-left: auto;
}

.ieu-section-header--center .ieu-section-header__link {
    margin-top: 16px;
    margin-bottom: 0;
}

/* Alineación izquierda */

.ieu-section-header--left {
    text-align: left;
}

/* Variante compacta */

.ieu-section-header--compact {
    margin-bottom: 26px;
}

.ieu-section-header--compact .ieu-section-header__title {
    font-size: clamp(1.75rem, 2.2vw, 2rem);
    line-height: 1.2;
}

/* Responsive */

@media (max-width: 760px) {
    .ieu-section-header,
    .ieu-section-header--center {
        display: block;
        max-width: none;
        margin-bottom: 26px;
        text-align: left;
    }

    .ieu-section-header__title {
        font-size: clamp(1.75rem, 8vw, 2.1rem);
    }

    .ieu-section-header__description,
    .ieu-section-header--center .ieu-section-header__description {
        margin-right: 0;
        margin-left: 0;
    }

    .ieu-section-header__link,
    .ieu-section-header--center .ieu-section-header__link {
        margin-top: 14px;
        margin-bottom: 0;
    }
}