/* ellipsis — shared page chrome for the section pages (Learning Sessions, Dispatch overview).
   Mirrors the homepage: grey ground, system mono, uppercase section labels with a hairline, grey-300 cell borders. */
:root {
  --page: #f4f4f5; --ink: #1f2937; --text: #4b5563; --muted: #6b7280; --faint: #9ca3af; --dim: #c7cad1;
  --line: #d1d5db; --orange: #f97316; --orange-dk: #ea580c;
  --band: #111318; --band-line: #2a2e37;
  --mono: ui-monospace, 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  --sans: 'IBM Plex Sans', -apple-system, 'Helvetica Neue', 'Segoe UI', sans-serif;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --pad-x: 48px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; background: var(--page); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--mono); font-size: 14px; line-height: 1.5; color: var(--ink); }
a { color: inherit; text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange); }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; margin: 0; cursor: pointer; }
.sans { font-family: var(--sans); }

.page { padding: 24px var(--pad-x) 48px; }

/* Header: one row. Logo in the label column, breadcrumb and section links on the rule. */
.hdr { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px; align-items: end; margin-bottom: 36px; }
.hdr .logo { grid-column: span 2; }
.hdr .logo img { display: block; height: 72px; width: auto; }
.hdr .line { grid-column: span 10; display: flex; align-items: baseline; justify-content: space-between; gap: 12px 24px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.hdr .crumb { font-size: 14px; text-transform: uppercase; color: var(--text); }
.hdr .crumb b { color: var(--ink); font-weight: 700; }
.hdr .topnav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 24px; font-size: 12px; text-transform: uppercase; color: var(--muted); }
.hdr .topnav a.here { color: var(--ink); }
.row.first .lbl, .row.first .hair { display: none; }

/* Section rows: label | hairline, then content offset by two columns */
.row { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px; align-items: start; margin-bottom: 40px; }
.row .lbl { grid-column: span 2; font-size: 14px; text-transform: uppercase; color: var(--text); padding-top: 2px; }
.row .hair { grid-column: span 10; height: 1px; background: var(--line); margin-top: 11px; }
.row .gap2 { grid-column: span 2; }
.row .body { grid-column: span 10; }

.h1 { margin: 0; font-size: 28px; line-height: 1.2; font-weight: 700; text-transform: uppercase; color: var(--ink); text-wrap: balance; }
.meta { font-size: 12px; text-transform: uppercase; color: var(--muted); }
.lnk { text-transform: uppercase; font-size: 13px; color: var(--ink); white-space: nowrap; }
.lnk.hi { color: var(--orange); }
.lnk.hi:hover { color: var(--orange-dk); }

/* Intro block: headline left, standfirst right */
.intro { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 12px; margin-bottom: 36px; }
.intro .h1 { grid-column: span 6; }
.intro p { grid-column: span 4; margin: 4px 0 0; font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--text); text-wrap: pretty; }

/* List rows (sessions, issues) */
.item { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 12px; padding: 22px 0; border-top: 1px solid var(--line); align-items: start; }
.item:last-child { border-bottom: 1px solid var(--line); }
.item .no { grid-column: span 2; font-size: 13px; color: var(--text); line-height: 1.7; }
.item .no b { display: block; color: var(--ink); font-weight: 700; }
.item .cov { grid-column: span 2; display: block; width: 100%; object-fit: cover; border: 1px solid var(--line); }
.item .cov.sq { aspect-ratio: 1; }
.item .cov.wide { aspect-ratio: 16 / 9; }
.item .txt { grid-column: span 5; padding-right: 24px; }
.item .ti { display: block; font-size: 20px; font-weight: 700; line-height: 1.25; text-transform: uppercase; color: var(--ink); text-wrap: balance; }
.item .who { margin: 8px 0 0; font-size: 12px; text-transform: uppercase; color: var(--muted); }
.item .bl { margin: 12px 0 0; font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--text); max-width: 62ch; text-wrap: pretty; }
.item .act { grid-column: span 1; justify-self: end; text-align: right; }
.item .st { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 7px; border: 1px solid var(--line); color: var(--muted); white-space: nowrap; }
.item .st.rec { border-color: var(--orange); color: var(--orange); }
.item .go { display: block; margin-top: 14px; font-size: 13px; text-transform: uppercase; color: var(--orange); white-space: nowrap; }
.item .go:hover { color: var(--orange-dk); }

/* Footer, as on the homepage */
.footer { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 14px; font-size: 12px; color: var(--text); text-align: center; }
.footer img { height: 40px; width: auto; }
.footer .ico { display: flex; gap: 16px; color: var(--faint); }
.footer .ico a:hover { color: var(--orange); }
.footer .fine { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 1100px) {
  .item .txt { grid-column: span 4; }
  .item .act { grid-column: span 2; }
}
@media (max-width: 800px) {
  :root { --pad-x: 16px; }
  .page { padding-top: 16px; }
  .hdr { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
  .hdr .logo, .hdr .line { grid-column: auto; }
  .hdr .logo img { height: 56px; }
  .hdr .line { flex-wrap: wrap; }
  .row.first { margin-top: 0; }
  .row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 32px; }
  .row .lbl, .row .hair, .row .body { grid-column: auto; }
  .row .hair { margin-top: 0; }
  .row .gap2 { display: none; }
  .h1 { font-size: 22px; }
  .intro { grid-template-columns: 1fr; gap: 12px; }
  .intro .h1, .intro p { grid-column: auto; }
  .item { grid-template-columns: 1fr; gap: 12px; padding: 18px 0; }
  .item .no, .item .cov, .item .txt, .item .act { grid-column: auto; }
  .item .no { display: flex; gap: 12px; align-items: baseline; }
  .item .no b { display: inline; }
  .item .no br { display: none; }
  .item .cov { max-width: 220px; }
  .item .txt { padding-right: 0; }
  .item .act { justify-self: start; text-align: left; display: flex; align-items: center; gap: 16px; }
  .item .go { margin-top: 0; }
}
