.fr-biography-page {
    padding-top: 24px;
    padding-bottom: 72px;
}

.fr-biography-page :focus-visible {
    outline: 3px solid #176b6a;
    outline-offset: 3px;
}

.fr-biography-breadcrumb {
    margin-bottom: 28px;
}

.fr-biography-breadcrumb a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    color: #6d0030;
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none;
}

.fr-biography-breadcrumb a:hover {
    color: #b8004c;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.fr-biography {
    max-width: 1120px;
    margin: 0 auto;
}

.fr-biography__hero {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    padding-bottom: 42px;
    border-bottom: 1px solid var(--fr-border);
}

.fr-biography__portrait {
    width: 280px;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid #d2cdd2;
    border-radius: 8px;
    background: #f1eff1;
}

.fr-biography__portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.fr-biography__identity {
    min-width: 0;
}

.fr-biography__role {
    margin: 0 0 12px;
    color: #176b6a;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
}

.fr-biography__identity h1 {
    max-width: 760px;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--fr-text);
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.fr-biography__lead {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--fr-text-muted);
    font-size: 1.2rem;
    line-height: 1.65;
}

.fr-biography__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 64px;
    padding-top: 44px;
}

.fr-biography__content {
    min-width: 0;
}

.fr-biography__content section + section {
    margin-top: 42px;
}

.fr-biography__content h2,
.fr-biography__contact h2 {
    margin: 0 0 18px;
    color: var(--fr-text);
    font-size: 1.45rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.fr-biography__content h2::after,
.fr-biography__contact h2::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 10px;
    background: #b8004c;
}

.fr-biography__content p {
    margin: 0 0 20px;
    color: var(--fr-text);
    font-size: 1.06rem;
    line-height: 1.78;
}

.fr-biography__content p:last-child {
    margin-bottom: 0;
}

.fr-biography__content a {
    color: #7f0036;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.fr-biography__content a:hover {
    color: #b8004c;
}

.fr-biography__contact {
    position: sticky;
    top: 24px;
    padding: 24px 0;
    border-top: 4px solid #b8004c;
    border-bottom: 1px solid var(--fr-border);
}

.fr-biography__links {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fr-biography__links a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 7px 4px;
    border-radius: 4px;
    color: #3f3940;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: background-color 150ms ease, color 150ms ease;
}

.fr-biography__links a:hover {
    background: #f5f1f3;
    color: #8e003b;
}

.fr-biography__link-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9b3ba;
    border-radius: 50%;
    color: #5c535d;
    font-size: 1rem;
    font-weight: 800;
}

.fr-biography__link-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.fr-biography__links strong,
.fr-biography__links small {
    display: block;
}

.fr-biography__links small {
    margin-top: 2px;
    overflow-wrap: anywhere;
    color: var(--fr-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .fr-biography__hero {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 32px;
    }

    .fr-biography__portrait {
        width: 220px;
    }

    .fr-biography__identity h1 {
        font-size: 2.35rem;
    }

    .fr-biography__layout {
        grid-template-columns: minmax(0, 1fr) 250px;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .fr-biography-page {
        padding-top: 16px;
        padding-bottom: 48px;
    }

    .fr-biography-breadcrumb {
        margin-bottom: 18px;
    }

    .fr-biography__hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 32px;
    }

    .fr-biography__portrait {
        width: min(72vw, 280px);
    }

    .fr-biography__identity h1 {
        font-size: 2.15rem;
    }

    .fr-biography__lead {
        margin-top: 16px;
        font-size: 1.05rem;
    }

    .fr-biography__layout {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 34px;
    }

    .fr-biography__content section + section {
        margin-top: 34px;
    }

    .fr-biography__content h2,
    .fr-biography__contact h2 {
        font-size: 1.3rem;
    }

    .fr-biography__content p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .fr-biography__contact {
        position: static;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fr-biography__links a {
        transition: none;
    }
}
