/* ── Share buttons — shared by /learn/ and /help-center/ detail pages ─── */

.share-section {
    margin-top: 32px;
    border-top: 1px solid rgba(93,99,113,0.17);
    padding-top: 24px;
}
.share-section h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #040C20;
}
.share-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    line-height: 1.4;
}
.share-btn:hover { opacity: 0.82; color: #fff; text-decoration: none; }
.share-facebook  { background: #1877F2; }
.share-x         { background: #000; }
.share-linkedin  { background: #0A66C2; }
.share-reddit    { background: #FF4500; }
.share-whatsapp  { background: #25D366; }
.share-telegram  { background: #0088cc; }
.share-pinterest { background: #E60023; }
.share-email     { background: #6c757d; }
.share-copy      { background: #6c757d; }

body.dark-mode .share-section { border-top-color: rgba(255,255,255,0.08); }
body.dark-mode .share-section h5 { color: #dfdfdf; }
