/* Social Sharing Styles */
.social-share {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
}

.share-label {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-twitter:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0A66C2;
    color: white;
}

.share-linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
}

.share-whatsapp {
    background: #25D366;
    color: white;
}

.share-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.share-copy {
    background: var(--color-card);
    color: var(--color-text-primary);
    border: 2px solid var(--color-border);
}

.share-copy:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.share-copy.copied {
    background: var(--color-success);
    color: white;
    border-color: var(--color-success);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .share-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
    }
}
