/* =========================
   APPLE NEWS INSPIRED SHARING
   Compartir discreto, monocromo, editorial y poco invasivo
========================= */

.article-sidebar .share-card {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: none;
}

.article-sidebar .share-card .mini-label {
    display: none;
}

.article-sidebar .share-card h2 {
    margin: 0 0 11px;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .015em;
}

.article-sidebar .share-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: nowrap;
}

.article-sidebar .share-actions a {
    width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 4px;
    border: 1px solid var(--line);
    background: var(--paper-soft);
    box-shadow: none;
    color: transparent;
    font-size: 0;
    transition: background .16s ease, transform .16s ease, border-color .16s ease;
}

.article-sidebar .share-actions a::before {
    color: rgba(24, 33, 47, .72);
    opacity: .86;
}

.article-sidebar .share-actions a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .92);
    border-color: rgba(24, 33, 47, .13);
    box-shadow: none;
}

.article-sidebar .share-actions a:active {
    transform: scale(.96);
}

.article-sidebar .share-actions a[href*="whatsapp"]::before {
    width: 18px;
    height: 18px;
}

.article-sidebar .share-actions a[href*="facebook"]::before {
    font-size: 20px;
    transform: translateY(1px);
}

.article-sidebar .share-actions a[href*="twitter"]::before {
    font-size: 15px;
}

@media (max-width: 720px) {
    .article-sidebar .share-card {
        padding: 12px 13px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .article-sidebar .share-card h2 {
        margin: 0;
        white-space: nowrap;
    }

    .article-sidebar .share-actions {
        margin-left: auto;
    }

    .article-sidebar .share-actions a {
        width: 36px;
        height: 36px;
        min-height: 36px;
    }
}

@media (max-width: 380px) {
    .article-sidebar .share-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-sidebar .share-actions {
        margin-left: 0;
    }
}
