/* ═══════════════════════════════════════════════════════════════════
   pathways-v6 — Help modal styles
   Scoped to .pv5-dialog-help and .pv5-help-* classes.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Dialog size & scroll ────────────────────────────────────────────── */
.pv5-dialog-help {
    min-width: 560px;
    max-width: 740px;
    width: 90vw;
    max-height: 88vh;
    overflow-y: auto;
    padding-bottom: 20px;
}

/* ── Help container ──────────────────────────────────────────────────── */
.pv5-help-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Intro paragraph ─────────────────────────────────────────────────── */
.pv5-help-intro {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.65;
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin: 0 0 16px 0;
}

/* ── Section card ────────────────────────────────────────────────────── */
.pv5-help-section {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.pv5-help-section:last-child {
    margin-bottom: 0;
}
.pv5-help-section:hover {
    border-color: #93c5fd;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

/* ── Question row ────────────────────────────────────────────────────── */
.pv5-help-q {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

/* ── Icon circle ─────────────────────────────────────────────────────── */
.pv5-help-q-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eff6ff;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}
.pv5-help-q-icon--elective {
    background: #fef9c3;
    color: #b45309;
}
.pv5-help-q-icon--optional {
    background: #f0fdf4;
    color: #16a34a;
}
.pv5-help-q-icon--final {
    background: #fef2f2;
    color: #dc2626;
}
.pv5-help-q-icon--paths {
    background: #f5f3ff;
    color: #7c3aed;
}

/* ── Answer text ─────────────────────────────────────────────────────── */
.pv5-help-a {
    font-size: 12.5px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 0 40px;
}

/* ── Tip pill ────────────────────────────────────────────────────────── */
.pv5-help-tip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11.5px;
    color: #166534;
    margin-top: 8px;
    margin-left: 40px;
}
.pv5-help-tip .fa {
    flex-shrink: 0;
}
