/* ===========================================================================
   Customs Duty Radar — "Departure Board"
   A customs-hall split-flap board. Rules are rows ranked by date with a live
   status; the answer is a legend in flap cells. See the direction contract in
   the emitted HTML.

   This world is committed dark on purpose: a departure board is a backlit
   object, and a light rendition of it is a table with decoration. There is no
   prefers-color-scheme branch by design, not by omission.

   Two type roles, zero downloads: monospace for the board (labels, figures,
   status) and a system sans for the reading matter underneath it.
   =========================================================================== */

:root {
  --bg: #0b0e10;
  --bg-2: #12171a;
  --cell: #171b1e;
  --cell-hi: #1f2529;
  --seam: #05080a;

  --line: #262c31;
  --line-soft: #1a2024;

  --ink: #f2ede3;
  --ink-2: #a8b1b7;
  --ink-3: #8a949b;

  --amber: #ffb23f;
  --live: #4fd1a0;
  --live-bg: #0f2e22;
  --dead: #f07178;
  --dead-bg: #2f1517;
  --next: #ffb23f;
  --next-bg: #2c2310;
  --caveat: #9fb8cc;
  --caveat-bg: #17242e;

  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Roboto Mono", monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --gut: clamp(16px, 4vw, 32px);
  --stack: clamp(32px, 5vw, 56px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1120px; margin: 0 auto; padding-inline: var(--gut); }

a { color: var(--ink); text-decoration-color: var(--ink-3); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--amber); }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 20;
  background: var(--amber); color: var(--bg); padding: 10px 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.skip:focus { left: 0; }

h1, h2, h3 { text-wrap: balance; letter-spacing: -.01em; margin: 0; }
h1 { font-size: clamp(26px, 4.4vw, 40px); line-height: 1.12; font-weight: 640; }
h2 { font-size: clamp(19px, 2.4vw, 24px); line-height: 1.25; font-weight: 620; }
h3 { font-size: 16px; line-height: 1.35; font-weight: 620; }
p { margin: 0; }

/* ---------- board vocabulary: status chips and colour rails ---------- */

.chip {
  display: inline-block; flex: none;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  padding: 3px 7px; white-space: nowrap;
}
.chip-live   { background: var(--live-bg);   color: var(--live); }
.chip-dead   { background: var(--dead-bg);   color: var(--dead); }
.chip-next   { background: var(--next-bg);   color: var(--next); }
.chip-caveat { background: var(--caveat-bg); color: var(--caveat); }

/* Direction D's contribution: a colour rail on the left edge of every status
   row. It is the only status carrier that survives a 360px viewport, so below
   the mobile breakpoint it does the work the chips do on desktop. */
.row-rail { display: block; width: 3px; align-self: stretch; min-height: 18px; background: var(--ink-3); }
.row-live   .row-rail { background: var(--live); }
.row-dead   .row-rail { background: var(--dead); }
.row-next   .row-rail { background: var(--next); }
.row-caveat .row-rail { background: var(--caveat); }

/* ---------- masthead ---------- */

.site-head {
  background: #080a0c;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
}
.head-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-block: 12px;
}
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); font-weight: 500;
}
.brand-mark {
  width: 11px; height: 15px; flex: none; background: var(--cell);
  box-shadow: inset 0 1px 0 #2b3236;
  position: relative;
}
.brand-mark::after { content: ""; position: absolute; inset: 0; border-top: 7px solid transparent; border-bottom: 7px solid var(--seam); }
.brand:hover .brand-mark { background: var(--amber); }

.site-head nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.site-head nav a {
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-2); text-decoration: none; padding-block: 4px;
  border-bottom: 1px solid transparent;
}
.site-head nav a:hover { color: var(--ink); }
.site-head nav a[aria-current="page"] { color: var(--amber); border-bottom-color: var(--amber); }

.head-clock {
  margin-left: auto; font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); font-variant-numeric: tabular-nums;
}
.head-clock time { color: var(--ink); }

/* ---------- hero ---------- */

.hero { padding-block: clamp(28px, 5vw, 52px) 0; }
.eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px;
}
.hero .lede { color: var(--ink-2); font-size: 17px; margin-top: 12px; max-width: 62ch; }


/* ---------- the query rail (staging: perimeter rail) ---------- */

.layout-calc { padding-top: var(--stack); }

.calc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-family: var(--mono);
}
@media (min-width: 900px) {
  .calc { position: sticky; top: 0; z-index: 10; }
}
.calc-grid { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); }
.field {
  flex: 1 1 190px; margin: 0; background: var(--bg-2);
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px 14px 12px; border: 0; min-width: 0;
}
.field label, .field legend {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
  padding: 0;
}
.field .unit { color: var(--ink-3); }

.field select, .field input[type="number"] {
  font: inherit; font-size: 16px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 3px 0; width: 100%; min-width: 0;
  appearance: none; border-radius: 0;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--amber) 50%), linear-gradient(135deg, var(--amber) 50%, transparent 50%);
  background-position: right 5px center, right 1px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 16px;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field input[type="number"] { font-variant-numeric: tabular-nums; }
.field select:focus-visible, .field input:focus-visible { outline-offset: 3px; }

.field-mode { display: flex; flex-direction: column; }
.field-mode legend { float: left; width: 100%; margin-bottom: 5px; }
.radio { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-2); cursor: pointer; margin-right: 14px; }
.radio input { accent-color: var(--amber); margin: 0; }
.radio:hover { color: var(--ink); }

.calc-submit {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 10px 14px; border-top: 1px solid var(--line);
}
button, .btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--cell); border: 0; border-radius: 0;
  padding: 9px 16px; cursor: pointer; text-decoration: none;
  box-shadow: inset 0 1px 0 var(--cell-hi), inset 0 -1px 0 var(--seam);
}
button:hover, .btn:hover { background: var(--amber); color: #0b0e10; }
button:active, .btn:active { transform: translateY(1px); }

/* The default state is the no-JavaScript one, because that is the state the
   page ships in. The island adds .js-live, which swaps the standing-page note
   for the live hint and retires the button — the button cannot work on a static
   host, where the submitted query string is simply ignored. */
.js-hint { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: none; }
.no-js-hint { font-size: 13px; color: var(--ink-3); font-family: var(--sans); max-width: 62ch; }
.calc.js-live .js-hint { display: inline; }
.calc.js-live .no-js-hint,
.calc.js-live .calc-submit button { display: none; }

/* ---------- split-flap figures ---------- */

.flap { position: relative; display: inline-flex; gap: 2px; vertical-align: bottom; }
/* The value a reader copies, and the one a screen reader announces. Hidden from
   view; the cells beside it are decoration and are excluded from selection. */
.flap-plain {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.cell {
  position: relative;
  background: var(--cell); color: var(--ink);
  min-width: .68em; padding: .1em .06em .12em;
  text-align: center; line-height: 1;
  box-shadow: inset 0 1px 0 var(--cell-hi);
  user-select: none; -webkit-user-select: none;
}
.cell::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: var(--seam);
}
.cell-thin { min-width: .38em; color: var(--ink-3); background: #14181b; }
.cell-gap { background: none; box-shadow: none; min-width: .3em; }
.cell-gap::after { display: none; }
.flap.is-live .cell { color: var(--amber); }
.flap.is-live .cell-thin { color: #946012; }
.flap-dash { color: var(--ink-3); padding-inline: .18em; }

@media (prefers-reduced-motion: no-preference) {
  .cell { animation: flap .26s cubic-bezier(.2, .75, .3, 1) both; }
  .cell:nth-child(2) { animation-delay: .03s; }
  .cell:nth-child(3) { animation-delay: .06s; }
  .cell:nth-child(4) { animation-delay: .09s; }
  .cell:nth-child(5) { animation-delay: .12s; }
  .cell:nth-child(n + 6) { animation-delay: .15s; }
  @keyframes flap {
    from { transform: rotateX(-84deg); transform-origin: 50% 100%; opacity: .25; }
    to { transform: none; opacity: 1; }
  }
}

/* ---------- result ---------- */

.result { margin-top: 2px; }

.verdict {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  background: var(--bg-2); border: 1px solid var(--line); border-top: 0;
  padding: 12px 14px; color: var(--ink-2); font-size: 14.5px;
}

.headline {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 26em); gap: clamp(20px, 4vw, 44px);
  align-items: end; padding: clamp(22px, 4vw, 34px) 14px;
  border: 1px solid var(--line); border-top: 0; background: #0d1113;
}
@media (max-width: 780px) { .headline { grid-template-columns: 1fr; align-items: start; } }

.headline-figure { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.headline-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}
.headline-value {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  font-family: var(--mono); font-size: clamp(28px, 6.2vw, 52px); font-weight: 500;
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.headline-sub { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-2); }
.why-range { color: var(--ink-3); font-size: 13px; line-height: 1.6; }

/* ---------- data tables ---------- */

.breakdown, .matrix {
  width: 100%; border-collapse: collapse; font-size: 14.5px;
  border: 1px solid var(--line); border-top: 0;
}
.breakdown caption, .matrix caption {
  text-align: left; font-family: var(--mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
  padding: 14px 14px 9px; background: var(--bg-2); border: 1px solid var(--line); border-bottom: 0;
}
.matrix { border-top: 1px solid var(--line); }
.breakdown th, .breakdown td, .matrix th, .matrix td {
  text-align: left; padding: 9px 14px; border-top: 1px solid var(--line-soft); vertical-align: baseline;
  font-weight: 400;
}
.matrix thead th {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
  background: var(--bg-2);
}
.breakdown .num, .matrix .num {
  text-align: right; font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.matrix .strong { color: var(--amber); }
.breakdown .hint {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 3px;
}
.breakdown .total th, .breakdown .total td { border-top: 1px solid var(--line); color: var(--ink); }
.breakdown .total .num { color: var(--amber); font-size: 14.5px; }
.breakdown .unknown { color: var(--next); }
.note-row td { padding-top: 0; border-top: 0; color: var(--ink-3); font-size: 13px; line-height: 1.55; }
.note-row p { margin: 0 0 6px; }
.table-note { color: var(--ink-3); font-size: 13px; margin-top: 10px; }

/* ---------- callouts, landed total, docs, sources ---------- */

.callout {
  border: 1px solid var(--line); border-top: 0; padding: 16px 14px;
  background: var(--bg-2); display: flex; flex-direction: column; gap: 8px;
}
.callout h3 { color: var(--next); font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.callout p { color: var(--ink-2); font-size: 14.5px; }
.callout-warn { background: #16130c; }
.extra-figure { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--ink); }

.landed {
  display: flex; flex-direction: column; gap: 7px;
  border: 1px solid var(--line); border-top: 0; padding: 18px 14px; background: #0d1113;
}
.landed-label { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.landed-value {
  font-family: var(--mono); font-size: clamp(19px, 3.2vw, 26px);
  font-variant-numeric: tabular-nums; color: var(--ink);
}
.landed-note { color: var(--ink-3); font-size: 13px; max-width: 66ch; }

.docs, .sources, .partners {
  border: 1px solid var(--line); border-top: 0; padding: 16px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.docs h3, .sources h3, .partners h3 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); font-weight: 400;
}
.docs ul, .sources ol, .partners ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.docs li, .partners li { color: var(--ink-2); font-size: 14.5px; }
.sources li { color: var(--ink-2); font-size: 13px; }
.verified-chip {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
}
.partners-note { color: var(--ink-3); font-size: 13px; }

/* ---------- the DDP conversion slot (dark until the flag flips) ---------- */

.slot {
  border: 1px solid var(--amber); border-top: 0; padding: 20px 14px;
  background: #14120c; display: flex; flex-direction: column; gap: 10px;
}
.slot-label { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.slot-blurb { color: var(--ink-2); font-size: 14.5px; }

/* ---------- the board ---------- */

.board { padding-top: var(--stack); }
.board-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.board-legend { display: flex; gap: 6px; flex-wrap: wrap; }

.board-rows { display: flex; flex-direction: column; gap: 2px; }

.row { background: var(--cell); }
.row > summary {
  display: flex; align-items: center; gap: 14px;
  padding-right: 12px; cursor: pointer; list-style: none;
  font-family: var(--mono); font-size: 13px;
}
.row > summary::-webkit-details-marker { display: none; }
.row > summary:hover { background: var(--cell-hi); }
.row-date {
  color: var(--ink-3); font-size: 11px; letter-spacing: .08em;
  font-variant-numeric: tabular-nums; white-space: nowrap; padding-block: 12px;
}
/* The date, status and marker are board furniture and stay monospace. The title
   is reading matter and does not — a headline-length sentence in mono is slower
   to read and eats the row. */
.row-title { flex: 1; color: var(--ink); min-width: 0; font-family: var(--sans); font-size: 14.5px; }
.row-dead .row-title { color: var(--ink-2); }
.row[open] > summary { background: var(--cell-hi); }

/* Replaces the disclosure triangle removed above: without a marker the rows
   give no sign they open. */
.row > summary::after {
  content: "▾"; flex: none; color: var(--ink-3); font-size: 10px; padding-block: 12px;
}
.row > summary:hover::after { color: var(--amber); }
.row[open] > summary::after { transform: rotate(180deg); }

.row-body {
  padding: 4px 14px 16px 33px; border-top: 1px solid var(--seam);
  display: flex; flex-direction: column; gap: 10px;
}
.row-body p { color: var(--ink-2); font-size: 14.5px; max-width: 72ch; }
.row-body strong { color: var(--ink); font-weight: 620; }
.row-meta { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-3) !important; }

/* ---------- page furniture ---------- */

.page-head { padding-top: clamp(24px, 4vw, 40px); display: flex; flex-direction: column; gap: 14px; }
.crumbs { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--amber); }
.lede { font-size: 17px; color: var(--ink-2); max-width: 72ch; }
.lede strong { color: var(--ink); font-weight: 620; }

.prose { padding-top: var(--stack); display: flex; flex-direction: column; gap: 12px; max-width: 72ch; }
.prose h2 { margin-top: 18px; }
.prose p { color: var(--ink-2); }
.prose code { font-family: var(--mono); font-size: .9em; background: var(--cell); padding: 1px 5px; }
.inline-warn {
  background: var(--next-bg); padding: 11px 14px; color: var(--ink) !important; font-size: 14.5px;
}

.browse { padding-top: var(--stack); display: flex; flex-direction: column; gap: 12px; }
.browse h2 + p { color: var(--ink-3); font-size: 14.5px; }
.origin-list, .chip-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 2px; }
.origin-list a, .chip-list a {
  display: block; background: var(--cell); padding: 8px 13px;
  font-family: var(--mono); font-size: 13px; text-decoration: none; color: var(--ink-2);
  box-shadow: inset 0 1px 0 var(--cell-hi);
}
.origin-list a:hover, .chip-list a:hover { background: var(--amber); color: #0b0e10; }
.browse h2 { margin-top: 14px; }

/* ---------- timeline (pillar) ---------- */

.timeline { list-style: none; margin: var(--stack) 0 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.timeline li { display: flex; gap: 14px; background: var(--cell); padding: 12px 14px 12px 0; align-items: baseline; }
.timeline time {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-3);
  font-variant-numeric: tabular-nums; white-space: nowrap; flex: none; min-width: 8.5em;
}
.tl-label { font-size: 14.5px; }
.tl-chip {
  font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  background: var(--next-bg); color: var(--next); padding: 2px 6px; margin-left: 6px;
}
.tl-src { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 4px; }
/* The timeline uses the board's own status rail rather than a second, separate
   left-border device — one status carrier, one implementation. */
.timeline .row-rail { min-height: 34px; }

/* ---------- changelog ---------- */

.changelog { list-style: none; margin: var(--stack) 0 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
/* No status rail here on purpose: a rail means something in this system, and
   every changelog entry carrying a green one would say "in force" about a log. */
.changelog li { background: var(--cell); padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.changelog time { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.changelog h2 { font-size: 17px; }
.changelog p { color: var(--ink-2); font-size: 14.5px; max-width: 72ch; }
.cl-sources { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.cl-sources a { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }

/* ---------- newsletter ---------- */

.signup {
  margin-top: var(--stack); background: var(--bg-2); border: 1px solid var(--line);
  padding: clamp(20px, 4vw, 30px); display: flex; flex-direction: column; gap: 10px;
}
.signup p { color: var(--ink-2); font-size: 14.5px; max-width: 68ch; }
.signup-form { display: flex; flex-wrap: wrap; gap: 2px; margin-top: 6px; }
.signup-form input[type="email"] {
  font: inherit; font-family: var(--mono); font-size: 13px; color: var(--ink);
  background: var(--cell); border: 0; border-radius: 0; padding: 10px 14px; flex: 1 1 240px; min-width: 0;
  box-shadow: inset 0 1px 0 var(--cell-hi);
}
.signup-form input::placeholder { color: var(--ink-3); }
.signup-note { flex-basis: 100%; color: var(--ink-3); font-size: 13px; }
.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;
}

/* ---------- footer ---------- */

.site-foot {
  margin-top: clamp(48px, 8vw, 88px); background: #080a0c;
  border-top: 1px solid var(--line); padding-block: 26px 34px;
}
.site-foot .wrap { display: flex; flex-direction: column; gap: 12px; }
.disclaimer { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; color: var(--ink-2); font-size: 14.5px; }
.verified { color: var(--ink-3); font-size: 13px; max-width: 76ch; }
.site-foot nav ul { display: flex; gap: 18px; list-style: none; margin: 4px 0 0; padding: 0; flex-wrap: wrap; }
.site-foot nav a {
  font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); text-decoration: none;
}
.site-foot nav a:hover { color: var(--amber); }

/* ===========================================================================
   Below 480px the flap cells stop being cells. A split-flap module needs room
   to read as a physical object; at phone width it collapses to a plain tabular
   figure and the colour rails carry status on their own.
   =========================================================================== */

@media (max-width: 480px) {
  .cell, .cell-thin {
    background: none; box-shadow: none; min-width: 0; padding: 0;
  }
  .cell::after { display: none; }
  .cell { animation: none; }
  .flap { gap: 0; }

  .row > summary { gap: 10px; flex-wrap: wrap; padding-right: 10px; }
  .row-title { flex: 1 1 100%; order: 3; padding-bottom: 11px; padding-left: 19px; }
  .row > summary::after { order: 2; margin-left: auto; padding-block: 11px; }
  .row-date { padding-bottom: 0; }
  .row-body { padding-left: 19px; }
  .board-legend { gap: 5px; }


  .headline, .verdict, .breakdown th, .breakdown td, .landed, .docs, .sources, .callout { padding-inline: 12px; }
}
