/* Shared footer social links: only the maintained EcoBrus channels. */
.footer .social.footer-social {
    display: flex;
    float: none;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.footer .social.footer-social li {
    margin: 0;
}

.footer .social.footer-social a {
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .88;
    transition: opacity .18s ease, transform .18s ease;
}

.footer .social.footer-social a:hover,
.footer .social.footer-social a:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
}

.footer .social.footer-social a:focus-visible {
    outline: 2px solid #12a89d;
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .footer .social.footer-social {
        justify-content: flex-start;
        gap: 14px;
        margin-top: 0;
    }

    .footer .social.footer-social a {
        width: 36px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer .social.footer-social a {
        transition: none;
    }
}
