/* ============================================================
   Caregiver Burnout Check-In — page-specific styles
   Builds on top of ../assessment/assessment.css (shared intro/
   question/results shell) and ../assets/site.css (tokens).
   ============================================================ */

/* Results heading is dynamic text only — no <br>/<em> split like
   the Journey Assessment, so give it the same treatment inline. */
#results-title {
  font-family: var(--font-display);
  color: var(--navy-deep);
}

/* Guidance card under "What this might mean" */
.burnout-guidance {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.burnout-guidance p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}

/* Crisis / 988 note — shown only for High and Severe bands */
.crisis-note {
  background: #FDF3F2;
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.crisis-note[hidden] { display: none; }
.crisis-note p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
.crisis-note strong { color: var(--red); }

@media (max-width: 640px) {
  .burnout-guidance { padding: 20px; }
  .crisis-note { padding: 16px 18px; }
}
