/* ─── Estadísticas de becarios — FUNJOSE ────────────────────────────────────
   Usado por template-parts/estadisticas.php
   Ícono + número (subrayado amarillo institucional) + texto, sin círculos ni tarjetas.
   ────────────────────────────────────────────────────────────────────────── */

.fj-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 64px;
    box-sizing: border-box;
    text-align: center;
}

.fj-stats__head {
    text-align:justify;
}

.fj-stats__eyebrow {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--global-palette2, #0077b6);
    margin: 0 0 16px;
}

.fj-stats__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    line-height: 1.18;
    color: #1A1860;
    margin: 0 0 24px;
    max-width: 60%;
    text-align: left;
}

.fj-stats__text {
    font-size: 1.375rem;
    color: #555c74;
    line-height: 1.78;
    max-width: 100%;
    margin: 0 0 56px;
    text-align: left;
}

.fj-stats__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    flex-wrap: wrap;
}

.fj-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
}

.fj-stat__number {
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1;
    color: #1A1860;
    padding-bottom: 14px;
}

.fj-stat__number::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 200%;
    height: 4px;
    background: var(--global-palette1, #fea900);
}

.fj-stat__label {
    margin: 16px 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: #555c74;
    line-height: 1.4;
}

/* ── Tablet (720–1024px) ── */
@media screen and (min-width: 720px) and (max-width: 1024px) {
    .fj-stats {
        padding: 80px 64px;
    }
    .fj-stats__grid {
        gap: 40px;
    }
}

/* ── Móvil (≤719px) ── */
@media screen and (max-width: 719px) {
    .fj-stats {
        padding: 64px 28px;
    }
    .fj-stats__grid {
        gap: 40px;
    }
    .fj-stats__text {
        font-size: 1rem;
    }
    .fj-stat__label {
        font-size: 0.95rem;
    }
}
