/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #304169;
    font-size: 14px;
}

.share-social {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
}

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Native share button */
.share-native {
    background: #304169;
    color: #fff;
}

/* Facebook */
.share-facebook {
    background: #1877f2;
    color: #fff;
}

/* Twitter/X */
.share-twitter {
    background: #000;
    color: #fff;
}

/* LinkedIn */
.share-linkedin {
    background: #0a66c2;
    color: #fff;
}

/* WhatsApp */
.share-whatsapp {
    background: #25d366;
    color: #fff;
}

/* Copy Link */
.share-copy {
    background: #6c757d;
    color: #fff;
}

.share-copy.copied {
    background: #28a745;
}

/* Mobile: show native button prominently */
@media (max-width: 768px) {
    .share-buttons {
        justify-content: center;
    }

    .share-btn {
        width: 44px;
        height: 44px;
    }
}
