/* Социальные ссылки в колонке «Связь» подвала.
   Загружается после основных адаптивных стилей. */

.footer-socials {
    display: grid;
    grid-template-columns: repeat(2, 48px);
    gap: 12px;
    width: max-content;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.site-footer__contact .footer-socials > li {
    margin: 0;
}

.site-footer__contact .footer-socials__link {
    --footer-social-color: var(--purple);

    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: rgba(247, 249, 253, 0.86);
    box-shadow:
        0 4px 10px rgba(36, 43, 81, 0.1),
        -1px 3px 5px rgba(148, 230, 249, 0.5);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.site-footer__contact .footer-socials__link:hover {
    color: inherit;
    transform: translateY(-2px);
    border-color: var(--footer-social-color);
    background: #fff;
    box-shadow:
        0 7px 14px rgba(36, 43, 81, 0.13),
        -1px 4px 7px rgba(148, 230, 249, 0.65);
}

.site-footer__contact .footer-socials__link:active {
    transform: translateY(0);
}

.footer-socials__link img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-socials__link--telegram { --footer-social-color: #26a5e4; }
.footer-socials__link--vk       { --footer-social-color: #0077ff; }
.footer-socials__link--max      { --footer-social-color: #6e1aff; }
.footer-socials__link--ok       { --footer-social-color: #ff7700; }

.footer-socials__link--max img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

@media (max-width: 760px) {
    .footer-socials {
        margin-top: 14px;
    }
}

@media (max-width: 360px) {
    .footer-socials {
        grid-template-columns: repeat(2, 44px);
        gap: 10px;
    }

    .site-footer__contact .footer-socials__link {
        width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .footer-socials__link img {
        width: 26px;
        height: 26px;
    }

    .footer-socials__link--max img {
        width: 28px;
        height: 28px;
    }
}

@media (hover: none) {
    .site-footer__contact .footer-socials__link:hover {
        transform: none;
    }
}

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

@media (prefers-reduced-transparency: reduce) {
    .site-footer__contact .footer-socials__link {
        background: #f7f9fd;
    }
}
