/* ─── Sobre nosotros — FUNJOSE ──────────────────────────────────────────────
   Usado por template-parts/sobre-nosotros.php
   Eyebrow + título + texto institucional, centrado.
   ────────────────────────────────────────────────────────────────────────── */

.fj-about {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 64px;
    box-sizing: border-box;
}

.fj-about__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-about__title {
    font-family: 'Poppins', sans-serif;
    max-width: 60%;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    line-height: 1.18;
    color: #1A1860;
    margin: 0 0 24px;
}

.fj-about__text {
    font-size: 1.125rem;
    color: #555c74;
    line-height: 1.78;
    max-width: 100%;
    margin: 0 0 32px;
    font-size: 1.375rem;
}

.fj-about__cta {
    align-self: flex-end;
}

/* ── Móvil (≤719px) ── */
@media screen and (max-width: 719px) {
    .fj-about {
        padding: 64px 28px;
    }
    .fj-about__eyebrow {
        font-size: 0.85rem;
    }
    .fj-about__text {
        font-size: 1rem;
    }
}
