.qfb-footer {

    font-family: var(--font-footer);
    font-size: 12px;
    font-weight: 500;

    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    width: 100%;
    padding: 20px;
    background-color: #eee; /* peut être changée dynamiquement */
    border: 4px solid black; /* peut être changée dynamiquement */
    margin-top: calc(0px - var(--border_grosseur)); /* dans theme brut template*/

}

.footer-logo {
    /* flex: 1 100%; prend toute la largeur */
    flex: 1 1 20%; /* en colonne */
    text-align: left;
    margin: 10px;
    padding: 20px;
}

.footer-sous-logo {
    padding: 5px 0;
}

.footer-column {
    flex: 1 1 20%; /* Chaque colonne prend 30% de l'espace, elles s'adaptent sur plusieurs lignes si nécessaire */
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.footer-column h3 {
    padding: 0px 0 10px;
    border-bottom: 1px solid yellow;
    margin-bottom: 10px;
}

.footer-column p {
    padding: 5px 0;
}

.footer-bottom {
    flex: 1 100%;
    text-align: left;
    margin: 10px;
    padding: 10px;
    border: 4px solid black; /* Bordure supérieure */
}

/* Responsive design pour les petits écrans */
@media screen and (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%; /* Les colonnes prennent toute la largeur sur petits écrans */
        margin: 10px 0 10px 0;
        width: 100%;
    }

    .footer-logo {
        margin: 10px 0 10px 0;
        width: 100%;
    }

    .footer-bottom {
        flex: 1 100%;
        width: 100%;
        text-align: left;
        margin: 10px 0 10px 0;
        padding: 20px;
    }
}
