footer#colophon.site-footer { 
    background-color: var(--color-gris);  
    height: auto; 
    border-top: 3px solid white;
}

footer#colophon div.site-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.site-footer__bottom {
    background-color: var(--color-text);
}

.site-footer__bottom {
    background-color: var(--color-text);
    padding-top: 20px;
    padding-bottom: 20px;
    color: var(--color-white);
}

.site-info {
    padding-top: 25px; 
    padding-bottom: 25px; 
}

.site-branding-footer { width: 150px; }

.site-apropos p,
.site-aide p { font-weight: 600; margin-bottom: 10px; }

.site-apropos ul,
.site-aide ul { font-size: 15px; }

.site-apropos ul a li:hover,
.site-aide ul a li:hover {
    color: var(--color-orange);
}

.site-reseau { 
    display: flex; 
    gap: 10px; 
}

.site-reseau a { 
    transition: all .3s;
}

.site-reseau a:hover { 
    transform: scale(1.2);
}
.site-footer__bottom { font-size: 14px; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; }
.site-footer__bottom-inner p { font-size: 14px; }
.footer-legal a.footer-legal__link { padding-left: 20px; }
.footer-legal a.footer-legal__link:hover { text-decoration: underline; }


/* --- RESPONSIVE --- 
--------------------- */
@media (max-width: 768px) {
    footer#colophon div.site-info { 
        flex-direction: row; 
        align-items: center; 
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .site-footer__bottom-inner { flex-direction: column; }
    .site-footer__bottom-inner p { text-align: center; margin-bottom: 20px; }
    nav.footer-legal { display: flex; justify-content: center; }
    .site-info { flex-direction: row-reverse; }
    .site-apropos { order: 1; }
    .site-aide { order: 2; }
    .site-reseau { order: 3; }
}

@media (max-width: 600px) {
    footer#colophon div.site-info { 
        flex-direction: column; 
        padding: 30px 0;
    }

    .site-branding-footer {
        width: 45%;
        display: block;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .site-apropos,
    .site-aide { 
        margin: 0 auto;
        text-align: center; }

    .site-reseau { 
        margin: 0 auto; 
        padding-top: 20px;
    }

}

@media (max-width: 320px) {
    nav.footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

}