/* ── Help Tooltips Component ── */
/* Stealth Mode: Standard HTML title tooltips for curated complex features. */

/* Hover Signal — subtle underline on hover instead of cursor-only */
.has-help {
    cursor: help !important;
    transition: background-color 0.2s ease;
}

.has-help:hover {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--text-dim);
    text-underline-offset: 3px;
}

.has-help.help-active {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: 4px;
}

/* Mobile */
@media (max-width: 768px) {
    /* On touch devices, dotted underline isn't useful */
    .has-help:hover {
        text-decoration: none;
    }
}
