/* SHARE SECTION */
.share {
    margin: 2.5rem 0;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share b {
    color: #6c757d;
    font-size: 0.95rem;
}

/* SOCIAL ICONS WRAPPER */
.share .social {
    display: flex;
    gap: 0.5rem;
}

/* ICON BUTTONS */
.share .social .link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* BRAND COLORS */
.share .fa-facebook {
    color: #1877f2;
}

.share .fa-whatsapp {
    color: #25d366;
}

.share .fa-x-twitter {
    background: #333;
}

.share .fa-linkedin {
    color: #0a66c2;
}

/* HOVER EFFECT */
.share .social .link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

@media (max-width: 576px) {
    .share .social .link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}