:root {
  --paper: #f2eadb;
  --paper-light: #fbf7ee;
  --ink: #1e211c;
  --olive: #48543a;
  --olive-dark: #2f3926;
  --terracotta: #b75535;
  --terracotta-dark: #81351f;
  --sun: #d9a92f;
  --rule: #b9ad98;
  --max: 1240px;
  --wide: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input { font: inherit; }
button { cursor: pointer; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.wrap-wide { width: min(calc(100% - 32px), var(--wide)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-150%); background: var(--paper-light); padding: 8px 12px; border: 2px solid var(--ink); }
.skip-link:focus { transform: translateY(0); }

.utility { display: flex; justify-content: space-between; padding-block: 7px; color: var(--paper-light); font-size: .69rem; font-weight: 700; text-transform: uppercase; }
.site-header { background: var(--olive-dark); color: var(--paper-light); border-bottom: 5px solid var(--terracotta); }
.masthead { min-height: 132px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 34px; border-top: 1px solid rgba(255,255,255,.22); }
.brand { display: inline-flex; align-items: center; width: fit-content; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 62px; height: 62px; margin-right: 16px; background: var(--terracotta); color: #fff; font-size: 1.45rem; font-weight: 700; border: 1px solid rgba(255,255,255,.55); }
.brand-name { font-size: 2rem; font-weight: 700; line-height: .85; text-transform: uppercase; }
.brand-note { margin: 0; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.35); font-size: .8rem; line-height: 1.5; }
.search-open, .search-close { border: 1px solid currentColor; background: transparent; color: inherit; padding: 9px 14px; font-weight: 700; }
.search-open:hover, .search-open:focus-visible { background: var(--paper-light); color: var(--olive-dark); }
.main-nav { background: var(--paper); color: var(--ink); border-top: 1px solid rgba(255,255,255,.18); }
.nav-inner { display: flex; align-items: stretch; flex-wrap: wrap; }
.nav-inner a { padding: 13px 21px; border-right: 1px solid var(--rule); font-size: .72rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.nav-inner a:first-child { border-left: 1px solid var(--rule); }
.nav-inner a:hover, .nav-inner a:focus-visible, .nav-inner a[aria-current="page"] { background: var(--terracotta); color: #fff; }

.lead { position: relative; min-height: 660px; margin-top: 28px; overflow: hidden; background: var(--olive); color: #fff; }
.lead > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lead-shade { position: absolute; inset: 0; background: rgba(20, 25, 17, .52); }
.lead-copy { position: absolute; z-index: 1; left: clamp(22px, 5%, 70px); bottom: 54px; width: min(780px, calc(100% - 44px)); }
.lead-meta, .story-meta, .article-label, .article-byline { display: flex; align-items: center; gap: 18px; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.lead-meta a { color: #fff; }
.lead h1 { max-width: 16ch; margin: 15px 0 14px; font-size: 4.75rem; line-height: .95; letter-spacing: 0; text-wrap: balance; }
.lead h1 a { text-decoration: none; }
.lead-copy > p { max-width: 67ch; margin: 0; font-size: 1rem; line-height: 1.55; }
.lead-index { position: absolute; z-index: 1; right: 24px; top: 24px; padding: 8px 10px; background: var(--sun); color: var(--ink); font-size: .75rem; font-weight: 700; }
.edition-line { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--ink); }
.edition-line p { margin: 0; padding: 13px 16px; font-size: .68rem; font-weight: 700; text-align: center; text-transform: uppercase; }
.edition-line p + p { border-left: 1px solid var(--ink); }

.latest, .category-index, .related { padding-block: 90px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 3px solid var(--ink); }
.section-heading h2 { margin: 0; font-size: 2.2rem; line-height: 1; text-transform: uppercase; }
.section-heading > span { color: var(--terracotta-dark); font-weight: 700; }
.section-kicker { margin: 0 0 8px; color: var(--terracotta-dark); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.story-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 38px 26px; }
.story-card { grid-column: span 4; border-top: 1px solid var(--ink); padding-top: 9px; min-width: 0; }
.story-card--wide { grid-column: span 8; }
.story-image { display: block; overflow: hidden; background: var(--paper); }
.story-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .35s ease; }
.story-card--wide img { aspect-ratio: 2 / 1; }
.story-image:hover img { transform: scale(1.018); }
.story-copy { padding-top: 16px; }
.story-meta { justify-content: space-between; color: var(--olive); }
.story-meta a { color: var(--terracotta-dark); }
.story-card h3 { margin: 13px 0 10px; font-size: 1.45rem; line-height: 1.15; text-wrap: balance; }
.story-card--wide h3 { max-width: 22ch; font-size: 2.05rem; }
.story-card h3 a { text-decoration: none; }
.story-card h3 a:hover { text-decoration: underline; }
.story-card p { margin: 0 0 14px; color: #4d4b43; font-size: .88rem; }
.story-date { color: #6f685d; font-size: .68rem; text-transform: uppercase; }

.manifesto { background: var(--terracotta); color: #fff; }
.manifesto-grid { display: grid; grid-template-columns: 150px 1fr auto; gap: 46px; align-items: start; padding-block: 70px; }
.manifesto .section-kicker { color: #fff; }
.manifesto-text { max-width: 28ch; margin: 0; font-size: 2rem; font-weight: 700; line-height: 1.17; text-wrap: balance; }
.manifesto a { align-self: end; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.category-list { border-top: 1px solid var(--ink); }
.category-list a { display: grid; grid-template-columns: 70px minmax(180px, .75fr) 1fr 24px; gap: 22px; align-items: center; padding: 27px 12px; border-bottom: 1px solid var(--ink); text-decoration: none; }
.category-list a:hover { background: var(--paper); }
.category-list span { color: var(--terracotta-dark); font-weight: 700; }
.category-list strong { font-size: 1.3rem; text-transform: uppercase; }
.category-list em { color: #555147; font-size: .84rem; font-style: normal; }

.category-hero { display: grid; grid-template-columns: 190px 1fr; gap: 44px; align-items: end; padding-block: 84px 62px; border-bottom: 4px solid var(--ink); }
.category-number { color: var(--terracotta); font-size: 6rem; font-weight: 700; line-height: .8; }
.category-hero h1 { margin: 0; font-size: 3.5rem; line-height: .95; text-transform: uppercase; }
.category-hero div > p:last-child { max-width: 66ch; margin: 20px 0 0; }
.category-stories { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px 26px; padding-block: 62px; }
.category-stories .story-card { grid-column: span 5; }
.category-stories .story-card--wide { grid-column: span 7; }
.category-note { display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; padding: 20px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.category-note p { margin: 0; }
.category-note a { font-weight: 700; }

.article-header { max-width: 1040px; padding-top: 82px; }
.article-label { color: var(--olive); }
.article-label a { color: var(--terracotta-dark); }
.article-header h1 { max-width: 19ch; margin: 26px 0 24px; font-size: 4rem; line-height: .98; letter-spacing: 0; text-wrap: balance; }
.article-dek { max-width: 72ch; margin: 0; font-size: 1.15rem; line-height: 1.55; }
.article-byline { justify-content: space-between; margin-top: 38px; padding: 16px 0; border-top: 1px solid var(--ink); }
.article-figure { margin-top: 20px; }
.article-figure img { width: 100%; max-height: 800px; object-fit: cover; }
.article-figure figcaption { margin-top: 7px; color: #716a5f; font-size: .65rem; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 720px); justify-content: center; gap: 54px; padding-block: 72px 100px; }
.article-rail { position: sticky; top: 20px; align-self: start; display: flex; flex-direction: column; gap: 18px; padding-top: 10px; border-top: 3px solid var(--terracotta); color: var(--olive); font-size: .7rem; text-transform: uppercase; }
.article-body { min-width: 0; font-size: 1rem; line-height: 1.82; }
.article-body .intro { margin-top: 0; font-size: 1.17rem; font-weight: 700; line-height: 1.65; }
.article-body h2 { margin: 2.8em 0 .7em; padding-top: .55em; border-top: 1px solid var(--rule); font-size: 1.85rem; line-height: 1.15; text-wrap: balance; }
.article-body h3 { margin: 2.1em 0 .6em; color: var(--terracotta-dark); font-size: 1.25rem; line-height: 1.2; }
.article-body h4 { margin: 1.8em 0 .5em; font-size: 1rem; text-transform: uppercase; }
.article-body p { margin: 0 0 1.35em; }
.article-body ul, .article-body ol { margin: 1.2em 0 1.7em; padding-left: 1.4em; }
.article-body li { margin-bottom: .6em; padding-left: .25em; }
.related { border-top: 5px solid var(--olive-dark); }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.related-grid .story-card { grid-column: auto; }

.site-footer { background: var(--olive-dark); color: var(--paper-light); border-top: 7px solid var(--sun); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .7fr; gap: 60px; padding-block: 62px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid p { max-width: 52ch; margin: 12px 0 0; font-size: .79rem; }
.footer-grid a { margin-top: 10px; font-size: .76rem; }
.footer-mark { display: inline-grid; place-items: center; width: 48px; height: 48px; background: var(--terracotta); font-weight: 700; }
.footer-label { margin: 0 0 10px !important; color: var(--sun); font-weight: 700; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 15px; border-top: 1px solid rgba(255,255,255,.25); font-size: .65rem; text-transform: uppercase; }

.search-panel { position: fixed; z-index: 90; inset: 0; display: grid; place-items: start center; padding: 7vh 18px 18px; background: rgba(20, 22, 17, .82); overflow-y: auto; }
.search-panel[hidden] { display: none; }
.search-shell { width: min(820px, 100%); background: var(--paper-light); color: var(--ink); border-top: 8px solid var(--terracotta); padding: 28px; box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.search-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--ink); padding-bottom: 18px; }
.search-top .section-kicker { margin: 0; }
.search-close { color: var(--ink); }
.search-form { padding: 25px 0 18px; }
.search-form label { display: block; margin-bottom: 8px; font-size: .76rem; font-weight: 700; }
.search-line { display: grid; grid-template-columns: 1fr auto; }
.search-line input { min-width: 0; border: 1px solid var(--ink); background: #fff; padding: 13px; border-radius: 0; }
.search-line button { border: 1px solid var(--ink); border-left: 0; background: var(--olive); color: #fff; padding: 10px 19px; font-weight: 700; }
.search-status { color: #615d54; font-size: .76rem; }
.search-results { border-top: 1px solid var(--rule); }
.search-result { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.search-result img { width: 110px; aspect-ratio: 3 / 2; object-fit: cover; }
.search-result h3 { margin: 3px 0 6px; font-size: 1rem; line-height: 1.25; }
.search-result p { margin: 0; color: #5e594f; font-size: .75rem; }
.search-result span { color: var(--terracotta-dark); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
body.search-locked { overflow: hidden; }

@media (max-width: 900px) {
  .masthead { grid-template-columns: 1fr auto; gap: 16px; min-height: 110px; }
  .brand-note { display: none; }
  .lead { min-height: 590px; }
  .lead h1 { font-size: 3.45rem; }
  .story-card, .story-card--wide { grid-column: span 6; }
  .manifesto-grid { grid-template-columns: 120px 1fr; }
  .manifesto a { grid-column: 2; }
  .category-hero { grid-template-columns: 130px 1fr; }
  .category-number { font-size: 4.5rem; }
  .category-stories .story-card, .category-stories .story-card--wide { grid-column: span 6; }
  .article-layout { grid-template-columns: 140px minmax(0, 1fr); gap: 35px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .wrap, .wrap-wide { width: min(calc(100% - 28px), var(--max)); }
  .utility-date { display: none; }
  .masthead { min-height: 92px; }
  .brand-mark { width: 44px; height: 44px; margin-right: 10px; font-size: 1rem; }
  .brand-name { font-size: 1.25rem; }
  .search-open { padding: 7px 9px; font-size: .75rem; }
  .nav-inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .nav-inner a { display: grid; place-items: center; min-height: 44px; padding: 8px 6px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); text-align: center; font-size: .61rem; }
  .nav-inner a:first-child { border-left: 0; }
  .lead { min-height: 535px; margin-top: 14px; }
  .lead-copy { left: 18px; bottom: 24px; width: calc(100% - 36px); }
  .lead h1 { max-width: 13ch; margin-top: 10px; font-size: 2.35rem; }
  .lead-copy > p { display: none; }
  .lead-index { right: 12px; top: 12px; }
  .edition-line { grid-template-columns: 1fr; }
  .edition-line p + p { border-left: 0; border-top: 1px solid var(--ink); }
  .edition-line p:nth-child(n+3) { display: none; }
  .latest, .category-index, .related { padding-block: 58px; }
  .section-heading h2 { font-size: 1.75rem; }
  .story-grid { display: block; }
  .story-card, .story-card--wide { margin-bottom: 46px; }
  .story-card--wide img, .story-card img { aspect-ratio: 4 / 3; }
  .story-card--wide h3, .story-card h3 { font-size: 1.35rem; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 18px; padding-block: 50px; }
  .manifesto-text { font-size: 1.45rem; }
  .manifesto a { grid-column: auto; }
  .category-list a { grid-template-columns: 40px 1fr 22px; gap: 12px; padding: 20px 4px; }
  .category-list em { grid-column: 2 / 4; }
  .category-list strong { font-size: 1.05rem; }
  .category-hero { grid-template-columns: 1fr; gap: 24px; padding-block: 58px 42px; }
  .category-number { font-size: 3.6rem; }
  .category-hero h1 { font-size: 2.3rem; overflow-wrap: break-word; }
  .category-stories { display: block; padding-block: 42px; }
  .category-stories .story-card { margin-bottom: 44px; }
  .category-note { align-items: flex-start; flex-direction: column; gap: 9px; margin-bottom: 55px; }
  .article-header { padding-top: 52px; }
  .article-header h1 { font-size: 2.35rem; overflow-wrap: break-word; }
  .article-dek { font-size: 1rem; }
  .article-byline { align-items: flex-start; flex-direction: column; gap: 4px; }
  .article-figure { width: 100%; }
  .article-figure img { aspect-ratio: 4 / 3; object-fit: cover; }
  .article-figure figcaption { padding-inline: 14px; }
  .article-layout { display: block; padding-block: 46px 70px; }
  .article-rail { position: static; margin-bottom: 36px; }
  .article-body { font-size: .98rem; line-height: 1.75; }
  .article-body .intro { font-size: 1.06rem; }
  .article-body h2 { font-size: 1.48rem; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 48px; }
  .footer-bottom { gap: 20px; }
  .search-shell { padding: 20px 16px; }
  .search-line { grid-template-columns: 1fr; gap: 8px; }
  .search-line button { border-left: 1px solid var(--ink); }
  .search-result { grid-template-columns: 84px 1fr; gap: 12px; }
  .search-result img { width: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* 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;
  }
}

/* Canadian Roaster bespoke tasting route */
.cr-home{background:#f3efe6;color:#25251f;padding-bottom:0}.cr-intro{display:grid;grid-template-columns:minmax(0,1fr) 220px;gap:48px;align-items:end;padding-top:clamp(64px,10vw,136px);padding-bottom:clamp(56px,8vw,112px);border-bottom:1px solid #c8c0b1}.cr-intro__copy{max-width:780px}.cr-intro h1{font-size:clamp(3.2rem,8vw,7.5rem);line-height:.9;letter-spacing:-.04em;margin:.15em 0 .22em;max-width:760px}.cr-intro__lede{font-size:clamp(1.1rem,2vw,1.45rem);line-height:1.5;max-width:620px}.cr-primary-link,.cr-arrow-link{color:#5d3e27;text-decoration:underline;text-underline-offset:4px;font-weight:700}.cr-intro__stamp{border:1px solid #8e826e;border-radius:50%;width:190px;height:190px;display:grid;place-content:center;text-align:center;transform:rotate(7deg);color:#5d3e27}.cr-intro__stamp span{font-size:2rem;font-weight:800}.cr-intro__stamp b{font-size:.72rem;line-height:1.45;text-transform:uppercase;letter-spacing:.12em}.cr-tasting-board{padding-top:60px;padding-bottom:30px}.cr-board-head{display:flex;justify-content:space-between;gap:20px;align-items:end;border-bottom:1px solid #c8c0b1;padding-bottom:18px}.cr-board-head h2{margin:.1em 0;font-size:clamp(2rem,4vw,4rem);line-height:1}.cr-board-head>span{font-size:.8rem;text-transform:uppercase;letter-spacing:.1em}.cr-route-links{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-bottom:1px solid #c8c0b1}.cr-route-links a{padding:22px 20px 26px 0;border-right:1px solid #c8c0b1;margin-right:20px;display:grid;gap:6px;color:inherit;text-decoration:none}.cr-route-links a:last-child{border:0}.cr-route-links span,.cr-tasting-card__number{color:#9b6d46;font-size:.75rem;font-weight:800;letter-spacing:.1em}.cr-route-links b{font-size:1.2rem}.cr-route-links em{font-style:normal;color:#766f64}.cr-route{padding:70px max(24px,calc((100vw - 1280px)/2))}.cr-route--koken{background:#e3e7d5}.cr-route--kiezen{background:#eadbc8}.cr-route__intro{max-width:700px;margin-bottom:35px}.cr-route__intro h2{font-size:clamp(2.4rem,5vw,5rem);line-height:.95;margin:.1em 0}.cr-route__intro>p:last-child{font-size:1.1rem;line-height:1.5}.cr-route__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.cr-tasting-card{background:#f7f3eb;display:flex;flex-direction:column}.cr-tasting-card img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.cr-tasting-card>div{padding:20px 20px 24px}.cr-tasting-card h3{font-size:1.45rem;line-height:1.05;margin:.35em 0 .5em}.cr-tasting-card h3 a{color:inherit;text-decoration:none}.cr-tasting-card p{line-height:1.5;margin:.5em 0 1.2em}.cr-arrow-link{font-size:.86rem}.cr-archive{padding-top:70px;padding-bottom:80px}.cr-archive__list{border-top:1px solid #c8c0b1}.cr-archive__list a{display:grid;grid-template-columns:1fr 120px 20px;gap:18px;align-items:center;padding:18px 0;border-bottom:1px solid #c8c0b1;color:inherit;text-decoration:none}.cr-archive__list a:hover{color:#7a4b2b}.cr-archive__list em{font-style:normal;color:#766f64;font-size:.9rem}.cr-archive__list b{font-size:1.2rem}@media(max-width:720px){.article .masthead{grid-template-columns:minmax(0,1fr) auto;gap:8px}.article .brand{min-width:0;width:auto}.article .brand-name{font-size:1rem}.article .search-open{position:relative;z-index:1;min-width:58px}.cr-intro{grid-template-columns:1fr;padding-top:55px}.cr-intro__stamp{width:120px;height:120px}.cr-intro__stamp span{font-size:1.35rem}.cr-intro__stamp b{font-size:.55rem}.cr-board-head{display:block}.cr-board-head>span{display:block;margin-top:12px}.cr-route-links{grid-template-columns:1fr}.cr-route-links a{border-right:0;border-bottom:1px solid #c8c0b1;margin-right:0}.cr-route{padding:52px 20px}.cr-route__grid{grid-template-columns:1fr}.cr-tasting-card img{aspect-ratio:16/10}.cr-archive{padding:54px 20px}.cr-archive__list a{grid-template-columns:1fr 24px}.cr-archive__list em{display:none}}
/* Canadian Roaster type scale: deliberate at desktop, calm on small screens. */
.cr-intro h1{font-size:clamp(2.4rem,5vw,5.5rem);line-height:.94}
.cr-board-head h2{font-size:clamp(1.75rem,3vw,3.25rem)}
.cr-route__intro h2{font-size:clamp(2rem,4vw,4rem);line-height:.98}
.article-page .article-header h1,.category-header h1{font-size:3.5rem;line-height:1.02}
@media(max-width:720px){
  .cr-intro h1{font-size:2.5rem}
  .cr-board-head h2{font-size:1.9rem}
  .cr-route__intro h2{font-size:2.25rem}
  .article-page .article-header h1,.category-header h1{font-size:2.15rem}
}
