:root {
  --ink: #050505;
  --paper: #ffffff;
  --blue: #1547d9;
  --blue-dark: #0d35ad;
  --mist: #eef1f7;
  --line: #b9bec9;
  --muted: #555b66;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.search-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--blue);
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  border-radius: 0;
}

:focus-visible {
  outline: 3px solid #f1d429;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 8px solid var(--blue);
}

.header-top,
.header-nav,
.page-shell,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.header-top {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 22px 0 18px;
}

.brand {
  display: inline-block;
  width: fit-content;
  color: var(--paper);
  font-size: clamp(2.25rem, 6vw, 4.8rem);
  line-height: 0.86;
  font-weight: 800;
  text-decoration: none;
  text-transform: lowercase;
}

.brand:hover {
  color: var(--paper);
}

.brand span {
  color: var(--blue);
}

.issue-label {
  margin: 0;
  max-width: 220px;
  color: #c9cdd6;
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-band {
  border-top: 1px solid #3a3a3a;
}

.header-nav {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.nav-links a,
.search-trigger {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 9px 18px;
  border: 0;
  border-right: 1px solid #3a3a3a;
  background: transparent;
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links a:first-child {
  border-left: 1px solid #3a3a3a;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.search-trigger:hover {
  background: var(--blue);
  color: var(--paper);
}

.search-trigger {
  margin-left: auto;
  border-left: 1px solid #3a3a3a;
}

.search-mark {
  width: 15px;
  height: 15px;
  margin-right: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

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

.page-shell {
  padding-block: 34px 78px;
}

.edition-strip {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  font-size: 0.8rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 700;
}

.edition-strip strong {
  color: var(--blue);
}

.edition-strip time {
  color: var(--muted);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.9fr);
  border-bottom: 8px solid var(--ink);
}

.lead-media {
  min-height: 540px;
  overflow: hidden;
  background: var(--mist);
}

.lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 38px;
  background: var(--blue);
  color: var(--paper);
}

.kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-copy h1 {
  max-width: 12ch;
  margin: 0 0 20px;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.lead-copy p {
  margin: 0 0 25px;
  font-size: 1.04rem;
  line-height: 1.45;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-top: 10px;
  border-top: 3px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.story-link::after {
  content: "→";
  font-size: 1.25em;
}

.story-link:hover {
  color: inherit;
  gap: 15px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 56px 0 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading::after {
  content: "";
  height: 5px;
  background: var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px 24px;
}

.story-card {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-width: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 16px 0 20px;
}

.story-card:nth-child(3),
.story-card:nth-child(4) {
  grid-column: span 6;
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-card-copy {
  min-width: 0;
  padding: 0 0 0 22px;
}

.story-card h3 {
  margin: 7px 0 12px;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1.03;
  overflow-wrap: anywhere;
}

.story-card h3 a {
  text-decoration: none;
}

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

.category-ribbon {
  margin-top: 60px;
  background: var(--ink);
  color: var(--paper);
}

.category-ribbon-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  align-items: stretch;
}

.category-ribbon h2,
.category-ribbon a {
  margin: 0;
  padding: 24px 20px;
  border-right: 1px solid #444;
}

.category-ribbon h2 {
  display: flex;
  align-items: center;
  background: var(--blue);
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.category-ribbon a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.category-ribbon a::after {
  content: "→";
  margin-left: 12px;
}

.category-ribbon a:hover {
  background: var(--paper);
  color: var(--ink);
}

.breadcrumbs {
  margin: 0 0 34px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--ink);
}

.article-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.article-title-block {
  min-width: 0;
  border-top: 8px solid var(--blue);
  padding-top: 21px;
}

.article-title-block h1,
.category-header h1 {
  margin: 0 0 20px;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.article-deck {
  margin: 0 0 24px;
  font-size: 1.15rem;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 700;
}

.article-figure {
  margin: 0;
  background: var(--mist);
}

.article-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 9px 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  line-height: 1.35;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  justify-content: center;
  gap: 54px;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 22px;
  border-top: 4px solid var(--ink);
  padding-top: 12px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-aside strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.article-aside p {
  margin: 0 0 12px;
  color: var(--muted);
}

.article-body {
  min-width: 0;
}

.article-body > p:first-child {
  margin-top: 0;
  font-size: 1.22rem;
  line-height: 1.58;
}

.article-body h2 {
  margin: 56px 0 18px;
  padding-top: 15px;
  border-top: 5px solid var(--ink);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.05;
}

.article-body h3 {
  margin: 34px 0 11px;
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 26px;
  padding-left: 25px;
}

.article-body li {
  margin-bottom: 9px;
  padding-left: 4px;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 8px solid var(--blue);
  background: var(--mist);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
}

.article-end {
  margin-top: 56px;
  padding: 25px 0;
  border-top: 8px solid var(--blue);
  border-bottom: 1px solid var(--ink);
}

.article-end strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.article-end a {
  font-size: 1.15rem;
  font-weight: 700;
}

.category-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--blue);
  color: var(--paper);
}

.category-header h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.category-header p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.category-list {
  border-top: 8px solid var(--ink);
}

.category-story {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 160px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.category-story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-story h2 {
  margin: 5px 0 10px;
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
  line-height: 1;
}

.category-story h2 a {
  text-decoration: none;
}

.category-story p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.category-story .story-link {
  justify-self: end;
}

.empty-category {
  max-width: 720px;
  padding: 32px 0;
  font-size: 1.1rem;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 42px 0;
}

.footer-brand {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.footer-copy {
  max-width: 580px;
  margin: 0;
  color: #bfc4cf;
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-panel[hidden] {
  display: none;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow-y: auto;
  background: rgba(5, 5, 5, 0.96);
  color: var(--paper);
}

.search-inner {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 70px 0;
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  border-bottom: 6px solid var(--blue);
  padding-bottom: 16px;
}

.search-head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.search-close {
  width: 48px;
  height: 48px;
  border: 2px solid var(--paper);
  background: transparent;
  color: var(--paper);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.search-close:hover {
  background: var(--paper);
  color: var(--ink);
}

.search-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.search-form input {
  width: 100%;
  border: 0;
  border-bottom: 4px solid var(--paper);
  padding: 15px 0;
  background: transparent;
  color: var(--paper);
  font-size: clamp(1.35rem, 4vw, 2.6rem);
  line-height: 1.2;
  border-radius: 0;
}

.search-form input::placeholder {
  color: #9298a4;
}

.search-status {
  min-height: 26px;
  margin: 16px 0 8px;
  color: #c6cad3;
  font-size: 0.84rem;
}

.search-results {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #555;
}

.search-results li {
  border-bottom: 1px solid #555;
}

.search-results a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  color: var(--paper);
  text-decoration: none;
}

.search-results a:hover {
  color: #9fb6ff;
}

.result-category {
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
}

.result-title {
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 940px) {
  .lead-grid,
  .article-header,
  .category-header {
    grid-template-columns: 1fr;
  }

  .lead-media {
    min-height: auto;
  }

  .lead-media img {
    aspect-ratio: 3 / 2;
  }

  .lead-copy {
    min-height: 390px;
  }

  .article-header {
    align-items: start;
  }

  .article-layout {
    grid-template-columns: minmax(0, 720px);
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .category-ribbon-inner {
    grid-template-columns: 1fr 1fr;
  }

  .category-ribbon h2 {
    grid-column: span 2;
  }
}

@media (max-width: 740px) {
  body {
    font-size: 17px;
  }

  .header-top,
  .header-nav,
  .page-shell,
  .footer-inner,
  .category-ribbon-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-top {
    min-height: 88px;
    align-items: center;
    padding: 18px 0;
  }

  .issue-label {
    display: none;
  }

  .header-nav {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
  }

  .nav-links {
    min-width: 0;
    overflow-x: auto;
    padding-left: 14px;
    scrollbar-width: thin;
  }

  .nav-links::-webkit-scrollbar {
    height: 4px;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: var(--blue);
  }

  .nav-links a,
  .search-trigger {
    flex: 0 0 auto;
    padding-inline: 13px;
    white-space: nowrap;
  }

  .search-trigger {
    margin-left: 0;
    margin-right: 0;
    background: var(--ink);
  }

  .page-shell {
    padding-block: 24px 56px;
  }

  .edition-strip {
    grid-template-columns: auto 1fr;
  }

  .edition-strip time {
    display: none;
  }

  .lead-copy {
    min-height: 0;
    padding: 26px 22px 30px;
  }

  .lead-copy h1 {
    max-width: none;
  }

  .story-grid {
    display: block;
  }

  .story-card {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    margin-bottom: 20px;
  }

  .story-card-copy {
    padding-left: 16px;
  }

  .story-card h3 {
    font-size: 1.35rem;
  }

  .story-card p {
    display: none;
  }

  .category-ribbon-inner {
    display: block;
  }

  .category-ribbon h2,
  .category-ribbon a {
    border-right: 0;
    border-bottom: 1px solid #444;
  }

  .article-header {
    gap: 24px;
  }

  .article-title-block h1,
  .category-header h1 {
    font-size: 2.7rem;
  }

  .article-layout {
    display: block;
  }

  .article-aside {
    display: block;
    margin-bottom: 38px;
  }

  .category-header {
    padding: 24px 20px;
  }

  .category-story {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
  }

  .category-story .story-link {
    display: none;
  }

  .category-story h2 {
    font-size: 1.35rem;
  }

  .category-story p {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .search-inner {
    width: calc(100% - 28px);
    padding: 30px 0;
  }

  .search-results a {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 2.3rem;
  }

  .edition-strip strong {
    display: none;
  }

  .edition-strip {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .story-card h3 {
    font-size: 1.16rem;
  }

  .article-title-block h1,
  .category-header h1 {
    font-size: 2.25rem;
  }
}

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

/* visual-quality-baseline-v1 */
img {
  height: auto;
}

.visual-refresh-feed {
  margin-block: clamp(40px, 6vw, 84px);
}

.visual-refresh-feed > :is(
  ul,
  ol,
  [class*="grid"],
  [class*="list"],
  [class*="run"],
  [class*="feed"],
  [class*="articles"],
  [class*="stories"],
  [class*="cards"]
) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2.2vw, 28px) !important;
}

.visual-refresh-feed > :is(
  ul,
  ol,
  [class*="grid"],
  [class*="list"],
  [class*="run"],
  [class*="feed"],
  [class*="articles"],
  [class*="stories"],
  [class*="cards"]
) > * {
  min-width: 0;
}

.visual-refresh-feed img {
  width: 100%;
  height: auto;
  max-height: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 720px) {
  .visual-refresh-feed > :is(
    ul,
    ol,
    [class*="grid"],
    [class*="list"],
    [class*="run"],
    [class*="feed"],
    [class*="articles"],
    [class*="stories"],
    [class*="cards"]
  ) {
    grid-template-columns: 1fr !important;
  }
}

/* visual-quality-targeted-v2 */
:is(h1, h2, h3) {
  overflow-wrap: anywhere;
}

.visual-refresh-feed {
  overflow: hidden;
}

.visual-refresh-feed:has(> article) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 32px) !important;
  align-items: start;
}

.visual-refresh-feed:has(> article) > :is(
  h1, h2, h3, p, header, .section-heading, .section-head, .heading
) {
  grid-column: 1 / -1;
}

.visual-refresh-feed:has(> article) > article {
  display: block !important;
  grid-column: auto !important;
  min-width: 0;
  min-height: 0 !important;
}

.visual-refresh-feed > .visual-refresh-feed {
  grid-column: 1 / -1 !important;
  width: 100%;
}

.visual-refresh-feed :is(
  .story-grid, .article-grid, .post-grid, .card-grid, .cards,
  [class*="article-list"], [class*="story-list"], [class*="post-list"]
) {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 32px) !important;
}

.visual-refresh-feed :is(article, li, [class*="card"]) {
  min-width: 0;
}

.visual-refresh-feed img {
  width: 100% !important;
  height: auto !important;
  max-height: 260px !important;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
}

@media (max-width: 720px) {
  .visual-refresh-feed:has(> article),
  .visual-refresh-feed :is(
    .story-grid, .article-grid, .post-grid, .card-grid, .cards,
    [class*="article-list"], [class*="story-list"], [class*="post-list"]
  ) {
    grid-template-columns: 1fr !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: auto;
  }
  .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;
  }
}
