/* ==========================================================================
   Wodonga Wire — Have Your Say family layer
   Loads alongside foundation.css and uses only its tokens. The page is a
   routing layer: short link text, the receiving organisation beneath it,
   an external-link marker. One column; section rhythm and hairlines are the
   Foundation's. No cards, no grid of boxes, no status, no script.
   ========================================================================== */

/* ── opening ──────────────────────────────────────────────────────────── */
/* The page's illustration to the left of its introduction (publication.css
   .wf-withplate); on a phone the introduction runs round it. */
.hys-open { --plate-w: 280px; align-items: center; }
.hys-lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--fg-2);
}
/* The clarification: visible, one measure, quiet. Not a warning box. */
.hys-clarify {
  margin-top: var(--space-4);
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  border-left: 2px solid var(--border-soft);
  padding-left: var(--space-4);
}

/* ── intent chooser — two columns on desktop, one below 640px ─────────── */
.hys-jump {
  margin-top: clamp(20px, 2.6vw, 30px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2) var(--space-8);
}
.hys-jump a {
  display: block;
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}
.hys-jump a b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.25;
  color: var(--fg);
  transition: color var(--motion-fast) var(--ease-standard);
}
.hys-jump a span {
  display: block;
  margin-top: var(--space-1);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--muted);
}
.hys-jump a:hover b { color: var(--accent); }
.hys-jump a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
@media (max-width: 640px) { .hys-jump { grid-template-columns: 1fr; gap: 0; } }

/* ── action rows — a ruled list, not a card ───────────────────────────── */
.hys-rows {
  list-style: none;
  margin: clamp(16px, 2vw, 24px) 0 0;
  padding: 0;
  max-width: var(--measure-wide);
  border-top: 1px solid var(--border-soft);
}
.hys-row {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-soft);
}
.hys-act {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.4;
}
.hys-act a {
  font-weight: 600;
  color: var(--fg);
  text-decoration-color: var(--border-soft);
  transition: var(--transition-feedback);
}
.hys-act a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.hys-act a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
.hys-ext { color: var(--meta); font-size: 0.85em; }
.hys-act a:hover .hys-ext { color: inherit; }
/* ORGANISATION · official action — the one trust line under every action. */
.hys-org {
  margin: var(--space-1) 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hys-sep { color: var(--border-soft); }
.hys-note {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: var(--measure);
}

/* The three opportunity destinations sit side by side only where each
   column has room for a link, its organisation line and a note; below the
   rail breakpoint they stack like every other row. */
@media (min-width: 1100px) {
  .hys-rows--inline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: var(--space-8); max-width: none; }
  .hys-rows--inline .hys-row { border-bottom: 1px solid var(--border-soft); }
}
/* Secondary routes: tighter rows. */
.hys-rows--compact .hys-row { padding: var(--space-3) 0; }
.hys-rows--compact .hys-act { font-size: var(--text-sm); }

/* Who is responsible: the trap named first, then where to go. */
.hys-row--who { display: grid; grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr); column-gap: var(--space-6); row-gap: 0; }
.hys-who {
  grid-row: 1 / span 3;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--fg);
}
@media (max-width: 640px) {
  .hys-row--who { grid-template-columns: 1fr; }
  .hys-who { grid-row: auto; margin-bottom: var(--space-1); }
}

.hys-lead { margin-top: var(--space-3); }
.hys-lead + .hys-lead { margin-top: var(--space-2); }

/* Internal Wodonga Wire links — the quiet treatment, an arrow, never an
   Official label. */
.hys-internal {
  margin: var(--space-4) 0 0;
  font-size: var(--text-sm);
}
.hys-internal a {
  color: var(--fg-2);
  text-decoration-color: var(--border-soft);
  transition: var(--transition-feedback);
}
.hys-internal a:hover { color: var(--fg); text-decoration-color: var(--accent); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  .hys-jump a b, .hys-act a, .hys-internal a { transition: none; }
}
@media (forced-colors: active) {
  .hys-jump a:focus-visible, .hys-act a:focus-visible { outline: 3px solid CanvasText; outline-offset: 2px; box-shadow: none; }
}
