.social-share {
    margin: 30px 0;
    text-align: left;
}

.social-share__title {
    font-size: 18px;
    font-family: 'Poppins-SemiBold', sans-serif;
    color: #6c6c6c;
    margin-bottom: 15px;
}

.social-share__list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.social-share__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
    text-decoration: none !important;
}

.social-share__item a:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

.social-share__item--facebook a {
    background-color: #1877F2;
}

.social-share__item--x a {
    background-color: #000000;
}

.social-share__item--linkedin a {
    background-color: #0077B5;
}

.social-share__item--instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-share__item--whatsapp a {
    background-color: #25D366;
}

@media (max-width: 768px) {
    .social-share {
        text-align: center;
    }
    .social-share__list {
        justify-content: center;
    }
}
