:root {
  --paper: #f4efe4;
  --paper-deep: #e7ddca;
  --ink: #23261f;
  --muted: #6c6b60;
  --terracotta: #aa5037;
  --terracotta-dark: #7f3827;
  --olive: #596347;
  --olive-light: #c6ccb4;
  --line: #b8ad99;
  --white: #fffdf7;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--terracotta-dark); }
button, input { font: inherit; }

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

.shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  border-top: 7px solid var(--terracotta);
  border-bottom: 1px solid var(--ink);
}

.utility {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 122px;
  gap: 24px;
}

.masthead-note {
  max-width: 240px;
  color: var(--olive);
  font-size: 14px;
  font-style: italic;
  line-height: 1.4;
}

.wordmark {
  color: var(--ink);
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.wordmark span { color: var(--terracotta); }

.masthead-action { justify-self: end; }
.search-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.search-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a { text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--terracotta-dark); }

.edition-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.edition-line::before, .edition-line::after { content: ""; height: 1px; background: var(--line); }

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .85fr);
  gap: 38px;
  padding-bottom: 60px;
}
.lead-visual { position: relative; }
.lead-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.image-index {
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: var(--terracotta);
  color: var(--white);
  font-size: 30px;
}
.lead-copy { align-self: center; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--terracotta-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.lead-copy h1, .page-intro h1, .article-header h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.04;
}
.lead-copy h1 a { text-decoration: none; }
.lead-copy .dek { margin: 24px 0 18px; color: #4d5047; font-size: 21px; line-height: 1.55; }
.byline {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.field-note {
  margin-top: 38px;
  padding: 22px 0 0 60px;
  border-top: 1px solid var(--ink);
  position: relative;
  color: var(--olive);
  font-size: 16px;
  font-style: italic;
}
.field-note::before { content: "NB"; position: absolute; left: 0; top: 22px; font: 700 12px Arial, sans-serif; color: var(--terracotta); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin: 0 0 24px;
  padding-top: 24px;
  border-top: 3px double var(--ink);
}
.section-head h2 { margin: 0; font-size: 36px; font-weight: 400; }
.section-head a { font: 700 12px Arial, sans-serif; text-transform: uppercase; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 34px 28px;
  padding-bottom: 72px;
}
.story-card { grid-column: span 4; border-bottom: 1px solid var(--line); padding-bottom: 26px; }
.story-card:nth-child(1), .story-card:nth-child(2) { grid-column: span 6; }
.story-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; filter: saturate(.86); }
.story-number { display: block; margin: 14px 0 8px; color: var(--terracotta); font: 700 12px Arial, sans-serif; }
.story-card h3 { margin: 0 0 12px; font-size: 28px; font-weight: 400; line-height: 1.18; }
.story-card h3 a { text-decoration: none; }
.story-card p { margin: 0 0 16px; color: #505248; font-size: 16px; line-height: 1.55; }
.card-meta { color: var(--muted); font: 12px Arial, sans-serif; text-transform: uppercase; }

.topic-band { background: var(--olive); color: var(--white); }
.topic-inner { padding: 54px 0 58px; }
.topic-inner .section-head { border-color: var(--olive-light); }
.topic-inner .section-head a:hover { color: var(--white); }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.3); }
.topic-card { min-height: 190px; padding: 26px; background: var(--olive); text-decoration: none; }
.topic-card:hover { background: #4c563c; color: var(--white); }
.topic-card span { font: 700 11px Arial, sans-serif; text-transform: uppercase; }
.topic-card h3 { margin: 45px 0 8px; font-size: 25px; font-weight: 400; line-height: 1.2; }
.topic-card p { margin: 0; color: #e0e3d6; font-size: 15px; }

.site-footer { background: var(--ink); color: var(--paper); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; padding: 60px 0 36px; }
.footer-brand { font-size: 46px; line-height: 1; }
.footer-brand span { color: #cf7458; }
.footer-copy { max-width: 320px; color: #c8c5ba; font-size: 15px; }
.footer-col h2 { margin: 0 0 16px; color: #cf7458; font: 700 12px Arial, sans-serif; text-transform: uppercase; }
.footer-col a { display: block; margin: 8px 0; color: var(--paper); font-size: 15px; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 24px; border-top: 1px solid #55564f; color: #aaa99f; font: 11px Arial, sans-serif; text-transform: uppercase; }

.page-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; padding: 64px 0 52px; border-bottom: 1px solid var(--ink); }
.page-intro p { align-self: end; margin: 0; max-width: 520px; color: var(--muted); font-size: 19px; }
.listing { padding: 44px 0 72px; }
.listing-row { display: grid; grid-template-columns: 54px 260px 1fr auto; align-items: center; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.listing-row:first-child { border-top: 1px solid var(--line); }
.listing-row > span { color: var(--terracotta); font: 700 12px Arial, sans-serif; }
.listing-row img { width: 260px; aspect-ratio: 3 / 2; object-fit: cover; }
.listing-row h2 { margin: 0 0 8px; font-size: 28px; font-weight: 400; line-height: 1.2; }
.listing-row h2 a { text-decoration: none; }
.listing-row p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.read-link { font: 700 11px Arial, sans-serif; text-transform: uppercase; white-space: nowrap; }

.article-header { max-width: 980px; margin: 0 auto; padding: 64px 0 38px; text-align: center; }
.article-header h1 { font-size: 60px; }
.article-header .dek { max-width: 760px; margin: 24px auto 20px; color: #505248; font-size: 22px; line-height: 1.55; }
.article-hero { width: min(calc(100% - 48px), 1240px); margin: 0 auto; }
.article-hero img { width: 100%; max-height: 720px; aspect-ratio: 3 / 2; object-fit: cover; }
.article-hero figcaption { padding-top: 8px; color: var(--muted); font: 11px Arial, sans-serif; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 720px) 1fr; gap: 52px; width: min(calc(100% - 48px), 1180px); margin: 56px auto 90px; }
.toc { position: sticky; top: 24px; align-self: start; padding-top: 16px; border-top: 2px solid var(--terracotta); }
.toc h2 { margin: 0 0 14px; font: 700 11px Arial, sans-serif; text-transform: uppercase; }
.toc a { display: block; margin: 10px 0; color: var(--muted); font-size: 14px; line-height: 1.35; text-decoration: none; }
.article-body { min-width: 0; }
.article-body > p:first-child { margin-top: 0; font-size: 22px; line-height: 1.6; }
.article-body h2 { margin: 54px 0 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 34px; font-weight: 400; line-height: 1.2; }
.article-body h3 { margin: 34px 0 10px; font-size: 24px; font-weight: 400; line-height: 1.25; }
.article-body h4 { margin: 28px 0 8px; color: var(--terracotta-dark); font: 700 14px Arial, sans-serif; text-transform: uppercase; }
.article-body p { margin: 0 0 22px; }
.article-body ul, .article-body ol { margin: 0 0 26px; padding-left: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body blockquote { margin: 34px 0; padding: 24px 0 24px 30px; border-left: 5px solid var(--terracotta); color: var(--olive); font-size: 24px; font-style: italic; line-height: 1.45; }
.article-aside { align-self: start; margin-top: 110px; padding: 22px; border: 1px solid var(--olive); color: var(--olive); font-size: 15px; line-height: 1.5; }
.article-aside strong { display: block; margin-bottom: 10px; font: 700 11px Arial, sans-serif; text-transform: uppercase; }
.related { padding: 52px 0 68px; border-top: 1px solid var(--ink); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.related a { display: grid; grid-template-columns: 160px 1fr; gap: 20px; text-decoration: none; }
.related img { width: 160px; aspect-ratio: 3 / 2; object-fit: cover; }
.related h3 { margin: 4px 0 0; font-size: 22px; font-weight: 400; line-height: 1.25; }

.search-panel { max-width: 820px; padding: 52px 0 80px; }
.search-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 20px; }
.search-form input { width: 100%; min-width: 0; padding: 15px 16px; border: 1px solid var(--ink); border-radius: 0; background: var(--white); color: var(--ink); }
.search-form button { padding: 13px 22px; border: 0; background: var(--terracotta); color: var(--white); cursor: pointer; font: 700 13px Arial, sans-serif; text-transform: uppercase; }
.search-form button:hover { background: var(--terracotta-dark); }
.search-status { min-height: 28px; color: var(--muted); font-size: 15px; }
.search-results { display: grid; gap: 0; margin-top: 20px; }
.search-result { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line); }
.search-result img { width: 150px; aspect-ratio: 3 / 2; object-fit: cover; }
.search-result h2 { margin: 0 0 7px; font-size: 23px; font-weight: 400; line-height: 1.2; }
.search-result h2 a { text-decoration: none; }
.search-result p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

@media (max-width: 980px) {
  .masthead { grid-template-columns: 1fr auto; }
  .masthead-note { display: none; }
  .wordmark { font-size: 58px; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-copy { max-width: 760px; }
  .story-card, .story-card:nth-child(1), .story-card:nth-child(2) { grid-column: span 6; }
  .story-card:last-child { grid-column: 4 / span 6; }
  .article-layout { grid-template-columns: minmax(0, 700px) 1fr; }
  .toc { display: none; }
  .listing-row { grid-template-columns: 44px 210px 1fr; }
  .listing-row img { width: 210px; }
  .read-link { display: none; }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .shell, .article-hero, .article-layout { width: min(calc(100% - 32px), var(--max)); }
  .utility { font-size: 10px; }
  .masthead { min-height: 90px; gap: 12px; }
  .wordmark { font-size: 46px; }
  .search-link { font-size: 0; }
  .search-mark { font-size: 14px; }
  .main-nav { justify-content: flex-start; gap: 24px; min-height: 44px; }
  .edition-line { padding: 15px 0; }
  .lead-grid { gap: 26px; padding-bottom: 50px; }
  .image-index { left: 12px; bottom: -14px; width: 58px; height: 58px; font-size: 24px; }
  .lead-copy h1, .page-intro h1, .article-header h1 { font-size: 40px; }
  .lead-copy .dek, .article-header .dek { font-size: 19px; }
  .field-note { margin-top: 26px; }
  .section-head h2 { font-size: 30px; }
  .article-grid { grid-template-columns: 1fr; gap: 34px; }
  .story-card, .story-card:nth-child(1), .story-card:nth-child(2), .story-card:last-child { grid-column: auto; }
  .story-card h3 { font-size: 26px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 150px; }
  .topic-card h3 { margin-top: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 46px; }
  .footer-bottom { flex-direction: column; }
  .page-intro { grid-template-columns: 1fr; gap: 22px; padding: 44px 0 36px; }
  .listing-row { grid-template-columns: 40px 1fr; gap: 14px 16px; }
  .listing-row img { grid-column: 1 / -1; grid-row: 1; width: 100%; }
  .listing-row > span { grid-column: 1; grid-row: 2; }
  .listing-row > div { grid-column: 2; grid-row: 2; }
  .article-header { padding: 44px 16px 28px; }
  .article-header h1 { overflow-wrap: break-word; }
  .article-layout { grid-template-columns: 1fr; gap: 0; margin-top: 38px; }
  .article-body > p:first-child { font-size: 20px; }
  .article-body h2 { font-size: 29px; }
  .article-body h3 { font-size: 23px; }
  .article-aside { margin-top: 32px; }
  .related-grid { grid-template-columns: 1fr; }
  .related a { grid-template-columns: 120px 1fr; }
  .related img { width: 120px; }
  .search-form { grid-template-columns: 1fr; }
  .search-result { grid-template-columns: 110px 1fr; gap: 15px; }
  .search-result img { width: 110px; }
}

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

/* editorial-core-v1 */
.editorial-core {
  --editorial-core-accent: var(--accent, var(--red, var(--primary, currentColor)));
  width: min(calc(100% - 32px), var(--max, var(--max-width, 1180px)));
  margin: clamp(40px, 6vw, 78px) auto;
  padding: clamp(24px, 3vw, 42px) 0;
  border-top: 3px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.editorial-core__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.editorial-core__head p,
.editorial-core__kicker {
  margin: 0 0 6px;
  color: var(--editorial-core-accent);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.editorial-core__head h2 {
  margin: 0;
  max-width: 18ch;
  font-size: 3rem;
  line-height: 1;
}
.editorial-core__head > span {
  flex: none;
  padding-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.editorial-core :is(h3, p) {
  overflow-wrap: break-word;
  hyphens: none;
}
.editorial-core a {
  color: inherit;
}
.editorial-core__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-width: 0;
  margin: 0 0 clamp(24px, 3vw, 38px);
  border: 1px solid currentColor;
  background: rgba(127, 127, 127, 0.06);
}
.editorial-core__feature > a,
.editorial-core__card > a {
  display: block;
  min-width: 0;
  text-decoration: none;
}
.editorial-core__media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background: rgba(127, 127, 127, 0.12);
}
.editorial-core__feature .editorial-core__media {
  height: clamp(300px, 34vw, 460px);
}
.editorial-core__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.editorial-core__feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 48px);
}
.editorial-core__feature h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.04;
}
.editorial-core__feature-copy > p:not(.editorial-core__kicker) {
  margin: 0 0 22px;
}
.editorial-core__read {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.editorial-core__spotlight,
.editorial-core__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.editorial-core__spotlight {
  margin-bottom: clamp(24px, 3vw, 38px);
}
.editorial-core__card {
  min-width: 0;
  margin: 0;
  border-bottom: 1px solid currentColor;
}
.editorial-core__card .editorial-core__media {
  min-height: 0;
  height: clamp(170px, 18vw, 250px);
}
.editorial-core__card-copy {
  padding: 18px 0 22px;
}
.editorial-core__card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}
.editorial-core__card-copy > p:not(.editorial-core__kicker) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.editorial-core__card--compact {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.editorial-core__card--compact .editorial-core__media {
  height: 130px;
}
.editorial-core__card--compact .editorial-core__card-copy {
  padding-top: 0;
}
.editorial-core__card--compact h3 {
  font-size: 1rem;
}
.editorial-core__card--compact .editorial-core__card-copy > p:not(.editorial-core__kicker) {
  display: none;
}
@media (max-width: 900px) {
  .editorial-core__feature {
    grid-template-columns: 1fr;
  }
  .editorial-core__spotlight,
  .editorial-core__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .editorial-core {
    width: min(calc(100% - 24px), var(--max, var(--max-width, 1180px)));
    margin-block: 32px;
    padding-block: 24px;
  }
  .editorial-core__head {
    align-items: start;
  }
  .editorial-core__head h2 {
    font-size: 2rem;
  }
  .editorial-core__head > span {
    white-space: nowrap;
  }
  .editorial-core__feature .editorial-core__media {
    height: min(72vw, 340px);
  }
  .editorial-core__feature-copy {
    padding: 22px;
  }
  .editorial-core__feature h3 {
    font-size: 1.75rem;
  }
  .editorial-core__spotlight,
  .editorial-core__grid {
    grid-template-columns: 1fr;
  }
  .editorial-core__card {
    display: grid;
    grid-template-columns: minmax(110px, 0.72fr) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }
  .editorial-core__card .editorial-core__media {
    height: 122px;
  }
  .editorial-core__card-copy {
    padding-top: 0;
  }
  .editorial-core__card-copy > p:not(.editorial-core__kicker) {
    display: none;
  }
}

/* editorial-diversity-v2 */
.editorial-core--diverse {
  --ec-tint: rgba(127, 127, 127, 0.08);
  --ec-strong-tint: rgba(127, 127, 127, 0.15);
  counter-reset: editorial-card 1;
  gap: var(--ec-gap);
  isolation: isolate;
}
.editorial-core--diverse .editorial-core__media {
  display: block !important;
  overflow: hidden;
  border-radius: var(--ec-radius);
}
.editorial-core--diverse .editorial-core__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ec-image-position);
}
.editorial-core--diverse .editorial-core__card {
  counter-increment: editorial-card;
}
.editorial-core--diverse .editorial-core__kicker::before {
  content: counter(editorial-card, decimal-leading-zero) " / ";
  opacity: 0.62;
}
.editorial-core--diverse .editorial-core__feature .editorial-core__kicker::before {
  content: "01 / ";
}
.editorial-core--diverse.ec-image-landscape .editorial-core__card .editorial-core__media { aspect-ratio: 16 / 10; }
.editorial-core--diverse.ec-image-portrait .editorial-core__card .editorial-core__media { aspect-ratio: 4 / 5; }
.editorial-core--diverse.ec-image-square .editorial-core__card .editorial-core__media { aspect-ratio: 1; }
.editorial-core--diverse.ec-image-panorama .editorial-core__card .editorial-core__media { aspect-ratio: 2 / 1; }
.editorial-core--diverse.ec-image-soft .editorial-core__media { border-radius: 8px; }
.editorial-core--diverse.ec-image-cut .editorial-core__media { clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 6% 100%, 0 88%); }

.editorial-core--diverse.ec-cards-rules .editorial-core__card { border-top: 1px solid currentColor; border-bottom: 0; padding-top: 12px; }
.editorial-core--diverse.ec-cards-blocks .editorial-core__card { background: var(--ec-tint); border: 0; padding: 12px; }
.editorial-core--diverse.ec-cards-quiet .editorial-core__card { border: 0; }
.editorial-core--diverse.ec-cards-numbered .editorial-core__card { border-left: 4px solid currentColor; border-bottom: 0; padding-left: 14px; }
.editorial-core--diverse.ec-cards-frames .editorial-core__card { border: 1px solid currentColor; padding: 10px; }
.editorial-core--diverse.ec-heading-center .editorial-core__head { align-items: center; text-align: center; flex-direction: column; }
.editorial-core--diverse.ec-heading-center .editorial-core__head h2 { max-width: none; }
.editorial-core--diverse.ec-heading-rail .editorial-core__head { border-left: 8px solid currentColor; padding-left: 18px; }
.editorial-core--diverse.ec-heading-oversized .editorial-core__head h2 { font-size: 3.7rem; max-width: 12ch; }

/* Folio: a calm lead spread followed by an even reading shelf. */
.editorial-core--diverse.ec-layout-folio .editorial-core__feature { grid-template-columns: minmax(0, var(--ec-lead)) minmax(280px, 1fr); }
.editorial-core--diverse.ec-layout-folio .editorial-core__spotlight { grid-template-columns: 1.35fr 0.85fr 0.85fr; }

/* Ledger: section heading acts as a permanent editorial rail. */
.editorial-core--diverse.ec-layout-ledger {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  align-items: start;
}
.editorial-core--diverse.ec-layout-ledger .editorial-core__head { grid-row: 1 / 4; display: block; position: sticky; top: 18px; padding-right: 22px; }
.editorial-core--diverse.ec-layout-ledger .editorial-core__head > span { display: block; margin-top: 22px; }
.editorial-core--diverse.ec-layout-ledger .editorial-core__feature,
.editorial-core--diverse.ec-layout-ledger .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-ledger .editorial-core__grid { grid-column: 2; }

/* Mosaic: large blocks with staggered image proportions. */
.editorial-core--diverse.ec-layout-mosaic .editorial-core__feature { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__spotlight { grid-template-columns: 1.4fr 0.8fr 0.8fr; align-items: end; }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__spotlight .editorial-core__card:first-child .editorial-core__media { height: 340px; }

/* Dispatch: image-led front page with a readable overlay. */
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature { position: relative; display: block; min-height: 520px; color: white; border: 0; }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature > a,
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature .editorial-core__media { position: absolute; inset: 0; }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature-copy { position: relative; z-index: 1; width: min(620px, 74%); min-height: 520px; justify-content: end; background: linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.5), transparent); }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__kicker { color: white; }

/* Catalog: text-first lead and compact product-like rows. */
.editorial-core--diverse.ec-layout-catalog .editorial-core__feature { grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); }
.editorial-core--diverse.ec-layout-catalog .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight .editorial-core__card { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 20px; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight .editorial-core__media { height: 120px; }

/* Journal: broad photography and generous article notes. */
.editorial-core--diverse.ec-layout-journal .editorial-core__feature { display: block; max-width: 980px; border: 0; }
.editorial-core--diverse.ec-layout-journal .editorial-core__feature .editorial-core__media { height: 500px; }
.editorial-core--diverse.ec-layout-journal .editorial-core__feature-copy { max-width: 720px; margin: -76px 0 0 auto; position: relative; background: var(--paper, var(--background, white)); border: 1px solid currentColor; }
.editorial-core--diverse.ec-layout-journal .editorial-core__spotlight { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Ribbon: reversed lead with strong horizontal movement. */
.editorial-core--diverse.ec-layout-ribbon .editorial-core__feature { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__spotlight { display: flex; overflow-x: auto; padding-bottom: 14px; }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__spotlight .editorial-core__card { flex: 0 0 min(380px, 72vw); }

/* Portrait: one tall cover beside a stack of current stories. */
.editorial-core--diverse.ec-layout-portrait {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}
.editorial-core--diverse.ec-layout-portrait .editorial-core__head,
.editorial-core--diverse.ec-layout-portrait .editorial-core__grid { grid-column: 1 / -1; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__feature { display: block; margin-right: var(--ec-gap); }
.editorial-core--diverse.ec-layout-portrait .editorial-core__feature .editorial-core__media { height: 620px; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight .editorial-core__card { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 16px; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight .editorial-core__media { height: 120px; }

/* Panorama: cinema-wide lead followed by a dense magazine grid. */
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature .editorial-core__media { height: 420px; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature-copy { max-width: 820px; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__spotlight { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Index: images and numbered headlines read like an editorial contents page. */
.editorial-core--diverse.ec-layout-index .editorial-core__feature { border: 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; background: transparent; }
.editorial-core--diverse.ec-layout-index .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-index .editorial-core__grid { grid-template-columns: 1fr; gap: 0; }
.editorial-core--diverse.ec-layout-index .editorial-core__card,
.editorial-core--diverse.ec-layout-index .editorial-core__card--compact { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 20px; padding: 15px 0; border-left: 0; border-top: 1px solid currentColor; }
.editorial-core--diverse.ec-layout-index .editorial-core__card .editorial-core__media { height: 110px; }
.editorial-core--diverse.ec-layout-index .editorial-core__card-copy { padding: 0; }

/* Notebook: tactile, offset cards with breathing room. */
.editorial-core--diverse.ec-layout-notebook .editorial-core__feature { max-width: 1040px; margin-left: auto; transform: rotate(-0.35deg); box-shadow: 12px 12px 0 var(--ec-strong-tint); }
.editorial-core--diverse.ec-layout-notebook .editorial-core__spotlight .editorial-core__card:nth-child(2) { transform: translateY(28px); }
.editorial-core--diverse.ec-layout-notebook .editorial-core__grid { margin-top: 36px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Gallery: photography is the main navigation surface. */
.editorial-core--diverse.ec-layout-gallery .editorial-core__feature { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.editorial-core--diverse.ec-layout-gallery .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-gallery .editorial-core__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact { display: block; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact .editorial-core__media { height: 210px; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card-copy > p:not(.editorial-core__kicker) { display: none; }

@media (max-width: 900px) {
  .editorial-core--diverse.ec-layout-ledger,
  .editorial-core--diverse.ec-layout-portrait { display: block; }
  .editorial-core--diverse.ec-layout-ledger .editorial-core__head { position: static; }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .editorial-core--diverse { margin-block: 28px; }
  .editorial-core--diverse .editorial-core__spotlight,
  .editorial-core--diverse .editorial-core__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .editorial-core--diverse .editorial-core__card,
  .editorial-core--diverse .editorial-core__card-copy,
  .editorial-core--diverse .editorial-core__feature-copy {
    min-width: 0;
  }
  .editorial-core--diverse h3 {
    overflow-wrap: break-word;
    hyphens: none;
  }
  .editorial-core--diverse .editorial-core__head h2,
  .editorial-core--diverse.ec-heading-oversized .editorial-core__head h2 { font-size: 2rem; }
  .editorial-core--diverse .editorial-core__head > span { white-space: normal; text-align: right; }
  .editorial-core--diverse .editorial-core__card,
  .editorial-core--diverse .editorial-core__card--compact {
    display: grid;
    grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
    gap: 14px;
  }
  .editorial-core--diverse .editorial-core__card .editorial-core__media,
  .editorial-core--diverse .editorial-core__card--compact .editorial-core__media { height: 126px; }
  .editorial-core--diverse .editorial-core__card-copy { padding-top: 0; }

  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature { position: relative; display: block; min-height: 520px; color: white; border: 0; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature > a,
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature .editorial-core__media { position: absolute; inset: 0; height: 100%; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature-copy { position: absolute; z-index: 1; inset: auto 12px 12px; padding: 20px; background: rgba(10, 10, 10, 0.82); color: white; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__kicker { color: white; }

  .editorial-core--diverse.ec-mobile-split .editorial-core__feature { display: grid; grid-template-columns: 42% 58%; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature .editorial-core__media { height: 100%; min-height: 320px; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature-copy { padding: 18px; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature h3 { font-size: 1.35rem; }

  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature { grid-template-columns: 34% 66%; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature .editorial-core__media { min-height: 360px; height: 100%; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature-copy { padding: 18px; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature h3 { font-size: 1.4rem; }

  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature { display: flex; flex-direction: column; border-width: 5px 0 0; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature > a { order: 2; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature-copy { order: 1; padding: 20px 0; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature .editorial-core__media { height: 290px; }

  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature { display: block; transform: none; box-shadow: none; border: 0; }
  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature .editorial-core__media { height: 330px; }
  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature-copy { position: relative; width: calc(100% - 24px); margin: -68px 0 0 24px; padding: 20px; border: 1px solid currentColor; background: var(--paper, var(--background, white)); }

  .editorial-core--diverse.ec-mobile-tiles .editorial-core__spotlight,
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px; }
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card,
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card--compact { display: block; }
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card .editorial-core__media { height: 150px; }

  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature { display: grid; grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature .editorial-core__media { height: 230px; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature-copy { padding: 20px 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__spotlight,
  .editorial-core--diverse.ec-mobile-stream .editorial-core__grid { display: block; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card,
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card--compact { grid-template-columns: 92px minmax(0, 1fr); padding: 12px 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card .editorial-core__media { height: 82px; }

  .editorial-core--diverse.ec-mobile-stack .editorial-core__feature { grid-template-columns: 1fr; }
  .editorial-core--diverse.ec-mobile-stack .editorial-core__feature .editorial-core__media { height: 300px; }

  .editorial-core--diverse.ec-layout-gallery .editorial-core__card,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact {
    display: block;
  }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card .editorial-core__media,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact .editorial-core__media {
    height: 158px;
  }
}

/* bespoke-home: digitale-veldgids */
.article-layout > .article-body:first-child:last-child { grid-column:1/-1; width:min(100%,720px); justify-self:center; }
body[data-bespoke-home="digitale-veldgids"] { background:#f4efe4; }
.vg-intro { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr); gap:clamp(32px,8vw,120px); align-items:end; padding-block:clamp(42px,7vw,96px) clamp(32px,5vw,66px); border-bottom:1px solid var(--ink); }
.vg-intro > div > p,.vg-route__head div > p,.vg-lead__copy > p:first-child { margin:0 0 13px; color:var(--terracotta-dark); font:700 11px Arial,sans-serif; text-transform:uppercase; }
.vg-intro h1 { margin:0; max-width:9ch; font-size:clamp(54px,8vw,104px); font-weight:400; line-height:.87; }
.vg-intro > p { margin:0; max-width:50ch; padding-top:20px; border-top:4px solid var(--olive); color:#4d5047; font-size:19px; line-height:1.55; }
.vg-lead { display:grid; grid-template-columns:minmax(0,1.48fr) minmax(300px,.72fr); padding-block:26px 0; }
.vg-lead__image { position:relative; min-height:540px; overflow:hidden; background:var(--olive); }
.vg-lead__image img { width:100%; height:100%; object-fit:cover; filter:saturate(.88); }
.vg-lead__image > span { position:absolute; left:0; bottom:0; display:grid; place-items:center; width:78px; height:78px; color:var(--white); background:var(--terracotta); font-size:29px; }
.vg-lead__copy { display:flex; flex-direction:column; align-items:flex-start; padding:clamp(30px,5vw,64px); color:var(--white); background:var(--olive); }
.vg-lead__copy > p:first-child { color:#e6c6b9; }
.vg-lead__copy h2 { margin:0 0 24px; font-size:clamp(34px,4vw,53px); font-weight:400; line-height:1.03; }
.vg-lead__copy h2 a { text-decoration:none; }
.vg-lead__copy > p:not(:first-child) { margin:0 0 28px; color:#e2e5d8; font-size:17px; }
.vg-lead__copy > a { margin-top:auto; color:white; font:700 12px Arial,sans-serif; text-transform:uppercase; }
.vg-routes { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--ink); border-top:0; margin-bottom:clamp(54px,8vw,104px); }
.vg-routes > a { display:grid; grid-template-columns:46px 1fr auto; gap:14px; align-items:center; min-height:86px; padding:16px 20px; border-right:1px solid var(--ink); text-decoration:none; }
.vg-routes > a:last-child { border-right:0; }
.vg-routes > a:hover { color:var(--white); background:var(--terracotta-dark); }
.vg-routes span { color:var(--terracotta); font-size:26px; }
.vg-routes a:hover span { color:#f4cabb; }
.vg-routes b,.vg-routes small { display:block; font-family:Arial,sans-serif; }
.vg-routes b { font-size:12px; text-transform:uppercase; }
.vg-routes small { margin-top:3px; color:var(--muted); font-size:11px; }
.vg-routes a:hover small { color:#f4efe4; }
.vg-routes i { font-style:normal; }
.vg-route { padding-block:clamp(38px,6vw,78px); border-top:3px double var(--ink); }
.vg-route__head { display:grid; grid-template-columns:72px minmax(280px,.9fr) minmax(250px,1fr); gap:26px; align-items:end; margin-bottom:32px; }
.vg-route__head > span { color:var(--terracotta); font-size:64px; line-height:.8; }
.vg-route__head h2 { margin:0; max-width:17ch; font-size:clamp(34px,4.5vw,57px); font-weight:400; line-height:.98; }
.vg-route__head > p { margin:0; max-width:57ch; color:var(--muted); font-size:15px; line-height:1.55; }
.vg-route__stories { display:grid; grid-template-columns:repeat(12,1fr); border-top:1px solid var(--ink); border-left:1px solid var(--line); }
.vg-story { grid-column:span 4; min-width:0; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--white); }
.vg-story:first-child { grid-column:span 8; display:grid; grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr); }
.vg-story__image { display:block; overflow:hidden; aspect-ratio:3/2; background:var(--paper-deep); }
.vg-story:first-child .vg-story__image { height:100%; min-height:390px; aspect-ratio:auto; }
.vg-story__image img { width:100%; height:100%; object-fit:cover; filter:saturate(.86); transition:transform .25s ease; }
.vg-story:hover .vg-story__image img { transform:scale(1.018); }
.vg-story__copy { display:flex; flex-direction:column; align-items:flex-start; padding:18px 18px 22px; }
.vg-story:first-child .vg-story__copy { justify-content:center; padding:clamp(26px,4vw,48px); background:var(--paper-deep); }
.vg-story__copy > p { display:flex; justify-content:space-between; width:100%; gap:14px; margin:0 0 15px; color:var(--terracotta-dark); font:700 10px Arial,sans-serif; text-transform:uppercase; }
.vg-story__copy > p span { color:var(--muted); }
.vg-story h3 { margin:0 0 12px; font-size:23px; font-weight:400; line-height:1.13; }
.vg-story:first-child h3 { font-size:clamp(29px,3vw,40px); }
.vg-story h3 a { text-decoration:none; }
.vg-story small { color:var(--muted); font:14px/1.5 Georgia,serif; }
.vg-story__read { margin-top:18px; font:700 10px Arial,sans-serif; text-transform:uppercase; }
.vg-note { margin-block:22px; color:var(--white); background:var(--terracotta-dark); }
.vg-note > div { display:grid; grid-template-columns:160px 1fr auto; gap:30px; align-items:center; min-height:112px; }
.vg-note span,.vg-note b { font:700 10px Arial,sans-serif; text-transform:uppercase; }
.vg-note p { margin:0; max-width:72ch; font-size:20px; font-style:italic; line-height:1.4; }
@media(max-width:980px){
  .vg-lead { grid-template-columns:1fr; }
  .vg-lead__image { min-height:0; aspect-ratio:3/2; }
  .vg-route__head { grid-template-columns:60px 1fr; }
  .vg-route__head > p { grid-column:2; }
  .vg-story { grid-column:span 6; }
  .vg-story:first-child { grid-column:1/-1; }
  .vg-note > div { grid-template-columns:130px 1fr; padding-block:25px; }
  .vg-note b { grid-column:2; }
}
@media(max-width:700px){
  .vg-intro { grid-template-columns:1fr; gap:28px; padding-top:36px; }
  .vg-intro h1 { font-size:58px; }
  .vg-intro > p { font-size:17px; }
  .vg-lead__copy { padding:28px 22px 32px; }
  .vg-lead__copy h2 { font-size:35px; }
  .vg-routes { grid-template-columns:1fr; }
  .vg-routes > a { min-height:64px; border-right:0; border-bottom:1px solid var(--ink); }
  .vg-routes > a:last-child { border-bottom:0; }
  .vg-route__head { grid-template-columns:44px 1fr; gap:14px; }
  .vg-route__head > span { font-size:44px; }
  .vg-route__head h2 { font-size:35px; }
  .vg-route__stories { grid-template-columns:1fr; }
  .vg-story,.vg-story:first-child { grid-column:auto; display:grid; grid-template-columns:118px minmax(0,1fr); }
  .vg-story:first-child { grid-template-columns:1fr; }
  .vg-story__image { height:100%; min-height:170px; aspect-ratio:auto; }
  .vg-story:first-child .vg-story__image { min-height:0; aspect-ratio:3/2; }
  .vg-story__copy,.vg-story:first-child .vg-story__copy { justify-content:center; padding:16px; }
  .vg-story h3,.vg-story:first-child h3 { font-size:20px; }
  .vg-story:first-child h3 { font-size:29px; }
  .vg-story small { display:none; }
  .vg-story:first-child small { display:block; }
  .vg-story__read { margin-top:10px; }
  .vg-note > div { grid-template-columns:1fr; gap:8px; }
  .vg-note b { grid-column:auto; }
  .vg-note p { font-size:17px; }
}
@media(max-width:390px){
  .vg-intro h1 { font-size:50px; }
  .vg-story,.vg-story:first-child { grid-template-columns:1fr; }
  .vg-story__image { min-height:0; aspect-ratio:3/2; }
}

/* aifw finishing pass: audit-bounded type and integrated category archive cards */
.vg-intro h1 { font-size: clamp(48px, 6.4vw, 76px); line-height: .92; }
.vg-route__head h2 { font-size: clamp(31px, 3.7vw, 48px); }
.vg-lead__copy h2 { font-size: clamp(31px, 3.5vw, 47px); }
.vg-story:first-child h3 { font-size: clamp(26px, 2.5vw, 34px); }
.archive-import-section { margin: 0 0 64px; padding: 30px 0 8px; border-top: 3px double var(--ink); }
.archive-import-section > header { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom:22px; }
.archive-import-section > header h2 { margin:0; max-width:18ch; font-size: clamp(28px, 3.2vw, 42px); font-weight:400; line-height:1.02; }
.archive-import-section > header p { margin:0 0 8px; color:var(--terracotta-dark); font:700 11px Arial,sans-serif; text-transform:uppercase; }
.archive-import-grid { display:grid; grid-template-columns:minmax(0, 1fr); gap:20px; }
.archive-import-card { display:grid; grid-template-columns:minmax(220px, .72fr) minmax(0, 1.28fr); gap:24px; padding:0 0 24px; border-bottom:1px solid var(--line); }
.archive-import-card-image { display:block; aspect-ratio:3/2; overflow:hidden; }
.archive-import-card-image img { width:100%; height:100%; object-fit:cover; }
.archive-import-card h3 { margin:8px 0 10px; font-size:clamp(23px, 2.4vw, 32px); font-weight:400; line-height:1.08; }
.archive-import-card p { color:var(--muted); }
.archive-import-card-meta { display:flex; gap:14px; margin:0; color:var(--terracotta-dark)!important; font:700 11px Arial,sans-serif; text-transform:uppercase; }
.archive-import-read { font:700 11px Arial,sans-serif; text-transform:uppercase; text-decoration:none; }
@media(max-width:700px){
  .vg-intro h1 { font-size: clamp(42px, 12vw, 48px); }
  .vg-route__head h2,.vg-lead__copy h2 { font-size: clamp(28px, 8.4vw, 38px); }
  .vg-story:first-child h3 { font-size: 24px; }
  .archive-import-section > header { display:block; }
  .archive-import-card { grid-template-columns: 112px minmax(0,1fr); gap:14px; }
  .archive-import-card h3 { font-size:22px; }
  .archive-import-card p:not(.archive-import-card-meta) { display:none; }
}
