.social-share-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-share-buttons .social-btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.social-Facebook { background: #3b5998; }
.social-Twitter { background: #1da1f2; }
.social-Pinterest { background: #bd081c; }
.social-Reddit { background: #ff4500; }
.social-LinkedIn { background: #0077b5; }
.social-Email { background: #555; }

.social-share-buttons .social-btn:hover {
    opacity: 0.8;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .social-share-buttons {
        justify-content: center;
    }

    .social-share-buttons .social-btn {
        font-size: 16px;
        padding: 8px 14px;
    }
}
