.gas-site-footer {
    margin-top: var(--gas-space-3xl, 64px);
    background: var(--gas-color-surface-soft, #f8f8f8);
    color: var(--gas-color-text, #161616);
    border-top: 1px solid var(--gas-color-border, #e0e0e0);
    /* Taille de base en token px : sans ça le texte hérite du body, qui sous le
       root frontend (html{font-size:62.5%} => 1rem=10px) tombe à ~10px (illisible). */
    font-size: var(--gas-text-s, 14px);
    line-height: 1.5;
}

.gas-site-footer__inner {
    width: min(100%, var(--gas-wide-max-width, 920px));
    margin-inline: auto;
    padding: var(--gas-space-6, 20px) var(--gas-space-4, 10px);
    display: grid;
    gap: var(--gas-space-5, 12.5px);
}

.gas-site-footer__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--gas-space-5, 12.5px);
}

.gas-site-footer__column {
    display: grid;
    gap: var(--gas-space-3, 7.5px);
    align-content: start;
}

.gas-site-footer__module {
    min-width: 0;
}

.gas-site-footer__module--branding {
    display: grid;
    gap: var(--gas-space-2, 5px);
}

.gas-site-footer__module--branding strong {
    /* Nom du club / titre de colonne : was 10.5px (artefact codemod rem→px). */
    font-size: var(--gas-text-l, 20px);
}

.gas-site-footer__module--branding p,
.gas-site-footer__module--contact p {
    margin: 0;
    color: var(--gas-color-text-muted, #555);
}

.gas-site-footer__menu-list,
.gas-site-footer__module--legal ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--gas-space-2, 5px);
}

.gas-site-footer a {
    color: inherit;
    text-decoration: none;
}

.gas-site-footer a:hover,
.gas-site-footer a:focus {
    text-decoration: underline;
}

.gas-site-footer__module--social,
.gas-site-footer__module--placement {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gas-space-3, 7.5px);
}
