:root {
  --bg: #f4efe4;
  --bg-2: #fffdf8;
  --ink: #161412;
  --mute: #6b6458;
  --line: rgba(22, 20, 18, .12);
  --line-2: rgba(22, 20, 18, .22);
  --red: #c1121f;
  --red-2: #8a0d16;
  --paper: #161412;
  --paper-2: #3a352e;
  --danger: #c1121f;
  --serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --sans: "Figtree", "Source Sans 3", system-ui, sans-serif;
  --radius: 0;
  --header-h: 64px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); color-scheme: light; }
html, body { min-height: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  font-size: 17px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
.skip { position: absolute; left: -999px; }
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex; align-items: center; gap: 16px;
  min-height: var(--header-h);
}
.brand {
  display: flex; align-items: baseline; gap: 10px;
  margin-right: auto;
}
.brand strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.04em;
  font-optical-sizing: auto;
}
.brand em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mute);
  font-size: .88rem;
  display: none;
}
@media (min-width: 1100px) {
  .brand em { display: inline; }
}
.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line-2);
  background: transparent;
  padding: 7px 10px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav {
  display: flex; align-items: center; gap: 4px 18px;
  flex-wrap: wrap;
  font-size: .92rem;
  font-weight: 500;
}
.nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a.is-on { border-color: var(--red); }
.search-mini {
  display: flex;
  border-bottom: 1px solid var(--line-2);
}
.search-mini input {
  width: 148px;
  border: 0;
  background: transparent;
  padding: 6px 0;
  outline: none;
}
.search-mini input::placeholder { color: var(--mute); }
.compose { position: relative; }
.compose-btn, .nav .cta, .btn {
  appearance: none;
  border: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  font-weight: 650;
  cursor: pointer;
  font-size: .88rem;
  letter-spacing: .02em;
}
.compose-btn:hover, .btn:hover { background: var(--red); }
.form .btn { justify-self: start; }
.compose-menu {
  position: absolute;
  right: 0; top: calc(100% + 6px);
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  box-shadow: 0 16px 40px rgba(22,20,18,.12);
  display: none;
  z-index: 50;
}
.compose.is-open .compose-menu { display: grid; }
.compose-menu a {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2px;
}
.compose-menu a:last-child { border-bottom: 0; }
.compose-menu a:hover { background: #f7f1e6; }
.compose-menu small {
  color: var(--mute);
  font-size: .78rem;
  font-weight: 400;
}
.flash {
  margin: 18px auto 0;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.flash-ok { border-color: #2f6d3a; }
.flash-error { border-color: var(--red); color: var(--red-2); }
.interview-error { width: auto; margin: 0 0 16px; }

.notice-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(22, 20, 18, .58);
  place-items: center;
  padding: 24px;
}
.notice-screen.is-on { display: grid; }
.notice-card {
  width: min(440px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--ink);
  padding: 28px 24px 22px;
  text-align: center;
}
.notice-card p {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 20px;
}
.notice-card.is-error p { color: var(--red-2); }
.notice-card .btn { min-width: 7rem; }

.masthead {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 18px 0 0;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
}
.cover {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 18px 0 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  align-items: stretch;
}
.cover-media {
  width: 100%;
  min-width: 0;
  background: #d9d0c2;
  align-self: start;
}
.cover-media img,
.cover-media .ph {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 800px) {
  .cover { grid-template-columns: 220px 1fr; }
}
.cover-copy {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.cover-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 12px 0 16px;
  text-wrap: balance;
}
.cover-copy .lead {
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 42ch;
}
.cover-copy .meta { margin-top: 18px; }

.doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0 0 16px;
}
@media (min-width: 800px) {
  .doors { grid-template-columns: repeat(3, 1fr); }
}
.door {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 170px;
  padding: 22px;
  background: var(--bg);
  transition: background .2s;
}
.door:hover { background: var(--bg-2); }
.door small {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.door h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -.03em;
  margin: 16px 0 8px;
}
.door p { color: var(--mute); font-size: .95rem; }

.radio-strip {
  display: flex;
  align-items: center;
  gap: 10px 12px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  margin: 0 0 36px;
  background: var(--bg-2);
}
.radio-play {
  width: 36px; height: 36px;
  border: 0; border-radius: 50%;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.radio-play:hover { background: var(--red-2); }
.radio-play svg { width: 15px; height: 15px; fill: currentColor; }
.radio-play .icon-stop { display: none; }
.radio-play.is-on .icon-play { display: none; }
.radio-play.is-on .icon-stop { display: block; }
.radio-copy { min-width: 0; flex: 1; }
.radio-copy .now {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
  margin-bottom: 2px;
}
.radio-title {
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.radio-meta { color: var(--red-2); margin: 2px 0 0; font-size: .78rem; }
.radio-meta:empty { display: none; }
.radio-vol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.radio-vol .vol-mute {
  width: 28px; height: 28px; border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--mute);
}
.radio-vol .vol-mute svg { width: 16px; height: 16px; fill: currentColor; }
.radio-vol .vol-mute .icon-mute { display: none; }
.radio-vol .vol-mute.is-muted .icon-on { display: none; }
.radio-vol .vol-mute.is-muted .icon-mute { display: block; }
.radio-vol .vol-mute.is-muted { color: var(--red); }
.radio-vol input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 88px;
  height: 4px;
  border-radius: 99px;
  background: var(--line);
  outline: none;
}
.radio-vol input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  cursor: pointer;
}
.radio-vol input[type="range"]::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  cursor: pointer;
}
.radio-vol .vol-pct {
  min-width: 2.8ch;
  font-size: .75rem; font-weight: 600;
  color: var(--mute); text-align: right;
}
.radio-room {
  color: var(--mute);
  font-size: .82rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.radio-room:hover { color: var(--red); }
.radio-strip audio { display: none; }
@media (max-width: 720px) {
  .radio-strip { flex-wrap: wrap; padding: 8px 10px; margin-bottom: 28px; }
  .radio-copy { flex: 1 1 calc(100% - 52px); }
  .radio-vol { flex: 1; }
  .radio-vol input[type="range"] { width: auto; flex: 1; max-width: 160px; }
  .radio-vol .vol-pct,
  .radio-room { display: none; }
}

.section { padding: 4px 0 52px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -.03em;
  font-weight: 600;
}
.section-head a { color: var(--mute); font-size: .9rem; }
.section-head a:hover { color: var(--red); }

.grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) {
  .grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 0;
  background: transparent;
  min-height: 118px;
}
.card.stack { grid-template-columns: 1fr; }
.card img, .ph {
  width: 96px; height: 124px; object-fit: cover;
  background: #d9d0c2;
}
.card.stack img, .card.stack .ph { width: 100%; height: 240px; }
.ph {
  display: grid; place-items: center;
  color: var(--mute); font-family: var(--serif); font-size: 1.4rem;
}
.meta {
  color: var(--mute);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: -.02em;
  line-height: 1.22;
  margin-bottom: 6px;
  font-weight: 600;
}
.card:hover h3 { color: var(--red); }
.card .ex { color: var(--mute); font-size: .92rem; }
.empty {
  color: var(--mute);
  font-family: var(--serif);
  font-style: italic;
  padding: 28px 0;
  font-size: 1.2rem;
}
.empty a { border-bottom: 1px solid var(--red); color: var(--ink); }

.page-title { padding: 40px 0 26px; }
.page-title h1, h1.page-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  letter-spacing: -.045em;
  line-height: .98;
  font-weight: 600;
  text-wrap: balance;
}
.page-title p { color: var(--mute); margin-top: 12px; max-width: 52ch; font-size: 1.05rem; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filters a, .chip {
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  font-size: .82rem;
  color: var(--mute);
}
.filters a.is-on, .chip {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
}

.article { display: grid; gap: 28px; padding-bottom: 72px; }
@media (min-width: 880px) {
  .article.with-side { grid-template-columns: 220px 1fr; gap: 56px; }
}
.portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.portrait .who {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.28rem;
}
.portrait .who a:hover { color: var(--red); }
.portrait .who span { display: block; color: var(--mute); font-size: .88rem; font-family: var(--sans); margin-top: 4px; }
.photo-edit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.photo-edit .btn {
  padding: 6px 10px;
  min-width: 0;
  font-size: .85rem;
}
.crop-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(22, 20, 18, .62);
  place-items: center;
  padding: 16px;
}
.crop-screen.is-on { display: grid; }
.crop-card {
  width: min(520px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--ink);
  padding: 18px 16px 16px;
}
.crop-card p {
  font-family: var(--serif);
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.crop-stage {
  position: relative;
  display: inline-block;
  max-width: 100%;
  user-select: none;
  touch-action: none;
}
.crop-stage img {
  display: block;
  max-width: 100%;
  max-height: 68vh;
  height: auto;
}
.crop-box {
  position: absolute;
  border: 2px solid #fff;
  box-shadow: 0 0 0 9999px rgba(22, 20, 18, .45);
  cursor: grab;
  box-sizing: border-box;
}
.crop-h {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid var(--ink);
  z-index: 2;
}
.crop-h[data-h="nw"] { left: -7px; top: -7px; cursor: nwse-resize; }
.crop-h[data-h="ne"] { right: -7px; top: -7px; cursor: nesw-resize; }
.crop-h[data-h="sw"] { left: -7px; bottom: -7px; cursor: nesw-resize; }
.crop-h[data-h="se"] { right: -7px; bottom: -7px; cursor: nwse-resize; }
.crop-box:active { cursor: grabbing; }
.crop-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}
.body {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.72;
  max-width: 62ch;
  font-optical-sizing: auto;
}
.body p { margin: 0 0 1em; }
.body p:first-of-type::first-letter {
  font-size: 3.4rem;
  float: left;
  line-height: .8;
  padding: 8px 10px 0 0;
  font-weight: 600;
}
.body.poem { line-height: 1.45; }
.body.poem p { margin: 0 0 1.25em; white-space: normal; }
.body.poem p:last-child { margin-bottom: 0; }
.body.poem p:first-of-type::first-letter { font-size: inherit; float: none; padding: 0; }
.related { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--ink); }
.related h2 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 16px; }

.author-head {
  display: grid;
  gap: 22px;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 36px;
}
@media (min-width: 700px) {
  .author-head { grid-template-columns: 160px 1fr; align-items: end; }
}
.author-head img, .author-head .ph {
  width: 160px; height: 200px; object-fit: cover;
}
.author-head h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.form {
  max-width: 640px;
  display: grid;
  gap: 16px;
  padding-bottom: 72px;
}
label span, .lab {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
  font-weight: 600;
}
input[type=text], input[type=password], input[type=search], input[type=file], select, textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 12px 12px;
  outline: none;
  border-radius: 0;
}
textarea { min-height: 220px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
.row2 { display: grid; gap: 12px; }
@media (min-width: 640px) { .row2 { grid-template-columns: 1fr 1fr; } }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn.danger { background: var(--danger); color: #fff; }
.btn[disabled] { opacity: .5; cursor: wait; }
.hint { color: var(--mute); font-size: .88rem; }

.chat { max-width: 720px; padding-bottom: 80px; }
.chat-progress {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.bubbles { display: grid; gap: 12px; margin: 18px 0; min-height: 80px; }
.bubble {
  max-width: 86%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
  background: var(--bg-2);
}
.bubble.ai { border-color: var(--ink); }
.bubble.user { justify-self: end; background: transparent; }
.composer { display: grid; gap: 10px; }
.composer textarea { min-height: 100px; }
.actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.turns { display: grid; gap: 28px; max-width: 70ch; }
.turn .who {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  font-weight: 600;
}
.turn.user .who { color: var(--mute); }
.turn p {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.65;
}
.pager { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0; }
.pager a, .pager span {
  min-width: 36px; text-align: center;
  padding: 6px 8px;
  border: 1px solid var(--line-2);
}
.pager .is-on { background: var(--ink); color: var(--bg); }
.site-footer {
  border-top: 1px solid var(--ink);
  padding: 36px 0 48px;
  display: grid;
  gap: 22px;
}
@media (min-width: 800px) {
  .site-footer { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; }
}
.site-footer strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 6px;
}
.site-footer .slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}
.site-footer a { display: block; padding: 4px 0; color: var(--mute); }
.site-footer a:hover { color: var(--red); }
.waiting { color: var(--red); font-style: italic; font-family: var(--serif); }
.publish-box {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--ink);
  display: none;
  background: var(--bg-2);
}
.publish-box.is-on { display: grid; gap: 12px; }
.share {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 36px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.share span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-right: 6px;
  font-weight: 600;
}
.share a {
  border: 1px solid var(--ink);
  padding: 7px 12px;
  font-size: .85rem;
}
.share a:hover { background: var(--ink); color: var(--bg); }

.search-page .form { max-width: 100%; padding-bottom: 28px; }
.search-page input[type=search] { font-size: 1.2rem; padding: 14px 12px; }

.admin-login { max-width: 380px; margin: 12vh auto; }
.admin-shell { display: grid; grid-template-columns: 1fr; min-height: 100vh; }
@media (min-width: 880px) {
  .admin-shell { grid-template-columns: 230px 1fr; }
}
.admin-side {
  border-right: 1px solid var(--line);
  padding: 22px 18px;
  background: var(--bg-2);
}
.admin-side a { display: block; padding: 7px 0; color: var(--mute); }
.admin-side a.is-on, .admin-side a:hover { color: var(--ink); }
.admin-main { padding: 22px; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--mute); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 22px; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(6, 1fr); } }
.stat { border: 1px solid var(--line); padding: 16px; background: var(--bg-2); }
.stat b { display: block; font-family: var(--serif); font-size: 2rem; letter-spacing: -.04em; }
.inline-forms { display: flex; gap: 6px; flex-wrap: wrap; }
.hidden-tag { color: var(--red); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.pending-tag { color: #a15c12; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.news-article { max-width: 760px; }
.news-article .body p:first-of-type::first-letter {
  font-size: inherit;
  float: none;
  padding: 0;
  font-weight: inherit;
  line-height: inherit;
}
.news-hero {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 18px 0 8px;
  background: #d9d0c2;
}
.news-meta { margin: 8px 0 0; }
.source-line {
  color: var(--mute);
  font-size: .92rem;
  margin: 14px 0 22px;
}
.source-line a, .source-box a {
  border-bottom: 1px solid var(--red);
}
.source-box {
  margin: 28px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: .95rem;
  max-width: 62ch;
}

.wait-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 20, 18, .58);
  place-items: center;
  padding: 28px 22px;
  cursor: wait;
}
.wait-screen.is-on {
  display: grid;
}
.wait-screen p {
  max-width: 18em;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.4;
  color: #fffdf8;
  font-weight: 600;
}
body.is-waiting { overflow: hidden; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: var(--header-h);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .site-header.is-open .nav { display: flex; }
  .search-mini input { width: 100%; }
  .card { grid-template-columns: 72px 1fr; }
  .card img, .ph { width: 72px; height: 96px; }
  .cover-copy { padding: 22px 18px 24px; }
  .body p:first-of-type::first-letter { font-size: 2.6rem; }
}
