/* Par défaut, cacher sur desktop */
.reseaux-sociaux.mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    .reseaux-sociaux.mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin: 30px 0;
        background-color: #003764; /* Bleu Structures XL */
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    .reseaux-sociaux.mobile a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #003764; /* fond blanc dans carré bleu */
        color: #ffffff ; /* bleu pour l'icône */
        text-decoration: none;
        border-radius: 50%;
        transition: filter 0.3s ease;
        font-size: 28px;
    }

    .reseaux-sociaux.mobile a i {
        all: unset;
        font-family: "Font Awesome 5 Brands";
        font-style: normal;
        font-weight: 400;
        font-size: inherit;
        display: block;
        text-align: center;
        line-height: 1;
    }

    .reseaux-sociaux.mobile a:hover {
        filter: brightness(1.2);
    }
}
@media screen and (max-width: 1024px) {
    .reseaux-sociaux.mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin: 0;
        padding: 20px 0;
        background-color: #003764;
    }

    .reseaux-sociaux.mobile + * {
        margin-top: 0 !important;
    }

    .header-mobile-menu ul {
        margin-bottom: 0 !important;
    }
}

