/* Crochet Loft
   Palette and scale come straight from section 03 of the build plan.
   Mobile first: every media query widens, never narrows. */

/* ---------- fonts, local ---------- */
@font-face {
  font-family: 'Petrona'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/petrona-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/public-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/public-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/public-sans-700.woff2') format('woff2');
}

/* ---------- tokens ---------- */
:root {
  --paper: #FAF8F4;
  --ink:   #17211E;
  --slate: #24405E;
  --ochre: #D2793A;
  --sage:  #7A9E8E;
  --rule:  #E6E1D8;

  --ink-2: #5A625E;          /* secondary text, still AA on paper */
  --paper-2: #F2EFE8;        /* card ground */
  --sage-soft: #EAF1EE;
  --ochre-soft: #FBEEE3;
  --slate-soft: #E7EDF4;

  --accent: var(--sage);
  --accent-soft: var(--sage-soft);

  --display: 'Petrona', Georgia, 'Times New Roman', serif;
  --body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --measure: 68ch;
  --measure-list: 60ch;
  --wrap: 1180px;
  --gut: 20px;

  --r-s: 6px; --r-m: 12px; --r-l: 18px; --r-pill: 999px;
  --shadow: 0 1px 2px rgba(23,33,30,.05), 0 8px 24px rgba(23,33,30,.05);
}

.tone-sage  { --accent: var(--sage);  --accent-soft: var(--sage-soft); }
.tone-ochre { --accent: var(--ochre); --accent-soft: var(--ochre-soft); }
.tone-slate { --accent: var(--slate); --accent-soft: var(--slate-soft); }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 17px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-underline-offset: 2px; }
a:hover { color: var(--ochre); }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 600; line-height: 1.15; }
h1, h2 { font-family: var(--display); letter-spacing: -.01em; }
h3, h4 { font-family: var(--body); font-weight: 700; }
h1 { font-size: 32px; line-height: 1.12; }
h2 { font-size: 25px; }
h3 { font-size: 20px; line-height: 1.3; }
p, ul, ol { margin: 0 0 1.1em; }
small, .small { font-size: 14px; line-height: 1.6; }
code, kbd { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; }
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.measure { max-width: var(--measure); }
.sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- header ---------- */
.site-head {
  border-bottom: 1px solid var(--rule); background: var(--paper);
  position: sticky; top: 0; z-index: 50;
}
.head-in { display: flex; align-items: center; gap: 16px; height: 62px; }
.brand {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  letter-spacing: -.02em; color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand em { font-style: normal; color: var(--ochre); }
.nav { display: none; margin-left: auto; gap: 20px; }
.nav a { color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--ochre); }
.nav-toggle {
  margin-left: auto; background: none; border: 1px solid var(--rule);
  border-radius: var(--r-s); padding: 7px 11px; font: 500 14px var(--body);
  color: var(--ink); cursor: pointer;
}
.nav-drawer { display: none; border-top: 1px solid var(--rule); padding: 10px 0 16px; }
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block; padding: 11px 0; color: var(--ink); text-decoration: none;
  font-weight: 500; border-bottom: 1px solid var(--rule);
}

/* ---------- shots ---------- */
.shot { position: relative; margin: 0; overflow: hidden; border-radius: var(--r-m); background: var(--paper-2); }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot.r169 { aspect-ratio: 16 / 9; }
.shot.r32  { aspect-ratio: 3 / 2; }
.shot.r23  { aspect-ratio: 2 / 3; }
.shot.r11  { aspect-ratio: 1 / 1; }
.yarn {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 25%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 60%),
    linear-gradient(140deg, var(--accent-soft), var(--paper-2));
}

/* ---------- cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-m);
  overflow: hidden; display: flex; flex-direction: column;
}
.card .shot { border-radius: 0; }
.card-body { padding: 13px 14px 15px; display: flex; flex-direction: column; gap: 6px; }
.card-kick {
  margin: 0; font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.card-title { margin: 0; font-size: 16px; line-height: 1.32; font-family: var(--body); font-weight: 700; }
.card-title a { color: var(--ink); text-decoration: none; }
.card-title a:hover { color: var(--ochre); }
.card-facts { margin: 2px 0 0; font-size: 13px; color: var(--ink-2); }

.grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.grid-1 { grid-template-columns: 1fr; }

/* ---------- article ---------- */
.post-head { padding: 22px 0 6px; }
.eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); text-decoration: none; margin-bottom: 8px;
}
.post-title { font-size: 30px; line-height: 1.1; margin-bottom: 10px; }
.dek { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: var(--measure); margin-bottom: 14px; }
.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2); padding: 12px 0; border-block: 1px solid var(--rule);
}
.byline img { width: 32px; height: 32px; border-radius: var(--r-pill); }
.byline a { color: var(--ink); font-weight: 600; text-decoration: none; }
.byline .sep { color: var(--rule); }

.entry { max-width: var(--measure); }
.entry h2 { margin-top: 1.6em; font-size: 25px; }
.entry h3 { margin-top: 1.4em; }
.entry a { color: var(--slate); }
.entry ul, .entry ol { padding-left: 1.15em; }
.entry li { margin-bottom: .45em; }
.entry blockquote {
  margin: 1.6em 0; padding: 2px 0 2px 18px; border-left: 3px solid var(--accent);
  font-family: var(--display); font-size: 20px; line-height: 1.45;
}
.entry figure { margin: 1.6em 0; }
.entry figcaption { font-size: 13.5px; color: var(--ink-2); padding-top: 7px; }

/* ---------- round-up entries ---------- */
.item { padding: 22px 0; border-top: 1px solid var(--rule); }
.item:first-of-type { border-top: 0; }
.item-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 26px; height: 26px; padding: 0 7px; border-radius: var(--r-pill);
  background: var(--accent-soft); color: var(--ink);
  font-size: 12.5px; font-weight: 700; margin-bottom: 8px;
}
.item h3 { margin: 0 0 6px; font-size: 20px; }
.item .shot { margin-bottom: 12px; }
.item p { max-width: var(--measure-list); }
.specs { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 11px; padding: 0; list-style: none; }
.spec {
  font-size: 12.5px; font-weight: 600; padding: 4px 11px; border-radius: var(--r-pill);
  background: var(--paper-2); color: var(--ink-2);
}
.spec.lvl { background: var(--accent-soft); color: var(--ink); }
.credit { font-size: 13.5px; color: var(--ink-2); }

/* ---------- tables ---------- */
.tbl-wrap { margin: 1.5em 0; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--rule); }
th { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-2); }

/* Stack rather than scroll. A horizontally scrolling table cuts text off and
   readers do not discover the scroll. */
@media (max-width: 780px) {
  table, tbody, tr, td { display: block; width: 100%; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  tr {
    margin-bottom: 12px; border: 1px solid var(--rule); border-radius: var(--r-m);
    overflow: hidden; background: var(--paper);
  }
  td { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--rule); }
  td:last-child { border-bottom: 0; }
  td::before {
    content: attr(data-label); font-weight: 700; font-size: 13px; color: var(--ink-2);
    flex: 0 0 40%;
  }
}

/* ---------- callouts ---------- */
.note, .tip, .warn {
  margin: 1.5em 0; padding: 14px 16px; border-radius: var(--r-m);
  border-left: 3px solid var(--accent); background: var(--accent-soft); font-size: 16px;
}
.tip  { --accent: var(--sage);  background: var(--sage-soft); }
.warn { --accent: var(--ochre); background: var(--ochre-soft); }
.note p:last-child, .tip p:last-child, .warn p:last-child { margin-bottom: 0; }

/* ---------- jump nav, hub, siblings ---------- */
.jump { margin: 1.6em 0; padding: 15px 16px; background: var(--paper-2); border-radius: var(--r-m); }
.jump h2 { font-size: 15px; font-family: var(--body); font-weight: 700; margin-bottom: 9px; }
.jumplist { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 22px; }
.jumplist li { margin-bottom: 5px; break-inside: avoid; }
.jumplist a { font-size: 14.5px; text-decoration: none; }
.jumplist .n { color: var(--ink-2); font-variant-numeric: tabular-nums; margin-right: 7px; }

.siblings { margin: 2em 0; padding: 16px; border: 1px solid var(--rule); border-radius: var(--r-m); }
.siblings h2 { font-size: 15px; font-family: var(--body); font-weight: 700; margin-bottom: 10px; }
.siblings ul { list-style: none; margin: 0; padding: 0; }
.siblings li { padding: 8px 0; border-top: 1px solid var(--rule); }
.siblings li:first-child { border-top: 0; }
.siblings a { font-weight: 600; text-decoration: none; }

/* ---------- footer ---------- */
.site-foot {
  margin-top: 48px; border-top: 1px solid var(--rule); background: var(--paper-2);
  padding: 28px 0 34px; font-size: 14.5px; color: var(--ink-2);
}
.foot-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.site-foot a { color: var(--ink); text-decoration: none; }
.site-foot a:hover { color: var(--ochre); }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols li { margin-bottom: 6px; }
.foot-h { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 9px; }
.foot-legal { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--rule); font-size: 13.5px; }

/* ---------- breadcrumbs, pagination ---------- */
.crumbs { font-size: 13.5px; color: var(--ink-2); padding: 14px 0 0; }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--ochre); }
.pager { display: flex; gap: 8px; flex-wrap: wrap; margin: 30px 0 0; }
.pager a, .pager span {
  padding: 8px 13px; border: 1px solid var(--rule); border-radius: var(--r-s);
  text-decoration: none; font-size: 14.5px; color: var(--ink);
}
.pager .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- archive head ---------- */
.arch-head { padding: 26px 0 18px; border-bottom: 1px solid var(--rule); margin-bottom: 24px; }
.arch-head h1 { font-size: 30px; margin-bottom: 8px; }
/* The measure goes on the text, never on a box that also has margin-inline:auto,
   or the narrower box centres itself and the heading drifts off its own grid. */
.arch-head p { max-width: var(--measure); color: var(--ink-2); margin: 0; }

/* ---------- wider ---------- */
@media (min-width: 640px) {
  h1 { font-size: 38px; }
  .post-title { font-size: 38px; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .foot-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  body { font-size: 17px; }
  h1 { font-size: 44px; line-height: 1.09; }
  h2 { font-size: 30px; line-height: 1.13; }
  h3 { font-size: 21px; line-height: 1.24; }
  .post-title { font-size: 44px; }
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .grid { grid-template-columns: repeat(4, 1fr); }
  .item { display: grid; grid-template-columns: 300px 1fr; gap: 22px; align-items: start; }
  .item .shot { margin-bottom: 0; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ---------- home, reference layout ---------- */
.hero { padding: 34px 0 30px; border-bottom: 1px solid var(--rule); position: relative; }
.hero.has-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-img); background-size: cover; background-position: center;
  opacity: .17;
}
.hero.has-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--paper) 55%, transparent), var(--paper));
}
.hero-in { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ochre); margin: 0 0 12px;
}
.hero h1 { font-size: 34px; line-height: 1.08; max-width: 17ch; margin-bottom: 14px; }
.hero h1 em { font-style: italic; color: var(--slate); }
.hero-d { font-size: 17.5px; line-height: 1.55; color: var(--ink-2); max-width: 56ch; margin-bottom: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-stats { display: flex; gap: 28px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--rule); }
.stat-num { font-family: var(--display); font-size: 26px; font-weight: 600; line-height: 1; }
.stat-label { font-size: 12px; color: var(--ink-2); margin-top: 4px; }

.btn { display: inline-block; padding: 11px 20px; border-radius: var(--r-pill); font-weight: 600; font-size: 15px; text-decoration: none; }
.btn-1 { background: var(--ink); color: var(--paper); }
.btn-1:hover { background: var(--slate); color: var(--paper); }
.btn-2 { border: 1px solid var(--rule); color: var(--ink); }
.btn-2:hover { border-color: var(--ochre); color: var(--ochre); }

.lead, .sections, .wall { padding: 34px 0 0; }
.lead-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.lead-side { display: grid; gap: 16px; }
.card-lg .card-title { font-size: 21px; line-height: 1.22; }
.card-dek { font-size: 14px; color: var(--ink-2); margin: 2px 0 0; }

.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.sec-title { font-size: 26px; margin: 0; }
.sec-title em { font-style: italic; color: var(--ochre); }
.sec-sub { color: var(--ink-2); margin: 8px 0 0; max-width: var(--measure); font-size: 15.5px; }
.sec-all { font-size: 14.5px; font-weight: 600; text-decoration: none; white-space: nowrap; }

.sec-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.sec-tile {
  display: block; padding: 15px 15px 16px; border-radius: var(--r-m);
  border: 1px solid var(--rule); background: var(--accent-soft); text-decoration: none; color: var(--ink);
}
.sec-tile:hover { border-color: var(--accent); color: var(--ink); }
.sec-tile h3 { font-size: 15.5px; margin: 0 0 4px; }
.sec-tile p { font-size: 13px; color: var(--ink-2); margin: 0; }
.tile-foot {
  display: flex; justify-content: space-between; align-items: center; margin-top: 11px;
  font-size: 11.5px; font-weight: 700; color: var(--accent); letter-spacing: .05em; text-transform: uppercase;
}

.pinstrip { margin-top: 44px; background: var(--slate); color: var(--paper); padding: 30px 0; }
.pinstrip-in { display: grid; gap: 16px; align-items: center; }
.pinstrip h2 { font-size: 26px; margin: 4px 0 8px; color: var(--paper); }
.pinstrip p { color: color-mix(in srgb, var(--paper) 80%, transparent); margin: 0; max-width: 50ch; }
.pin-eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ochre); margin: 0; }
.pinstrip .btn-1 { background: var(--paper); color: var(--ink); justify-self: start; }
.pinstrip .btn-1:hover { background: var(--ochre); color: var(--paper); }

@media (min-width: 640px) {
  .hero { padding: 54px 0 44px; }
  .hero h1 { font-size: 50px; }
  .sec-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .pinstrip-in { grid-template-columns: 1fr auto; }
}
@media (min-width: 900px) {
  .hero h1 { font-size: 58px; }
  .sec-title { font-size: 30px; }
  .lead-grid { grid-template-columns: 1.35fr 1fr; gap: 20px; }
  .sec-grid { grid-template-columns: repeat(4, 1fr); }
  .card-lg .card-title { font-size: 25px; }
}

/* ---------- cards, reference density ---------- */
.card { background: var(--paper); border: 1px solid var(--rule); }
.card-kick {
  display: flex; align-items: center; gap: 6px; margin: 0 0 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.ck-cat { color: var(--accent); }
.ck-sep, .ck-kind { color: var(--ink-2); font-weight: 600; }
.card-title { font-family: var(--display); font-weight: 600; font-size: 18px; line-height: 1.2; letter-spacing: -.005em; }
.card-dek { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); margin: 6px 0 0; }
.card-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 11px 0 0; }
.pill {
  font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--paper-2); color: var(--ink-2);
}
.pill-lvl { background: var(--accent-soft); color: var(--ink); }

/* ---------- silo tiles, with the corner blob ---------- */
.sec-tile { position: relative; overflow: hidden; background: var(--paper); padding: 17px 16px 16px; }
.sec-tile::before {
  content: ''; position: absolute; top: 0; right: 0; width: 76px; height: 76px;
  background: var(--accent-soft); border-bottom-left-radius: 100%;
}
.tile-n {
  position: relative; z-index: 1; display: block; font-size: 11px; font-weight: 700;
  color: var(--accent); margin-bottom: 6px; font-variant-numeric: tabular-nums;
}
.sec-tile h3 { position: relative; z-index: 1; font-family: var(--display); font-weight: 600; font-size: 19px; margin: 0 0 6px; }
.sec-tile p { position: relative; z-index: 1; font-size: 13px; line-height: 1.5; color: var(--ink-2); margin: 0 0 10px; }
.tile-arrow { position: relative; z-index: 1; display: block; color: var(--ochre); font-size: 16px; line-height: 1; }

/* ---------- pinstrip, dark ---------- */
.pinstrip { margin-top: 48px; background: var(--ink); color: var(--paper); padding: 40px 0; }
.pinstrip-in { display: grid; gap: 18px; align-items: center; }
.pinstrip h2 { font-size: 30px; margin: 6px 0 10px; color: var(--paper); }
.pinstrip p { color: color-mix(in srgb, var(--paper) 72%, transparent); margin: 0; max-width: 46ch; font-size: 15px; }
.pin-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin: 0; }
.pinstrip .btn-1 { background: var(--paper); color: var(--ink); justify-self: start; }
.pinstrip .btn-1:hover { background: var(--ochre); color: var(--paper); }

/* ---------- footer, dark ---------- */
.site-foot { margin-top: 0; background: var(--ink); color: color-mix(in srgb, var(--paper) 70%, transparent); border: 0; padding: 40px 0 26px; }
.site-foot a { color: color-mix(in srgb, var(--paper) 88%, transparent); }
.site-foot a:hover { color: var(--ochre); }
.site-foot .brand { color: var(--paper); font-size: 24px; }
.site-foot .brand em { color: var(--ochre); }
.foot-tag { margin-top: 12px; max-width: 34ch; font-size: 14.5px; line-height: 1.6; }
.foot-h { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.foot-cols li { margin-bottom: 9px; font-size: 14.5px; }
.foot-legal {
  margin-top: 30px; padding-top: 18px; font-size: 13px;
  border-top: 1px solid color-mix(in srgb, var(--paper) 14%, transparent);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.foot-legal nav { display: flex; flex-wrap: wrap; gap: 14px; }
.foot-note { font-style: italic; color: color-mix(in srgb, var(--paper) 52%, transparent); }

@media (min-width: 640px) {
  .card-title { font-size: 19px; }
  .pinstrip-in { grid-template-columns: 1fr auto; }
}
@media (min-width: 900px) {
  .pinstrip h2 { font-size: 34px; }
  .card-lg .card-title { font-size: 27px; }
}

/* Editors see drafts in listings, so the card has to admit what it is. */
.draft-flag {
  display: inline-block; margin-top: 6px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px;
  border-radius: var(--r-s); background: var(--ochre-soft); color: var(--ochre);
}

/* Hub body sits above the card grid on a category page. */
.hub-body { margin: 4px 0 8px; }
.hub-body h2:first-child { margin-top: 0; }

/* An item with no photograph yet: single column, no empty image box. */
@media (min-width: 900px) { .item.item-noimg { grid-template-columns: 1fr; } }

/* Round-up items break out of the reading measure.
   Prose wants 68 characters. An item is a photograph beside a short block of
   text, and holding that to a prose measure left 40 percent of a desktop screen
   empty while squeezing the text into a ribbon. */
@media (min-width: 900px) {
  .entry .item,
  .entry .jump,
  .entry .tbl-wrap { max-width: 880px; width: 880px; }
  .entry .item { grid-template-columns: 340px 1fr; gap: 28px; }
  .entry .item .shot { aspect-ratio: 3 / 2; }
  .entry .item h3 { font-size: 22px; }
  .entry .item p { max-width: none; }
  .jumplist { columns: 3; }
}
@media (min-width: 1120px) {
  .entry .item,
  .entry .jump,
  .entry .tbl-wrap { max-width: 980px; width: 980px; }
  .entry .item { grid-template-columns: 400px 1fr; }
}

/* Pinterest save, revealed on hover and always present for keyboard users. */
.shot { position: relative; }
.save {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: #E60023; color: #fff; text-decoration: none;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  padding: 7px 14px; border-radius: var(--r-pill);
  opacity: 0; transition: opacity .15s ease;
}
.shot:hover .save, .save:focus-visible { opacity: 1; color: #fff; }
@media (hover: none) { .save { opacity: 1; } }

.item-shot { position: relative; }
.item-shot .save { top: 8px; right: 8px; }
.item-shot:hover .save { opacity: 1; }
