/* Match the existing ugo.al footer artwork, spacing and mobile scaling. */
.footer .social-box.footer__social {
    display: flex;
    gap: 10px;
}
.footer .footer__social > noindex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    width: 30px !important;
    height: 30px !important;
}
.footer .footer__social a {
    position: relative;
    display: flex;
    flex: 0 0 30px;
    margin: 0 !important;
    width: 30px !important;
    height: 30px !important;
    transform: none;
    opacity: 1;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.footer .footer__social a.facebook-soc {
    background-image: url('/user/img/footer-social-ugo/facebook.svg');
    background-size: auto;
}
.footer .footer__social a.facebook-soc:hover {
    background-image: url('/user/img/footer-social-ugo/facebook-hover.svg');
    background-size: auto;
}
.footer .footer__social a.instagram-soc {
    background-image: url('/user/img/footer-social-ugo/instagram.svg');
    background-size: auto;
}
.footer .footer__social a.instagram-soc:hover {
    background-image: url('/user/img/footer-social-ugo/instagram-hover.svg');
    background-size: contain;
}
.footer .footer__social a.tiktok-soc {
    background-image: url('/user/img/footer-social-ugo/tiktok.svg') !important;
    background-size: contain !important;
}
.footer .footer__social a.tiktok-soc:hover {
    background-image: url('/user/img/footer-social-ugo/tiktok-hover.svg') !important;
}
.footer .footer__social a.threads-soc {
    background-image: url('/user/img/footer-social-ugo/threads.svg');
    background-size: cover;
}
.footer .footer__social a.threads-soc::before {
    content: '';
    background: url('/user/img/footer-social-ugo/threads-hover.svg') center / cover;
    width: 30px;
    height: 30px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .2s ease;
}
.footer .footer__social a.threads-soc:hover::before { opacity: 1; }
.footer .footer__social a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: 4px;
}
@media (max-width: 780px) {
    .footer .social-box.footer__social { gap: 6px; }
    .footer .footer__social a { transform: scale(.7); }
}
