.share-section {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0 18px;
    font-size: 14px;
}

.share-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff7a00;
}

/* Base button style */
.share-link {
    background: transparent;
    border: 1px solid rgba(255,122,0,0.35);
    color: #ff7a00;
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
}

/* Hover effect */
.share-link:hover {
    background: #ff7a00;
    color: #111;
}

/* Platform accents (subtle) */
.share-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.share-link.twitter:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.share-link.copy:hover {
    background: #444;
    border-color: #444;
    color: #fff;
}

/* Mobile wrap */
@media (max-width: 600px) {
    .share-section {
        flex-wrap: wrap;
        gap: 10px;
    }
}
