/* ─── Ficha de becario — FUNJOSE ─────────────────────────────────────────────
   Usado por single-becarios.php
   Foto + nombre + carrera + estado + universidad + departamento.
   ────────────────────────────────────────────────────────────────────────── */

.fj-ficha {
    max-width: 720px;
    margin: 0 auto;
    padding: 96px 64px;
    box-sizing: border-box;
}

.fj-ficha__back {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--global-palette2, #0077b6);
    text-decoration: none;
    margin-bottom: 32px;
}

.fj-ficha__back:hover {
    text-decoration: underline;
}

.fj-ficha__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(26, 24, 96, 0.08);
}

.fj-ficha__photo-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: #EEF0F8;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.fj-ficha__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fj-ficha__photo--placeholder {
    background: #EEF0F8;
}

.fj-ficha__name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.25;
    color: #1A1860;
    margin: 0 0 32px;
}

.fj-ficha__meta {
    width: 100%;
    margin: 0;
}

.fj-ficha__meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #e4e7ee;
}

.fj-ficha__meta-row dt {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #98a0b3;
}

.fj-ficha__meta-row dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1860;
    text-align: right;
}

.fj-ficha__badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0077b6;
    background: #E4F1FA;
    padding: 6px 14px;
    border-radius: 999px;
}

/* ── Móvil (≤719px) ── */
@media screen and (max-width: 719px) {
    .fj-ficha {
        padding: 64px 24px;
    }
    .fj-ficha__card {
        padding: 36px 24px;
    }
    .fj-ficha__meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .fj-ficha__meta-row dd {
        text-align: left;
    }
}
