:root {
  --paper: #f4efe4;
  --ink: #1b1712;
  --muted: #5c5348;
  --rule: #1b1712;
  --accent: #8b1e1e;
  --card: #fbf7ee;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: #d9d0c0;
  color: var(--ink);
  font-family: "Libre Baskerville", "Times New Roman", serif;
}

.paper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 28px 64px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), transparent 90px),
    var(--paper);
  min-height: 100dvh;
  box-shadow: 0 0 0 1px rgba(27, 23, 18, .08), 0 18px 50px rgba(27, 23, 18, .12);
}

.masthead { text-align: center; }
.kicker {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
}
.masthead h1 {
  margin: 6px 0 0;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(42px, 9vw, 84px);
  line-height: .9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.tagline {
  margin: 10px 0 0;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}
.rule {
  height: 3px;
  background: var(--rule);
  margin: 18px 0 10px;
  box-shadow: 0 4px 0 var(--rule);
}
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
}
.find {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.find input {
  border: 1px solid var(--rule);
  background: var(--card);
  padding: 6px 8px;
  font: 14px "Libre Baskerville", serif;
  width: min(240px, 46vw);
  text-transform: none;
  letter-spacing: 0;
}

.desks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  justify-content: center;
  margin: 12px 0 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desks button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.desks button[aria-current="true"] {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.status, .empty {
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

.lead {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  padding: 22px 0 8px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.lead img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #cfc6b4;
  filter: grayscale(.15) contrast(1.05);
}
.lead .desk-label {
  color: var(--accent);
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 8px;
}
.lead h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.lead p { margin: 0; font-size: 17px; line-height: 1.45; }
.lead .byline { margin-top: 14px; font-size: 12px; color: var(--muted); font-style: italic; }

.broadsheet {
  columns: 3;
  column-gap: 22px;
  margin-top: 18px;
}
.story {
  break-inside: avoid;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #c9bfae;
  cursor: pointer;
}
.story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 8px;
  background: #cfc6b4;
  filter: grayscale(.12);
}
.story h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 6px;
}
.story p { margin: 0; font-size: 14px; line-height: 1.45; color: #2a241c; }
.story .byline { margin-top: 8px; font-size: 11px; color: var(--muted); font-style: italic; }

.colophon {
  margin-top: 36px;
  padding-top: 14px;
  border-top: 3px double var(--rule);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

.clipping {
  width: min(720px, 92vw);
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 0 0 24px;
}
.clipping::backdrop { background: rgba(27, 23, 18, .55); }
.clipping img { width: 100%; max-height: 320px; object-fit: cover; background: #cfc6b4; }
.clipping .close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: var(--paper);
  font-size: 28px;
  cursor: pointer;
  width: 36px;
  height: 36px;
}
.clipping h2 {
  font-family: "Playfair Display", serif;
  margin: 12px 24px 8px;
  font-size: 32px;
  line-height: 1.1;
}
.clipping .desk-label, .clipping .byline, .clipping .body, .clipping a {
  margin-left: 24px;
  margin-right: 24px;
}
.clipping .body { font-size: 16px; line-height: 1.55; }
.clipping a { color: var(--accent); }

@media (max-width: 880px) {
  .lead { grid-template-columns: 1fr; }
  .broadsheet { columns: 2; }
  .meta-row { flex-direction: column; align-items: stretch; }
}
@media (max-width: 620px) {
  .paper { padding: 18px 14px 48px; }
  .broadsheet { columns: 1; }
  .masthead h1 { font-size: 48px; }
}
