/* ============================================
   BANDEAU RÉSEAUX SOCIAUX EN HAUT
   ============================================ */

.social-top-bar {
    background: #d70f20;
    padding: 0;
    border-bottom: none;
    line-height: 1;
}

.social-top-bar .container {
    display: flex;
    justify-content: flex-end;
    padding: 3px 20px 3px 0;
    max-width: 100%;
}

.social-top-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-top-links a {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.social-top-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: none;
    box-shadow: none;
}

.social-top-links a i {
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .social-top-bar .container {
        justify-content: center;
    }
}
