/* ============================================================
   SÉRÉNITÉ ET SOLUTIONS — Footer
   Le footer natif d'Astra (Footer Builder) est conservé — on le
   stylise seulement. Pour appliquer ces styles, assigne les classes
   ci-dessous à chaque widget dans Personnaliser > Constructeur de
   site > Pied de page, champ "Classe CSS" :
     Titres de colonnes            → sr-footer-title
     Widget menu / liens           → sr-footer-links
     Widget texte contact          → sr-footer-contact
     Ligne du bas (copyright...)   → sr-footer-bottom
============================================================ */

.site-footer {
    background-color: #F4F6F4;
    color: var(--sr-text, #393C40);
}

.sr-footer-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--sr-text, #393C40);
    margin-bottom: 14px;
    display: block;
}

.sr-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sr-footer-links li a,
.sr-footer-contact a {
    color: var(--sr-text, #393C40);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.9;
    transition: color 0.2s ease;
}
.sr-footer-links li a:hover,
.sr-footer-contact a:hover {
    color: var(--sr-accent-dark, #7E947E);
}

.sr-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--sr-accent-dark, #7E947E);
    text-align: center;
}
.sr-footer-bottom a {
    color: var(--sr-accent-dark, #7E947E);
    text-decoration: none;
}
.sr-footer-bottom a:hover { text-decoration: underline; }