.contact-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 12px;
}

.contact-social-links__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-social-links__item::before,
.contact-social-links__item::after {
    display: none !important;
    content: none !important;
}

.contact-social-links__item:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.contact-social-links__item--twitter {
    background: #fff;
    color: #000 !important;
}

.contact-social-links__item--twitter:hover {
    background: #000;
    color: #fff !important;
}

.contact-social-links__item--twitter i {
    color: inherit !important;
}

.contact-social-links__item--linkedin {
    background: #0a66c2;
}

.contact-social-links__item--facebook {
    background: #1877f2;
}

.contact-social-links__item--instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
}

@media only screen and (max-width: 767px) {
    .contact-social-links {
        gap: 8px;
    }

    .contact-social-links__item {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
