ul.social__items{
    gap: 4px;
}

.social__items .social__link{
    background-color: #fff;
    border-radius: 8px;
    padding: 9px;
}

@media (max-width: 1200px) {
    .social__items .social__link{
        padding: 5px;
    }
}

.social__items .social__item:where(.vkontakte, .vk) .social__link:before,
.social__items .social__item:where(.telegram) .social__link:before,
.social__items .social__item:where(.yandex-zen) .social__link:before,
.social__items .social__item:where(.max ) .social__link:before{
    display: none !important;
}

.social__items .social__item.social__item_text{
    margin-left: 12px;
}

@media (max-width: 1200px) {
    .social__items .social__item.social__item_text {
        margin-left: 0;
    }
}

.social__items .social__item.social__item_text a.social__link{
    flex-direction: row;
    gap: 4px;
}

@media (max-width: 1200px) {
    .social__items .social__link svg{
        width: 18px;
        height: 18px;
    }
}

.social__items .social__item.social__item_text span{
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #333;
}

@media (prefers-reduced-motion: no-preference) and (any-hover: hover) {
    .social__item:hover {
        opacity: 1;
    }

    .social__item.vkontakte:hover .social__link{
        background-color: #348FF9;
    }

    .social__item.telegram:hover .social__link{
        background-color: #2FA3D9;
    }

    .social__item.yandex-zen:hover .social__link{
        background-color: #4B4B4B;
    }

    .social__item.max:hover .social__link{
        background: linear-gradient(256.92deg, #8147E5 0%, #43BFFC 100%);
    }

    .social__item:hover svg path {
        fill: #fff;
    }

    .social__item.social__item_text:hover span{
        color: #fff;
    }
}