.subfilter-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #222 !important;
    color: #fff !important;
    text-align: center;
    padding: 10px;
}

.subfilter-footer a {
    text-decoration: none !important;
    color: #fff !important;
}

.legals {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Écrans de taille moyenne et supérieure (tablettes, PC) */
@media (min-width: 768px) {

    .legals {
        flex-direction: row;    /* Repasse à l'horizontale sur PC */
        gap: 1rem;
    }

    .copyright {
        flex-direction: row;
        gap: 0.5rem;
    }
}