/* ============================================
   SOCIAL SIDEBAR — fixed floating circles
   ============================================ */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.social-sidebar--visible {
    opacity: 1;
    pointer-events: auto;
}

.social-sidebar__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3C78B4;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.social-sidebar__circle svg {
    width: 18px;
    height: 18px;
    display: block;
}

.social-sidebar__circle:hover {
    background: #1D3557;
    transform: scale(1.1);
}

/* ============================================
   ARTICLE SHARE BUTTONS
   ============================================ */
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid #E0E8F0;
    margin-top: 32px;
}

.article-share__label {
    font-size: 13px;
    font-weight: 700;
    color: #1D3557;
    margin-right: 12px;
    flex-shrink: 0;
}

.article-share__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3C78B4;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.article-share__circle svg {
    width: 18px;
    height: 18px;
    display: block;
}

.article-share__circle:hover {
    background: #1D3557;
    transform: scale(1.1);
}

/* ============================================
   RTL OVERRIDES
   ============================================ */
[dir="rtl"] .social-sidebar {
    left: auto;
    right: 0;
}

[dir="rtl"] .article-share__label {
    margin-right: 0;
    margin-left: 12px;
}

/* ============================================
   RESPONSIVE — hide sidebar on portrait mobile
   ============================================ */
@media (max-width: 1024px) and (orientation: portrait) {
    .social-sidebar {
        display: none;
    }
}
