:root {
  color-scheme: light;
  --paper: #f4f2ed;
  --surface: #fbfaf7;
  --ink: #171715;
  --muted: #66645f;
  --faint: #8a8881;
  --line: #c9c6bd;
  --line-dark: #77746d;
  --focus: #294c7a;
  --sans: "Aptos", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --serif: "Iowan Old Style", "Songti SC", "STSong", "SimSun", serif;
  --page: min(1420px, calc(100% - 48px));
  font-synthesis: none;
  line-break: strict;
  overflow-wrap: break-word;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  width: var(--page);
  margin: 0 auto;
}

.utility-bar {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.utility-bar .wordmark {
  width: max-content;
  font-weight: 750;
  text-decoration: none;
}

.utility-bar > p:nth-child(2) {
  color: var(--muted);
  text-align: center;
}

#publication-status {
  justify-self: end;
  font-variant-numeric: tabular-nums;
}

.masthead {
  min-height: 174px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 48px;
  padding: 28px 0 30px;
  border-bottom: 4px solid var(--ink);
}

.masthead-kicker,
.section-kicker,
.story-kicker,
.edition-intro > div > p,
.search-view-header > div > p,
.library-boundary > div > p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.masthead h1 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.8vw, 98px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.masthead-deck {
  max-width: 31em;
  padding-bottom: 4px;
  color: #393834;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
}

.discovery-form {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--ink);
}

.search-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.search-mark {
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-mark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 1.5px;
  right: -5px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
}

.search-field input {
  min-width: 0;
  height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  outline: 0;
  background: transparent;
}

.search-field input:focus {
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.search-field kbd {
  padding: 1px 7px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  font-size: 11px;
}

.filter-row {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 14px;
}

.filter-row label,
.sort-switch {
  display: grid;
  gap: 3px;
}

.filter-row label > span,
.sort-switch > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.filter-row select,
.filter-row input {
  max-width: 148px;
  height: 30px;
  padding: 0 22px 0 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}

.sort-switch {
  grid-template-columns: auto auto;
}

.sort-switch > span {
  grid-column: 1 / -1;
}

.sort-switch button,
.clear-filters {
  height: 30px;
  padding: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.sort-switch button {
  min-width: 38px;
  color: var(--muted);
}

.sort-switch button.is-active {
  color: var(--ink);
  border-bottom-width: 3px;
  font-weight: 750;
}

.clear-filters {
  padding-inline: 8px;
}

.section-entries {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.section-entries button {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 1px 12px;
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.section-entries button:last-child {
  border-right: 0;
}

.section-entries button:hover,
.section-entries button.is-active {
  background: var(--ink);
  color: var(--surface);
}

.section-entries button span {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.section-entries button small {
  grid-column: 1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.section-entries button:hover small,
.section-entries button.is-active small {
  color: #b9b7b0;
}

.section-entries button strong {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

#knowledge-feed {
  width: var(--page);
  margin: 0 auto;
}

.edition-intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: end;
  padding: 42px 0 24px;
  border-bottom: 1px solid var(--ink);
}

.edition-intro h2,
.search-view-header h2,
.library-boundary h2 {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 47px);
  line-height: 1.14;
}

.edition-intro > p {
  max-width: 42em;
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
}

.homepage-lead {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 2fr) minmax(220px, 0.86fr);
  grid-template-areas: "recent weekly latest";
  align-items: start;
  gap: 24px;
  padding: 24px 0 56px;
  border-bottom: 4px solid var(--ink);
}

.weekly-lead {
  grid-area: weekly;
  min-width: 0;
}

.recent-daily {
  grid-area: recent;
}

.latest-asset {
  grid-area: latest;
}

.weekly-lead-button,
.latest-asset-button,
.long-term-story-button,
.result-row-button,
.daily-teaser,
.daily-archive-row {
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.weekly-cover,
.latest-asset-cover,
.long-term-cover,
.result-cover,
.detail-cover {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #dedbd3 0 50%, #c9c6bd 50% 100%);
}

.weekly-cover {
  aspect-ratio: 16 / 9;
}

.weekly-cover img,
.latest-asset-cover img,
.long-term-cover img,
.result-cover img,
.detail-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .weekly-lead-button:hover .weekly-cover img,
  .latest-asset-button:hover .latest-asset-cover img,
  .long-term-story-button:hover .long-term-cover img,
  .result-row-button:hover .result-cover img {
    transform: scale(1.015);
  }
}

.cover-fallback-label {
  display: none;
  position: absolute;
  inset: auto 14px 12px;
  color: #403f3a;
  font-size: 11px;
  font-weight: 750;
}

.is-fallback .cover-fallback-label {
  display: block;
}

.weekly-lead-copy {
  padding-top: 18px;
}

@media (min-width: 721px) {
  .weekly-lead-button {
    display: flex;
    flex-direction: column;
  }

  .weekly-lead-copy {
    order: -1;
    padding: 0 0 18px;
  }
}

.story-kicker {
  color: var(--ink);
}

.story-meta {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.weekly-lead-copy .story-meta {
  margin-top: 6px;
}

.weekly-lead h3 {
  max-width: 13em;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.story-summary {
  max-width: 36em;
  display: -webkit-box;
  margin-top: 12px;
  overflow: hidden;
  color: #494843;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-attribution {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.story-cta {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 750;
}

.recent-daily header,
.latest-asset header {
  min-height: 78px;
  padding-bottom: 13px;
  border-bottom: 3px solid var(--ink);
}

.recent-daily h3,
.latest-asset h3 {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
}

.section-note {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.recent-daily ol,
.daily-archive-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recent-daily li {
  border-bottom: 1px solid var(--line);
}

.daily-teaser {
  min-height: 116px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 10px;
  align-content: center;
}

.daily-teaser time {
  grid-row: 1 / 3;
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.daily-teaser strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.daily-teaser span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.daily-teaser:hover strong,
.latest-asset-button:hover h4,
.long-term-story-button:hover h3,
.result-row-button:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.latest-asset-button {
  padding-top: 16px;
}

.latest-asset-cover {
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
}

.latest-asset h4 {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.latest-asset-summary {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.no-recent-copy {
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.collection {
  padding: 54px 0 64px;
  border-bottom: 1px solid var(--ink);
}

.collection > header,
.daily-archive-section > header {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(320px, 1.2fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.collection h2,
.daily-archive-section h2 {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.08;
}

.collection-description {
  max-width: 40em;
  color: var(--muted);
  font-size: 14px;
}

.collection-count {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.collection-layout {
  display: grid;
  gap: 24px;
}

.collection-technical .collection-layout {
  grid-template-columns: minmax(0, 1.75fr) minmax(240px, 0.8fr);
}

.collection-technical .story-index-1 .long-term-cover {
  aspect-ratio: 16 / 9;
}

.collection-technical .story-index-2 .long-term-cover {
  aspect-ratio: 4 / 3;
}

.long-term-story-button {
  display: grid;
  gap: 18px;
}

.long-term-copy {
  min-width: 0;
}

.long-term-copy h3 {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-index-2 .long-term-copy h3 {
  font-size: clamp(20px, 1.8vw, 27px);
}

.long-term-summary {
  display: -webkit-box;
  max-width: 42em;
  margin-top: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.content-tags li {
  color: var(--muted);
  font-size: 10px;
}

.content-tags li::before {
  content: "#";
}

.collection-works .long-term-story-button {
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.75fr);
  align-items: end;
}

.collection-works .long-term-cover {
  aspect-ratio: 16 / 9;
}

.collection-values .collection-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
}

.collection-values .long-term-story {
  padding: 24px 0 0;
}

.collection-values .long-term-story + .long-term-story {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.collection-values .long-term-story:first-child {
  padding-right: 24px;
}

.collection-values .long-term-story-button {
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
}

.collection-values .long-term-cover {
  aspect-ratio: 3 / 4;
}

.daily-archive-section {
  padding: 58px 0 68px;
  border-bottom: 4px solid var(--ink);
}

.daily-archive-section li {
  border-top: 1px solid var(--line);
}

.daily-archive-section li:last-child {
  border-bottom: 1px solid var(--line);
}

.daily-archive-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 110px minmax(210px, 0.75fr) minmax(280px, 1.5fr) 44px;
  gap: 26px;
  align-items: center;
}

.daily-archive-row time {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.daily-archive-row strong {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}

.daily-archive-row span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.daily-archive-row em {
  justify-self: end;
  font-style: normal;
  font-size: 11px;
  font-weight: 750;
}

.daily-archive-row:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.library-boundary {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 60px;
  align-items: start;
  padding: 64px 0 86px;
}

.library-boundary > p {
  max-width: 42em;
  justify-self: end;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.8;
}

.search-view {
  padding: 42px 0 80px;
}

.search-view-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--ink);
}

#result-count {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.discovery-results {
  border-bottom: 1px solid var(--ink);
}

.result-row {
  border-bottom: 1px solid var(--line);
}

.result-row:last-child {
  border-bottom: 0;
}

.result-row-button {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  min-height: 210px;
  padding: 24px 0;
  align-items: start;
}

.result-cover {
  aspect-ratio: 4 / 3;
}

.result-copy h3 {
  max-width: 26em;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.22;
}

.result-summary {
  max-width: 47em;
  display: -webkit-box;
  margin-top: 9px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.loading-copy,
.state-panel {
  padding: 52px 0;
  color: var(--muted);
}

.state-panel {
  width: 100%;
  text-align: center;
}

.state-panel h2,
.state-panel h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
}

.state-panel p {
  max-width: 35em;
  margin: 8px auto 0;
}

.state-panel-home {
  grid-column: 1 / -1;
  min-height: 320px;
}

.retry {
  margin-top: 20px;
  padding: 10px 16px;
  color: var(--surface);
  background: var(--ink);
  cursor: pointer;
}

.detail-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  background: rgba(23, 23, 21, 0.45);
  backdrop-filter: blur(2px);
}

.knowledge-detail {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  width: min(540px, 100%);
  height: 100dvh;
  overflow: auto;
  color: var(--ink);
  background: var(--surface);
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.18);
  transform: translateX(101%);
  transition: transform 180ms ease;
}

.knowledge-detail[aria-hidden="false"] {
  transform: translateX(0);
}

.detail-is-open {
  overflow: hidden;
}

.detail-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
}

.detail-header p {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.detail-header h2 {
  font-size: 15px;
}

#detail-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.detail-content {
  padding: 24px 24px 46px;
}

.detail-cover {
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
}

.detail-meta,
.detail-attribution {
  color: var(--muted);
  font-size: 11px;
}

.detail-content h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.16;
}

.detail-summary {
  margin-top: 16px;
  color: #484742;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.8;
}

.detail-attribution {
  margin-top: 14px;
}

.content-actions {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.content-link,
.resource-link {
  width: max-content;
  max-width: 100%;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.content-link-disabled {
  color: var(--muted);
  border-bottom-color: var(--line);
}

.resource-links {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.resource-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.resource-link {
  width: auto;
  padding: 9px 0;
  border-bottom-color: var(--line);
  font-weight: 500;
}

@media (max-width: 1100px) {
  :root {
    --page: calc(100% - 36px);
  }

  .masthead {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
  }

  .discovery-form {
    grid-template-columns: minmax(290px, 1fr) auto;
  }

  .filter-row {
    gap: 10px;
  }

  .homepage-lead {
    grid-template-columns: minmax(175px, 0.7fr) minmax(0, 1.7fr) minmax(190px, 0.78fr);
    gap: 18px;
  }

  .daily-teaser {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .collection-values .long-term-story-button {
    grid-template-columns: 110px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .utility-bar {
    grid-template-columns: 1fr auto;
  }

  .utility-bar > p:nth-child(2) {
    display: none;
  }

  .masthead {
    min-height: 150px;
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .discovery-form {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px 0;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .section-entries button {
    padding-inline: 11px;
  }

  .section-entries button small {
    display: none;
  }

  .section-entries button strong {
    grid-row: 1;
  }

  .homepage-lead {
    grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.7fr);
    grid-template-areas:
      "weekly latest"
      "recent recent";
  }

  .recent-daily {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .recent-daily ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recent-daily li {
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }

  .daily-teaser {
    min-height: 100px;
    grid-template-columns: 1fr;
  }

  .daily-teaser time {
    grid-row: auto;
  }

  .collection > header,
  .daily-archive-section > header {
    grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr) auto;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .utility-bar {
    min-height: 34px;
    font-size: 10px;
  }

  .masthead {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0 17px;
    border-bottom-width: 3px;
  }

  .masthead-kicker {
    font-size: 8px;
  }

  .masthead h1 {
    margin-top: 4px;
    font-size: clamp(38px, 12vw, 52px);
  }

  .masthead-deck {
    max-width: 28em;
    padding: 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .discovery-form {
    gap: 7px;
    padding: 8px 0 9px;
  }

  .search-field input {
    height: 36px;
    font-size: 13px;
  }

  .search-field kbd {
    display: none;
  }

  .filter-row {
    width: calc(100vw - 28px);
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar,
  .section-entries::-webkit-scrollbar {
    display: none;
  }

  .filter-row label,
  .sort-switch,
  .clear-filters {
    flex: 0 0 auto;
  }

  .filter-row label > span,
  .sort-switch > span {
    display: none;
  }

  .filter-row select,
  .filter-row input,
  .sort-switch button,
  .clear-filters {
    height: 28px;
    font-size: 10px;
  }

  .section-entries {
    width: calc(100vw - 14px);
    grid-template-columns: repeat(5, minmax(128px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .section-entries button {
    min-height: 51px;
    scroll-snap-align: start;
  }

  .section-entries button span {
    font-size: 12px;
  }

  .section-entries button strong {
    font-size: 10px;
  }

  .edition-intro {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0 12px;
  }

  .edition-intro h2 {
    margin-top: 2px;
    font-size: 27px;
  }

  .edition-intro > p {
    justify-self: start;
    font-size: 10px;
    line-height: 1.5;
  }

  .homepage-lead {
    grid-template-columns: 1fr;
    grid-template-areas:
      "weekly"
      "recent"
      "latest";
    gap: 0;
    padding: 12px 0 36px;
    border-bottom-width: 3px;
  }

  .weekly-cover {
    aspect-ratio: 16 / 6.4;
  }

  .weekly-lead-copy {
    padding-top: 10px;
  }

  .weekly-lead-copy .story-meta {
    margin-top: 3px;
  }

  .weekly-lead h3 {
    margin-top: 3px;
    font-size: 29px;
    line-height: 1.05;
  }

  .story-summary {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
  }

  .story-attribution {
    display: none;
  }

  .story-cta {
    margin-top: 8px;
    font-size: 10px;
  }

  .recent-daily {
    display: block;
    margin-top: 16px;
    padding-top: 0;
    border-top: 0;
  }

  .recent-daily header {
    min-height: 47px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom-width: 2px;
  }

  .recent-daily header .section-kicker,
  .recent-daily header .section-note {
    display: none;
  }

  .recent-daily h3 {
    font-size: 20px;
  }

  .recent-daily ol {
    display: block;
  }

  .recent-daily li {
    padding: 0;
    border-left: 0;
  }

  .daily-teaser {
    min-height: 62px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0 8px;
  }

  .daily-teaser time {
    grid-row: 1 / 3;
    font-size: 9px;
  }

  .daily-teaser strong {
    font-size: 13px;
    -webkit-line-clamp: 1;
  }

  .daily-teaser span {
    font-size: 9px;
    -webkit-line-clamp: 1;
  }

  .latest-asset {
    margin-top: 26px;
  }

  .latest-asset header {
    min-height: 52px;
    padding-bottom: 8px;
    border-bottom-width: 2px;
  }

  .latest-asset-cover {
    aspect-ratio: 16 / 8;
  }

  .latest-asset h4 {
    font-size: 20px;
  }

  .latest-asset-summary {
    -webkit-line-clamp: 2;
  }

  .collection,
  .daily-archive-section {
    padding: 36px 0 44px;
  }

  .collection > header,
  .daily-archive-section > header {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
    margin-bottom: 18px;
  }

  .collection > header > div,
  .daily-archive-section > header > div {
    grid-column: 1;
  }

  .collection h2,
  .daily-archive-section h2 {
    font-size: 34px;
  }

  .collection-description {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 11px;
  }

  .collection-count {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .collection-technical .collection-layout,
  .collection-values .collection-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .collection-technical .story-index-2 {
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }

  .collection-technical .story-index-1 .long-term-cover,
  .collection-technical .story-index-2 .long-term-cover {
    aspect-ratio: 16 / 9;
  }

  .long-term-copy h3,
  .story-index-2 .long-term-copy h3 {
    font-size: 24px;
  }

  .long-term-summary {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .collection-works .long-term-story-button {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .collection-values .long-term-story {
    padding: 22px 0 0;
  }

  .collection-values .long-term-story:first-child {
    padding-right: 0;
  }

  .collection-values .long-term-story + .long-term-story {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .collection-values .long-term-story-button {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
  }

  .daily-archive-row {
    min-height: 74px;
    grid-template-columns: 62px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .daily-archive-row time {
    font-size: 9px;
  }

  .daily-archive-row strong {
    font-size: 13px;
  }

  .daily-archive-row span {
    display: none;
  }

  .daily-archive-row em {
    font-size: 9px;
  }

  .library-boundary {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 0 56px;
  }

  .library-boundary h2 {
    font-size: 32px;
  }

  .library-boundary > p {
    justify-self: start;
    font-size: 14px;
  }

  .search-view {
    padding-top: 26px;
  }

  .search-view-header {
    align-items: end;
    border-bottom-width: 3px;
  }

  .search-view-header h2 {
    font-size: 29px;
  }

  .result-row-button {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    min-height: 142px;
    padding: 16px 0;
  }

  .result-cover {
    aspect-ratio: 3 / 4;
  }

  .result-copy h3 {
    font-size: 19px;
    line-height: 1.28;
  }

  .result-summary {
    font-size: 11px;
    -webkit-line-clamp: 2;
  }

  .result-copy .content-tags {
    display: none;
  }

  .detail-content {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
