:root {
  --ink: #10213a;
  --navy: #0b1b34;
  --navy-soft: #18314f;
  --mint: #a8efd3;
  --mint-strong: #62d8ae;
  --mint-pale: #e6faf2;
  --paper: #ffffff;
  --mist: #f3f7f6;
  --line: #ccdad6;
  --muted: #5b6975;
  --warm: #f3b66d;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lucida Sans", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--mint-strong);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 9px 13px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  text-decoration: none;
  color: var(--navy);
  line-height: 1;
}

.brand-main {
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  font-weight: 700;
}

.brand-tail {
  margin-top: 6px;
  color: #287b65;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-note {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
  text-align: right;
}

.nav-band {
  background: var(--navy);
  color: var(--paper);
}

.nav-inner {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.main-nav {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: thin;
}

.main-nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 3px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--mint);
  background: var(--navy-soft);
}

.search-open {
  min-height: 54px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid #35506f;
  border-right: 1px solid #35506f;
  background: transparent;
  color: var(--paper);
  font-weight: 700;
}

.search-open:hover {
  background: var(--mint);
  color: var(--navy);
}

main {
  min-height: 60vh;
}

.feature-wrap {
  padding-top: 32px;
}

.feature {
  position: relative;
  min-height: min(690px, 76vh);
  overflow: hidden;
  background: var(--navy);
}

.feature > img {
  width: 100%;
  height: min(690px, 76vh);
  min-height: 520px;
  object-fit: cover;
}

.feature-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(735px, 76%);
  padding: clamp(24px, 5vw, 64px);
  background: rgba(11, 27, 52, 0.94);
  color: var(--paper);
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: #287b65;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.feature .eyebrow {
  color: var(--mint);
}

.feature h1 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.65rem);
  line-height: 1.03;
  font-weight: 700;
}

.feature h1 a {
  text-decoration: none;
}

.feature-summary {
  max-width: 58ch;
  margin: 20px 0 0;
  color: #dbe8e5;
  font-size: 1rem;
  line-height: 1.65;
}

.feature-meta,
.card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  font-size: 0.78rem;
}

.feature-meta {
  color: var(--mint);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 88px 0 26px;
  border-bottom: 1px solid var(--ink);
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.15;
}

.section-head p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 48px 24px;
  padding: 36px 0 100px;
}

.story-card {
  grid-column: span 4;
  min-width: 0;
}

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

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

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

.card-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--mist);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.story-card:hover .card-image img,
.list-story:hover img {
  transform: scale(1.02);
}

.card-body {
  padding-top: 20px;
}

.card-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.2;
}

.card-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-meta {
  margin-top: 14px;
  color: #287b65;
}

.category-band {
  background: var(--mint-pale);
}

.category-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.7fr;
  gap: 80px;
  padding: 88px 0 96px;
}

.category-intro h2 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}

.category-intro p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.category-links {
  border-top: 1px solid #7ba99a;
}

.category-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 23px 4px;
  border-bottom: 1px solid #7ba99a;
  text-decoration: none;
}

.category-link:hover {
  background: rgba(255, 255, 255, 0.45);
}

.category-number {
  color: #287b65;
  font-size: 0.75rem;
}

.category-name {
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  font-weight: 700;
}

.category-count {
  color: var(--muted);
  font-size: 0.78rem;
}

.page-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  padding: 86px 0 55px;
  border-bottom: 1px solid var(--ink);
}

.breadcrumbs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.page-head h1 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.page-intro {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.list-stories {
  padding: 18px 0 96px;
}

.list-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 48px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.list-story:first-child {
  border-top: 0;
}

.list-story .card-image {
  aspect-ratio: 3 / 2;
}

.list-story h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.12;
}

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

.list-story p {
  max-width: 60ch;
  margin: 16px 0 0;
  color: var(--muted);
}

.article-head {
  padding: 66px 0 42px;
}

.article-head .breadcrumbs {
  margin-bottom: 38px;
}

.article-title-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 56px;
}

.article-head h1 {
  max-width: 18ch;
  margin: 0;
  font-size: 4rem;
  line-height: 1.01;
}

.article-deck {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.article-hero {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--mist);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  padding: 72px 0 110px;
}

.article-body {
  min-width: 0;
  color: #263747;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  line-height: 1.82;
}

.article-body .lead {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.72;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--navy);
  font-family: "Lucida Sans", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.article-body h2 {
  margin: 2.9em 0 0.7em;
  font-size: 1.85rem;
  line-height: 1.22;
}

.article-body h3 {
  margin: 2.1em 0 0.6em;
  font-size: 1.3rem;
  line-height: 1.3;
}

.article-body h4 {
  margin: 1.8em 0 0.5em;
  color: #287b65;
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 1.35em;
}

.article-body li {
  margin-bottom: 0.45em;
  padding-left: 0.3em;
}

.article-body li::marker {
  color: #287b65;
  font-weight: 700;
}

.article-side {
  position: sticky;
  top: 24px;
  padding-top: 18px;
  border-top: 4px solid var(--mint-strong);
}

.article-side h2 {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.mini-story {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.mini-story:first-of-type {
  border-top: 0;
}

.mini-story img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 12px;
}

.mini-story a {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 56px;
  padding: 70px 0;
}

.footer-brand {
  margin: 0;
  color: var(--mint);
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-copy {
  max-width: 42ch;
  margin: 12px 0 0;
  color: #c5d2dd;
  font-size: 0.84rem;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  width: fit-content;
  color: #dbe5ec;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid #35506f;
  color: #9fb0bf;
  font-size: 0.72rem;
}

.search-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 70px rgba(4, 13, 25, 0.35);
}

.search-dialog::backdrop {
  background: rgba(3, 12, 24, 0.76);
}

.search-panel {
  padding: clamp(22px, 5vw, 42px);
}

.search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.search-top h2 {
  margin: 0;
  font-size: 1.65rem;
}

.search-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-form input {
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #84958f;
  border-radius: 4px;
  color: var(--ink);
}

.search-submit {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: var(--navy);
  color: var(--paper);
  font-weight: 700;
}

.search-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.search-results {
  display: grid;
  max-height: 400px;
  overflow-y: auto;
}

.search-result {
  display: block;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.search-result strong {
  display: block;
  color: var(--navy);
}

.search-result span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .header-note {
    display: none;
  }

  .masthead {
    min-height: 92px;
    grid-template-columns: 1fr;
  }

  .feature-copy {
    width: 88%;
  }

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

  .category-layout,
  .page-head,
  .article-title-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .category-layout {
    gap: 52px;
  }

  .page-head {
    gap: 24px;
  }

  .article-title-grid {
    align-items: start;
    gap: 28px;
  }

  .article-layout {
    gap: 60px;
  }

  .article-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .masthead {
    min-height: 78px;
  }

  .brand-main {
    font-size: 1.25rem;
  }

  .nav-inner {
    gap: 0;
  }

  .main-nav a {
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .search-open {
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .feature-wrap {
    padding-top: 14px;
  }

  .feature {
    min-height: 610px;
  }

  .feature > img {
    height: 610px;
    min-height: 610px;
  }

  .feature-copy {
    width: 100%;
    padding: 24px 20px 28px;
  }

  .feature h1 {
    font-size: 2.05rem;
  }

  .feature-summary {
    display: none;
  }

  .section-head {
    display: block;
    padding-top: 58px;
  }

  .section-head p {
    margin-top: 10px;
  }

  .story-grid {
    row-gap: 42px;
    column-gap: 0;
    padding-bottom: 70px;
  }

  .story-card,
  .story-card:nth-child(1),
  .story-card:nth-child(2),
  .story-card:nth-child(3),
  .story-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .category-layout {
    padding: 64px 0 70px;
  }

  .category-intro h2 {
    font-size: 2.3rem;
  }

  .category-link {
    grid-template-columns: auto 1fr;
  }

  .category-count {
    grid-column: 2;
  }

  .page-head {
    padding: 58px 0 38px;
  }

  .page-head h1 {
    font-size: 2.3rem;
  }

  .list-story {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-head {
    padding: 46px 0 30px;
  }

  .article-head .breadcrumbs {
    margin-bottom: 24px;
  }

  .article-head h1 {
    font-size: 2.25rem;
  }

  .article-hero {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .article-layout {
    padding: 48px 0 74px;
  }

  .article-body {
    font-size: 1.03rem;
    line-height: 1.75;
  }

  .article-body .lead {
    font-size: 1.14rem;
  }

  .article-body h2 {
    font-size: 1.55rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 56px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .search-form {
    grid-template-columns: 1fr;
  }
}

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

  .card-image img {
    transition: none;
  }
}

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

/* OUTPLACEMENT-BESPOKE-HOME:START */
.route-hero{margin-top:32px;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);background:#123c3a;color:#fff;min-height:390px}.route-hero__copy{padding:clamp(28px,5vw,70px);align-self:center}.route-hero h1{max-width:12ch;margin:0;font-size:clamp(2.4rem,5vw,5.2rem);line-height:1.02}.route-hero__copy>p:not(.eyebrow){max-width:52ch;color:#d9ece5}.route-hero__link{display:inline-flex;gap:14px;margin-top:18px;padding:12px 16px;background:#f3b66d;color:#123c3a;font-weight:700;text-decoration:none}.route-hero__map{display:grid;grid-template-columns:1fr 1fr;align-content:center;gap:1px;background:#2f625a}.route-hero__map span{min-height:132px;padding:22px;background:#194946;color:#bde8d8;font-size:.76rem;letter-spacing:.08em}.route-hero__map b{display:inline-block;margin-top:8px;color:#fff;font-size:1.05rem;letter-spacing:0}.path-shell{padding-block:12px 70px}.path-section{padding-top:58px;scroll-margin-top:20px}.path-section__head{display:grid;grid-template-columns:minmax(220px,.7fr) minmax(0,1.3fr);gap:28px;align-items:end;border-bottom:2px solid #123c3a;padding-bottom:17px}.path-section__head h2{margin:0;font-size:clamp(1.8rem,3vw,3rem);line-height:1.05}.path-section__head>p{max-width:44ch;margin:0;color:#5b6975}.path-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:22px}.path-card{display:flex;min-width:0;flex-direction:column;background:#f3f7f6;border-top:4px solid #8fd7bf}.path-card--featured{grid-column:span 2;background:#e6faf2;border-top-color:#f3b66d}.path-card__image{display:block;aspect-ratio:1.45;overflow:hidden;background:#ccdad6}.path-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .2s ease}.path-card__image:hover img{transform:scale(1.03)}.path-card__body{padding:18px}.path-card h3{margin:0;font-size:1.15rem;line-height:1.2}.path-card h3 a{text-decoration:none}.path-card__body>p:not(.kicker):not(.path-card__meta){margin:12px 0 0;color:#5b6975;font-size:.9rem;line-height:1.55}.path-card__meta{margin:16px 0 0;color:#287b65;font-size:.74rem;font-weight:700}.site-footer{border-top:1px solid #ccdad6;padding:28px 0;color:#5b6975}.site-footer .shell{display:flex;justify-content:space-between;gap:20px}.site-footer strong{color:#123c3a}@media(max-width:900px){.route-hero{grid-template-columns:1fr}.route-hero__map{min-height:180px}.path-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.path-card--featured{grid-column:span 2}.path-section__head{grid-template-columns:1fr}}@media(max-width:620px){.shell{width:min(calc(100% - 32px),var(--max))}.masthead{min-height:96px;grid-template-columns:1fr}.header-note{display:none}.main-nav{scrollbar-width:none;-ms-overflow-style:none}.main-nav::-webkit-scrollbar{display:none}.main-nav a{padding-inline:12px}.route-hero{margin-top:16px}.route-hero h1{font-size:2.55rem}.route-hero__copy{padding:28px 22px}.route-hero__map span{min-height:102px;padding:16px}.path-section{padding-top:40px}.path-grid{grid-template-columns:1fr;gap:14px}.path-card--featured{grid-column:auto}.path-card__image{aspect-ratio:1.65}.site-footer .shell{display:block}.site-footer span{display:block;margin-top:6px}}
 .route-hero h1{max-width:15ch;font-size:clamp(2.15rem,4vw,3.8rem);line-height:1.06}.path-section__head h2{font-size:clamp(1.65rem,2.5vw,2.35rem);line-height:1.1}.path-card h3{font-size:1.08rem;line-height:1.25}.category-page .page-head{padding:54px 0 32px;grid-template-columns:1.15fr .85fr;gap:28px}.category-page .page-head h1{max-width:15ch;font-size:clamp(2rem,4vw,3.35rem);line-height:1.08}.category-page .list-stories{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;padding:28px 0 72px}.category-page .list-story{display:flex;min-width:0;flex-direction:column;border-top:4px solid #8fd7bf;background:#f3f7f6}.category-page .list-story .card-image{aspect-ratio:1.55}.category-page .list-story>div{padding:18px}.category-page .list-story h2{margin:0;font-size:1.25rem;line-height:1.2}.category-page .list-story>div>p:not(.kicker):not(.card-meta){margin:12px 0 0;color:#5b6975;font-size:.9rem;line-height:1.55}.editorial-archive .page-head{border-left:8px solid #f3b66d;padding-left:26px}.editorial-archive .page-intro{max-width:48ch}.route-article .article-head{padding-top:48px}.route-article .article-title-grid{align-items:start}.route-article .article-title-grid h1{max-width:16ch;font-size:clamp(2rem,4vw,3.75rem);line-height:1.06}.route-article .article-deck{max-width:38ch;padding-top:20px;color:#287b65;font-size:1.05rem}.route-article .article-hero{max-width:1080px;margin:30px auto 0;background:#e6faf2}.route-article .article-hero img{aspect-ratio:2.2;object-fit:cover}.route-article .article-layout{padding-top:38px}.route-article .article-body{max-width:70ch}.route-article .article-body h2{font-size:1.55rem;line-height:1.2}@media(max-width:900px){.category-page .list-stories{grid-template-columns:1fr}.route-article .article-hero{margin-inline:24px}}@media(max-width:620px){.route-hero h1{font-size:2.35rem}.category-page .page-head{display:block;padding:38px 0 24px}.category-page .page-head h1{font-size:2.15rem}.category-page .list-stories{display:block;padding:20px 0 48px}.category-page .list-story{margin-bottom:16px}.editorial-archive .page-head{padding-left:18px}.route-article .article-head{padding-top:30px}.route-article .article-title-grid h1{font-size:2.25rem}.route-article .article-hero{margin-inline:16px}.route-article .article-hero img{aspect-ratio:1.35}}
 /* OUTPLACEMENT-BESPOKE-HOME:END */
