/* ==========================================================================
   css/panels.css — the Full-data tiles rendered by js/panels.js
   Owner: panels (CONTRACTS.md §2). Roots: .hw-fd-* only.
   --------------------------------------------------------------------------
   Colour comes from css/app.css tokens only; both themes resolve through
   them. The tile-system tokens (--tile, --tile-2, --r-inner, --fs-meta …)
   are the density-aware set from CONTRACTS §6; each use carries a fallback
   to a token that already exists, so a tile never renders unstyled while
   the shell layer is still landing.

   Severity is never colour alone here: every hue on a value or a row is
   paired with a glyph in the markup (◆ ▲ ● ○ ◌) and sr-only words.
   ========================================================================== */

/* ---- shared within this module ------------------------------------------ */

.hw-fd-foot {
  margin: 10px 0 0;
  font-size: var(--fs-micro, 0.6875rem);
  line-height: 1.45;
  color: var(--text-faint);
}
.hw-fd-foot .hw-link { font-size: inherit; }

/* Heavy tables scroll inside their tile on a phone — never the page. */
.hw-fd-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

/* The design's data tables: mono, tabular, quiet header, hairline rows.
   :is() lifts these to (0,2,x) so they beat app.css's generic .hw-table. */
:is(.hw-fd-reach, .hw-fd-fcst, .hw-fd-islands) .hw-table {
  font-size: var(--fs-mono, 0.71875rem);
}
:is(.hw-fd-reach, .hw-fd-fcst, .hw-fd-islands) .hw-table :is(th, td) {
  padding: 5px 6px;
  border-bottom-color: var(--border);
}
:is(.hw-fd-reach, .hw-fd-fcst, .hw-fd-islands) .hw-table :is(th, td):first-child { padding-left: 0; }
:is(.hw-fd-reach, .hw-fd-fcst, .hw-fd-islands) .hw-table :is(th, td):last-child { padding-right: 0; }
:is(.hw-fd-reach, .hw-fd-fcst, .hw-fd-islands) .hw-table thead th {
  position: static;
  background: transparent;
  color: var(--text-faint);
  font-size: var(--fs-micro, 0.625rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  padding-top: 0;
}

.hw-fd-error { outline: 1px dashed var(--border-strong); outline-offset: -1px; }
.hw-fd-error__msg {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-mono, 0.6875rem);
  color: var(--err);
  word-break: break-word;
}

/* ---- Saffir-Simpson square ------------------------------------------------
   --cat-* is a fill ramp painted under dark --cat-ink in BOTH themes; the
   number inside carries the category. */

.hw-fd-cat {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-inner, 12px);
  background: var(--cat-ptc);
  color: var(--cat-ink);
  font-family: var(--font-display, var(--font-ui));
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hw-fd-cat--1 { background: var(--cat-1); }
.hw-fd-cat--2 { background: var(--cat-2); }
.hw-fd-cat--3 { background: var(--cat-3); }
.hw-fd-cat--4 { background: var(--cat-4); }
.hw-fd-cat--5 { background: var(--cat-5); }
.hw-fd-cat--ts { background: var(--cat-ts); font-size: 1.125rem; }
.hw-fd-cat--td { background: var(--cat-td); font-size: 1.125rem; }
.hw-fd-cat--ptc { background: var(--cat-ptc); font-size: 1rem; }
.hw-fd-cat.hw-fd-cat--sm {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 0.6875rem;
}
.hw-fd-cat--sm:is(.hw-fd-cat--ts, .hw-fd-cat--td, .hw-fd-cat--ptc) { font-size: 0.5625rem; }

/* ---- storm chips (tile head) --------------------------------------------- */

.hw-fd-storms {
  display: flex;
  gap: 4px;
  min-width: 0;
  margin-left: auto;
  padding: 3px;
  border-radius: var(--r-pill, 999px);
  background: var(--tile-2, var(--surface-2));
  overflow-x: auto;
  scrollbar-width: none;
}
.hw-fd-storms::-webkit-scrollbar { display: none; }
.hw-fd-storms__chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 3px 10px 3px 4px;
  border: 0;
  border-radius: var(--r-pill, 999px);
  background: transparent;
  color: var(--text-faint);
  font: inherit;
  font-size: var(--fs-meta, 0.75rem);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.hw-fd-storms__chip:hover { color: var(--text); }
/* A long storm name must not push the chip strip past the tile head. */
.hw-fd-storms__name { max-width: 9rem; overflow: hidden; text-overflow: ellipsis; }
.hw-fd-storms__chip--on {
  background: var(--tile, var(--surface));
  color: var(--text);
  box-shadow: var(--shadow-1);
}
/* Item 6: chip 0's "closest" tag — it names whichever storm currently leads
   the ranking, not a fixed choice, and used to say so only in a title
   attribute. */
.hw-fd-storms__badge {
  flex: none;
  padding: 1px 6px;
  border-radius: var(--r-pill, 999px);
  background: var(--tile-track, var(--surface-2));
  color: var(--text-faint);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hw-fd-storms__chip--on .hw-fd-storms__badge { color: var(--text-dim); }

/* ---- Storm vitals (§4.10) -------------------------------------------------- */

.hw-fd-vitals .hw-fd-vitals__id {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.hw-fd-vitals__ident { min-width: 0; }
.hw-fd-vitals__name {
  margin: 0;
  font-family: var(--font-display, var(--font-ui));
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hw-fd-vitals__code {
  font-family: var(--font-mono);
  font-size: var(--fs-mono, 0.71875rem);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-faint);
  white-space: nowrap;
}
.hw-fd-vitals__class {
  margin: 3px 0 0;
  font-size: var(--fs-meta, 0.75rem);
  line-height: 1.4;
  color: var(--text-dim);
}
.hw-fd-vitals__class strong { color: var(--text); font-weight: 700; }
/* An advisory issue time reads as prose in this line, not as a mono stamp. */
.hw-fd-vitals__class .hw-age { font-family: inherit; font-size: inherit; color: inherit; white-space: normal; }

.hw-fd-vitals__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.hw-fd-vitals__well { min-width: 0; display: flex; flex-direction: column; }
.hw-fd-vitals__label {
  margin: 0 0 4px;
  font-size: var(--fs-meta, 0.75rem);
  font-weight: 700;
  color: var(--text-faint);
}
.hw-fd-vitals__value { margin: 0; line-height: 1; color: var(--text); }
.hw-fd-vitals__pos {
  font-family: var(--font-display, var(--font-ui));
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hw-fd-vitals__mono {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-mono, 0.71875rem);
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
  color: var(--text-faint);
}
.hw-fd-vitals__src { margin-top: 5px; }
.hw-fd-vitals__fix { margin-top: 10px; }

/* ---- calm state ------------------------------------------------------------ */

.hw-fd-calm .hw-fd-calm__text {
  margin: 0;
  font-size: var(--fs-body, 0.875rem);
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 62ch;
}
.hw-fd-calm__warn { margin-top: 10px; }
.hw-fd-calm .hw-fd-calm__elsewhere { margin-top: 10px; }

/* The calm tile's storm chips live in the body, under the sentence that
   introduces them, and wrap: in the head they became a scroller with a hidden
   scrollbar, and at 390 px two of four storms were simply not there. */
.hw-fd-storms--wrap {
  flex-wrap: wrap;
  margin: 8px 0 0;
  overflow: visible;
  width: fit-content;
  max-width: 100%;
  border-radius: 18px;
}
.hw-fd-calm__links { margin: 10px 0 0; }
.hw-fd-calm__links .hw-link { font-size: var(--fs-meta, 0.75rem); }

/* ---- Wind reach by quadrant (§4.10) ---------------------------------------- */

.hw-fd-reach .hw-fd-reach__layout {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.hw-fd-reach__dia { width: 132px; height: 132px; }
.hw-fd-reach__svg { display: block; width: 100%; height: 100%; overflow: visible; }
.hw-fd-reach__ring { fill: var(--tile-2, var(--surface-2)); stroke: var(--border); stroke-width: 1; }
/* The three thresholds at the spec's 35 / 50 / 75 % alpha over the well. */
.hw-fd-reach__wedge--34 { fill: color-mix(in srgb, var(--sev-minor) 35%, transparent); }
.hw-fd-reach__wedge--50 { fill: color-mix(in srgb, var(--sev-moderate) 50%, transparent); }
.hw-fd-reach__wedge--64 { fill: color-mix(in srgb, var(--sev-extreme) 75%, transparent); }
.hw-fd-reach__wedge { stroke: var(--tile, var(--surface)); stroke-width: 0.5; }
.hw-fd-reach__eye { fill: var(--text); }
.hw-fd-reach__toward {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 3 3;
  stroke-linecap: round;
}
.hw-fd-reach__q { fill: var(--text-faint); font-family: var(--font-ui); font-size: 9px; font-weight: 800; }

.hw-fd-reach__table { width: 100%; }
.hw-fd-reach .hw-fd-reach__th { white-space: nowrap; font-weight: 700; }
.hw-fd-reach .hw-fd-reach__th--64 { color: var(--sev-extreme); }
.hw-fd-reach .hw-fd-reach__th--50 { color: var(--sev-moderate); }
.hw-fd-reach .hw-fd-reach__th--34 { color: var(--sev-minor); }
/* The quadrant facing the reader's island — weight and a wash, and the
   caption names it for screen readers. */
.hw-fd-reach .hw-fd-reach__facing {
  color: var(--text);
  font-weight: 700;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.hw-fd-reach__sentence {
  margin: 10px 0 0;
  font-size: var(--fs-meta, 0.75rem);
  line-height: 1.45;
  color: var(--text-dim);
}
.hw-fd-reach__sentence strong { color: var(--text); }
.hw-fd-reach__src { margin: 2px 0 0; font-size: var(--fs-micro, 0.6875rem); }

@media (max-width: 359.98px) {
  .hw-fd-reach .hw-fd-reach__layout { grid-template-columns: minmax(0, 1fr); justify-items: center; }
}

/* ---- Official forecast (§4.10) --------------------------------------------- */

.hw-fd-fcst__table { width: 100%; }
.hw-fd-fcst .hw-fd-fcst__table :is(th, td) { text-align: left; }
.hw-fd-fcst .hw-fd-fcst__table :is(th, td):last-child { text-align: right; }
.hw-fd-fcst .hw-fd-fcst__table tbody th { color: var(--text); font-weight: 700; }
.hw-fd-fcst__bar {
  display: inline-block;
  width: calc(var(--w, 0) * 4.5rem);
  height: 8px;
  margin-right: 6px;
  border-radius: 3px;
  background: var(--c, var(--text-faint));
  vertical-align: middle;
}
.hw-fd-fcst__v { display: inline-block; min-width: 2ch; }
.hw-fd-fcst__wind { white-space: nowrap; }
.hw-fd-fcst .hw-fd-fcst__row--closest > * {
  background: color-mix(in srgb, var(--sev-severe) 12%, transparent);
}
.hw-fd-fcst__mark { color: var(--sev-severe); font-weight: 800; }
.hw-fd-fcst__foot {
  margin: 8px 0 0;
  font-size: var(--fs-micro, 0.6875rem);
  line-height: 1.45;
  color: var(--text-faint);
}
.hw-fd-fcst__src { margin-top: 4px; }

/* ---- Alerts (§4.11) -------------------------------------------------------- */

.hw-fd-alerts__list { display: flex; flex-direction: column; gap: 4px; }
.hw-fd-alerts .hw-fd-alerts__item {
  border-radius: 10px;
  background: var(--tile-2, var(--surface-2));
}
/* Warnings only get the level wash (§4.11); watches sit on the plain well,
   statements on nothing. */
.hw-fd-alerts .hw-fd-alerts__item--tint.hw-fd-alerts__item--extreme {
  background: color-mix(in srgb, var(--sev-extreme) 10%, var(--tile, var(--surface)));
}
.hw-fd-alerts .hw-fd-alerts__item--tint.hw-fd-alerts__item--severe {
  background: color-mix(in srgb, var(--sev-severe) 10%, var(--tile, var(--surface)));
}
.hw-fd-alerts .hw-fd-alerts__item--none { background: transparent; }
.hw-fd-alerts__item--moderate { border-radius: 10px; }

.hw-fd-alerts__sum {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 10px;
  list-style: none;
  font-size: var(--fs-body, 0.8125rem);
  line-height: 1.35;
  cursor: pointer;
}
.hw-fd-alerts__sum::-webkit-details-marker { display: none; }
.hw-fd-alerts__sum .hw-glyph { flex: none; width: 1em; text-align: center; font-weight: 800; }
.hw-fd-alerts__name { flex: 1; min-width: 0; font-weight: 700; color: var(--text); }
.hw-fd-alerts__where { font-weight: 600; color: var(--text-faint); }
/* The reader's island inside a product's island list: weight plus an
   underline, so it is findable without relying on hue. */
.hw-fd-alerts__here {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline 2px var(--accent);
  text-underline-offset: 3px;
}
.hw-fd-alerts__exp {
  flex: none;
  font-family: var(--font-mono);
  font-size: var(--fs-mono, 0.65625rem);
  color: var(--text-faint);
  white-space: nowrap;
}
.hw-fd-alerts__read { flex: none; font-size: var(--fs-meta, 0.6875rem); font-weight: 700; color: var(--accent); }
/* --text-faint on a severity wash sits at the 4.5:1 edge; lift the secondary
   text on warning rows to --text-dim rather than gamble on it. */
.hw-fd-alerts__item--tint :is(.hw-fd-alerts__where, .hw-fd-alerts__exp) { color: var(--text-dim); }

.hw-fd-alerts__body {
  padding: 2px 12px 12px calc(12px + 1em + 10px);
  font-size: var(--fs-meta, 0.75rem);
  line-height: 1.5;
  color: var(--text-dim);
}
.hw-fd-alerts__headline { margin: 0 0 6px; color: var(--text); font-weight: 600; }
.hw-fd-alerts__meta {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: var(--fs-mono, 0.6875rem);
  color: var(--text-dim);
}
.hw-fd-alerts__h {
  margin: 10px 0 2px;
  font-size: var(--fs-micro, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hw-fd-alerts__zones, .hw-fd-alerts__text { margin: 0; }
.hw-fd-alerts__link { margin: 0; text-align: center; font-size: var(--fs-meta, 0.75rem); color: var(--text-dim); }
.hw-fd-alerts__pre {
  margin: 4px 0 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--tile, var(--surface));
  font-family: var(--font-mono);
  font-size: var(--fs-mono, 0.6875rem);
  line-height: 1.5;
  color: var(--text-dim);
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 479.98px) {
  .hw-fd-alerts__sum { flex-wrap: wrap; row-gap: 2px; }
  .hw-fd-alerts__exp, .hw-fd-alerts__read { margin-left: calc(1em + 10px); }
  .hw-fd-alerts__body { padding-left: 12px; }
}

/* ---- Islands now (§4.11) --------------------------------------------------- */

.hw-fd-islands__table { width: 100%; }
.hw-fd-islands .hw-fd-islands__table tbody th { white-space: nowrap; font-weight: 700; color: var(--text); }
.hw-fd-islands .hw-fd-islands__row--here > * {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}
/* A shape as well as a wash marks the selected row. */
.hw-fd-islands .hw-fd-islands__row--here > th { box-shadow: inset 3px 0 0 var(--accent); padding-left: 8px; }
.hw-fd-islands .hw-fd-islands__gust { font-weight: 700; }
.hw-fd-islands .hw-fd-islands__gust--severe { color: var(--sev-severe); }
.hw-fd-islands .hw-fd-islands__gust--extreme { color: var(--sev-extreme); font-weight: 800; }

/* ---- Six agencies (§4.11) -------------------------------------------------- */

/* One grid, rows placed explicitly, so the threshold line can span every
   row of the bar column as one continuous mark while DOM order stays
   label → bar → value per agency for screen readers. */
.hw-fd-agencies .hw-fd-agencies__chart {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) 2.25rem;
  grid-template-rows: repeat(var(--rows, 6), auto);
  column-gap: 10px;
  row-gap: 5px;
  align-items: center;
  font-size: var(--fs-micro, 0.6875rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hw-fd-agencies__label { grid-column: 1; color: var(--c, var(--text)); white-space: nowrap; }
.hw-fd-agencies__track {
  grid-column: 2;
  height: 10px;
  border-radius: var(--r-pill, 999px);
  background: var(--tile-2, var(--surface-2));
  overflow: hidden;
}
.hw-fd-agencies__bar {
  display: block;
  width: var(--w, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--c, var(--text-faint));
}
.hw-fd-agencies__val { grid-column: 3; text-align: right; color: var(--text); }
.hw-fd-agencies__thr {
  grid-column: 2;
  align-self: stretch;
  position: relative;
  margin: -4px 0;
  pointer-events: none;
}
.hw-fd-agencies__thr::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--thr, 50%);
  border-left: 2px dashed var(--sev-severe);
}
.hw-fd-agencies__sentence {
  margin: 10px 0 0;
  font-size: var(--fs-meta, 0.75rem);
  line-height: 1.45;
  color: var(--text-dim);
}
.hw-fd-agencies__sentence strong { color: var(--text); }
.hw-fd-agencies__thrtext { color: var(--sev-severe); font-weight: 700; }

/* ---- Sea & tides (§4.11) --------------------------------------------------- */

/* This tile shares a row with GOES-18 at 1440, so it is ~180 px wide. A
   key | value grid with prose in the value wrapped one word per line
   (measured). Key left, number right, and the qualifier on its own line
   under the number — the design's four mono rows, plus the provenance. */
.hw-fd-tides .hw-fd-tides__kv .hw-kv__row { grid-template-columns: auto minmax(0, 1fr); gap: 8px; }
.hw-fd-tides .hw-fd-tides__kv .hw-kv__v { text-align: right; }
.hw-fd-tides__v { font-weight: 700; color: var(--text); white-space: nowrap; }
.hw-fd-tides__v--hi { color: var(--sev-severe); }
.hw-fd-tides__sub { display: block; margin-top: 1px; font-size: var(--fs-micro, 0.6875rem); color: var(--text-faint); }
.hw-fd-tides__sub .hw-age { white-space: normal; }
/* Beside GOES-18 the tile is ~180 px and even "key | value" leaves the value
   ~90 px (measured: "1013.0 / mb" broke, "observed 47m" clipped). Below
   17rem of its own width, each row stacks key over value instead. */
.hw-fd-tides .hw-fd-tides__kv { container-type: inline-size; }
@container (max-width: 17rem) {
  .hw-fd-tides .hw-fd-tides__kv .hw-kv__row { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .hw-fd-tides .hw-fd-tides__kv .hw-kv__v { text-align: left; }
}

/* ---- Sources (§4.11) ------------------------------------------------------- */

.hw-fd-sources .hw-fd-sources__trust {
  margin: 0 0 8px;
  font-size: var(--fs-meta, 0.75rem);
  line-height: 1.45;
  color: var(--text-dim);
}
.hw-fd-sources__strip { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.hw-fd-sources__list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.hw-fd-sources__item { border-bottom: 1px solid var(--border); }
.hw-fd-sources__sum {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  min-height: 32px;
  padding: 6px 0;
  list-style: none;
  font-size: var(--fs-meta, 0.75rem);
  cursor: pointer;
}
.hw-fd-sources__sum::-webkit-details-marker { display: none; }
.hw-fd-sources__label { flex: 1; min-width: 9rem; font-weight: 600; color: var(--text); }
.hw-fd-sources__age { flex: none; }
.hw-fd-sources__body { padding: 0 0 10px; }
.hw-fd-sources__err {
  margin: 6px 0 0;
  padding: 6px 8px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--err) 8%, transparent);
  font-family: var(--font-mono);
  font-size: var(--fs-mono, 0.6875rem);
  color: var(--err);
  white-space: pre-wrap;
  word-break: break-word;
}

/* ---- disclosure affordance (alerts + sources rows) ------------------------- */

:is(.hw-fd-alerts__sum, .hw-fd-sources__sum)::after {
  content: "⌄" / "";
  flex: none;
  color: var(--text-faint);
  font-size: 0.8em;
  line-height: 1;
  transition: transform var(--dur-fast, 120ms) var(--ease-out, ease-out);
}
:is(.hw-fd-alerts__item, .hw-fd-sources__item)[open] > :is(.hw-fd-alerts__sum, .hw-fd-sources__sum)::after {
  transform: rotate(180deg);
}
html[data-motion="off"] :is(.hw-fd-alerts__sum, .hw-fd-sources__sum)::after { transition: none; }
@media (prefers-reduced-motion: reduce) {
  :is(.hw-fd-alerts__sum, .hw-fd-sources__sum)::after { transition: none; }
}

/* ---- Hurricane hunters (§4.11) --------------------------------------------- */

.hw-fd-hunters .hw-fd-hunters__link {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  margin-left: auto;
  padding: 0 8px;
  border-radius: var(--r-pill, 999px);
  font-size: var(--fs-meta, 0.75rem);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.hw-fd-hunters__link:hover { text-decoration: underline; }
.hw-fd-hunters__text {
  margin: 0;
  font-size: var(--fs-meta, 0.75rem);
  line-height: 1.45;
  color: var(--text-dim);
}

/* ---- touch: 44 px targets (CONTRACTS §8) ----------------------------------- */

@media (pointer: coarse) {
  .hw-fd-storms__chip,
  .hw-fd-alerts__sum,
  .hw-fd-sources__sum,
  .hw-fd-hunters .hw-fd-hunters__link { min-height: 44px; }
  /* Stand-alone links (the per-source endpoint list, the HLS bulletin link,
     the calm tile's NHC link) are controls, not words in a sentence, so they
     get the full touch target. Links inside running text keep their line
     height — WCAG 2.5.8 exempts those, and padding them would split the
     sentence. Desktop look is untouched: this is coarse-pointer only. */
  :is(.hw-fd-sources__body, .hw-fd-alerts__body, .hw-fd-alerts__link, .hw-fd-calm__links, .hw-fd-reach__src) .hw-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
