.voicecorp-social-share {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-family: inherit;
}

.voicecorp-social-share h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.voicecorp-share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px; /* Pill shape */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.share-btn span {
    line-height: 1;
}

.share-btn svg {
    width: 1.25em;
    height: 1.25em;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    filter: brightness(110%);
}

.share-btn:active {
    transform: translateY(0);
}

/* Brand Colors */
.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.twitter {
    background-color: #ffffff;
    color: #000000;
}

.share-btn.linkedin {
    background-color: #0A66C2;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .voicecorp-share-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .share-btn {
        justify-content: center;
    }
}
