:root {
  --orange: #ff850f;
  --orange-soft: #fff0df;
  --orange-line: #ffd8ad;
  --ink: #161616;
  --muted: #716d68;
  --soft: #fffaf3;
  --paper: #fffdf9;
  --line: #eadfd3;
  --card: #ffffff;
  --shadow: 0 16px 42px rgba(42, 31, 18, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

.site-header,
main,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 22px rgba(46, 35, 24, 0.06);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  width: min(1740px, calc(100% - 140px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px minmax(420px, 1fr) minmax(250px, 320px);
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 16px 0;
}

.brand img {
  display: block;
  width: min(326px, 100%);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  color: #7b7772;
  padding: 12px 0;
  font-size: 0.98rem;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.header-search {
  position: relative;
}

.header-search::after {
  content: "⌕";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #242424;
  font-size: 1.35rem;
}

.header-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffbf6;
  color: var(--ink);
  padding: 13px 48px 13px 20px;
  outline: none;
}

.header-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 133, 15, 0.12);
}

.header-search input::placeholder {
  color: #9a928a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 133, 15, 0.24);
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--orange);
  border: 1px solid var(--orange-line);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #23313a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 24, 30, 0.72), rgba(15, 24, 30, 0.36) 42%, rgba(15, 24, 30, 0.08)),
    var(--hero-image) 62% center / cover;
}

.hero-inner {
  position: relative;
  width: min(1740px, calc(100% - 140px));
  margin: 0 auto;
  padding: 48px 0 56px;
}

.hero-youtube-link {
  position: absolute;
  top: 24px;
  right: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 133, 15, 0.24);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.3rem, 5.2vw, 5.9rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  font-weight: 650;
}

.section {
  width: min(1740px, calc(100% - 140px));
  margin: 0 auto;
  padding: 24px 0;
}

.featured-section {
  padding-top: 18px;
  padding-bottom: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 24px;
}

.story-card,
.article-card,
.article-list-card,
.tool-panel,
.article-shell,
.sidebar-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 292px;
}

.story-card .media,
.article-card .media {
  min-height: 100%;
}

.story-card img,
.article-card img,
.article-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--orange-soft);
}

.story-body,
.article-body,
.list-body {
  padding: 26px 30px;
}

.story-body h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.story-body p,
.article-body p,
.list-body p {
  margin: 0;
  color: var(--muted);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 24px;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f4f0;
  color: #807970;
  padding: 8px 15px;
  font-size: 0.92rem;
  font-weight: 850;
}

.topic-pill.active {
  border-color: var(--orange-line);
  background: var(--orange-soft);
  color: var(--orange);
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 950;
}

.article-card {
  display: grid;
  grid-template-rows: 142px 1fr;
  min-height: 292px;
}

.article-body {
  padding: 18px 22px 20px;
}

.article-body h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.article-body .meta-line {
  display: block;
  margin-bottom: 10px;
}

.toc-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc-list a,
.toc-list span {
  display: block;
  border-radius: var(--radius);
  color: #5e5b57;
  padding: 9px 12px;
  font-weight: 750;
}

.toc-list li:first-child a,
.toc-list li:first-child span {
  background: var(--orange-soft);
  color: var(--orange);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2,
.article-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.section-head p {
  max-width: 600px;
  margin: 10px 0 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-library {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.library-tools,
.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.tool-panel,
.sidebar-panel {
  padding: 18px;
}

.tool-panel h3,
.sidebar-panel h3 {
  margin: 0 0 12px;
}

.tool-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  outline: none;
}

.filter-list {
  display: grid;
  gap: 7px;
}

.filter-list a,
.filter-list button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  padding: 9px 10px;
  cursor: pointer;
  text-align: left;
}

.filter-list a.active,
.filter-list a:hover,
.filter-list button.active,
.filter-list button:hover {
  background: var(--orange-soft);
}

.mobile-library-tools {
  display: none;
}

.mobile-library-tools input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 11px 14px;
  outline: none;
}

.mobile-library-tools input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 133, 15, 0.12);
}

.mobile-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 0;
  overflow: visible;
  scrollbar-width: none;
}

.mobile-filter-list::-webkit-scrollbar {
  display: none;
}

.mobile-filter-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 850;
  white-space: normal;
}

.mobile-filter-list a.active {
  border-color: var(--orange-line);
  background: var(--orange-soft);
  color: var(--orange);
}

.mobile-filter-list strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-list-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 182px;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-list-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange-line);
  box-shadow: 0 18px 40px rgba(42, 31, 18, 0.12);
}

.article-list-card[hidden] {
  display: none;
}

.list-body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 18px;
}

.list-body h3 {
  font-size: 1.16rem;
  line-height: 1.12;
  margin: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.list-body p {
  line-height: 1.5;
}

.list-body p,
.meta-line {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.meta-line {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-state,
.loading-state {
  min-height: 55vh;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.empty-state[hidden],
.loading-state[hidden] {
  display: none;
}

.article-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 22, 22, 0.045) 0%, transparent 38%),
    linear-gradient(180deg, #fffdf9 0%, #f8f2eb 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.52));
  pointer-events: none;
}

.article-topbar {
  position: sticky;
  top: 92px;
  z-index: 12;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.article-topbar-inner {
  display: flex;
  width: min(1740px, calc(100% - 140px));
  margin: 0 auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
}

.article-topbar a,
.back-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 850;
  cursor: pointer;
}

.back-button {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.article-topbar a:hover {
  border-color: var(--orange-line);
  color: var(--orange);
  background: var(--orange-soft);
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
  min-height: clamp(340px, 42vw, 500px);
  padding: clamp(30px, 5vw, 56px) 0;
}

.article-hero-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  justify-items: start;
}

.article-kicker {
  margin: 0 0 4px;
  color: #7e6250;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-title-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.article-title-row .topic-pill {
  flex: 0 0 auto;
  margin-top: 8px;
}

.article-hero-media {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 400px;
  align-self: center;
  justify-self: end;
}

.article-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(142, 111, 82, 0.22);
  border-radius: var(--radius);
}

.article-hero-media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(104, 84, 64, 0.2);
  box-shadow: 0 20px 48px rgba(42, 31, 18, 0.16);
}

.article-title {
  color: var(--ink);
  max-width: 760px;
  margin: 0;
}

.article-intro {
  max-width: 720px;
  margin: 0;
  color: #4d4944;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.62;
}

.article-meta {
  margin: -2px 0 0;
  color: #8b6f5a;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-layout {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 700px) 280px;
  gap: clamp(36px, 6vw, 64px);
  align-items: start;
  padding: 58px 0 86px;
}

.article-layout-centered {
  display: block;
  width: min(760px, calc(100% - 80px));
}

.article-shell {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.article-content {
  color: #2b2825;
  font-size: 1.11rem;
  line-height: 1.84;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content figure {
  margin-top: 0;
  margin-bottom: 1.45em;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35em;
}

.article-content li + li {
  margin-top: 0.45em;
}

.article-content h2,
.article-content h3 {
  color: var(--ink);
  margin-top: 2.25em;
  margin-bottom: 0.65em;
  line-height: 1.08;
}

.article-content h2 {
  position: relative;
  font-size: clamp(1.75rem, 3vw, 2.42rem);
}

.article-content h3 {
  font-size: clamp(1.28rem, 2vw, 1.68rem);
}

.article-content a {
  color: #bf5e00;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 133, 15, 0.42);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.18em;
}

.article-content a:hover {
  color: var(--orange);
  text-decoration-color: currentColor;
}

.article-content div:has(> figure) {
  margin: 2rem 0;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: min(var(--radius), 8px);
  margin: 30px auto;
  border: 1px solid rgba(234, 223, 211, 0.9);
  box-shadow: 0 18px 44px rgba(42, 31, 18, 0.12);
  background: #fff;
}

.article-content img[width][height] {
  width: auto;
  max-width: min(100%, 640px);
}

.article-content figcaption {
  margin-top: -14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

.article-note {
  border-left: 4px solid var(--orange);
  padding: 14px 18px;
  color: #4d4944;
  background: #fff8ef;
  font-weight: 650;
}

.article-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--radius);
}

.article-sidebar {
  top: 116px;
}

.article-sidebar .sidebar-panel {
  box-shadow: 0 10px 28px rgba(42, 31, 18, 0.06);
}

.article-toc-panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.article-toc-panel .eyebrow {
  margin-bottom: 8px;
}

.article-toc-panel h3 {
  font-size: 1.28rem;
}

.article-toc-panel .toc-list {
  margin-top: 16px;
}

.article-related-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f8f2eb 0%, #fffdf9 100%);
}

.article-related-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.article-related-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 12px 24px rgba(42, 31, 18, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-related-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange-line);
  box-shadow: 0 20px 42px rgba(42, 31, 18, 0.12);
}

.article-related-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  background: var(--orange-soft);
}

.article-related-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.article-related-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.15;
}

.article-related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  background: #171412;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 230px;
  display: block;
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-content: start;
}

.site-footer a:hover {
  color: var(--orange);
}

@media (max-width: 1380px) {
  .site-header-inner {
    grid-template-columns: 300px 1fr minmax(230px, 290px);
  }

  .article-topbar {
    top: 72px;
  }

  .article-topbar-inner {
    width: min(1280px, calc(100% - 60px));
    overflow-x: auto;
    padding: 10px 0;
  }

  .main-nav {
    gap: 16px;
  }

  .section,
  .site-header-inner,
  .hero-inner {
    width: min(1280px, calc(100% - 60px));
  }

}

@media (max-width: 1080px) {
  .site-header-inner {
    grid-template-columns: minmax(210px, 1fr) auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav,
  .header-search {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-search {
    display: flex;
  }

  .site-header.nav-open .header-search {
    display: block;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .feature-grid,
  .article-library,
  .article-layout,
  .article-hero-inner {
    grid-template-columns: 1fr;
  }

  .library-tools,
  .article-sidebar {
    position: static;
  }

  .article-layout {
    width: min(820px, calc(100% - 60px));
    padding-top: 42px;
  }

  .article-hero-inner {
    min-height: auto;
    padding: 42px 0 48px;
  }

  .article-hero-media {
    width: min(420px, 100%);
    justify-self: start;
  }

  .article-hero-media img {
    aspect-ratio: 1 / 1;
  }

  .article-hero-media::before {
    inset: 14px -14px -14px 14px;
  }

  .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header-inner {
    min-height: 64px;
    gap: 10px;
    width: calc(100% - 28px);
    padding: 10px 0;
  }

  .brand img {
    max-width: min(215px, 58vw);
  }

  .menu-toggle {
    min-height: 40px;
    padding: 7px 12px;
    font-size: 0.95rem;
  }

  .site-header.nav-open .main-nav {
    gap: 8px;
  }

  .site-header.nav-open .main-nav a {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 11px;
    background: #fff;
  }

  .site-header.nav-open .main-nav a.active::after,
  .site-header.nav-open .main-nav a:hover::after {
    display: none;
  }

  .header-search input {
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    min-height: 390px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(15, 24, 30, 0.78), rgba(15, 24, 30, 0.42)),
      var(--hero-image) 68% center / cover;
  }

  .hero-inner,
  .section,
  .article-layout,
  .article-hero-inner,
  .article-layout-centered,
  .article-related-inner {
    width: calc(100% - 28px);
  }

  .hero-inner {
    padding: 62px 0 38px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-copy {
    margin: 16px 0 18px;
    font-size: 1rem;
  }

  .hero-youtube-link {
    top: 16px;
    right: 0;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .feature-grid,
  .article-list {
    gap: 14px;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-body,
  .article-body,
  .list-body,
  .tool-panel,
  .sidebar-panel {
    padding: 16px;
  }

  .story-body h3 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .article-card img,
  .story-card img {
    aspect-ratio: 16 / 9;
  }

  .section {
    padding: 18px 0;
  }

  .section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
  }

  .section-head h2,
  .article-title {
    font-size: clamp(2rem, 11vw, 2.75rem);
    line-height: 0.98;
  }

  .section-head p {
    margin-top: 0;
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .article-library {
    gap: 0;
    max-width: 100%;
    min-width: 0;
  }

  .library-tools {
    display: none;
  }

  .mobile-library-tools {
    display: block;
    margin-bottom: 12px;
  }

  .mobile-library-tools input {
    min-height: 44px;
  }

  .article-list {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
    min-width: 0;
  }

  .article-list-card {
    grid-template-columns: clamp(92px, 18vw, 128px) minmax(0, 1fr);
    max-width: 100%;
    min-height: 126px;
    overflow: hidden;
  }

  .article-list-card img {
    width: 100%;
    height: 100%;
    min-height: 126px;
    object-fit: cover;
  }

  .list-body {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 14px;
  }

  .list-body > * {
    max-width: 100%;
    min-width: 0;
  }

  .list-body h3 {
    font-size: 1rem;
    line-height: 1.14;
  }

  .list-body p {
    display: block;
    overflow: visible;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .meta-line {
    font-size: 0.72rem;
  }

  .article-layout,
  .article-hero-inner {
    gap: 18px;
  }

  .article-hero-inner {
    padding: 24px 0 32px;
  }

  .article-kicker,
  .article-meta {
    font-size: 0.72rem;
  }

  .article-hero-media {
    width: min(320px, 100%);
  }

  .article-hero-media::before {
    display: none;
  }

  .article-hero-media img {
    aspect-ratio: 1 / 1;
    box-shadow: 0 16px 34px rgba(42, 31, 18, 0.14);
  }

  .article-layout {
    padding: 32px 0 50px;
  }

  .article-shell {
    padding: 0;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.72;
  }

  .article-intro {
    font-size: 1.05rem;
    line-height: 1.58;
  }

  .article-title-row {
    display: grid;
    gap: 10px;
  }

  .article-title-row .topic-pill {
    margin-top: 0;
  }

  .article-content img {
    margin: 20px auto;
    box-shadow: 0 12px 28px rgba(42, 31, 18, 0.1);
  }

  .article-related-inner {
    padding: 26px 0 40px;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-topbar {
    top: 64px;
    padding: 8px 14px;
  }

  .site-footer {
    display: grid;
    padding: 28px 14px;
  }

  .site-footer img {
    width: 190px;
  }
}

@media (max-width: 420px) {
  .brand img {
    max-width: min(190px, 55vw);
  }

  .article-list-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .article-list-card img {
    min-height: 118px;
  }

  .list-body {
    padding: 10px;
  }
}
