.football-page {
    --football-green: #116530;
    --football-dark: #092f1a;
    --football-light: #e9f7ee;
}

/* La fiche fédération conserve la même pastille de retour que les annuaires. */
.football-breadcrumb {
    margin-bottom: 1.25rem;
}

.football-breadcrumb a {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 106, 117, .16);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(18, 54, 74, .09);
    color: var(--societe-teal);
    display: inline-flex;
    font-size: .92rem;
    font-weight: 800;
    gap: .55rem;
    min-height: 42px;
    padding: .65rem 1rem;
    text-decoration: none;
}

.football-directory {
    padding: 3rem 0;
}

.football-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
}

.football-card {
    background: #fff;
    border: 1px solid #dbe9df;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(9, 47, 26, .08);
    color: #15231a;
    display: flex;
    gap: 1.1rem;
    padding: 1.25rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.football-card:hover {
    box-shadow: 0 18px 38px rgba(9, 47, 26, .14);
    transform: translateY(-3px);
}

.football-card-logo {
    align-items: center;
    background: var(--football-light);
    border-radius: 16px;
    color: var(--football-green);
    display: flex;
    flex: 0 0 78px;
    font-size: 2rem;
    height: 78px;
    justify-content: center;
    overflow: hidden;
}

.football-card-logo img {
    height: 100%;
    object-fit: contain;
    padding: .5rem;
    width: 100%;
}

.football-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .45rem;
}

.football-card-body strong {
    font-size: 1.1rem;
}

.football-card-country,
.football-card-meta {
    color: #5d6d62;
    font-size: .88rem;
}

.football-card-country,
.football-card-meta,
.football-card-action {
    align-items: center;
    display: flex;
    gap: .55rem;
}

.football-card-action {
    color: var(--football-green);
    font-size: .9rem;
    font-weight: 800;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .45rem;
}

.football-empty {
    align-items: center;
    background: var(--football-light);
    border-radius: 18px;
    color: var(--football-dark);
    display: flex;
    gap: .8rem;
    margin-top: 2rem;
    padding: 1.25rem;
}

.football-empty p {
    margin: 0;
}

.federation-header {
    align-items: center;
    background: linear-gradient(135deg, #092f1a, #116530);
    border-radius: 28px;
    color: #fff;
    display: flex;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.federation-logo {
    align-items: center;
    background: #fff;
    border-radius: 24px;
    color: var(--football-green);
    display: flex;
    flex: 0 0 150px;
    font-size: 4rem;
    height: 150px;
    justify-content: center;
    overflow: hidden;
}

.federation-logo img {
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    width: 100%;
}

.federation-copy h1 {
    margin: .3rem 0 .8rem;
}

.federation-copy .societe-kicker,
.federation-copy p,
.federation-copy a {
    color: #fff;
}

.federation-facts {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin-top: 1.25rem;
}

.federation-facts span,
.federation-facts a {
    align-items: center;
    display: inline-flex;
    gap: .45rem;
}

.football-team-card {
    cursor: default;
}

@media (max-width: 700px) {
    .federation-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .federation-logo {
        flex-basis: 110px;
        height: 110px;
        width: 110px;
    }
}
