/* ═══════════════════════════════════════════════════════════════
   MINDBUBBLE — food-help.css
   Styles for the "Food Help Near You" signposting hub. Uses the
   existing --mb-* tokens. STATUS: stage 1 — not linked in yet.
   ═══════════════════════════════════════════════════════════════ */

.fh-wrap { padding-bottom: 40px; }

/* urgent help banner */
.fh-urgent {
  background: var(--mb-coral-lt, #ffe9e4);
  border: 1px solid var(--mb-coral, #e8806f);
  border-radius: var(--mb-radius, 16px);
  padding: 14px 16px; margin: 4px 0 18px;
}
.fh-urgent-title { font-family: var(--mb-font-display, inherit); font-weight: 700; color: var(--mb-ink, #2a2740); margin-bottom: 2px; }
.fh-urgent-text { margin: 0; font-size: 14px; color: var(--mb-text, #4a4760); line-height: 1.5; }
.fh-urgent-text a { color: var(--mb-coral, #d8604d); font-weight: 700; text-decoration: none; }
.fh-urgent-text a:hover { text-decoration: underline; }

/* postcode box */
.fh-pc { margin-bottom: 22px; }
.fh-pc-label { display: block; font-size: 13px; font-weight: 700; color: var(--mb-muted, #8a86a0); margin-bottom: 6px; }
.fh-pc-row { display: flex; gap: 8px; }
.fh-pc-input {
  flex: 1; box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--mb-border, #e4e0ec);
  border-radius: var(--mb-radius, 14px);
  background: var(--mb-surface, #fff);
  color: var(--mb-text, #333);
  font-size: 15px; font-family: inherit;
  text-transform: uppercase;
}
.fh-pc-input:focus { outline: 2px solid var(--mb-teal, #0a7c72); outline-offset: 1px; border-color: transparent; }
.fh-pc-hint { margin: 8px 0 0; font-size: 12.5px; color: var(--mb-muted, #8a86a0); line-height: 1.5; }
.fh-pc-hint-on { color: var(--mb-teal, #0a7c72); font-weight: 600; }

.fh-h3 {
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--mb-muted, #8a86a0); margin: 0 0 12px;
}

/* finder cards */
.fh-finders { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.fh-finder {
  display: flex; gap: 12px;
  background: var(--mb-surface, #fff);
  border: 1px solid var(--mb-border, #e4e0ec);
  border-radius: var(--mb-radius, 16px);
  padding: 14px;
}
.fh-finder-icon {
  flex: 0 0 auto; width: 44px; height: 44px;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: var(--mb-teal-lt, #e0f2f0);
}
.fh-finder-body { flex: 1; min-width: 0; }
.fh-finder-name { font-weight: 700; color: var(--mb-ink, #2a2740); font-size: 15px; }
.fh-finder-tag { font-size: 12px; color: var(--mb-teal, #0a7c72); font-weight: 600; margin: 1px 0 6px; }
.fh-finder-desc { font-size: 13.5px; color: var(--mb-text, #4a4760); line-height: 1.45; margin-bottom: 11px; }
.fh-finder-btn {
  border: none; cursor: pointer;
  background: var(--mb-teal, #0a7c72); color: #fff;
  border-radius: 10px; padding: 9px 16px;
  font-size: 13.5px; font-weight: 700; font-family: inherit;
  transition: filter .12s;
}
.fh-finder-btn:hover { filter: brightness(.95); }

/* helplines */
.fh-lines { display: flex; flex-direction: column; gap: 10px; }
.fh-line {
  background: var(--mb-subtle, #f1eff7);
  border-radius: var(--mb-radius, 14px);
  padding: 13px 14px;
}
.fh-line-name { font-weight: 700; color: var(--mb-ink, #2a2740); font-size: 14.5px; margin-bottom: 3px; }
.fh-line-note { font-size: 13px; color: var(--mb-text, #4a4760); line-height: 1.45; margin-bottom: 9px; }
.fh-line-act {
  display: inline-block; text-decoration: none;
  font-size: 13px; font-weight: 600;
  color: var(--mb-teal, #0a7c72); background: var(--mb-teal-lt, #e0f2f0);
  padding: 7px 11px; border-radius: 9px;
}
.fh-line-act:hover { filter: brightness(.95); }

.fh-foot { margin-top: 20px; font-size: 12px; color: var(--mb-muted, #8a86a0); line-height: 1.5; }

[data-theme="dark"] .fh-pc-input,
[data-theme="dark"] .fh-finder { background: var(--mb-surface, #1e1c2a); }
