:root {
    --fo-red: #e31b23;
    --fo-red-dark: #bd1118;
    --fo-black: #050506;
    --fo-dark: #1a1a1d;
    --fo-text: #1b1d21;
    --fo-muted: #6f747c;
    --fo-border: #e6e8eb;
    --fo-surface: #ffffff;
    --fo-background: #f5f6f8;
    --fo-radius: 16px;
    --fo-shadow: 0 14px 40px rgba(20, 24, 32, 0.08);
    --fo-transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--fo-background);
    color: var(--fo-text);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1600px, calc(100% - 64px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

.sr-only,
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================================
   En-tête — identité Foot-Occitanie
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: var(--fo-black);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header__main {
    position: relative;
    background:
        radial-gradient(circle at 18% -90%, rgba(227, 27, 35, 0.15), transparent 38%),
        linear-gradient(180deg, #050506 0%, #09090a 100%);
}

.site-header__main::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 27, 35, 0.8), transparent);
    content: "";
}

.site-header__container {
    min-height: 116px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 18px;
    color: #ffffff;
    text-decoration: none;
}

.site-brand:hover {
    color: #ffffff;
}

.site-brand__logo {
    display: block;
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 2px;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.site-brand__text {
    display: flex;
    flex-direction: column;
}

.site-brand__name {
    color: #ffffff;
    font-size: clamp(1.55rem, 2vw, 2.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.site-brand__tagline {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.91rem;
    font-weight: 500;
}

.site-brand__tagline::after {
    color: var(--fo-red);
    content: "";
}

/* =========================================================
   Recherche principale
   ========================================================= */

.site-search {
    position: relative;
    z-index: 120;
    width: min(100%, 590px);
}

.site-search__form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    transition:
        border-color var(--fo-transition),
        box-shadow var(--fo-transition),
        background var(--fo-transition);
}

.site-search__form:focus-within {
    border-color: rgba(227, 27, 35, 0.86);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.18), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.site-search__icon {
    width: 21px;
    height: 21px;
    margin-left: 20px;
    flex-shrink: 0;
    fill: none;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.9;
    stroke-linecap: round;
    pointer-events: none;
    transition: stroke var(--fo-transition);
}

.site-search__form:focus-within .site-search__icon {
    stroke: var(--fo-muted);
}

.site-search__input {
    width: 100%;
    min-width: 0;
    padding: 15px 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
}

.site-search__form:focus-within .site-search__input {
    color: var(--fo-text);
}

.site-search__input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.site-search__form:focus-within .site-search__input::placeholder {
    color: #8b9097;
}

.site-search__submit {
    align-self: stretch;
    flex-shrink: 0;
    padding: 0 25px;
    border: 0;
    background: var(--fo-red);
    color: #ffffff;
    font-weight: 750;
    cursor: pointer;
    transition: background var(--fo-transition);
}

.site-search__submit:hover {
    background: var(--fo-red-dark);
}

.site-search__results {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    left: 0;
    max-height: 480px;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid #e0e3e8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28), 0 5px 16px rgba(0, 0, 0, 0.12);
}

.site-search__result {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 68px;
    padding: 9px 11px;
    border-radius: 11px;
    color: inherit;
    text-decoration: none;
    transition: background-color 140ms ease, transform 140ms ease;
}

.site-search__result:hover,
.site-search__result.is-active {
    background: #f4f5f7;
    color: inherit;
}

.site-search__result:hover {
    transform: translateX(2px);
}

.site-search__visual {
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.site-search__logo {
    display: block;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

.site-search__logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f0e7e9;
    color: var(--fo-red-dark);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-search__content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-search__name {
    overflow: hidden;
    color: #17191d;
    font-size: 14px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-search__meta {
    overflow: hidden;
    color: #777e88;
    font-size: 12px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-search__arrow {
    flex: 0 0 auto;
    color: #a2a7af;
    font-size: 18px;
}

.site-search__result:hover .site-search__arrow,
.site-search__result.is-active .site-search__arrow {
    color: var(--fo-red);
}

.site-search__state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 70px;
    padding: 15px;
    color: #737a84;
    font-size: 14px;
    text-align: center;
}

.site-search__loader {
    width: 17px;
    height: 17px;
    border: 2px solid #d8dce2;
    border-top-color: var(--fo-red);
    border-radius: 50%;
    animation: search-loader 700ms linear infinite;
}

@keyframes search-loader {
    to { transform: rotate(360deg); }
}

/* =========================================================
   Navigation
   ========================================================= */

.main-navigation {
    background: #070708;
}

.main-navigation__container {
    min-height: 68px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}

.main-navigation__list {
    display: flex;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 68px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 650;
    transition: color var(--fo-transition), background var(--fo-transition);
}

.main-navigation__link::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--fo-red);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity var(--fo-transition), transform var(--fo-transition);
}

.main-navigation__link:hover,
.main-navigation__link.is-active {
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
}

.main-navigation__link:hover::after,
.main-navigation__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.main-navigation__link svg,
.contribute-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contribute-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--fo-red);
    color: #ffffff;
    text-decoration: none;
    font-weight: 750;
    box-shadow: 0 8px 22px rgba(227, 27, 35, 0.27);
    transition: transform var(--fo-transition), background var(--fo-transition), box-shadow var(--fo-transition);
}

.contribute-button:hover {
    background: var(--fo-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 11px 28px rgba(227, 27, 35, 0.34);
}

.mobile-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform var(--fo-transition), opacity var(--fo-transition);
}

/* =========================================================
   Pages simples (recherche / club)
   ========================================================= */

.content-page {
    padding: 54px 0 80px;
}

.content-page__heading {
    margin-bottom: 28px;
}

.content-page__heading h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.content-page__heading p {
    margin: 10px 0 0;
    color: var(--fo-muted);
}

.club-profile {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--fo-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--fo-shadow);
}

.club-profile__logo {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.club-profile__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border-radius: 24px;
    background: #f0e7e9;
    color: var(--fo-red-dark);
    font-size: 42px;
    font-weight: 800;
}

.club-profile h1 {
    margin: 0 0 7px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.club-profile p {
    margin: 0;
    color: var(--fo-muted);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
    .site-header__container {
        min-height: 92px;
        gap: 20px;
    }

    .site-brand__logo {
        width: 64px;
        height: 64px;
    }

    .site-brand__tagline {
        display: none;
    }

    .site-search {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .main-navigation {
        display: none;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation.is-open .main-navigation__container {
        display: flex;
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .main-navigation.is-open .main-navigation__list {
        width: 100%;
        flex-direction: column;
    }

    .main-navigation.is-open .main-navigation__link {
        width: 100%;
        height: 52px;
        padding: 0 16px;
        border-radius: 10px;
    }

    .main-navigation.is-open .main-navigation__link::after {
        display: none;
    }

    .main-navigation.is-open .contribute-button {
        width: 100%;
        margin-top: 8px;
    }

    .mobile-menu-button.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 767.98px) {
    .container {
        width: min(100% - 32px, 1600px);
    }

    .club-profile {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .site-header__container {
        min-height: 78px;
    }

    .site-brand {
        gap: 12px;
    }

    .site-brand__logo {
        width: 52px;
        height: 52px;
    }

    .site-brand__name {
        font-size: 1.28rem;
    }
}

.site-brand__tagline strong {
    color: var(--fo-red);
    font-weight: 700;
}


/* =========================================================
   Fiche club — v0.4
   ========================================================= */

.content-page {
    padding: 46px 0 72px;
}

.content-page__heading {
    padding: 32px;
    border: 1px solid var(--fo-border);
    border-radius: 22px;
    background: var(--fo-surface);
    box-shadow: var(--fo-shadow);
}

.content-page__heading h1 {
    margin: 0 0 8px;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.content-page__heading p {
    margin: 0;
    color: var(--fo-muted);
}

.club-profile {
    overflow: hidden;
    border: 1px solid var(--fo-border);
    border-radius: 24px;
    background: var(--fo-surface);
    box-shadow: var(--fo-shadow);
}

.club-profile__hero {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    min-height: 250px;
    padding: 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at 9% 0%, rgba(227, 27, 35, 0.3), transparent 34%),
        linear-gradient(135deg, #080809 0%, #1b1b1e 100%);
    color: #ffffff;
}

.club-profile__hero::after {
    position: absolute;
    right: -50px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.club-profile__visual,
.club-profile__identity {
    position: relative;
    z-index: 1;
}

.club-profile__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.club-profile__logo {
    display: block;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.club-profile__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border-radius: 24px;
    background: #f3e7e8;
    color: var(--fo-red);
    font-size: 3rem;
    font-weight: 850;
}

.club-profile__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.club-profile__eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fo-red);
    content: "";
}

.club-profile h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.club-profile__summary {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
}

.club-profile__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    padding: 34px 42px 42px;
}

.club-profile__section h2 {
    margin: 0 0 18px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.club-profile__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.club-profile__fact {
    padding: 18px;
    border: 1px solid var(--fo-border);
    border-radius: 16px;
    background: #fafafb;
}

.club-profile__fact dt {
    margin-bottom: 5px;
    color: var(--fo-muted);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.club-profile__fact dd {
    margin: 0;
    color: var(--fo-text);
    font-weight: 720;
    overflow-wrap: anywhere;
}

.club-profile__aside {
    padding: 23px;
    border-radius: 18px;
    background: #111113;
    color: #ffffff;
}

.club-profile__aside h2 {
    margin: 0 0 17px;
    font-size: 1.08rem;
    font-weight: 800;
}

.club-profile__links {
    display: grid;
    gap: 10px;
}

.club-profile__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: border-color var(--fo-transition), background var(--fo-transition);
}

.club-profile__link:hover {
    border-color: rgba(227, 27, 35, 0.7);
    background: rgba(227, 27, 35, 0.13);
    color: #ffffff;
}

.club-profile__empty {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .club-profile__body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .content-page {
        padding-top: 24px;
    }

    .club-profile__hero {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 24px;
        text-align: center;
    }

    .club-profile__visual {
        width: 124px;
        height: 124px;
        margin: 0 auto;
    }

    .club-profile__logo {
        max-width: 98px;
        max-height: 98px;
    }

    .club-profile__eyebrow {
        justify-content: center;
    }

    .club-profile__body {
        padding: 25px 22px 30px;
    }

    .club-profile__facts {
        grid-template-columns: 1fr;
    }
}


/* Fiche club v0.5 : présentation publique épurée */
.club-profile__intro {
    display: grid;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--fo-border);
    border-radius: 18px;
    background: #fafafb;
}

.club-profile__intro p {
    max-width: 720px;
    margin: 0;
    color: var(--fo-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.club-profile__location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--fo-border);
}

.club-profile__location-label {
    color: var(--fo-muted);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.club-profile__location strong {
    font-size: 1rem;
    font-weight: 800;
}

@media (max-width: 575.98px) {
    .club-profile__location {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
/* ===== FOOT-OCCITANIE CORE ===== */
:root{--fo-red:#e3262e;--fo-black:#0d0d0d;--fo-dark:#181818;--fo-soft:#f4f4f2;--fo-line:#e2e2df;--fo-text:#181818;--fo-muted:#6d6d68}
.content-page{background:#f5f5f2;padding:48px 0 80px}.fo-kicker,.fo-page-head>span,.fo-section__head span,.fo-side-card>span,.core-heading span{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--fo-red)}
.fo-button{display:inline-flex;background:var(--fo-red);color:#fff!important;padding:13px 20px;border-radius:4px;font-weight:800;text-decoration:none}.fo-page-head{background:#fff;padding:38px;border-left:5px solid var(--fo-red);margin-bottom:28px}.fo-page-head h1{font-size:42px;margin:8px 0}.fo-page-head p{color:var(--fo-muted);margin:0}
.fo-layout{display:grid;grid-template-columns:minmax(0,2fr) minmax(280px,1fr);gap:28px;align-items:start}.fo-section{background:#fff;padding:26px;border:1px solid var(--fo-line);margin-bottom:26px}.fo-section__head{display:flex;align-items:end;justify-content:space-between;border-bottom:1px solid var(--fo-line);padding-bottom:16px;margin-bottom:8px}.fo-section__head h2{font-size:25px;margin:4px 0 0}.fo-section__head>strong{font-size:30px;color:var(--fo-red)}.fo-side-card{background:#fff;border:1px solid var(--fo-line);padding:25px;margin-bottom:22px}.fo-side-card h2{font-size:23px;margin:8px 0 16px}.fo-side-card p{display:flex;flex-direction:column;margin:17px 0}.fo-side-card small{color:var(--fo-muted)}.fo-side-card--dark{background:var(--fo-black);color:#fff;border-color:var(--fo-black)}.fo-side-card--dark p{display:block;color:#c8c8c4;line-height:1.6}.fo-empty{padding:30px 15px;text-align:center;color:var(--fo-muted)}.fo-empty strong{display:block;color:var(--fo-text);font-size:18px}.fo-empty p{margin-bottom:0}
.fo-club-hero{display:grid;grid-template-columns:150px 1fr auto;gap:28px;align-items:center;background:var(--fo-black);color:#fff;padding:40px;margin-bottom:28px;position:relative;overflow:hidden}.fo-club-hero:after{content:"";position:absolute;right:-100px;top:-160px;width:360px;height:360px;border:55px solid rgba(227,38,46,.15);border-radius:50%}.fo-club-hero__logo{width:130px;height:130px;background:#fff;border-radius:18px;display:flex;align-items:center;justify-content:center;padding:14px;position:relative;z-index:1}.fo-club-hero__logo img{max-width:100%;max-height:100%;object-fit:contain}.fo-club-hero__logo span{font-size:38px;font-weight:900;color:var(--fo-black)}.fo-club-hero__identity{position:relative;z-index:1}.fo-club-hero h1{font-size:42px;margin:8px 0}.fo-club-hero p{color:#c9c9c4;margin:0;max-width:700px}.fo-club-hero__links{display:flex;flex-direction:column;gap:8px;position:relative;z-index:1}.fo-club-hero__links a{color:#fff;background:rgba(255,255,255,.1);padding:10px 14px;text-decoration:none;font-weight:700}
.fo-team-list{display:grid}.fo-team-row{display:flex;align-items:center;justify-content:space-between;padding:16px 5px;border-bottom:1px solid var(--fo-line);color:var(--fo-text);text-decoration:none}.fo-team-row span{display:flex;flex-direction:column}.fo-team-row small{color:var(--fo-muted);margin-top:3px}.fo-team-row b{font-size:13px;color:var(--fo-red)}
.fo-match{position:relative;padding:16px 4px;border-bottom:1px solid var(--fo-line)}.fo-match__link{position:absolute;inset:0;z-index:0}.fo-match__meta,.fo-match__main{position:relative;z-index:1;pointer-events:none}.fo-match__meta a,.fo-match__teams a{pointer-events:auto}.fo-match__meta{display:flex;justify-content:space-between;gap:15px;font-size:12px;color:var(--fo-muted);margin-bottom:10px}.fo-match__meta a{font-weight:800;color:var(--fo-red);text-decoration:none}.fo-match__main{display:flex;align-items:center;justify-content:space-between;gap:20px}.fo-match__teams{display:flex;flex-direction:column;gap:6px}.fo-match__teams a{font-weight:750;color:var(--fo-text);text-decoration:none}.fo-match__score{font-size:20px;white-space:nowrap}.fo-match--compact{padding:13px 2px}.fo-match--compact .fo-match__meta{margin-bottom:7px}
.fo-match-hero{background:#fff;border-top:6px solid var(--fo-red);padding:35px;text-align:center;margin-bottom:28px}.fo-match-hero>p{color:var(--fo-muted)}.fo-match-hero__board{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:35px;margin-top:28px}.fo-match-hero__board>a{display:flex;flex-direction:column;align-items:center;gap:12px;color:var(--fo-text);text-decoration:none;font-size:22px}.fo-match-hero__board>b{font-size:38px;background:var(--fo-black);color:#fff;padding:12px 20px}.fo-crest{width:82px;height:82px;border-radius:50%;background:var(--fo-soft);display:flex;align-items:center;justify-content:center;font-weight:900}.fo-details{margin:0}.fo-details>div{display:grid;grid-template-columns:180px 1fr;padding:16px 0;border-bottom:1px solid var(--fo-line)}.fo-details dt{color:var(--fo-muted)}.fo-details dd{font-weight:750;margin:0}
.core-hero{background:var(--fo-black);color:#fff;padding:62px 0}.core-hero__grid{display:grid;grid-template-columns:.9fr 1.35fr;gap:50px;align-items:center}.core-hero h1{font-size:58px;line-height:1.02;margin:14px 0 20px}.core-hero h1 em{font-style:normal;color:var(--fo-red)}.core-hero p{color:#c5c5c0;font-size:18px;line-height:1.6;max-width:520px;margin-bottom:28px}.core-hero__photo{height:410px;position:relative;overflow:hidden}.core-hero__photo img{width:100%;height:100%;object-fit:cover}.core-hero__photo:after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 40%,rgba(0,0,0,.85))}.core-hero__photo>div{position:absolute;z-index:2;left:28px;right:28px;bottom:25px}.core-hero__photo span{display:inline-block;background:var(--fo-red);padding:5px 9px;font-size:11px;font-weight:900;text-transform:uppercase}.core-hero__photo strong{display:block;font-size:27px;line-height:1.15;margin-top:10px}.core-stats{background:#fff;border-bottom:1px solid var(--fo-line)}.core-stats__grid{display:grid;grid-template-columns:repeat(4,1fr)}.core-stats__grid>div{padding:25px;border-right:1px solid var(--fo-line);display:flex;flex-direction:column}.core-stats strong{font-size:32px}.core-stats span{color:var(--fo-muted)}.core-live,.core-stories,.core-opportunities{padding:56px 0;background:var(--fo-soft)}.core-live__grid{display:grid;grid-template-columns:1.25fr .75fr;gap:28px}.core-heading{display:flex;justify-content:space-between;align-items:end;margin-bottom:25px}.core-heading h2{font-size:34px;margin:5px 0}.core-heading p{max-width:470px;color:var(--fo-muted)}.core-story-grid{display:grid;grid-template-columns:1.25fr .75fr .75fr;gap:20px}.core-story{background:#fff;min-height:360px}.core-story>a{height:100%;display:flex;flex-direction:column;position:relative;text-decoration:none;color:var(--fo-text)}.core-story img{width:100%;height:190px;object-fit:cover}.core-story--large img{height:255px}.core-story>a>span{position:absolute;top:15px;left:15px;background:var(--fo-red);color:#fff;font-size:11px;font-weight:900;text-transform:uppercase;padding:6px 9px}.core-story div{padding:20px}.core-story h3{font-size:22px;line-height:1.2;margin:0 0 10px}.core-story p{color:var(--fo-muted);line-height:1.5;margin:0}.core-opportunities{background:#fff}.core-opportunities__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.core-opportunities__grid>div{background:var(--fo-black);color:#fff;padding:28px;min-height:145px}.core-opportunities__grid span{color:var(--fo-red);font-size:12px;font-weight:900;text-transform:uppercase}.core-opportunities__grid strong{display:block;font-size:20px;line-height:1.35;margin-top:13px}
@media(max-width:900px){.fo-layout,.core-hero__grid,.core-live__grid{grid-template-columns:1fr}.fo-club-hero{grid-template-columns:110px 1fr}.fo-club-hero__links{grid-column:1/-1;flex-direction:row;flex-wrap:wrap}.core-story-grid{grid-template-columns:1fr 1fr}.core-story--large{grid-column:1/-1}.core-stats__grid{grid-template-columns:1fr 1fr}.core-opportunities__grid{grid-template-columns:1fr}.core-hero h1{font-size:45px}}
@media(max-width:600px){.content-page{padding-top:25px}.fo-club-hero{grid-template-columns:1fr;text-align:center;padding:28px}.fo-club-hero__logo{margin:auto}.fo-club-hero h1,.fo-page-head h1{font-size:32px}.fo-club-hero__links{justify-content:center}.fo-match-hero__board{grid-template-columns:1fr;gap:15px}.fo-match-hero__board>b{order:2}.fo-details>div{grid-template-columns:1fr;gap:5px}.core-hero{padding:38px 0}.core-hero h1{font-size:38px}.core-hero__photo{height:300px}.core-stats__grid,.core-story-grid{grid-template-columns:1fr}.core-story--large{grid-column:auto}.core-heading{display:block}.core-heading p{margin-top:8px}}
/* ===== EXPLORATEUR DES MATCHS — CORE 0.2 ===== */
.fo-page-head--matches{background:linear-gradient(120deg,#0d0d0d 0%,#181818 72%,#2a0d0f 100%);color:#fff;border-left:0;border-top:6px solid var(--fo-red)}.fo-page-head--matches p{color:#c9c9c5}
.matches-toolbar{display:grid;grid-template-columns:62px 1fr 62px;align-items:center;background:#fff;border:1px solid var(--fo-line);margin-bottom:18px}.matches-toolbar>div{text-align:center;padding:19px}.matches-toolbar span{display:block;color:var(--fo-muted);font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.11em}.matches-toolbar strong{display:block;font-size:20px;margin-top:3px}.matches-toolbar__arrow{height:100%;min-height:76px;display:flex;align-items:center;justify-content:center;background:var(--fo-black);color:#fff;text-decoration:none;font-size:26px}.matches-toolbar__arrow:hover{background:var(--fo-red);color:#fff}
.matches-filters{display:grid;grid-template-columns:.75fr 1fr 1.35fr 1fr auto;gap:13px;align-items:end;background:#fff;border:1px solid var(--fo-line);padding:20px;margin-bottom:18px}.matches-filters label{display:flex;flex-direction:column;gap:7px}.matches-filters label>span{font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.08em;color:var(--fo-muted)}.matches-filters select,.matches-filters input{width:100%;height:46px;border:1px solid #d7d7d2;background:#fff;padding:0 12px}.matches-filters button{height:46px;border:0;background:var(--fo-red);color:#fff;padding:0 18px;font-weight:850}.matches-filters>a{grid-column:1/-1;color:var(--fo-muted);font-size:12px;text-align:right}
.matches-summary{display:flex;align-items:baseline;gap:8px;padding:11px 3px 22px}.matches-summary strong{font-size:35px;color:var(--fo-red)}.matches-summary span{font-weight:750}.matches-summary b{margin-left:auto;background:#fff;border:1px solid var(--fo-line);padding:7px 11px;font-size:12px}
.matches-day{background:#fff;border:1px solid var(--fo-line);margin-bottom:22px}.matches-day>header{padding:20px 24px;border-bottom:1px solid var(--fo-line);background:#fafaf8}.matches-day>header span{font-size:11px;font-weight:850;color:var(--fo-red);text-transform:uppercase;letter-spacing:.1em}.matches-day>header h2{font-size:25px;margin:4px 0 0}.week-match{position:relative;display:grid;grid-template-columns:72px minmax(180px,1.15fr) minmax(230px,1.35fr) 95px minmax(180px,1fr);gap:20px;align-items:center;padding:17px 24px;border-bottom:1px solid var(--fo-line)}.week-match:last-child{border-bottom:0}.week-match:hover{background:#fafaf8}.week-match__overlay{position:absolute;inset:0;z-index:0}.week-match>*:not(.week-match__overlay){position:relative;z-index:1;pointer-events:none}.week-match a:not(.week-match__overlay){pointer-events:auto}.week-match>time{font-size:18px;font-weight:900}.week-match__competition,.week-match__teams,.week-match__place{display:flex;flex-direction:column;gap:4px}.week-match__competition a{font-weight:800;color:var(--fo-red);text-decoration:none}.week-match small{color:var(--fo-muted);font-size:11px}.week-match__teams a{font-weight:750;color:var(--fo-text);text-decoration:none;line-height:1.25}.week-match__score{justify-self:center;font-size:18px;white-space:nowrap}.week-match__place b{font-size:13px}.week-match__place small{line-height:1.25}
@media(max-width:1050px){.matches-filters{grid-template-columns:1fr 1fr}.matches-filters button{grid-column:1/-1}.week-match{grid-template-columns:65px 1fr 1.2fr 85px}.week-match__place{grid-column:2/-1;border-top:1px dashed var(--fo-line);padding-top:9px}}
@media(max-width:680px){.matches-toolbar{grid-template-columns:48px 1fr 48px}.matches-toolbar strong{font-size:16px}.matches-filters{grid-template-columns:1fr}.matches-filters button{grid-column:auto}.week-match{grid-template-columns:55px 1fr 70px;gap:10px;padding:15px}.week-match__competition{grid-column:2/4}.week-match__teams{grid-column:2/3}.week-match__score{grid-column:3/4}.week-match__place{grid-column:2/4}.matches-summary{flex-wrap:wrap}.matches-summary b{margin-left:0}}

/* ===== FILTRES DYNAMIQUES — CORE 0.3 ===== */
.matches-summary--stats{display:grid;grid-template-columns:repeat(4,minmax(120px,1fr));gap:1px;background:var(--fo-line);padding:1px;margin:0 0 22px}.matches-summary--stats>div{display:flex;flex-direction:column;background:#fff;padding:17px 20px}.matches-summary--stats>div strong{font-size:30px;line-height:1;color:var(--fo-red)}.matches-summary--stats>div span{margin-top:5px;color:var(--fo-muted);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}.matches-summary--stats>b{grid-column:1/-1;margin:0;background:#fafaf8;border:0;padding:10px 20px;text-align:right}.matches-filters select{cursor:pointer}
@media(max-width:680px){.matches-summary--stats{grid-template-columns:1fr 1fr}.matches-summary--stats>b{grid-column:1/-1}}

/* Classements PHPlague — Core 0.4 */
.fo-standings-section { overflow: hidden; }
.fo-section-count { align-self: center; font-size: .78rem; color: #64748b; background: #f1f5f9; border-radius: 999px; padding: .38rem .7rem; white-space: nowrap; }
.fo-table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; border: 1px solid #e4e9ef; }
.fo-standings-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; font-variant-numeric: tabular-nums; }
.fo-standings-table th { padding: .72rem .55rem; background: #0d2538; color: #fff; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; text-align: center; }
.fo-standings-table th.fo-col-team { text-align: left; }
.fo-standings-table td { padding: .66rem .55rem; text-align: center; border-bottom: 1px solid #edf0f3; color: #283746; font-size: .88rem; }
.fo-standings-table tbody tr:nth-child(even) { background: #f7f9fb; }
.fo-standings-table tbody tr:hover { background: #eef7fb; }
.fo-standings-table tbody tr:last-child td { border-bottom: 0; }
.fo-standings-table .fo-col-rank { width: 48px; }
.fo-standings-table .fo-col-status { width: 42px; }
.fo-standings-table .fo-col-team { min-width: 210px; }
.fo-standings-table .fo-col-points { width: 58px; }
.fo-rank { color: #617080 !important; }
.fo-status-cell { padding-left: .3rem !important; padding-right: .3rem !important; }
.fo-team-cell { text-align: left !important; }
.fo-standing-team { color: #132b3d; font-weight: 700; text-decoration: none; }
.fo-standing-team:hover { color: #008fc7; text-decoration: underline; }
.fo-team-cell small { display: block; margin-top: .16rem; color: #748292; font-size: .7rem; }
.fo-points { font-size: 1rem !important; color: #071d2c !important; }
.fo-diff { font-weight: 650; }
.fo-penalty { display: inline-block; margin-left: .35rem; border-radius: 4px; background: #fff0f0; color: #b42318; padding: .12rem .3rem; font-size: .62rem; font-weight: 800; vertical-align: middle; }
.fo-status-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; vertical-align: middle; box-shadow: 0 0 0 2px rgba(255,255,255,.8); }
.fo-status-dot--promotion { background: #139d57; }
.fo-status-dot--playoff-up { background: #54b8df; }
.fo-status-dot--playoff-down { background: #ef9f25; }
.fo-status-dot--relegation { background: #d74444; }
.fo-standing--promotion td:first-child { box-shadow: inset 3px 0 0 #139d57; }
.fo-standing--playoff-up td:first-child { box-shadow: inset 3px 0 0 #54b8df; }
.fo-standing--playoff-down td:first-child { box-shadow: inset 3px 0 0 #ef9f25; }
.fo-standing--relegation td:first-child { box-shadow: inset 3px 0 0 #d74444; }
.fo-standing-legend { display: flex; flex-wrap: wrap; gap: .55rem 1rem; padding: .8rem .2rem 0; color: #607080; font-size: .72rem; }
.fo-standing-legend span { display: inline-flex; align-items: center; gap: .35rem; }
.fo-standing-legend .fo-status-dot { width: 8px; height: 8px; box-shadow: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
@media (max-width: 700px) {
  .fo-standings-table { min-width: 610px; }
  .fo-standings-table th, .fo-standings-table td { padding: .58rem .42rem; font-size: .78rem; }
  .fo-standings-table .fo-col-team { min-width: 175px; }
  .fo-desktop-only { display: none; }
}

/* Fiche compétition complète — Core 0.5 */
.fo-competition-hero{display:flex;align-items:center;justify-content:space-between;gap:25px}.fo-competition-hero>strong{display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:112px;min-height:92px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.07);font-size:32px}.fo-competition-hero>strong small{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:#c9c9c5}.fo-competition-tabs{display:grid;grid-template-columns:repeat(4,1fr);margin:-1px 0 22px;background:#fff;border:1px solid var(--fo-line)}.fo-competition-tabs a{padding:16px;text-align:center;text-decoration:none;color:var(--fo-text);font-weight:850;border-right:1px solid var(--fo-line)}.fo-competition-tabs a:last-child{border-right:0}.fo-competition-tabs a:hover,.fo-competition-tabs a.is-active{background:var(--fo-black);color:#fff}.fo-competition-tabs a.is-active{box-shadow:inset 0 -4px 0 var(--fo-red)}.fo-section__head--responsive{gap:18px}.fo-standing-switch{display:flex;align-items:center;gap:4px;background:#f1f3f5;padding:4px}.fo-standing-switch a{padding:8px 11px;text-decoration:none;color:#526170;font-size:12px;font-weight:850}.fo-standing-switch a.is-active{background:#fff;color:var(--fo-red);box-shadow:0 1px 4px rgba(0,0,0,.08)}.fo-round-block{margin-top:22px}.fo-round-block:first-of-type{margin-top:0}.fo-round-block>h3{margin:0;padding:12px 16px;background:#0d2538;color:#fff;font-size:15px;text-transform:uppercase;letter-spacing:.05em}.fo-round-block .fo-match{margin-bottom:0;border-top:0}.fo-team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.fo-team-card{position:relative;display:grid;grid-template-columns:68px 1fr;align-items:center;gap:15px;min-height:105px;padding:18px;background:#fff;border:1px solid var(--fo-line);transition:.15s ease}.fo-team-card:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(13,37,56,.09);border-color:#c9d4dc}.fo-team-card__link{position:absolute;inset:0;z-index:1}.fo-team-card__logo{width:68px;height:68px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#f2f5f7;overflow:hidden}.fo-team-card__logo img{max-width:58px;max-height:58px;object-fit:contain}.fo-team-card__logo span{font-size:20px;font-weight:900;color:#0d2538}.fo-team-card h3{margin:0 0 5px;font-size:17px}.fo-team-card p{margin:0;color:var(--fo-muted);font-size:12px}.fo-team-card small{display:block;margin-top:5px;color:#7a8792;font-size:11px}
@media(max-width:850px){.fo-team-grid{grid-template-columns:1fr 1fr}.fo-section__head--responsive{align-items:flex-start;flex-direction:column}.fo-standing-switch{width:100%}.fo-standing-switch a{flex:1;text-align:center}}
@media(max-width:600px){.fo-competition-hero>strong{display:none}.fo-competition-tabs{grid-template-columns:1fr 1fr}.fo-competition-tabs a:nth-child(2){border-right:0}.fo-competition-tabs a:nth-child(-n+2){border-bottom:1px solid var(--fo-line)}.fo-team-grid{grid-template-columns:1fr}.fo-team-card{grid-template-columns:58px 1fr}.fo-team-card__logo{width:58px;height:58px}}

/* 0.6 — Recherche globale */
.site-search__group{padding:8px 14px 5px;font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#73808d;background:#f4f6f8;border-top:1px solid #e7ebef}.site-search__group:first-child{border-top:0}.site-search__type-icon{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:11px;background:#eef3f7;font-size:18px;flex:0 0 auto}.site-search__kind{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;color:#7c8792}.site-search__all{display:block;padding:12px 16px;text-align:center;font-size:12px;font-weight:800;color:#0077b8;text-decoration:none;background:#f7fafc;border-top:1px solid #e5eaee}.site-search__all:hover{background:#edf6fb;color:#005f94}
.search-page{padding:38px 0 70px;background:#f3f5f7;min-height:65vh}.search-page__hero{padding:30px;border-radius:24px;background:linear-gradient(135deg,#18212a,#263746);color:#fff;box-shadow:0 18px 45px rgba(17,29,40,.14);margin-bottom:28px}.search-page__hero .eyebrow{display:block;color:#55c8ff;font-weight:800;text-transform:uppercase;letter-spacing:.13em;font-size:11px;margin-bottom:8px}.search-page__hero h1{font-size:clamp(27px,4vw,45px);font-weight:850;letter-spacing:-.035em;margin:0 0 8px}.search-page__hero p{color:#cbd6df;max-width:760px;margin:0 0 22px}.search-page__form{display:flex;gap:10px;max-width:780px}.search-page__form input{flex:1;border:0;border-radius:14px;padding:15px 17px;font-size:16px;outline:none;box-shadow:0 0 0 3px transparent}.search-page__form input:focus{box-shadow:0 0 0 3px rgba(85,200,255,.35)}.search-page__form button{border:0;border-radius:14px;padding:0 22px;background:#00aaff;color:#fff;font-weight:800}.search-section{background:#fff;border:1px solid #e4e9ed;border-radius:20px;padding:20px;margin-top:18px;box-shadow:0 8px 24px rgba(26,38,48,.05)}.search-section__title{display:flex;align-items:center;gap:10px;margin-bottom:13px}.search-section__title h2{font-size:20px;font-weight:850;margin:0}.search-section__title span{min-width:27px;height:27px;border-radius:999px;background:#eef4f7;display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;color:#60717e}.search-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.search-card{display:grid;grid-template-columns:42px minmax(0,1fr) 20px;align-items:center;gap:12px;padding:13px;border:1px solid #e6ebef;border-radius:14px;color:#17232d;text-decoration:none;transition:.18s ease}.search-card:hover{transform:translateY(-2px);border-color:#9ddbf7;box-shadow:0 8px 22px rgba(0,119,184,.1);color:#17232d}.search-card__icon{width:42px;height:42px;border-radius:12px;background:#f0f5f8;display:flex;align-items:center;justify-content:center;font-size:21px}.search-card strong,.search-card small{display:block}.search-card strong{font-size:14px}.search-card small{font-size:11px;color:#73808b;margin-top:3px}.search-card>b{color:#00aaff}.search-empty{padding:25px;text-align:center;border:1px dashed #bbc6ce;border-radius:18px;background:#fff}.search-empty p{margin:6px 0 0;color:#697782}@media(max-width:720px){.search-page__hero{padding:22px 18px}.search-page__form{display:block}.search-page__form button{width:100%;padding:13px;margin-top:9px}.search-grid{grid-template-columns:1fr}.site-search__kind{display:none}}

/* Core 0.7 — navigation multi-saisons */
.season-switcher{display:flex;align-items:center;gap:.55rem;margin-left:auto;padding:.4rem .55rem;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(255,255,255,.08)}
.season-switcher label{font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.72)}
.season-switcher select{appearance:none;border:0;border-radius:999px;padding:.46rem 1.85rem .46rem .75rem;background:#fff;color:#10233f;font-weight:800;cursor:pointer}
@media(max-width:850px){.season-switcher{order:3;width:100%;justify-content:space-between;margin:.45rem 0 0}.season-switcher select{flex:1}}


/* Core 0.8 — logos clubs automatiques */
.fo-club-hero__logo__image,.fo-club-hero__logo img{width:100%;height:100%;object-fit:contain;padding:8px}
.fo-club-hero__logo__fallback{width:100%;height:100%;align-items:center;justify-content:center;font-size:28px;font-weight:900}
.fo-match__team{display:flex!important;align-items:center;gap:9px}
.fo-match__crest{width:30px;height:30px;flex:0 0 30px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#f2f5f7;overflow:hidden}
.fo-match__crest__image{max-width:26px;max-height:26px;object-fit:contain}
.fo-match__crest__fallback{width:100%;height:100%;align-items:center;justify-content:center;font-size:9px;font-weight:900;color:#173247}
.fo-team-row__identity{display:flex;align-items:center;gap:12px;min-width:0}
.fo-team-row__logo{width:42px;height:42px;flex:0 0 42px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#f2f5f7;overflow:hidden;font-style:normal}
.fo-team-row__logo__image{max-width:36px;max-height:36px;object-fit:contain}
.fo-team-row__logo__fallback{width:100%;height:100%;align-items:center;justify-content:center;font-size:11px;font-weight:900;color:#173247}
.fo-team-card__logo__image{max-width:58px;max-height:58px;object-fit:contain}
.fo-team-card__logo__fallback{width:100%;height:100%;align-items:center;justify-content:center;font-size:20px;font-weight:900;color:#0d2538}
.fo-standing-team{display:inline-flex;align-items:center;gap:8px}
.fo-standing-team__logo{width:27px;height:27px;flex:0 0 27px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:#f2f5f7;overflow:hidden;vertical-align:middle}
.fo-standing-team__logo__image{max-width:23px;max-height:23px;object-fit:contain}
.fo-standing-team__logo__fallback{width:100%;height:100%;align-items:center;justify-content:center;font-size:8px;font-weight:900;color:#173247}
@media(max-width:600px){.fo-match__crest{width:26px;height:26px;flex-basis:26px}.fo-match__crest__image{max-width:22px;max-height:22px}.fo-standing-team__logo{width:23px;height:23px;flex-basis:23px}}

/* Matchs v1.7 — regles uniques pour les logos */
.week-match__competition{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    min-width:0;
    text-align:center;
}
.week-match__competition-name{
    display:block;
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-weight:800;
}
.week-match__competition-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    flex:0 0 32px;
    margin:0 auto;
    overflow:hidden;
}
.week-match__competition-logo__image{
    display:block;
    width:32px;
    height:32px;
    object-fit:contain;
    margin:0 auto;
}
.week-match__competition-round{
    display:block;
    line-height:1.15;
    color:var(--fo-muted);
}
.week-match__teams{gap:7px}
.week-match__teams>a{
    display:grid;
    grid-template-columns:28px minmax(0,1fr);
    align-items:center;
    gap:9px;
}
.week-match__club-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    width:28px;
    height:28px;
    flex:0 0 28px;
    overflow:hidden;
}
.week-match__club-logo__image{
    display:block;
    width:28px;
    height:28px;
    object-fit:contain;
    margin:0;
    padding:0;
}
.week-match__club-logo__fallback{
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--fo-soft);
    align-items:center;
    justify-content:center;
    font-size:9px;
    font-weight:900;
    color:var(--fo-text);
}
.fo-match-hero__competition{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-align:center;
}
.fo-match-hero__competition>div{
    width:100%;
    text-align:center;
}
.fo-match-hero__competition p{margin:5px 0 0;color:var(--fo-muted)}
.fo-match-competition-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    flex:0 0 48px;
    margin:0 auto;
    overflow:hidden;
}
.fo-match-competition-logo__image{
    display:block;
    width:48px;
    height:48px;
    object-fit:contain;
    margin:0 auto;
}
.fo-match-club-logo{width:96px;height:96px;display:flex;align-items:center;justify-content:center}
.fo-match-club-logo__image{width:100%;height:100%;object-fit:contain}
.fo-match-club-logo__fallback{width:88px;height:88px;border-radius:50%;background:var(--fo-soft);align-items:center;justify-content:center;font-size:24px;font-weight:900;color:var(--fo-text)}
@media(max-width:680px){
    .week-match__club-logo,
    .week-match__club-logo__image,
    .week-match__club-logo__fallback{width:25px;height:25px;flex-basis:25px}
    .week-match__teams>a{grid-template-columns:25px minmax(0,1fr)}
    .fo-match-club-logo{width:82px;height:82px}
}

/* Clubs v1.0 — identité visuelle de la fiche club */
.fo-club-page{padding-top:34px}
.fo-club-v1-hero{position:relative;display:grid;grid-template-columns:150px minmax(0,1fr) auto;gap:30px;align-items:center;overflow:hidden;padding:38px 40px;margin-bottom:18px;background:linear-gradient(135deg,#101010 0%,#1c1c1c 72%,#291012 100%);color:#fff;border-radius:18px;box-shadow:0 18px 50px rgba(0,0,0,.14)}
.fo-club-v1-hero:after{content:"";position:absolute;right:-105px;top:-175px;width:390px;height:390px;border:58px solid rgba(227,38,46,.17);border-radius:50%;pointer-events:none}
.fo-club-v1-hero__logo,.fo-club-v1-hero__identity,.fo-club-v1-hero__links{position:relative;z-index:1}
.fo-club-v1-hero__logo{width:142px;height:142px;display:flex;align-items:center;justify-content:center;background:#fff;border-radius:24px;box-shadow:0 12px 35px rgba(0,0,0,.22)}
.fo-club-v1-hero__crest__image{display:block!important;width:112px!important;height:112px!important;min-width:112px!important;min-height:112px!important;max-width:112px!important;max-height:112px!important;object-fit:contain!important;padding:0!important;margin:0!important}
.fo-club-v1-hero__crest__fallback{width:112px!important;height:112px!important;align-items:center;justify-content:center;color:#111;font-size:30px;font-weight:900}
.fo-club-v1-hero__eyebrow{display:block;margin-bottom:8px;color:#ff7278;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.16em}
.fo-club-v1-hero h1{margin:0 0 12px;font-size:clamp(32px,4vw,50px);line-height:1.03;letter-spacing:-.035em}
.fo-club-v1-hero__meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:13px}
.fo-club-v1-hero__meta span{padding:7px 10px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.08);border-radius:999px;color:#eee;font-size:11px;font-weight:800}
.fo-club-v1-hero p{max-width:700px;margin:0;color:#c9c9c4;font-size:14px}
.fo-club-v1-hero__links{display:flex;flex-direction:column;gap:9px;min-width:145px}
.fo-club-v1-hero__links a{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px 13px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.08);border-radius:9px;color:#fff;text-decoration:none;font-size:12px;font-weight:850;transition:.15s ease}
.fo-club-v1-hero__links a:hover{background:#fff;color:#111;transform:translateY(-1px)}
.fo-club-v1-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:0 0 28px}
.fo-club-v1-stat{display:flex;flex-direction:column;justify-content:center;min-height:98px;padding:18px 20px;background:#fff;border:1px solid var(--fo-line);border-radius:14px;box-shadow:0 5px 18px rgba(13,37,56,.04)}
.fo-club-v1-stat:before{content:"";width:30px;height:3px;margin-bottom:10px;background:var(--fo-red);border-radius:3px}
.fo-club-v1-stat strong{font-size:28px;line-height:1;font-weight:900;color:#111}
.fo-club-v1-stat span{margin-top:7px;color:var(--fo-muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.07em}
.fo-club-v1-stat--season strong{font-size:22px}
.fo-club-v1-layout{gap:24px}
.fo-club-v1-section{border-radius:15px;box-shadow:0 8px 26px rgba(13,37,56,.045)}
.fo-club-v1-section__head{padding-bottom:18px;margin-bottom:4px;border-bottom:1px solid #ededeb}
.fo-club-v1-section__head>strong{min-width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:#111;color:#fff;font-size:15px}
.fo-club-v1-teams{display:grid;gap:10px;margin-top:18px}
.fo-club-v1-team{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:13px 15px;border:1px solid #e7e7e4;border-radius:12px;color:var(--fo-text);text-decoration:none;transition:.16s ease}
.fo-club-v1-team:hover{border-color:#c9c9c5;box-shadow:0 8px 22px rgba(13,37,56,.075);transform:translateY(-1px);color:var(--fo-text)}
.fo-club-v1-team__club{display:flex;align-items:center;gap:13px;min-width:0}
.fo-club-v1-team__club i{width:48px;height:48px;flex:0 0 48px;display:flex;align-items:center;justify-content:center;background:#f3f4f4;border-radius:50%;font-style:normal;overflow:hidden}
.fo-club-v1-team__crest__image{display:block!important;width:42px!important;height:42px!important;min-width:42px!important;min-height:42px!important;max-width:42px!important;max-height:42px!important;object-fit:contain!important;margin:0!important;padding:0!important}
.fo-club-v1-team__crest__fallback{width:42px!important;height:42px!important;align-items:center;justify-content:center;font-size:10px;font-weight:900;color:#173247}
.fo-club-v1-team__club strong,.fo-club-v1-team__club small{display:block}
.fo-club-v1-team__club strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px}
.fo-club-v1-team__club small{margin-top:4px;color:var(--fo-muted);font-size:11px}
.fo-club-v1-team__competition{display:flex;align-items:center;gap:11px;flex:0 0 auto}
.fo-club-v1-team__competition-logo__image{display:block!important;width:34px!important;height:34px!important;min-width:34px!important;min-height:34px!important;max-width:34px!important;max-height:34px!important;object-fit:contain!important;margin:0!important;padding:0!important}
.fo-club-v1-team__competition b{font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:var(--fo-red)}
.fo-club-v1-info{border-radius:15px;box-shadow:0 8px 26px rgba(13,37,56,.045)}
.fo-club-v1-info dl{margin:18px 0 0}
.fo-club-v1-info dl div{padding:13px 0;border-top:1px solid #ececea}
.fo-club-v1-info dt{margin-bottom:4px;color:var(--fo-muted);font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}
.fo-club-v1-info dd{margin:0;color:#171717;font-size:13px;font-weight:750;overflow-wrap:anywhere}
.fo-club-v1-coming{border-radius:15px}
@media(max-width:950px){.fo-club-v1-hero{grid-template-columns:130px 1fr}.fo-club-v1-hero__logo{width:126px;height:126px}.fo-club-v1-hero__links{grid-column:1/-1;flex-direction:row;flex-wrap:wrap}.fo-club-v1-hero__links a{min-width:140px}.fo-club-v1-stats{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.fo-club-page{padding-top:22px}.fo-club-v1-hero{grid-template-columns:1fr;padding:28px 20px;text-align:center}.fo-club-v1-hero__logo{margin:auto}.fo-club-v1-hero__meta,.fo-club-v1-hero__links{justify-content:center}.fo-club-v1-hero__links a{flex:1}.fo-club-v1-stats{gap:9px}.fo-club-v1-stat{min-height:88px;padding:14px}.fo-club-v1-stat strong{font-size:23px}.fo-club-v1-stat--season strong{font-size:17px}.fo-club-v1-team{padding:11px}.fo-club-v1-team__competition b{display:none}.fo-club-v1-team__competition-logo__image{width:30px!important;height:30px!important;min-width:30px!important;min-height:30px!important;max-width:30px!important;max-height:30px!important}}

/* Clubs v2.0 — tableau de bord vivant */
.fo-club-v2-today{display:grid;grid-template-columns:minmax(220px,1.2fr) minmax(290px,1fr) minmax(250px,1fr);gap:20px;align-items:stretch;padding:24px 26px;margin:0 0 28px;background:#fff;border:1px solid var(--fo-line);border-radius:16px;box-shadow:0 8px 28px rgba(13,37,56,.05)}
.fo-club-v2-today__intro span,.fo-club-v2-barometer>span,.fo-club-v2-competitions>span{display:block;margin-bottom:5px;color:var(--fo-red);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.13em}
.fo-club-v2-today__intro h2{margin:0 0 6px;font-size:22px}.fo-club-v2-today__intro p{margin:0;color:var(--fo-muted);font-size:12px}
.fo-club-v2-today__numbers{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.fo-club-v2-today__numbers div{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:88px;padding:10px;background:#f5f6f6;border-radius:12px}.fo-club-v2-today__numbers strong{font-size:28px;line-height:1;color:#111}.fo-club-v2-today__numbers span{margin-top:7px;color:var(--fo-muted);font-size:10px;font-weight:800;text-align:center;text-transform:uppercase}
.fo-club-v2-next{display:flex;flex-direction:column;justify-content:center;padding:16px 18px;background:#111;border-radius:12px;color:#fff;text-decoration:none;transition:.15s ease}.fo-club-v2-next:hover{color:#fff;background:#262626;transform:translateY(-1px)}.fo-club-v2-next>span{color:#ff767d;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.fo-club-v2-next strong{margin:7px 0 5px;font-size:14px}.fo-club-v2-next small{color:#d0d0cc;font-size:11px}.fo-club-v2-next--empty{background:#f2f3f3;color:#111}.fo-club-v2-next--empty small{color:var(--fo-muted)}
.fo-club-v2-groups{margin-top:18px}.fo-club-v2-group{margin-top:22px}.fo-club-v2-group:first-child{margin-top:0}.fo-club-v2-group>h3{display:flex;align-items:center;gap:9px;margin:0 0 9px;color:#111;font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.fo-club-v2-group>h3:after{content:"";height:1px;flex:1;background:#e5e5e2}.fo-club-v2-group>h3 span{display:inline-flex;align-items:center;justify-content:center;min-width:24px;height:24px;border-radius:50%;background:#111;color:#fff;font-size:10px;letter-spacing:0}
.fo-club-v2-barometer,.fo-club-v2-competitions{border-radius:15px;box-shadow:0 8px 26px rgba(13,37,56,.045)}.fo-club-v2-barometer h2,.fo-club-v2-competitions h2{margin:0 0 18px;font-size:19px}.fo-club-v2-record{display:grid;grid-template-columns:1fr 1fr;gap:8px}.fo-club-v2-record div{padding:15px 10px;background:#111;border-radius:11px;text-align:center;color:#fff}.fo-club-v2-record strong,.fo-club-v2-record small{display:block}.fo-club-v2-record strong{font-size:26px}.fo-club-v2-record small{margin-top:4px;color:#c9c9c5;font-size:9px;text-transform:uppercase;font-weight:800}
.fo-club-v2-results{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:8px}.fo-club-v2-results div{padding:11px 4px;background:#f3f4f4;border-radius:9px;text-align:center}.fo-club-v2-results b,.fo-club-v2-results span{display:block}.fo-club-v2-results b{font-size:18px}.fo-club-v2-results span{margin-top:3px;color:var(--fo-muted);font-size:9px}.fo-club-v2-goals{display:flex;justify-content:space-between;gap:10px;margin-top:14px;padding-top:13px;border-top:1px solid #e9e9e7;color:var(--fo-muted);font-size:10px}.fo-club-v2-goals b{color:#111;font-size:13px}
.fo-club-v2-competitions>div{display:grid;gap:7px}.fo-club-v2-competitions a{display:grid;grid-template-columns:32px minmax(0,1fr);align-items:center;gap:9px;padding:9px 10px;border:1px solid #e8e8e5;border-radius:9px;color:#222;text-decoration:none}.fo-club-v2-competitions a:hover{border-color:#c9c9c5;background:#fafafa}.fo-club-v2-competitions a b{overflow:hidden;text-overflow:ellipsis;font-size:11px}.fo-club-v2-competition-logo__image{display:block!important;width:28px!important;height:28px!important;min-width:28px!important;min-height:28px!important;max-width:28px!important;max-height:28px!important;object-fit:contain!important;margin:0!important;padding:0!important}
@media(max-width:1050px){.fo-club-v2-today{grid-template-columns:1fr 1fr}.fo-club-v2-next{grid-column:1/-1}}
@media(max-width:650px){.fo-club-v2-today{grid-template-columns:1fr;padding:19px}.fo-club-v2-next{grid-column:auto}.fo-club-v2-today__numbers{gap:6px}.fo-club-v2-today__numbers strong{font-size:23px}.fo-club-v2-today__numbers span{font-size:8px}.fo-club-v2-goals{flex-direction:column}.fo-club-v2-group>h3{font-size:11px}}

/* Equipes v1.0 — tableau de bord, calendrier, résultats et statistiques */
.fo-club-v1-team__club{text-decoration:none;color:var(--fo-text);flex:1}
.fo-club-v1-team__actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.fo-club-v1-team__actions>a:first-child{padding:9px 12px;border-radius:8px;background:#111;color:#fff;text-decoration:none;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.07em}
.fo-club-v1-team__actions>a:first-child:hover{background:var(--fo-red)}
.fo-club-v1-team__competition{text-decoration:none}
.fo-team-page{padding-top:34px;padding-bottom:55px}
.fo-team-hero{position:relative;display:grid;grid-template-columns:124px minmax(0,1fr) 90px;gap:26px;align-items:center;overflow:hidden;padding:32px 36px;background:linear-gradient(135deg,#101010 0%,#1e1e1e 72%,#2c1114 100%);border-radius:18px;color:#fff;box-shadow:0 18px 50px rgba(0,0,0,.14)}
.fo-team-hero:after{content:"";position:absolute;right:-90px;top:-170px;width:360px;height:360px;border:54px solid rgba(227,38,46,.16);border-radius:50%;pointer-events:none}
.fo-team-hero>*{position:relative;z-index:1}.fo-team-hero__club-logo{width:118px;height:118px;display:flex;align-items:center;justify-content:center;background:#fff;border-radius:23px}.fo-team-hero__crest__image{display:block!important;width:96px!important;height:96px!important;object-fit:contain!important}.fo-team-hero__crest__fallback{width:96px!important;height:96px!important;align-items:center;justify-content:center;color:#111;font-weight:900;font-size:24px}
.fo-team-hero__identity>span{display:block;margin-bottom:7px;color:#ff777d;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.15em}.fo-team-hero__identity h1{margin:0 0 8px;font-size:clamp(29px,4vw,46px);line-height:1.04;letter-spacing:-.035em}.fo-team-hero__identity p{margin:0 0 12px;color:#d7d7d2;font-size:14px;font-weight:700}.fo-team-hero__identity>div{display:flex;gap:8px;flex-wrap:wrap}.fo-team-hero__identity b{padding:6px 9px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.08);border-radius:999px;font-size:10px}.fo-team-hero__competition-logo{width:78px;height:78px;display:flex;align-items:center;justify-content:center;background:#fff;border-radius:17px}.fo-team-hero__competition__image{display:block!important;width:64px!important;height:64px!important;object-fit:contain!important}
.fo-team-nav{display:flex;align-items:center;gap:4px;padding:7px;margin:12px 0 28px;background:#fff;border:1px solid var(--fo-line);border-radius:12px;box-shadow:0 6px 20px rgba(13,37,56,.04);overflow-x:auto}.fo-team-nav a{flex:0 0 auto;padding:10px 14px;border-radius:8px;color:#525252;text-decoration:none;font-size:11px;font-weight:850}.fo-team-nav a:hover,.fo-team-nav a.is-active{background:#111;color:#fff}.fo-team-nav__club{margin-left:auto!important;color:var(--fo-red)!important}.fo-team-nav__club:hover{color:#fff!important}
.fo-team-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin:0 0 18px}.fo-team-page-head span{display:block;margin-bottom:5px;color:var(--fo-red);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.13em}.fo-team-page-head h2{margin:0 0 5px;font-size:28px}.fo-team-page-head p{margin:0;color:var(--fo-muted);font-size:12px}.fo-team-page-head>strong{padding:10px 13px;background:#111;border-radius:9px;color:#fff;font-size:11px;text-transform:uppercase;letter-spacing:.06em}.fo-team-page-head sup{font-size:8px}
.fo-team-month{margin-bottom:28px}.fo-team-month>header{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:0 2px 10px;border-bottom:2px solid #111}.fo-team-month>header h2{margin:0;font-size:20px;text-transform:uppercase;letter-spacing:.05em}.fo-team-month>header span{color:var(--fo-muted);font-size:10px;font-weight:800;text-transform:uppercase}.fo-team-month__matches,.fo-team-results-list{display:grid;gap:10px;margin-top:12px}
.fo-team-match{position:relative;display:grid;grid-template-columns:170px minmax(0,1fr) 180px;gap:18px;align-items:center;padding:16px 18px;background:#fff;border:1px solid #e5e5e2;border-left:4px solid #c9c9c5;border-radius:12px;box-shadow:0 5px 18px rgba(13,37,56,.035);transition:.15s ease}.fo-team-match:hover{transform:translateY(-1px);box-shadow:0 9px 24px rgba(13,37,56,.07)}.fo-team-match--win{border-left-color:#2d9a59}.fo-team-match--draw{border-left-color:#c89b2d}.fo-team-match--loss{border-left-color:#d9434b}.fo-team-match__link{position:absolute;inset:0;z-index:1}.fo-team-match__date span,.fo-team-match__date b{display:block}.fo-team-match__date span{font-size:12px;font-weight:800}.fo-team-match__date b{margin-top:5px;color:var(--fo-muted);font-size:9px;text-transform:uppercase;letter-spacing:.08em}.fo-team-match--win .fo-team-match__date b{color:#2d9a59}.fo-team-match--loss .fo-team-match__date b{color:#d9434b}.fo-team-match__teams{display:grid;grid-template-columns:minmax(0,1fr) 72px minmax(0,1fr);align-items:center;gap:12px}.fo-team-match__teams>span{display:flex;align-items:center;gap:9px;min-width:0}.fo-team-match__teams>span:last-child{flex-direction:row-reverse;text-align:right}.fo-team-match__teams strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:12px}.fo-team-match__teams em{font-style:normal;font-size:16px;font-weight:900;text-align:center}.fo-team-match__crest__image{display:block!important;width:38px!important;height:38px!important;object-fit:contain!important}.fo-team-match__crest__fallback{width:38px!important;height:38px!important;align-items:center;justify-content:center;background:#f0f1f1;border-radius:50%;font-size:9px;font-weight:900}.fo-team-match__meta{text-align:right}.fo-team-match__meta span,.fo-team-match__meta b{display:block}.fo-team-match__meta span{font-size:10px;font-weight:800}.fo-team-match__meta b{margin-top:5px;color:var(--fo-muted);font-size:9px}
.fo-team-overview-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-bottom:24px}.fo-team-overview-grid a{display:flex;flex-direction:column;min-height:112px;padding:17px 18px;background:#fff;border:1px solid var(--fo-line);border-radius:13px;color:#111;text-decoration:none;box-shadow:0 5px 18px rgba(13,37,56,.04)}.fo-team-overview-grid a:hover{border-color:#bbb;transform:translateY(-1px)}.fo-team-overview-grid span{color:var(--fo-red);font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.fo-team-overview-grid strong{margin-top:auto;font-size:29px;line-height:1}.fo-team-overview-grid small{margin-top:6px;color:var(--fo-muted);font-size:10px}.fo-team-dashboard{display:grid;grid-template-columns:1fr 1fr;gap:20px}.fo-team-dashboard .fo-section{border-radius:15px}.fo-team-dashboard .fo-team-match{grid-template-columns:1fr;padding:14px}.fo-team-dashboard .fo-team-match__date,.fo-team-dashboard .fo-team-match__meta{text-align:center}.fo-team-dashboard .fo-team-match__teams{grid-template-columns:minmax(0,1fr) 60px minmax(0,1fr)}
.fo-team-stat-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:10px;margin-bottom:24px}.fo-team-stat-grid>div{display:flex;flex-direction:column;justify-content:center;min-height:105px;padding:14px;background:#fff;border:1px solid var(--fo-line);border-radius:12px;text-align:center}.fo-team-stat-grid strong{font-size:27px}.fo-team-stat-grid span{margin-top:6px;color:var(--fo-muted);font-size:9px;font-weight:850;text-transform:uppercase}.fo-team-stat-grid__accent{background:#111!important;color:#fff}.fo-team-stat-grid__accent span{color:#ccc}.fo-team-stats-layout{display:grid;grid-template-columns:minmax(0,1.8fr) minmax(260px,.8fr);gap:20px}.fo-team-split{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:18px}.fo-team-split>div{padding:20px;background:#f4f5f5;border-radius:12px}.fo-team-split h3{margin:0 0 14px;color:var(--fo-red);font-size:10px;text-transform:uppercase;letter-spacing:.1em}.fo-team-split strong{font-size:23px}.fo-team-split p{margin:8px 0 4px;font-weight:800}.fo-team-split small{color:var(--fo-muted)}.fo-team-form{display:flex;gap:8px;margin-top:18px}.fo-team-form i{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;color:#fff;font-style:normal;font-size:11px;font-weight:900}.fo-team-form i.is-win{background:#2d9a59}.fo-team-form i.is-draw{background:#c89b2d}.fo-team-form i.is-loss{background:#d9434b}
@media(max-width:900px){.fo-team-hero{grid-template-columns:104px minmax(0,1fr) 70px;padding:27px}.fo-team-hero__club-logo{width:102px;height:102px}.fo-team-hero__competition-logo{width:68px;height:68px}.fo-team-match{grid-template-columns:135px minmax(0,1fr)}.fo-team-match__meta{grid-column:1/-1;display:flex;justify-content:space-between;text-align:left}.fo-team-stat-grid{grid-template-columns:repeat(4,1fr)}.fo-team-dashboard{grid-template-columns:1fr}}
@media(max-width:650px){.fo-club-v1-team{align-items:flex-start}.fo-club-v1-team__actions{flex-direction:column;align-items:flex-end}.fo-club-v1-team__competition b{display:none}.fo-team-page{padding-top:22px}.fo-team-hero{grid-template-columns:1fr;text-align:center;padding:26px 19px}.fo-team-hero__club-logo,.fo-team-hero__competition-logo{margin:auto}.fo-team-hero__competition-logo{display:none}.fo-team-hero__identity>div{justify-content:center}.fo-team-nav{margin-bottom:23px}.fo-team-nav a{padding:9px 11px}.fo-team-nav__club{margin-left:0!important}.fo-team-page-head{align-items:flex-start;flex-direction:column}.fo-team-match{grid-template-columns:1fr;gap:12px}.fo-team-match__date,.fo-team-match__meta{text-align:center}.fo-team-match__meta{grid-column:auto;display:block}.fo-team-match__teams{grid-template-columns:minmax(0,1fr) 48px minmax(0,1fr);gap:6px}.fo-team-match__teams>span{flex-direction:column!important;text-align:center!important;gap:5px}.fo-team-match__teams strong{font-size:10px;white-space:normal}.fo-team-overview-grid{grid-template-columns:1fr 1fr}.fo-team-stat-grid{grid-template-columns:1fr 1fr}.fo-team-stats-layout{grid-template-columns:1fr}.fo-team-split{grid-template-columns:1fr}}

/* 5.2.5 — score et chrono Live unifiés */
.fo-match__scorebox{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;min-width:72px}
.fo-match__scorebox.is-live .fo-match__score{color:#e2232a}
.fo-match__live-state{display:inline-flex;align-items:center;justify-content:center;min-height:22px;padding:2px 8px;border-radius:999px;background:#edf0f4;color:#4b5563;font-size:.72rem;font-weight:800;line-height:1;white-space:nowrap}
.fo-match__scorebox.is-live .fo-match__live-state{background:#fee2e2;color:#b91c1c}
.fo-inline-live-clock{display:block;margin-top:3px;color:#d71920;font-size:.72rem;font-weight:900}

/* =========================================================
   Navigation par univers — 5.2.5.1
   ========================================================= */
.main-navigation__container{gap:12px}.main-navigation__list{min-width:0;flex:1}.main-navigation__item--dropdown{position:relative}.main-navigation__trigger{border:0;background:transparent;font:inherit;cursor:pointer}.main-navigation__chevron{margin-left:1px;font-size:.9rem;opacity:.65;transition:transform .18s ease}.main-navigation__item--dropdown.is-open .main-navigation__chevron{transform:rotate(180deg)}.main-navigation__dropdown{position:absolute;z-index:1200;top:calc(100% - 4px);left:0;display:none;width:290px;padding:9px;border:1px solid rgba(17,24,39,.1);border-radius:14px;background:#fff;box-shadow:0 22px 55px rgba(15,23,42,.2)}.main-navigation__dropdown--right{right:0;left:auto}.main-navigation__item--dropdown:hover>.main-navigation__dropdown,.main-navigation__item--dropdown:focus-within>.main-navigation__dropdown,.main-navigation__item--dropdown.is-open>.main-navigation__dropdown{display:block}.main-navigation__dropdown>a{position:relative;display:block;padding:10px 12px;border-radius:9px;color:#111827;text-decoration:none;transition:background .16s ease,color .16s ease}.main-navigation__dropdown>a:hover{background:#f5f6f8;color:#a50f1d}.main-navigation__dropdown strong{display:block;font-size:.9rem}.main-navigation__dropdown small{display:block;margin-top:2px;color:#6b7280;font-size:.73rem}.main-navigation__admin-link{border-top:1px solid #eceff3;margin-top:5px;padding-top:13px!important}.fo-dropdown-count{position:absolute;top:10px;right:11px;min-width:22px;padding:2px 6px;border-radius:999px;background:#c71927;color:#fff;text-align:center;font-size:.68rem}.main-navigation__link--live{color:#fff}.fo-live-dot{width:9px;height:9px;border-radius:999px;background:#e11d2e;box-shadow:0 0 0 4px rgba(225,29,46,.15);animation:foLivePulse 1.8s infinite}@keyframes foLivePulse{50%{box-shadow:0 0 0 7px rgba(225,29,46,0)}}.season-switcher{align-self:center;flex:0 0 auto}.season-switcher select{max-width:112px;padding-left:9px;padding-right:24px;font-size:.76rem}.main-navigation__link{padding-right:13px;padding-left:13px;gap:7px;font-size:.9rem}.main-navigation__link::after{right:13px;left:13px}
@media(max-width:1199.98px){.main-navigation__link{padding-right:9px;padding-left:9px;font-size:.84rem}.main-navigation__link svg{width:18px;height:18px}.main-navigation__chevron{display:none}.season-switcher select{max-width:98px}}
@media(max-width:991.98px){.main-navigation.is-open .main-navigation__item--dropdown{width:100%}.main-navigation.is-open .main-navigation__trigger{justify-content:flex-start}.main-navigation.is-open .main-navigation__chevron{display:block;margin-left:auto}.main-navigation.is-open .main-navigation__dropdown{position:static;display:none;width:100%;margin:2px 0 8px;padding:5px 5px 5px 36px;border:0;border-radius:0;background:rgba(255,255,255,.045);box-shadow:none}.main-navigation.is-open .main-navigation__item--dropdown.is-open>.main-navigation__dropdown{display:block}.main-navigation.is-open .main-navigation__item--dropdown:hover>.main-navigation__dropdown:not(:focus-within){display:none}.main-navigation.is-open .main-navigation__item--dropdown.is-open:hover>.main-navigation__dropdown{display:block}.main-navigation.is-open .main-navigation__dropdown>a{color:#fff}.main-navigation.is-open .main-navigation__dropdown>a:hover{background:rgba(255,255,255,.08);color:#fff}.main-navigation.is-open .main-navigation__dropdown small{color:rgba(255,255,255,.6)}.main-navigation.is-open .season-switcher{width:100%}.main-navigation.is-open .season-switcher select{width:100%;max-width:none}}

/* 6.1.4.5.2 — accès Live dans MonFoot / Mes matchs */
.week-match__live-access{
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    width:auto;
    max-width:max-content;
    margin-top:3px;
    padding:5px 9px;
    border:1px solid rgba(178,15,29,.20);
    border-radius:999px;
    background:#fff4f5;
    color:#a80f1c!important;
    font-size:10px!important;
    line-height:1;
    font-weight:850!important;
    text-decoration:none!important;
    white-space:nowrap;
    box-shadow:none;
}
.week-match__live-access span{
    color:#d21525;
    font-size:8px;
    line-height:1;
}
.week-match__live-access:hover{
    background:#b20f1d;
    border-color:#b20f1d;
    color:#fff!important;
}
.week-match__live-access:hover span{color:#fff}
