/* layout/share/share.css */
.article-share-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin: 25px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    flex-wrap: wrap;
}

.article-share-box .share-label {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-share-box .share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.article-share-box .share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
}

.article-share-box .share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ألوان منصات التواصل الاجتماعي و زر النسخ */
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000000; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #229ed9; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.reddit { background: #ff4500; }
.share-btn.pinterest { background: #e60023; }
.share-btn.copylink { background: #64748b; }

@media (max-width: 576px) {
    .article-share-box {
        flex-direction: column;
        align-items: flex-start;
    }
}