/* Shared social profile & share icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}

.social-icons__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: #334155;
    transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}
.social-icons__link:hover {
    transform: translateY(-1px);
    opacity: .95;
    color: #fff;
}
.social-icons__svg { display: block; width: 18px; height: 18px; }

.social-icons__link--facebook { background: #1877f2; }
.social-icons__link--x { background: #0f1419; }
.social-icons__link--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icons__link--youtube { background: #ff0000; }
.social-icons__link--linkedin { background: #0a66c2; }
.social-icons__link--telegram { background: #229ed9; }
.social-icons__link--whatsapp { background: #25d366; }
.social-icons__link--link { background: #64748b; }

.article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem 1rem;
    margin-top: 1rem;
    padding: .85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: .65rem;
    background: #f8fafc;
}
.article-share__label {
    font-size: .82rem;
    font-weight: 700;
    color: #334155;
    margin-right: .25rem;
}
.theme-infinity .article-share {
    background: #141418;
    border-color: #2a2a32;
}
.theme-infinity .article-share__label { color: #e4e4e7; }
.theme-newsportal .article-share {
    background: #faf5ff;
    border-color: #ede9fe;
}
.theme-newsportal .article-share__label { color: #3c096c; }
.theme-blueprint .article-share__label { color: #1e3a8a; }

/* Theme-specific profile icon sizing */
.bp-social.social-icons .social-icons__link,
.np-topbar__social.social-icons .social-icons__link,
.np-footer__social.social-icons .social-icons__link {
    width: 28px;
    height: 28px;
    background: transparent;
    color: inherit;
}
.bp-social.social-icons .social-icons__link--facebook,
.bp-social.social-icons .social-icons__link--x,
.bp-social.social-icons .social-icons__link--instagram,
.bp-social.social-icons .social-icons__link--youtube,
.bp-social.social-icons .social-icons__link--linkedin,
.bp-social.social-icons .social-icons__link--telegram {
    background: transparent;
    color: #2563eb;
}
.bp-footer__social.social-icons .social-icons__link {
    color: #93c5fd;
    background: transparent;
}
.np-topbar__social.social-icons .social-icons__link {
    color: #f9a8d4;
    background: transparent;
}
.np-footer__social.social-icons .social-icons__link {
    color: #f9a8d4;
    background: transparent;
}
.inf-drawer__social.social-icons .social-icons__link,
.inf-side-social.social-icons .social-icons__link {
    width: 34px;
    height: 34px;
}
.inf-side-social.social-icons .social-icons__link {
    border: 1px solid #2a2a32;
    background: #141418;
}

.np-social-grid .social-icons__link,
.np-social-grid .np-social-btn {
    width: auto;
    height: auto;
    min-height: 52px;
    border-radius: 8px;
    flex-direction: column;
    gap: .15rem;
    padding: .65rem .75rem;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
}
.np-social-grid .social-icons__svg { width: 16px; height: 16px; margin-bottom: .15rem; }
.np-social-grid .social-profile-grid__label { font-size: .78rem; font-weight: 700; }
.np-social-grid .social-icons__link--facebook,
.np-social-grid .np-social-btn.social-icons__link--facebook { background: #1877f2; }
.np-social-grid .social-icons__link--x,
.np-social-grid .np-social-btn.social-icons__link--x { background: #0f1419; }
.np-social-grid .social-icons__link--instagram,
.np-social-grid .np-social-btn.social-icons__link--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.np-social-grid .social-icons__link--youtube,
.np-social-grid .np-social-btn.social-icons__link--youtube { background: #ff0000; }
.np-social-grid .social-icons__link--linkedin,
.np-social-grid .np-social-btn.social-icons__link--linkedin { background: #0a66c2; }
.np-social-grid .social-icons__link--telegram,
.np-social-grid .np-social-btn.social-icons__link--telegram { background: #229ed9; }
