/* Sustainable Victoria Network · 2026 civic election site
   Design language v6: Victoria civic poster. City-flag marine blue + gold on
   crisp white, condensed poster display (Big Shoulders) with Fira Sans body
   (humanist, high-legibility, plain zeroes).
   Flat-colour landmark mural, seal stamp, flag-stripe rules, hard offset
   shadows. No gradient-slop, no pills, no icon tiles, no scroll theatre. */

/* Big Shoulders Display is a condensed face and the system fallbacks are far
   wider: Arial Narrow sets the same string 30% wider, Arial 58% wider. That
   mismatch made the webfont swap reflow the page, which measured as CLS 0.22.
   These size-adjust values were measured, not guessed, so the fallback occupies
   almost exactly the same space and the swap is close to invisible. */
@font-face {
  font-family: "BSD fallback";
  src: local("Arial Narrow"), local("ArialNarrow"), local("Helvetica Neue Condensed");
  size-adjust: 77.2%;
  font-weight: 400 900;
}
@font-face {
  font-family: "BSD fallback wide";
  src: local("Arial"), local("Helvetica Neue"), local("Liberation Sans");
  size-adjust: 63.3%;
  font-weight: 400 900;
}

:root {
  --white: #fdfdf8;
  --surface: #ffffff;
  --sky-tint: #eef4fa;
  --gold-tint: #fdf3d2;
  --ink: #1a2330;
  --ink-soft: #46566a;
  --marine: #17456e;
  --marine-deep: #0f2f4d;
  --marine-mid: #5c8fb8;
  --forest: #2e6b46;
  --gold: #f2b705;
  --gold-deep: #c79400;
  --poppy: #c93a1b;  /* clears AA on white 5.12, surface 5.01 and tint 4.62;
                      the previous #d3401f was 4.19 on the tint, which failed */   /* darkened from #d9482b: 4.19 to 4.55 on the page ground, clears AA for small text */
  --line: #ccd8e4;
  --line-soft: #e2eaf2;
  --font-display: "Big Shoulders Display", "BSD fallback", "BSD fallback wide", "Arial Narrow", sans-serif;
  --font-body: "Fira Sans", Verdana, -apple-system, sans-serif;
  --step-0: clamp(1.06rem, 1rem + 0.3vw, 1.19rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.012em;
  color: var(--ink);
  margin: 0 0 0.45em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.2rem, 2.2rem + 4.6vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 1.7rem + 1.9vw, 3.2rem); font-weight: 700; }

h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h3 { font-size: clamp(1.22rem, 1.12rem + 0.4vw, 1.42rem); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--marine); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--poppy); }

strong { font-weight: 700; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- utility ---------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* used once per page at most */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marine);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 8px;
  background: var(--gold);
}

/* newspaper-style dateline, hero only */
.dateline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marine);
  border-block: 2px solid var(--marine);
  padding: 0.4rem 0.15rem;
  margin: 0 0 1.4rem;
}
.dateline span { color: var(--poppy); }

.lede {
  font-size: clamp(1.15rem, 1.06rem + 0.5vw, 1.34rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.section { padding-block: clamp(3.4rem, 8vw, 5.6rem); }
.section.tint { background: var(--sky-tint); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 820px; margin-bottom: clamp(1.8rem, 4.5vw, 2.8rem); }

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---------- buttons: poster style ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 0.62em 1.4em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover {
  background: #ffc71f;
  color: var(--ink);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--marine); outline-offset: 2px; }

.btn.secondary {
  background: var(--surface);
  color: var(--marine);
  border-color: var(--marine);
  box-shadow: 3px 3px 0 rgba(23, 69, 110, 0.35);
}
.btn.secondary:hover { background: var(--sky-tint); color: var(--marine); box-shadow: 4px 4px 0 rgba(23, 69, 110, 0.35); }

.btn.small { font-size: 1.05rem; padding: 0.5em 1.05em; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--ink); }
.btn.small:hover { box-shadow: 3px 3px 0 var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- top bar + header ---------- */

.topbar {
  background: var(--marine-deep);
  color: #eaf1f8;
  font-size: 0.92rem;
  padding-block: 0.55rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.4rem;
  flex-wrap: wrap;
  text-align: center;
}
.topbar strong { color: var(--gold); font-weight: 700; }
.topbar a { display: inline-block; padding-block: 0.68rem; color: #fff; font-weight: 700; }
.topbar a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 253, 248, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--marine);
  transition: box-shadow 0.2s ease;
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--gold);
}
.site-header.scrolled { box-shadow: 0 4px 14px rgba(15, 47, 77, 0.14); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand svg { width: 42px; height: 42px; flex: none; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  white-space: nowrap;
  font-size: 1.5rem;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--marine);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.main-nav a:not(.btn) {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-block: 0.3rem;
  border-bottom: 3px solid transparent;
}
.main-nav a:not(.btn):hover,
.main-nav a[aria-current="page"] { border-bottom-color: var(--gold); }

.nav-toggle { display: none; background: var(--surface); border: 2px solid var(--marine); border-radius: 6px; padding: 0.5rem 0.6rem; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; cursor: pointer;
  color: var(--marine);
}

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 3px solid var(--marine);
    box-shadow: 0 18px 30px rgba(15, 47, 77, 0.18);
    padding: 0.6rem 1.25rem 1.1rem;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a:not(.btn) { padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line-soft); }
  .main-nav .btn { margin-top: 0.9rem; }
}

/* ---------- hero + mural ---------- */

.hero { background: var(--white); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.8rem, 6vw, 4.6rem);
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 0.35em; }
.hero h1 .accent { color: var(--marine); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 700;
}
.hero-proof li { display: inline-flex; align-items: center; gap: 0.55rem; }
.hero-proof li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 1.5px solid var(--ink);
  flex: none;
}

/* the mural band: full-bleed flat-colour Victoria skyline */
.hero-mural {
  display: block;
  width: 100%;
  margin-bottom: -1px;
}
.hero-mural svg { display: block; width: 100%; height: auto; }

/* signup card with seal stamp */

.signup-card {
  position: relative;
  background: var(--surface);
  color: var(--ink);
  border: 2px solid var(--marine);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(23, 69, 110, 0.18);
  padding: clamp(1.5rem, 3vw, 2.1rem);
}
.signup-card h2, .signup-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.signup-card h2::after, .signup-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 8px;
  background: var(--gold);
  margin-top: 0.5rem;
}

.seal {
  position: absolute;
  top: -34px;
  right: -26px;
  width: 118px;
  height: 118px;
  transform: rotate(-10deg);
  filter: drop-shadow(2px 3px 0 rgba(15, 47, 77, 0.2));
}
@media (max-width: 700px) { .seal { display: none; } }

.form-row { display: grid; gap: 0.95rem; grid-template-columns: 1fr 1fr; }
.form-row .full { grid-column: 1 / -1; }
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.field label span { color: var(--ink-soft); font-weight: 400; }
.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 6px;
  padding: 0.68em 0.9em;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--marine);
  box-shadow: 0 0 0 3px rgba(23, 69, 110, 0.2);
}

.issue-picks { border: none; margin: 1.1rem 0 0; padding: 0; }
.issue-picks legend {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  padding: 0;
}
.issue-picks .picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.issue-picks label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--marine);
  background: var(--sky-tint);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.38em 0.95em;
  min-height: 44px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.issue-picks input { position: absolute; opacity: 0; pointer-events: none; }
.issue-picks label:has(input:checked) {
  background: var(--marine);
  border-color: var(--marine);
  color: #fff;
}
.issue-picks label:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.signup-card .btn { width: 100%; margin-top: 1.2rem; }

.consent {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 0.85rem;
}
.consent a { color: inherit; }

.hidden-field { position: absolute; left: -9999px; }
/* LECFA authorization statement. Elections BC requires it to be "clear and
   legible", so it gets its own line at full fineprint size rather than being
   tucked in beside the copyright. */
.auth-stmt { display: block; width: 100%; }
@media (min-width: 700px) { .auth-stmt { order: 3; margin-top: 0.35rem; } }

/* tracked media archive: a dense reading list, so rows stay tight and the
   group's own note sits under the link rather than beside it */
.media-list { list-style: none; margin: 0; padding: 0; max-width: 900px; }
.media-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.media-list li:first-child { border-top: 1px solid var(--line); }
.media-list .when {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  /* poppy clears AA on white but not on the tinted section background these rows
     alternate onto, and half the archive sits on the tint */
  color: var(--marine);
}
.media-list > li > a {
  display: inline-block;
  font-weight: 700;
  margin: 0.1rem 0 0.15rem;
}
.media-list .src {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.media-list .note { margin-top: 0.3rem; font-size: 0.92rem; }
.issue-index .count {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-soft);
  margin-left: 0.35rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* optional fields sit faded until the visitor engages them */
/* optional fields now sit inside a disclosure, so no fade is needed */

.magnet-line { font-size: 0.97rem; color: var(--ink-soft); margin: -0.35rem 0 1.05rem; }
.magnet-line strong { color: var(--ink); }
.proof-line {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--marine);
  margin-top: 0.85rem;
  text-align: center;
}

/* Leadpages-style conversion bar (content pages only, injected by app.js) */
.convert-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: var(--marine-deep);
  color: #eaf1f8;
  border-top: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  padding: 0.7rem 3.2rem 0.7rem 1rem;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.convert-bar.show { transform: none; }
.convert-bar p { margin: 0; font-size: 0.95rem; }
.convert-bar p strong { color: var(--gold); }
.convert-bar .btn.small { flex: none; }
.convert-bar-close {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b9cddf;
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem 0.5rem;
}
.convert-bar-close:hover { color: #fff; }
.convert-bar-close { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
@media (prefers-reduced-motion: reduce) {
  .convert-bar { transition: none; }
}

/* ---------- countdown strip: continues the mural's sea ---------- */

.countdown-strip {
  background: var(--marine-deep);
  color: #eaf1f8;
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2.5rem;
  flex-wrap: wrap;
  padding-block: 1.35rem;
}
.countdown-figure { display: flex; align-items: baseline; gap: 0.8rem; }
.countdown-figure .num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.6vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.countdown-figure .label {
  font-size: 0.95rem;
  color: #b9cddf;
  max-width: 220px;
  line-height: 1.4;
}
.key-dates {
  display: flex;
  gap: 1rem 2.2rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.key-dates li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.key-dates .icon { color: var(--gold); width: 20px; height: 20px; }
.key-dates strong { display: block; font-size: 0.98rem; color: #fff; }
.key-dates span { display: block; color: #b9cddf; font-size: 0.85rem; }
.countdown-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.countdown-strip .btn.secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}
.countdown-strip .btn.secondary:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ---------- record list ---------- */

.record-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 860px;
}
.record-list > li {
  position: relative;
  padding: 1.55rem 0 1.55rem 2rem;
  border-top: 1px solid var(--line);
}
.record-list > li:last-child { border-bottom: 1px solid var(--line); }
.record-list > li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 2.25rem;
  width: 11px;
  height: 11px;
  background: var(--poppy);
  border: 1.5px solid var(--ink);
}
.record-body h3 { margin-bottom: 0.4rem; font-size: 1.34rem; }
.record-body p { color: var(--ink-soft); max-width: 66ch; }
.record-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  margin-top: 0.7rem;
  align-items: center;
}
.tag {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--marine);
  background: var(--sky-tint);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.22em 0.6em;
}
.src { font-size: 0.92rem; font-weight: 700; }

/* ---------- feature band + ruled facts ---------- */

.band {
  background: var(--gold-tint);
  border-block: 3px solid var(--marine);
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.band h2 { margin-top: 0; }
.band p { color: var(--ink-soft); }
@media (max-width: 860px) {
  .band { grid-template-columns: 1fr; }
}

.fact-rows { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.band .fact-rows { margin: 0; }
.fact-rows li {
  border-top: 2px solid var(--marine);
  padding: 0.85rem 0.1rem;
}
.fact-rows li:last-child { border-bottom: 2px solid var(--marine); }
.fact-rows .n {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--marine);
  line-height: 1.05;
}
.fact-rows .d {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* ---------- what-we-do ledger ---------- */

.plan-list { margin: 0; max-width: 860px; }
.plan-list > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding-block: 1.3rem;
  border-top: 1px solid var(--line);
}
.plan-list > div:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 620px) {
  .plan-list > div { grid-template-columns: 1fr; gap: 0.3rem; }
}
.plan-list dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--marine);
  line-height: 1;
}
.plan-list dd { margin: 0; color: var(--ink-soft); max-width: 62ch; }

/* ---------- candidate cards ---------- */

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.3rem;
}
.person {
  background: var(--surface);
  border: 2px solid var(--marine);
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(23, 69, 110, 0.14);
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.person .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--marine);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.person h3 { font-size: 1.3rem; margin-bottom: 0; }
.person .role {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--poppy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.person p { color: var(--ink-soft); font-size: 0.97rem; }
.person .src { margin-top: auto; padding-top: 0.5rem; }

/* ---------- FAQ + glossary ---------- */

.faq { max-width: 840px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0.2rem;
  font-weight: 700;
  font-size: 1.16rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--poppy); transition: transform 0.2s ease; }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq .answer { padding: 0 0.2rem 1.4rem; color: var(--ink-soft); max-width: 68ch; }

.glossary { max-width: 800px; }
.glossary section {
  border-top: 1px solid var(--line);
  padding: 1.9rem 0 1.6rem;
  scroll-margin-top: 110px;
}
.glossary section:last-child { border-bottom: 1px solid var(--line); }
.glossary h2 {
  font-size: clamp(1.7rem, 1.45rem + 0.8vw, 2.2rem);
  margin-bottom: 0.45rem;
}
.glossary .alias {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--poppy);
  margin-bottom: 0.7rem;
}
.glossary p { color: var(--ink-soft); max-width: 68ch; }
.glossary p strong { color: var(--ink); }

/* ---------- prose pages ---------- */

.page-hero {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--sky-tint) 100%);
  border-bottom: 3px solid var(--marine);
  position: relative;
  padding-block: clamp(2.6rem, 6vw, 3.8rem);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--gold);
}
.page-hero h1 { font-size: clamp(2.5rem, 1.9rem + 2.6vw, 4rem); margin-bottom: 0.3em; }
.crumbs {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.crumbs a { color: var(--ink-soft); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line); }
.crumbs [aria-current] { color: var(--poppy); }

.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; scroll-margin-top: 110px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; font-size: 1.28rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--poppy); }

.callout {
  background: var(--surface);
  border: 2px solid var(--marine);
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(23, 69, 110, 0.14);
  padding: 1.4rem 1.5rem;
  margin: 1.7rem 0;
}
.callout.emphatic { background: var(--gold-tint); }
.callout h3 { margin-top: 0; font-size: 1.3rem; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.6rem 0;
}
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }
.compare .col {
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
  border: 2px solid var(--line);
  background: var(--surface);
}
.compare .col.better { background: #eaf3ec; border-color: var(--forest); }
.compare .col h3 { font-size: 1.14rem; margin-top: 0; }
.compare .col ul { margin: 0; padding-left: 1.1rem; font-size: 0.97rem; color: var(--ink-soft); }

/* footnote citations (taxes page) */
.cite { font-size: 0.66em; line-height: 0; vertical-align: super; letter-spacing: 0.02em; }
.cite a { color: var(--marine); text-decoration: none; font-weight: 700; padding: 0 1px; }
.cite a:hover { color: var(--poppy); text-decoration: underline; }
.sources { padding-left: 1.3rem; }
.sources li { scroll-margin-top: 110px; margin-bottom: 0.4em; }
.sources li:target { background: var(--gold-tint); outline: 2px solid var(--gold); outline-offset: 3px; }

/* data tables */
.table-scroll { overflow-x: auto; margin: 1.4rem 0; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 2px solid var(--marine);
  font-size: 0.98rem;
}
.data-table th {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  background: var(--marine);
  color: #fff;
  padding: 0.6rem 0.85rem;
  text-align: left;
  white-space: nowrap;
}
.data-table td { padding: 0.6rem 0.85rem; border-top: 1px solid var(--line); color: var(--ink-soft); }
.data-table td strong { color: var(--poppy); }
.data-table tr:nth-child(even) td { background: var(--sky-tint); }

/* photo pair with captions */
.photo-pair {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.2rem;
  margin: 1.8rem 0;
  align-items: start;
}
@media (max-width: 640px) { .photo-pair { grid-template-columns: 1fr; } }
.photo-pair figure { margin: 0; }
.photo-pair img {
  width: 100%;
  border: 2px solid var(--marine);
  border-radius: 4px;
  box-shadow: 5px 5px 0 rgba(23, 69, 110, 0.16);
  display: block;
}
.photo-pair figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-top: 0.6rem;
  line-height: 1.5;
}

/* marked list rows */
.check-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.check-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.75rem;
  border-bottom: 1px solid var(--line-soft);
}
.check-list li:first-child { border-top: 1px solid var(--line-soft); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border: 1.5px solid var(--ink);
}

/* post list (blog index) */
.post-list { list-style: none; margin: 0; padding: 0; max-width: 840px; }
.post-list li {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.post-list li:last-child { border-bottom: 1px solid var(--line); }
.post-list .when {
  flex: none;
  width: 96px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--poppy);
}
.post-list h2 { font-size: 1.25rem; font-weight: 700; text-transform: none;
  letter-spacing: 0; margin: 0 0 0.15rem; }
.post-list h2::after { content: none; }
.post-list p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 560px) {
  .post-list li { gap: 0.9rem; }
  .post-list .thumb { width: 104px; }
  .post-list .thumb img, .post-list .thumb-fallback { height: 78px; }
  .post-list .when { width: auto; }
}

/* ---------- final CTA: navy poster band ---------- */

.final-cta {
  background: var(--marine);
  color: #eaf1f8;
  border-block: 6px solid var(--gold);
  position: relative;
}
.final-cta .container { max-width: 880px; }
.final-cta h2 { color: #fff; font-size: clamp(2.2rem, 1.7rem + 2.2vw, 3.4rem); }
.final-cta p { color: #c3d6e7; max-width: 58ch; }
.final-cta .actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.final-cta .text-link { color: #fff; }
.final-cta .text-link:hover { color: var(--gold); }
.final-cta .eyebrow { color: var(--gold); }

/* ---------- footer with skyline bookend ---------- */

.site-footer {
  background: var(--marine-deep);
  color: #b9cddf;
  font-size: 0.96rem;
  position: relative;
}
.site-footer .skyline {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1.2fr;
  gap: 2.6rem;
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 2rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand { color: #fff; margin-bottom: 0.7rem; }
.site-footer .brand-text small { color: var(--gold); }
.site-footer h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.site-footer nav a { display: block; color: #c3d6e7; text-decoration: none; padding-block: 0.28rem; }
@media (pointer: coarse) { .site-footer nav a { padding-block: 0.62rem; } }
.site-footer nav a:hover { color: var(--gold); }
.site-footer p a { color: #eaf1f8; }

.footer-form { display: flex; gap: 0.6rem; margin-top: 0.9rem; flex-wrap: wrap; }
.footer-form input[type="email"] {
  flex: 1 1 220px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7em 0.9em;
}
.footer-form input:focus { outline: 3px solid var(--gold); }

.fineprint {
  border-top: 1px solid rgba(195, 214, 231, 0.25);
  padding-block: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #8fa9c0;
}
.fineprint a { color: #c3d6e7; }

/* ---------- password gate ---------- */

.gate-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-tint) 100%);
}
.gate-card {
  width: min(440px, 100%);
  background: var(--surface);
  border: 2px solid var(--marine);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(23, 69, 110, 0.18);
  padding: 2rem 1.8rem;
  text-align: center;
}
.gate-card svg { width: 58px; height: 58px; margin-bottom: 1rem; }
.gate-card h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.gate-card h1::after {
  content: "";
  display: block;
  width: 54px;
  height: 8px;
  background: var(--gold);
  margin: 0.6rem auto 0;
}
.gate-card p { color: var(--ink-soft); font-size: 1rem; }
.gate-card form { margin-top: 1.4rem; display: grid; gap: 0.8rem; text-align: left; }
.gate-card label { font-size: 0.9rem; font-weight: 700; }
.gate-card input[type="password"], .gate-card input[type="text"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 6px;
  padding: 0.68em 0.9em;
}
.gate-card input:focus { outline: none; border-color: var(--marine); box-shadow: 0 0 0 3px rgba(23, 69, 110, 0.2); }
.gate-error {
  background: #fbe6df;
  border: 2px solid var(--poppy);
  color: #8f2d15;
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-size: 0.93rem;
}
.gate-note { margin-top: 1.1rem; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- living harbour scenes ---------- */

[data-actor] {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  will-change: transform;
}
[data-actor].origin-bottom { transform-origin: 50% 100%; }

/* articulated parts: gull wings hinge at the shoulder, the prop spins on its hub */
.wingL, .wingR, .prop { transform-box: fill-box; will-change: transform; }
.wingL { transform-origin: 100% 70%; }
.wingR { transform-origin: 0% 70%; }
.prop { transform-origin: 50% 50%; }

.sea-divider {
  border-block: 3px solid var(--marine);
  background: #fff3cf;
  overflow: hidden;
}
.sea-divider svg {
  display: block;
  width: 100%;
  height: clamp(58px, 7vw, 92px);
}
@media (prefers-reduced-motion: reduce) {
  [data-actor] { will-change: auto; }
}

/* spot illustrations */
.illu-frame {
  border: 2px solid var(--marine);
  border-radius: 8px;
  background: #eef4fa;
  box-shadow: 5px 5px 0 rgba(23, 69, 110, 0.16);
  overflow: hidden;
  margin: 1.8rem 0;
}
.illu-frame svg { display: block; width: 100%; height: auto; }
.illu-frame figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.6rem 0.9rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.band .illu-frame { margin: 0; }
.band-side { display: grid; gap: 1.2rem; }
.crane-jib { transform-box: fill-box; transform-origin: 26% 60%; will-change: transform; }

/* sockeye run up the record margin */
#record { position: relative; }
.swim-gutter {
  position: absolute;
  top: 90px;
  bottom: 60px;
  right: 14px;
  width: 200px;
  pointer-events: none;
}
.swim-gutter svg { width: 100%; height: 100%; }
@media (max-width: 1180px) { .swim-gutter { display: none; } }

/* ---------- misc ---------- */

.hero-fill {
  min-height: 62vh;
  display: flex;
  align-items: center;
}
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.note { font-size: 0.95rem; color: var(--ink-soft); }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- blog posts (generated from the Wix CMS) ---------- */

.post-meta {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--poppy);
}
.post-meta .post-cats { color: var(--ink-soft); }

.post-body > :first-child { margin-top: 0; }

.post-cover {
  margin: 0 0 1.8rem;
  border: 2px solid var(--marine);
  box-shadow: 6px 6px 0 var(--marine-deep);
  background: var(--surface);
}
.post-cover img { display: block; width: 100%; height: auto; }

.post-body figure {
  margin: 1.9rem 0;
  border: 2px solid var(--marine);
  box-shadow: 6px 6px 0 var(--marine-deep);
  background: var(--surface);
}
.post-body figure img { display: block; width: 100%; height: auto; }
.post-body > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.9rem 0;
  border: 2px solid var(--marine);
  box-shadow: 6px 6px 0 var(--marine-deep);
}
.post-body figcaption {
  padding: 0.7rem 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.post-body blockquote {
  margin: 1.8rem 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 4px solid var(--gold);
  font-size: 1.08rem;
  color: var(--ink);
}
.post-body blockquote p:last-child { margin-bottom: 0; }

.post-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.2rem 0;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
  background: var(--surface);
  border: 2px solid var(--marine);
  font-size: 0.98rem;
}
.post-body th,
.post-body td {
  border-top: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  text-align: left;
  vertical-align: top;
}
.post-body th {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--marine);
}

.post-body pre {
  overflow-x: auto;
  padding: 1rem;
  background: var(--sky-tint);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  padding: 0;
}
.post-gallery img { display: block; width: 100%; height: auto; }

/* Older and newer post, as two ruled rows rather than cards. */
.post-nav {
  display: grid;
  gap: 0;
  max-width: 840px;
  border-top: 1px solid var(--line);
}
.post-nav-item {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}
.post-nav-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--poppy);
}
.post-nav-item strong { font-weight: 400; font-size: 1.14rem; }
.post-nav-item:hover strong { color: var(--marine); text-decoration: underline; }

/* Wix posts contain pasted URLs used as their own link text, and wide tables.
   Neither can be allowed to push a phone screen sideways. */
.post-body { overflow-wrap: break-word; }
.post-body a { overflow-wrap: anywhere; }
.post-body table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.post-body img { max-width: 100%; height: auto; }

/* ---------- v3: issue index, share row, print ---------- */

/* the six-issue index reuses .record-list rows; only the linked heading is new */
.issue-index > li h3 { margin: 0 0 0.3rem; font-size: 1.3rem; }
.issue-index > li h3 a { color: var(--marine); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.issue-index > li h3 a:hover { color: var(--poppy); }
.issue-index > li p { margin: 0; color: var(--ink-soft); max-width: 60ch; }

/* share row: plain anchors, no third-party scripts, 44px minimum tap target */
.share-head { margin-bottom: 0.3rem; }
.share-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }
.share-row .btn { min-height: 44px; display: inline-flex; align-items: center; }
.btn.ghost {
  background: transparent;
  color: var(--marine);
  border: 2px solid var(--marine);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--sky-tint); }
.copy-ok { font-weight: 700; color: var(--forest); align-self: center; }

/* this audience prints pages. Drop the furniture, keep the argument, and put
   external URLs on the page so a printed copy is still checkable. */
@media print {
  .topbar, .site-header, .site-footer, .convert-bar, .sea-divider,
  .share-section, .final-cta, .signup-card, .footer-form, .nav-toggle,
  .swim-gutter, .hero-mural, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11.5pt; }
  .container { max-width: none; padding: 0; }
  .section { padding: 0.6rem 0; }
  a { color: #000; text-decoration: underline; }
  /* every external link, on any page, so a printed copy stays checkable */
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
  main a[href^="http"].btn::after, .share-row a::after { content: none; }
  .compare { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .compare .col, .callout, .data-table { break-inside: avoid; }
  .record-list > li, .fact-rows li { break-inside: avoid; }
  h1, h2, h3 { break-after: avoid; }
  .page-hero { padding: 0 0 0.6rem; }
}

/* ---------- signup: optional details behind one disclosure ----------
   Three optional things stacked under the email field made a one-field signup
   look like a form. They now sit behind a single summary, so the card reads as
   email plus a button, and anyone who wants to tell us more still can. */
.more-details { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); margin: 0.9rem 0 1.1rem; }
.more-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.72rem 0.1rem;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--marine);
}
.more-details summary::-webkit-details-marker { display: none; }
.more-details summary .icon { color: var(--poppy); font-weight: 800; transition: transform 0.2s ease; }
.more-details[open] summary .icon { transform: rotate(45deg); }
.more-details summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.more-body { padding: 0.1rem 0.1rem 1rem; }
.more-body .note { margin-bottom: 0.8rem; }
.more-body .issue-picks { margin-top: 0.9rem; }

/* ---------- blog index thumbnails ----------
   The archive was a wall of text, which is a poor advert for work that mostly
   has a photograph or a document scan attached to it. The crop is requested
   from Wix at render size rather than shrunk in the browser. */
.post-list .thumb { flex: none; width: 180px; display: block; line-height: 0; }
.post-list .thumb img,
.post-list .thumb-fallback {
  display: block;
  width: 100%;
  height: 135px;
  object-fit: cover;
  border: 2px solid var(--marine);
  background: var(--sky-tint);
}
/* Posts with no cover in Wix get the mark rather than a bare navy rectangle,
   which four rows in a row read as broken images instead of a design choice. */
.post-list .thumb-fallback {
  background-color: var(--marine);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2064%2064%22%3E%3Cg%20transform%3D%22translate%280%2C-1%29%22%3E%3Cg%20transform%3D%22translate%2832%2C31.5%29%20scale%280.70%29%20translate%28-32%2C-31.5%29%22%3E%3Cpath%20fill%3D%22%233d6b96%22%20fill-rule%3D%22evenodd%22%20d%3D%22M32.00%205.00%20C35.50%205.50%2037.60%208.60%2037.50%2012.20%20C41.60%2011.00%2046.20%2013.60%2045.60%2018.20%20C45.20%2021.20%2043.00%2022.60%2040.00%2023.20%20C37.60%2023.40%2036.60%2023.60%2036.40%2024.60%20C41.00%2024.00%2047.20%2026.00%2049.60%2030.00%20C51.80%2033.60%2049.60%2036.20%2046.00%2036.80%20C43.00%2037.20%2037.60%2036.20%2036.40%2036.20%20C40.60%2036.80%2045.60%2039.20%2046.60%2043.20%20C47.20%2046.20%2045.00%2048.20%2042.00%2047.80%20C39.00%2047.40%2036.00%2046.20%2035.40%2046.20%20C38.00%2046.80%2040.60%2049.20%2040.00%2051.60%20C39.40%2053.80%2036.40%2053.80%2034.40%2052.20%20L34.20%2060.2%20L29.80%2060.2%20L29.60%2052.20%20C27.60%2053.80%2024.60%2053.80%2024.00%2051.60%20C23.40%2049.20%2026.00%2046.80%2028.60%2046.20%20C28.00%2046.20%2025.00%2047.40%2022.00%2047.80%20C19.00%2048.20%2016.80%2046.20%2017.40%2043.20%20C18.40%2039.20%2023.40%2036.80%2027.60%2036.20%20C26.40%2036.20%2021.00%2037.20%2018.00%2036.80%20C14.40%2036.20%2012.20%2033.60%2014.40%2030.00%20C16.80%2026.00%2023.00%2024.00%2027.60%2024.60%20C27.40%2023.60%2026.40%2023.40%2024.00%2023.20%20C21.00%2022.60%2018.80%2021.20%2018.40%2018.20%20C17.80%2013.60%2022.40%2011.00%2026.50%2012.20%20C26.40%208.60%2028.50%205.50%2032.00%205.00%20Z%20M31.08%2051.4%20C31.16%2040%2031.48%2024%2031.66%2010.6%20L32.34%2010.6%20C32.52%2024%2032.84%2040%2032.92%2051.4%20Z%20M33.26%2021.29%20Q35.91%2019.22%2038.69%2017.34%20L38.51%2017.06%20Q35.64%2018.78%2032.64%2020.31%20Z%20M31.36%2020.31%20Q28.36%2018.78%2025.49%2017.06%20L25.31%2017.34%20Q28.09%2019.22%2030.74%2021.29%20Z%20M33.19%2031.13%20Q37.88%2028.64%2042.67%2026.35%20L42.53%2026.05%20Q37.67%2028.16%2032.71%2030.07%20Z%20M31.29%2030.07%20Q26.33%2028.16%2021.47%2026.05%20L21.33%2026.35%20Q26.12%2028.64%2030.81%2031.13%20Z%20M33.20%2040.92%20Q36.59%2038.93%2040.07%2037.15%20L39.93%2036.85%20Q36.36%2038.47%2032.70%2039.88%20Z%20M31.30%2039.88%20Q27.64%2038.47%2024.07%2036.85%20L23.93%2037.15%20Q27.41%2038.93%2030.80%2040.92%20Z%20M33.25%2047.89%20Q34.71%2046.62%2036.29%2045.54%20L36.11%2045.26%20Q34.44%2046.18%2032.65%2046.91%20Z%20M31.35%2046.91%20Q29.56%2046.18%2027.89%2045.26%20L27.71%2045.54%20Q29.29%2046.62%2030.75%2047.89%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20transform%3D%22translate%2832.5%2C51.8%29%20rotate%28-9%29%22%3E%3Cpath%20fill%3D%22%233d6b96%22%20d%3D%22M0.1%20-4.45%20C-4.3%20-4.7%20-8.5%20-2.6%20-8.5%200%20C-8.5%202.6%20-4.3%204.7%200.1%204.45%20C0.0%204.1%20-0.15%203.6%20-0.2%203.25%20C2.6%203.5%206.4%201.9%208.7%200%20C6.4%20-1.9%202.6%20-3.5%20-0.2%20-3.25%20C-0.15%20-3.6%200.0%20-4.1%200.1%20-4.45%20Z%22%2F%3E%3Cpath%20d%3D%22M-8.5%200%20L-11.2%200%22%20fill%3D%22none%22%20stroke%3D%22%233d6b96%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%2F%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23245586%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M0.15%20-4.4%20C-0.75%20-2.5%20-0.75%202.5%200.15%204.4%22%20stroke-width%3D%221.0%22%2F%3E%3Cpath%20d%3D%22M-3.4%20-4.3%20C-4.3%20-2.4%20-4.3%202.4%20-3.4%204.3%22%20stroke-width%3D%220.85%22%2F%3E%3Cpath%20d%3D%22M-6.4%20-3.3%20C-7.2%20-1.9%20-7.2%201.9%20-6.4%203.3%22%20stroke-width%3D%220.75%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 62%;
}
.post-list .row-body { flex: 1 1 auto; min-width: 0; }
.post-list .row-body .when { display: block; margin-bottom: 0.2rem; }

/* a photograph in the illustration frame */
.illu-frame.photo img { display: block; width: 100%; height: auto; }
.illu-frame.photo figcaption { padding-top: 0.55rem; }
