/* ============================================================
   Location Spoke — Bio
   File: assets/css/spoke/spoke-bio.css
   Scope: .spoke-bio__* classes only
   Figma: node 2194:239 — cream bg, city-lead card (portrait +
   reviewed-by label, name/title, body, credential chips).
   ============================================================ */

.spoke-bio__header {
    text-align: center;
    max-width: 825px;
    margin: 0 auto 40px;
}

.spoke-bio__eyebrow {
    color: var(--spoke-blue-2);
    margin: 0 0 14px;
}

.spoke-bio__heading {
    max-width: 825px;
    margin-left: auto;
    margin-right: auto;
}

.spoke-bio__card {
    display: grid;
    grid-template-columns: 246px 1fr;
    column-gap: 38px;
    row-gap: 27px;
    background: var(--spoke-white);
    border-radius: var(--spoke-radius-card);
    padding: 44px 41px;
    max-width: 1220px;
    margin: 0 auto;
}

.spoke-bio__media {
    grid-column: 1;
    grid-row: 1;
}

.spoke-bio__photo {
    display: block;
    width: 246px;
    height: 323px;
    object-fit: cover;
    border-radius: var(--spoke-radius-img);
}

.spoke-bio__content {
    grid-column: 2;
    grid-row: 1;
}

.spoke-bio__reviewed {
    color: var(--spoke-blue-2);
    margin: 0 0 12px;
}

.spoke-bio__name {
    font-family: var(--spoke-font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--spoke-navy);
    margin: 0 0 6px;
}

.spoke-bio__title {
    font-family: var(--spoke-font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--spoke-blue-2);
    margin: 0 0 16px;
}

.spoke-bio__text {
    font-family: var(--spoke-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: -0.04em;
    color: var(--spoke-navy);
    max-width: 810px;
    margin: 0;
}

.spoke-bio__credentials {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.spoke-bio__credential {
    color: var(--spoke-blue-2);
    margin: 0;
}


/* ============================
   RESPONSIVE — BIO
   ============================ */

@media (max-width: 1024px) {
    .spoke-bio__card {
        grid-template-columns: 200px 1fr;
        padding: 36px;
    }

    .spoke-bio__photo {
        width: 200px;
        height: 263px;
    }
}

@media (max-width: 768px) {
    .spoke-bio__card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .spoke-bio__media {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }

    .spoke-bio__photo {
        width: 100%;
        height: auto;
        max-width: 220px;
        aspect-ratio: 246 / 323;
        margin: 0 auto;
    }

    .spoke-bio__content {
        grid-column: 1;
        grid-row: 2;
    }

    .spoke-bio__name {
        font-size: 30px;
    }

    .spoke-bio__credentials {
        grid-column: 1;
        grid-row: 3;
        gap: 14px;
    }
}
