/* ==========================================================================
   a2prl.fr — règles chargées sur tout le site
   ========================================================================== */

/* Pastilles réseaux sociaux (pied de page, panneau contact).
   Mêmes pictos Font Awesome que la barre latérale « Suivez-nous ». */
.a2prl-reseaux {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.a2prl-reseaux li {
    margin: 0;
    padding: 0;
}
.a2prl-reseaux li::before {
    content: none;
}
.a2prl-reseaux a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(23, 22, 26, 0.14);
    color: #17161a;
    font-size: 16px;
    line-height: 1;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.a2prl-reseaux a:hover {
    background: #b51f69;
    border-color: #b51f69;
    color: #ffffff;
}
/* Pages en « dark scheme » (accueil) : le pied de page est sombre, le liseré gris
   disparaîtrait — liseré fin blanc, icônes blanches */
.dark-scheme .site-footer .a2prl-reseaux a {
    border-color: #ffffff;
    color: #ffffff;
}
.dark-scheme .site-footer .a2prl-reseaux a:hover {
    background: #b51f69;
    border-color: #b51f69;
    color: #ffffff;
}
/* Dans le pied de page, le widget HTML est dans une liste du thème : on neutralise ses marges */
.site-footer .widget_custom_html .a2prl-reseaux {
    margin-top: 4px;
}
