/*
 * Crisis-support notice — KAN-135 quick win (2026-05-07)
 *
 * Always-visible notice on help-seeking surfaces (booking, vent wall,
 * listener premium, private chat). Distinct from the keyword-triggered
 * .crisis-banner used inside the MindBot conversation.
 *
 * Color palette (warm orange) deliberately differs from the platform's
 * teal/navy primary so the notice reads as a safety boundary rather
 * than a marketing card. tel:1323 link is one-tap on mobile.
 */

.crisis-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #ea580c;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 16px auto;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.55;
  color: #7c2d12;
  font-family: inherit;
}

.crisis-notice__icon {
  font-size: 22px;
  line-height: 1.2;
  flex-shrink: 0;
}

.crisis-notice__body {
  flex: 1;
}

.crisis-notice__hotline {
  color: #c2410c;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.crisis-notice__hotline:hover {
  color: #9a3412;
}

@media (max-width: 520px) {
  .crisis-notice {
    font-size: 13px;
    padding: 10px 14px;
    margin: 12px;
  }
}
