/**
 * Bloc liens réseaux (footer, page contact) — cohérent avec la charte bleue / blanche.
 */
.site-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.site-social-links__a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-social-links__a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.site-social-links__a--fb {
    background: #1877f2;
}

.site-social-links__a--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.site-social-links__a--li {
    background: #0a66c2;
}

.site-social-links__a--tt {
    background: #010101;
}

.footer_social_wrap {
    border-top: 1px solid rgba(53, 100, 166, 0.12);
    background: rgba(250, 250, 250, 0.6);
    padding: 22px 0;
}

.footer_social_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
}

.footer_social_title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--titres, #0d0d0d);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-social {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border, rgba(0, 0, 0, 0.08));
}

.contact-social h4 {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--titres, #0d0d0d);
}

.contact-social p {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--gris-moyen, #737373);
    line-height: 1.45;
}
