.footer-social {
    margin-top: 22px;
}

.footer-social__title {
    margin: 0 0 11px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
}

.footer-social__list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social__link {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover,
.footer-social__link:focus {
    border-color: rgb(var(--base));
    background: rgb(var(--base));
    color: #fff;
    outline: 0;
    transform: translateY(-2px);
}

.footer-social__link i {
    width: auto;
    color: inherit;
    font-size: 15px;
}

@media (max-width: 767.98px) {
    .footer-social {
        margin-top: 18px;
    }

    .footer-social__link {
        width: 40px;
        height: 40px;
    }
}

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