/* Social share strip on blog posts (populated by js/blog-share.js) */

.article-share {
    margin: 0 0 1.75rem 0;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md, 0.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-card, rgba(18, 18, 30, 0.55));
    max-width: 100%;
    box-sizing: border-box;
}

.article-share__label {
    margin: 0 0 0.35rem 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-medium, #a8a8b8);
}

.article-share__note {
    margin: 0 0 0.9rem 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted, #9090a0);
}

.article-share__tags {
    color: var(--primary-light, #7ec8ff);
    font-weight: 600;
    white-space: nowrap;
}

.article-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.article-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-md, 0.5rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.18), rgba(106, 90, 205, 0.14));
    color: var(--text-brightest, #f4f4f7);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.article-share__btn:hover,
.article-share__btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    border-color: rgba(33, 150, 243, 0.35);
    outline: none;
}

.article-share__btn img {
    display: block;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (prefers-reduced-motion: reduce) {
    .article-share__btn {
        transition: none;
    }
}
