/* SEO-focused UI helpers */
.share-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.share-links .share-label {
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6b7280;
}

.share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: .82rem;
    transition: all .15s ease;
}

.share-links a:hover {
    border-color: #111827;
    background: #111827;
    color: #f9fafb;
}
