:root {
  --text: #181310;
  --bg: #faf6ef;
  --surface: #fffdf8;
  --surface-soft: #f5ede1;
  --rule: #3b312b;
  --rule-soft: #d6c9b8;
  --rule-faint: #e8dece;
  --muted: #5b4e43;
  --accent: #9f6b5a;
  --accent-strong: #865646;
  --highlight: #8b6b35;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  overflow-x: hidden;
  font-family: nyt-imperial, georgia, serif;
}

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

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

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font: 700 0.75rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: none;
}

.skip-link:focus {
  top: 1rem;
}

.home-utility-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--rule-soft);
  padding: 0 12px;
  background: var(--surface);
  color: var(--text);
  font: 700 0.76rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

.home-utility-button:hover,
.home-utility-button:focus-visible {
  background: var(--surface-soft);
}

.home-utility-button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.home-utility-button--primary:hover,
.home-utility-button--primary:focus-visible {
  background: var(--accent-strong);
}

.hero-layout {
  display: grid;
  grid-template-columns: 48.6% 51.4%;
  min-height: clamp(960px, 78vw, 1280px);
}

.hero-copy {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
}

.hero-copy-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  width: min(56rem, calc(100% - 3rem));
  margin: 0 auto;
  padding:
    clamp(3.25rem, 8vw, 6.75rem)
    clamp(1.5rem, 4vw, 3rem)
    clamp(3.75rem, 8vw, 7rem)
    clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.hero-copy-kicker {
  margin: 0 0 1rem;
  color: #111111;
  font: 700 0.74rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 15ch;
  margin: 0;
  font-family: thm-nyt-magslab, nyt-magslab, nyt-karnak, nyt-cheltenham, georgia, serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.05rem, 3.75vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 32rem;
  margin: 0.85rem 0 0;
  color: #111111;
  font-family: nyt-franklin, Arial, sans-serif;
  font-size: clamp(0.92rem, 1.08vw, 1.08rem);
  font-weight: 500;
  line-height: 1.22;
  text-wrap: balance;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(960px, 78vw, 1280px);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 22%, rgba(250, 232, 185, 0.94), rgba(250, 232, 185, 0.14) 20%, transparent 42%),
    radial-gradient(circle at 72% 34%, rgba(159, 107, 90, 0.34), transparent 30%),
    linear-gradient(180deg, #1d1815 0%, #171616 50%, #0c0b0c 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.hero-figure {
  position: absolute;
  inset: 0;
}

.hero-head-stage {
  width: 100%;
  height: 100%;
  background: transparent;
  filter: contrast(1.08) saturate(0.9);
}

.hero-head-stage.home-opening-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-head-stage.home-opening-canvas::after {
  display: none !important;
}

.hero-head-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-head-stage.home-opening-canvas > canvas,
.hero-head-stage.home-opening-canvas > canvas.renderer {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  display: block !important;
}

.hero-media.home-opening-canvas {
  position: relative;
  inset: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-media.home-opening-canvas > canvas,
.hero-media.home-opening-canvas > canvas.renderer {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  display: block !important;
}

.hero-media.home-opening-slider {
  background:
    radial-gradient(circle at 22% 18%, rgba(245, 226, 187, 0.72), transparent 21%),
    radial-gradient(circle at 74% 28%, rgba(159, 107, 90, 0.24), transparent 28%),
    linear-gradient(180deg, #211915 0%, #161211 52%, #0c0b0c 100%);
}

.hero-media.home-opening-slider::before {
  z-index: 3;
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(7, 6, 6, 0.02) 0%, rgba(7, 6, 6, 0) 34%, rgba(7, 6, 6, 0.42) 100%),
    linear-gradient(90deg, rgba(9, 8, 8, 0.32), rgba(9, 8, 8, 0.02) 16%, rgba(9, 8, 8, 0.02) 84%, rgba(9, 8, 8, 0.3));
}

.hero-stage-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0;
}

.hero-stage-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.hero-stage-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  transform: translate3d(100%, 0, 0);
  transition:
    transform 560ms cubic-bezier(0.22, 0.8, 0.18, 1),
    visibility 0s linear 560ms;
  will-change: transform;
}

.hero-stage-slide.is-current,
.hero-stage-slide.is-entering {
  visibility: visible;
  transition-delay: 0s;
}

.hero-stage-slide.is-current {
  z-index: 2;
  transform: translate3d(0, 0, 0);
}

.hero-stage-slide.is-entering {
  z-index: 3;
}

.hero-stage-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0e0c0b;
}

.hero-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 6, 0.08), rgba(8, 6, 6, 0.22)),
    linear-gradient(180deg, rgba(8, 6, 6, 0) 58%, rgba(8, 6, 6, 0.38) 100%);
  pointer-events: none;
}

.hero-stage-media {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-stage-media--frame {
  background: #0e0c0b;
  pointer-events: none;
}

.hero-text-section {
  border-top: 0;
  background: var(--bg);
  padding: clamp(2.75rem, 6vw, 5rem) 0 clamp(2.4rem, 5vw, 4.25rem);
}

.hero-text-inner {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 16px;
  display: grid;
  gap: 1.45rem;
}

.hero-text-inner p {
  margin: 0;
  color: var(--text);
  font-family: nyt-imperial, georgia, serif;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.5;
}

#collection-magazine {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

#collection-magazine .css-4svvz1 {
  display: grid;
  gap: 24px;
}

#collection-magazine .css-11jjg {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

#collection-magazine .css-11ufkmx,
#collection-magazine .css-ikiut1 {
  margin: 0;
}

#collection-magazine .css-2j26di,
#collection-magazine .css-1ay4g2r {
  display: grid;
  gap: 10px;
  background: var(--surface-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 14px;
}

#collection-magazine .story-body {
  display: grid;
  gap: 10px;
}

#collection-magazine .story-body p,
#collection-magazine .css-1cap5pb,
#collection-magazine .css-1nobn0b {
  color: var(--muted);
}

#collection-magazine .css-1dv1kvn,
#collection-magazine .css-eqhl7g,
#collection-magazine .css-1eotgoc {
  margin: 0;
  color: var(--text);
}

#collection-magazine .css-1eotgoc,
#collection-magazine .css-eqhl7g {
  font-family: nyt-cheltenham, georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

#collection-magazine .css-10wtrbd {
  display: grid;
  gap: 10px;
}

#collection-magazine .photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 860px) {
  #collection-magazine .css-11jjg {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.editorial-triad {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 1.7rem;
}

.editorial-triad-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--rule-soft);
}

.editorial-triad-head span {
  color: var(--muted);
  font: 700 0.68rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.editorial-triad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  padding-top: 12px;
}

.editorial-triad-story {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  position: relative;
  min-width: 0;
  padding: 0;
}

.editorial-triad-story:not(:nth-child(3n + 1))::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  width: 1px;
  background: var(--rule-faint);
}

.editorial-triad-story:nth-child(n + 4) {
  padding-top: 28px;
  border-top: 1px solid var(--rule-faint);
}

.editorial-triad-media {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-soft);
}

.editorial-triad-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editorial-triad-image--code {
  object-position: center 18%;
}

.editorial-triad-image--agents {
  object-position: center center;
}

.editorial-triad-image--portrait {
  object-position: center center;
  background: #ece2d4;
}

.editorial-triad-image--stack {
  object-position: center center;
  background: #e9e0d3;
}

.editorial-triad-image--blue {
  object-position: center center;
}

.editorial-triad-image--code-alt {
  object-position: center 18%;
}

.editorial-triad-credit {
  margin: 0;
  padding-top: 0.55rem;
  color: #7a6e64;
  text-align: right;
  font: 500 0.74rem/1.2 nyt-franklin, Arial, sans-serif;
}

.editorial-triad-kicker {
  margin: 0;
  padding-top: 0.95rem;
  color: #111111;
  font: 700 0.72rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-triad-story h2 {
  margin: 0;
  min-height: 3.05em;
  padding-top: 0.55rem;
  color: #111111;
  font-family: thm-nyt-magslab, nyt-magslab, nyt-cheltenham, Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.028em;
}

.editorial-triad-excerpt {
  margin: 0;
  min-height: 2.7em;
  padding-top: 0.7rem;
  color: #1c1714;
  font-family: nyt-franklin, Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 400;
  line-height: 1.35;
}

.editorial-triad-byline {
  margin: auto 0 0;
  padding-top: 0.95rem;
  color: #6b625a;
  font: 500 0.82rem/1.25 nyt-franklin, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.front-sections {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.front-grid {
  display: grid;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.front-grid--lead {
  grid-template-columns: 1fr;
}

.front-grid--posts {
  grid-template-columns: 1fr;
  gap: 0;
}

.posts-home-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: min(944px, 100%);
  margin-inline: auto;
}

.posts-home-main {
  display: grid;
  width: 100%;
  margin-inline: auto;
}

.posts-home-toolbar {
  position: relative;
  display: flex;
  align-items: end;
  gap: 0;
  padding-top: 12px;
  border-bottom: 1px solid var(--rule-faint);
  overflow: visible;
}

.posts-home-toolbar::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  border-top: 2px solid var(--color-content-secondary, #363636);
}

.posts-home-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 138px;
  border-top: 1px solid var(--rule-soft);
  border-left: 1px solid var(--rule-soft);
  border-right: 1px solid var(--rule-soft);
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin-bottom: -1px;
  margin-left: 16px;
  padding: 0 36px;
  background: var(--surface);
  color: var(--text);
  font: 600 0.94rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.posts-home-tab:not(.is-muted) {
  min-height: 50px;
  margin-top: -10px;
  z-index: 2;
}

.posts-home-tab::after {
  display: none;
}

.posts-home-tab.is-muted {
  border-top: 2px solid var(--color-content-secondary, #363636);
  border-left-color: var(--rule-faint);
  border-right-color: var(--rule-faint);
  color: var(--muted);
}

.posts-home-toolbar-search {
  position: relative;
  z-index: 1;
}

.posts-home-toolbar--search-only {
  justify-content: flex-start;
}

.posts-home-toolbar--search-only .posts-home-toolbar-search {
  margin-left: 16px;
}

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

.posts-home-toolbar-field {
  display: grid;
  grid-template-columns: 16px auto minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  min-height: 40px;
  width: 174px;
  padding: 0 14px;
  gap: 10px;
  border-top: 2px solid var(--color-content-secondary, #363636);
  border-left: 1px solid var(--rule-faint);
  border-right: 1px solid var(--rule-faint);
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin-bottom: -1px;
  margin-left: -1px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  position: relative;
}

.posts-home-toolbar--search-only .posts-home-toolbar-field {
  margin-left: 16px;
}

.posts-home-toolbar-input {
  width: 0;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  font: 600 0.93rem/1 nyt-franklin, Arial, sans-serif;
  opacity: 0;
}

.posts-home-toolbar-input:focus {
  outline: none;
}

.posts-home-toolbar-field.is-engaged,
.posts-home-toolbar-field.has-query {
  width: 216px;
  min-height: 50px;
  margin-top: -10px;
  border-top: 1px solid var(--rule-soft);
  z-index: 2;
}

.posts-home-toolbar-field.is-engaged::after,
.posts-home-toolbar-field.has-query::after {
  display: none;
}

.posts-home-toolbar-field.is-engaged .posts-home-toolbar-input,
.posts-home-toolbar-field.has-query .posts-home-toolbar-input {
  width: 100%;
  opacity: 1;
}

.posts-home-toolbar-icon {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
}

.posts-home-toolbar-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 1.5px;
  right: -4px;
  bottom: 0;
  background: var(--muted);
  transform: rotate(45deg);
  transform-origin: center;
}

.posts-home-toolbar-tab-label {
  color: var(--muted);
  font: 600 0.93rem/1 nyt-franklin, Arial, sans-serif;
  white-space: nowrap;
}

.posts-home-toolbar-field.is-engaged .posts-home-toolbar-tab-label,
.posts-home-toolbar-field.has-query .posts-home-toolbar-tab-label {
  display: none;
}

.posts-home-toolbar-clear {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 400 1.12rem/1 nyt-franklin, Arial, sans-serif;
}

.posts-home-toolbar-clear[hidden] {
  display: none;
}

.posts-home-list {
  display: grid;
}

.front-grid--columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.section-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.story-card--with-thumb,
.section-column--with-thumb {
  gap: 14px;
}

.story-card {
  padding-right: 0;
  padding-bottom: 24px;
  border-right: 0;
  border-bottom: 1px solid #ebebeb;
}

.story-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.story-card--feature h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
}

.front-grid--lead .story-card {
  display: grid;
  grid-template-columns: minmax(260px, 470px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.front-grid--lead .story-card > :not(.story-thumb):not(.story-thumb--feature) {
  grid-column: 2;
}

.front-grid--lead .story-card--product-desk {
  grid-template-columns: 1fr;
  gap: 12px;
}

.front-grid--lead .story-card--product-desk > * {
  grid-column: auto;
}

.story-card--product-desk {
  gap: 12px;
  width: min(920px, 100%);
  margin-inline: auto;
}

.story-card--product-desk > .story-kicker,
.story-card--product-desk > .product-desk-list,
.story-card--product-desk > .product-desk-footer {
  width: min(920px, 100%);
  margin-inline: auto;
}

.story-thumb,
.section-thumb {
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
}

.story-thumb {
  aspect-ratio: 16 / 10;
}

.story-thumb--feature {
  aspect-ratio: 16 / 9;
}

.section-thumb {
  aspect-ratio: 16 / 9;
}

.story-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-grid--lead .story-thumb,
.front-grid--lead .story-thumb--feature {
  grid-column: 1;
  grid-row: 1 / span 6;
  aspect-ratio: 16 / 9;
}

.story-thumb-image--agenda {
  object-position: center top;
}

.story-thumb-image--products {
  object-position: 62% 20%;
}

.story-thumb-image--portrait {
  object-position: center center;
  background: #ece2d4;
}

.story-thumb-image--posts {
  object-position: 18% 18%;
}

.story-thumb-image--media {
  object-position: 82% 28%;
}

.story-thumb-image--finance {
  object-position: 55% 72%;
}

.story-kicker,
.section-label,
.footer-label {
  margin: 0;
  color: var(--muted);
  font: 700 0.72rem/1.2 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: none;
}

.story-card h2,
.section-column h3 {
  margin: 0;
  font-family: nyt-cheltenham, georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.story-card p,
.section-column p,
.section-list {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.story-link,
.section-list a,
.home-footer-columns a {
  text-decoration: underline;
  text-decoration-color: #bcbcbc;
  text-underline-offset: 0.18rem;
}

.product-desk-list {
  display: grid;
  gap: 0;
}

.product-desk-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 220px;
  padding: 40px 0 64px;
  border-top: 1px solid var(--rule-faint);
  text-decoration: none;
}

.product-desk-item:first-child {
  border-top: 1px solid var(--rule-soft);
}

.product-desk-date {
  display: none !important;
}

.product-desk-thumb {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-desk-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-desk-image--consulting {
  object-position: center center;
  background: #ebe0d1;
}

.product-desk-image--agents {
  object-position: 64% 22%;
}

.product-desk-image--stack {
  object-position: 46% 70%;
}

.product-desk-copy {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 10px;
  align-content: start;
}

.product-desk-item h3 {
  margin: 0;
  font-family: nyt-cheltenham, georgia, serif;
  font-size: 1.25rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.product-desk-item p {
  margin: 0;
  color: var(--muted);
  font-family: nyt-imperial, georgia, serif;
  font-size: 1rem;
  line-height: 1.45;
}

.product-desk-item:hover h3,
.product-desk-item:focus-visible h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16rem;
}

.product-desk-label {
  color: #111111;
  font: 700 0.72rem/1 nyt-franklin, Arial, sans-serif;
  font-family: nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.07em;
  text-transform: none;
}

.product-desk-byline {
  color: var(--highlight) !important;
  font: 500 0.82rem/1.2 nyt-franklin, Arial, sans-serif !important;
  font-family: nyt-franklin, Arial, sans-serif !important;
  text-transform: none;
}

.product-desk-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
}

.product-desk-meta {
  color: #6b6b6b;
  font: 500 0.78rem/1.45 nyt-franklin, Arial, sans-serif;
}

.posts-home-story {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 160px;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.posts-home-story:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.posts-home-story-date {
  margin: 0;
  color: var(--muted);
  font: 500 0.8rem/1.3 nyt-franklin, Arial, sans-serif;
}

.posts-home-story-copy {
  display: grid;
  gap: 10px;
}

.posts-home-story-kicker {
  margin: 0;
  color: var(--text);
  font: 700 0.72rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.07em;
  text-transform: none;
}

.posts-home-story-title {
  margin: 0;
  font-family: nyt-cheltenham, georgia, serif;
  font-size: 1.25rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.posts-home-story-title a {
  text-decoration: none;
}

.posts-home-story-title a:hover,
.posts-home-story-title a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16rem;
}

.posts-home-story-excerpt {
  margin: 0;
  color: #2f2823;
  font-size: 1rem;
  line-height: 1.45;
}

.posts-home-story-byline {
  margin: 0;
  color: var(--muted);
  font: 500 0.82rem/1.3 nyt-franklin, Arial, sans-serif;
  text-transform: none;
}

.posts-home-story-thumb {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.posts-home-story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.posts-home-story-image--portrait {
  object-position: center center;
  background: #ebe0d1;
}

.posts-home-story-image--systems {
  object-position: 58% 18%;
}

.posts-home-rail {
  display: grid;
  gap: 24px;
}

.posts-home-rail-card {
  display: grid;
  gap: 12px;
}

.posts-home-rail-card--dark {
  border: 1px solid var(--rule-soft);
  padding: 16px 18px 18px;
  background: #221b19;
  color: #fff9f2;
}

.posts-home-rail-kicker {
  margin: 0;
  color: inherit;
  font: 700 0.68rem/1.2 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: none;
}

.posts-home-rail-mark {
  margin: 0;
  font-family: nyt-karnak, nyt-cheltenham, georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.posts-home-rail-card h3 {
  margin: 0;
  font-family: nyt-cheltenham, georgia, serif;
  font-size: 1.9rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.posts-home-rail-card p {
  margin: 0;
  line-height: 1.5;
}

.posts-home-rail-link {
  width: fit-content;
  border: 1px solid currentColor;
  padding: 10px 14px;
  font: 700 0.72rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: none;
}

.posts-home-rail-note {
  padding-top: 22px;
  border-top: 1px solid var(--rule-soft);
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-column {
  padding-right: 16px;
  border-right: 1px solid var(--rule-faint);
}

.section-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.section-list {
  display: grid;
  gap: 10px;
  padding-left: 1.1rem;
}

.home-footer {
  border-top: 2px solid var(--rule);
  padding: 18px 0 36px;
  background: var(--surface);
}

.home-footer-inner {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.home-footer-mark {
  font-family: nyt-karnak, nyt-cheltenham, georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.home-footer-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 12px;
  border-top: 1px solid var(--rule-faint);
}

.home-footer-columns div {
  display: grid;
  gap: 10px;
}

@media (max-width: 1120px) {
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 42vh;
    order: 2;
  }

  .hero-copy-inner {
    padding: 2.5rem 1.5rem 3rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 6.4vw, 3rem);
  }

  .hero-copy p {
    max-width: 100%;
    font-size: clamp(0.9rem, 2.45vw, 1.02rem);
  }

  .hero-media {
    order: 1;
    min-height: 58vh;
  }

  .hero-media.home-opening-slider::before {
    background:
      linear-gradient(180deg, rgba(7, 6, 6, 0.04) 0%, rgba(7, 6, 6, 0) 38%, rgba(7, 6, 6, 0.34) 100%),
      linear-gradient(90deg, rgba(9, 8, 8, 0.18), rgba(9, 8, 8, 0.02) 14%, rgba(9, 8, 8, 0.02) 86%, rgba(9, 8, 8, 0.18));
  }

  .hero-stage-slide {
    transform: translate3d(100%, 0, 0);
  }

  .hero-stage-slide.is-current {
    transform: translate3d(0, 0, 0);
  }

  .front-sections {
    width: min(1280px, calc(100% - 1rem));
  }

  .front-grid--lead,
  .front-grid--posts,
  .front-grid--columns,
  .home-footer-columns {
    grid-template-columns: 1fr;
  }

  .editorial-triad-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .front-grid--lead .story-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .front-grid--lead .story-card > :not(.story-thumb):not(.story-thumb--feature) {
    grid-column: auto;
  }

  .front-grid--lead .story-thumb,
  .front-grid--lead .story-thumb--feature {
    grid-column: auto;
    grid-row: auto;
  }

  .product-desk-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .product-desk-thumb {
    order: 3;
    max-width: 240px;
  }

  .posts-home-shell {
    grid-template-columns: 1fr;
  }

  .posts-home-rail {
    padding-top: 10px;
  }

  .story-card {
    border-right: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #ebebeb;
  }

  .section-column {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #ebebeb;
  }

  .editorial-triad-story,
  .editorial-triad-story:nth-child(2),
  .editorial-triad-story:nth-child(3),
  .editorial-triad-story:nth-child(4),
  .editorial-triad-story:nth-child(5),
  .editorial-triad-story:nth-child(6),
  .editorial-triad-story:last-child {
    padding: 0 0 20px;
    border-bottom: 1px solid var(--rule-faint);
    border-top: 0;
  }

  .editorial-triad-story::before {
    display: none;
  }

  .story-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section-column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .home-utility-button {
    width: 100%;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-copy-inner {
    padding: 2rem 1rem 2.35rem;
  }

  .hero-media {
    min-height: 46vh;
  }

  .hero-media.home-opening-slider::before {
    background:
      linear-gradient(180deg, rgba(7, 6, 6, 0.06) 0%, rgba(7, 6, 6, 0) 42%, rgba(7, 6, 6, 0.28) 100%),
      linear-gradient(90deg, rgba(9, 8, 8, 0.1), rgba(9, 8, 8, 0.01) 12%, rgba(9, 8, 8, 0.01) 88%, rgba(9, 8, 8, 0.1));
  }

  .hero-stage-slide {
    transform: translate3d(100%, 0, 0);
  }

  .hero-stage-slide.is-current {
    transform: translate3d(0, 0, 0);
  }

  .front-sections {
    width: calc(100% - 0.75rem);
    padding: 20px 0 30px;
  }

  .editorial-triad {
    width: calc(100% - 0.75rem);
  }

  .editorial-triad-head {
    padding-top: 6px;
    justify-content: flex-start;
  }

  .editorial-triad-story,
  .editorial-triad-story:nth-child(2),
  .editorial-triad-story:nth-child(3),
  .editorial-triad-story:nth-child(4),
  .editorial-triad-story:nth-child(5),
  .editorial-triad-story:nth-child(6),
  .editorial-triad-story:last-child {
    padding-bottom: 18px;
  }

  .editorial-triad-story h2 {
    min-height: 0;
    font-size: 1.4rem;
  }

  .editorial-triad-excerpt {
    min-height: 0;
    font-size: 0.93rem;
  }

  .front-grid {
    padding: 18px 0;
  }

  .story-actions,
  .product-desk-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-desk-item {
    grid-template-columns: 1fr;
  }

  .posts-home-toolbar {
    display: grid;
    gap: 8px;
    padding-top: 0;
    border-bottom: 0;
  }

  .posts-home-toolbar::before {
    display: none;
  }

  .posts-home-toolbar-search {
    width: 100%;
  }

  .posts-home-toolbar--search-only .posts-home-toolbar-search,
  .posts-home-toolbar--search-only .posts-home-toolbar-field {
    margin-left: 0;
  }

  .posts-home-tab,
  .posts-home-tab:not(.is-muted),
  .posts-home-tab.is-muted {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding: 0 18px;
    border-bottom: 1px solid var(--rule-faint);
    box-shadow: none;
  }

  .posts-home-story {
    grid-template-columns: minmax(0, 1fr) clamp(88px, 27vw, 118px);
    gap: 10px 12px;
    align-items: start;
    padding: 22px 0;
  }

  .posts-home-story-date {
    grid-column: 1 / -1;
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .posts-home-story-copy {
    gap: 0.42rem;
  }

  .posts-home-story-thumb {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    aspect-ratio: 1 / 1;
  }

  .posts-home-toolbar-field,
  .posts-home-toolbar-field.is-engaged,
  .posts-home-toolbar-field.has-query {
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-bottom: 1px solid var(--rule-faint);
    box-shadow: none;
  }

  .posts-home-story-title,
  .posts-home-rail-card h3,
  .section-column h3 {
    font-size: 1.16rem;
  }

  .posts-home-story-title {
    line-height: 1.02;
    letter-spacing: -0.024em;
  }

  .posts-home-story-excerpt {
    font-size: 0.95rem;
    line-height: 1.34;
  }

  .posts-home-story-byline {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reel-viewport {
    overflow-x: auto;
  }

  .hero-reel-rail {
    width: max-content;
    animation: none;
  }
}

body.home-shell-page .nyt-shell-header.is-homebar-shell {
  background: var(--surface);
}

body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-status,
body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-masthead {
  background: var(--surface);
}

@media (min-width: 1121px) {
  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-top-nav {
    display: flex;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-status-account {
    display: flex;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-stack-menu {
    display: none;
  }
}

@media (max-width: 1120px) {
  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-status-inner {
    position: relative !important;
    display: block !important;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-top-nav {
    display: none;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-status-account {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    margin-right: 0.45rem;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-status-right {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: auto !important;
    margin: 0 !important;
    display: inline-flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0.45rem !important;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-stack-menu {
    display: block !important;
    margin: 0 !important;
  }
}

@media (max-width: 640px) {
  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-status-account {
    gap: 0.35rem;
    margin-right: 0.35rem;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .home-utility-button {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  body.home-shell-page .nyt-shell-header.is-homebar-shell .nyt-shell-stack-actions {
    grid-template-columns: 1fr;
  }

  body.home-shell-page .home-footer-columns {
    grid-template-columns: 1fr;
  }
}

.posts-home-layout {
  grid-template-columns: minmax(0, 1fr) !important;
}

.posts-home-rail {
  display: none !important;
}

.hero-presentation {
  display: none !important;
}

.hero-presentation-inner {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.75rem 0 2.5rem;
}

.hero-presentation-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #d9d9d9;
}

.hero-presentation-tool {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.9rem;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  color: #111111;
  font: 600 0.78rem/1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero-presentation-tool--play::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 0.55rem;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #111111;
}

.hero-presentation-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.hero-presentation-avatars {
  display: flex;
  align-items: center;
}

.hero-presentation-avatar {
  width: 3rem;
  height: 3rem;
  margin-right: -0.35rem;
  border: 1px solid #ffffff;
  border-radius: 12px;
  background: linear-gradient(180deg, #4f545e, #1c1f25);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 1rem/1 nyt-franklin, Arial, sans-serif;
}

.hero-presentation-avatar--alt {
  background: linear-gradient(180deg, #c8cbc3, #757a75);
  color: #111111;
}

.hero-presentation-author-block {
  display: grid;
  gap: 0.15rem;
}

.hero-presentation-author,
.hero-presentation-location,
.hero-presentation-date {
  margin: 0;
}

.hero-presentation-author {
  color: #111111;
  font: 700 0.98rem/1.3 nyt-franklin, Arial, sans-serif;
}

.hero-presentation-location,
.hero-presentation-date {
  color: #3f3f3f;
  font: 400 0.95rem/1.4 nyt-franklin, Arial, sans-serif;
}

.hero-presentation-date {
  padding-top: 0.8rem;
}

.hero-presentation-body {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
}

.hero-presentation-body p {
  margin: 0;
  color: #111111;
  font-family: nyt-imperial, georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.38;
}

@media (max-width: 720px) {
  .hero-presentation-inner {
    width: min(760px, calc(100% - 1rem));
    padding: 1.25rem 0 1.8rem;
  }

  .hero-presentation-byline {
    align-items: flex-start;
  }

  .hero-presentation-body p {
    font-size: 1.28rem;
    line-height: 1.42;
  }
}

/* NYT magazine section override */
#collection-magazine {
  --mag-bg: #ffffff;
  --mag-text: #121212;
  --mag-muted: #5a5a5a;
  --mag-soft: #363636;
  --mag-rule: #dfdfdf;
  --mag-rule-strong: #121212;
  width: min(1296px, calc(100% - 24px));
  margin: 0 auto 56px;
  padding: 18px 0 0;
  background: var(--mag-bg);
  color: var(--mag-text);
  font-family: nyt-franklin, Arial, sans-serif;
}

#collection-magazine *,
#collection-magazine *::before,
#collection-magazine *::after {
  box-sizing: border-box;
}

#collection-magazine a {
  text-decoration: none;
}

#collection-magazine a:hover,
#collection-magazine a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

#collection-magazine ol,
#collection-magazine ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#collection-magazine img {
  display: block;
  width: 100%;
  height: auto;
}

#collection-magazine .css-4svvz1 {
  display: grid;
  gap: 30px;
  padding-top: 12px;
  border-top: 1px solid var(--mag-rule-strong);
}

#collection-magazine .template-1 {
  display: grid;
  gap: 18px;
}

#collection-magazine .css-1dv1kvn {
  margin: 0;
  font: 700 0.94rem/1 nyt-franklin, Arial, sans-serif;
}

#collection-highlights-container > .template-1 > .css-11jjg {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

#collection-highlights-container > .template-1 > .css-11jjg > .css-ikiut1:first-child {
  grid-column: 1 / -1;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mag-rule);
}

#collection-highlights-container > .template-1 > .css-11jjg > .css-ikiut1:not(:first-child) {
  padding-left: 24px;
  border-left: 1px solid var(--mag-rule);
}

#collection-magazine .css-1ay4g2r {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

#collection-magazine .css-gjijuv,
#collection-magazine .css-10wtrbd,
#collection-magazine .css-on0fxn {
  display: grid;
  gap: 12px;
  align-content: start;
}

#collection-magazine .css-eqhl7g,
#collection-magazine .css-1eotgoc,
#collection-magazine .css-v9xr8v,
#collection-magazine .css-mul7io {
  margin: 0;
  color: var(--mag-text);
  font-family: thm-nyt-magslab, nyt-magslab, nyt-cheltenham, Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#collection-magazine .css-eqhl7g {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.92;
}

#collection-magazine .css-1eotgoc {
  font-size: clamp(1.32rem, 1.8vw, 1.7rem);
  line-height: 1.04;
}

#collection-magazine .css-mul7io {
  font-size: 1.12rem;
  line-height: 1.16;
}

#collection-magazine .css-v9xr8v {
  font-size: 1.52rem;
  line-height: 1.05;
}

#collection-magazine .css-b099yb {
  margin: 0;
  max-width: 36ch;
  color: var(--mag-soft);
  font-size: 1.09rem;
  line-height: 1.34;
}

#collection-magazine .css-1cuv40a,
#collection-magazine .css-hbii67,
#collection-magazine .css-1k6x0q6 {
  margin: 0;
  color: var(--mag-soft);
  font-size: 0.95rem;
  line-height: 1.34;
}

#collection-magazine .css-1cap5pb,
#collection-magazine .css-1nobn0b,
#collection-magazine .css-v8chnt,
#collection-magazine .css-151zd5b,
#collection-magazine .css-e248tq,
#collection-magazine .css-1fcsygh {
  margin: 0;
  color: var(--mag-muted);
  font-size: 0.78rem;
  line-height: 1.32;
}

#collection-magazine .css-1cap5pb,
#collection-magazine .css-1nobn0b,
#collection-magazine .css-v8chnt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

#collection-magazine .css-9voj2j,
#collection-magazine .css-151zd5b {
  font-weight: 500;
}

#collection-magazine .css-1d2udm8,
#collection-magazine .css-9xajb7,
#collection-magazine .css-16r9kgu {
  color: var(--mag-muted);
  font: 700 0.67rem/1.1 nyt-franklin, Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#collection-magazine .css-afpj8e,
#collection-magazine .css-b86txt,
#collection-magazine .css-1eznfbf,
#collection-magazine .css-1spw4h6 {
  margin: 0;
}

#collection-magazine .css-afpj8e img,
#collection-magazine .css-b86txt img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#collection-magazine .css-1eznfbf img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#collection-magazine .css-aqbich,
#collection-magazine .css-ktho12 {
  margin-top: 8px;
  color: #6a6a6a;
  font-size: 0.69rem;
  line-height: 1.28;
}

#collection-magazine .css-aqbich .css-1dv1kvn {
  display: inline;
  margin-right: 0.22rem;
  font-size: inherit;
}

#collection-magazine .css-1u8qly9 .css-11jjg {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--mag-rule);
}

#collection-magazine .css-11ufkmx .css-2j26di {
  display: grid;
  gap: 12px;
  align-content: start;
}

#collection-magazine .css-31wlwa,
#collection-magazine #mid2-wrapper,
#collection-magazine #mktg-wrapper {
  display: grid;
  gap: 10px;
  padding: 8px 0 0;
  border-top: 1px solid var(--mag-rule);
}

#collection-magazine .css-1e0iejg p {
  margin: 0;
  color: var(--mag-muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#collection-magazine .css-777zgl {
  color: var(--mag-muted);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

#collection-magazine .css-rfqw0c {
  min-height: 90px;
  border: 1px dashed var(--mag-rule);
  background: #fafafa;
}

#collection-magazine .kyt-sxE77 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

#collection-magazine .css-15cbhtu,
#collection-magazine .kyt-Ukh5z,
#collection-magazine .css-g6hk37 {
  min-width: 0;
}

#collection-magazine .css-e1btbg {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding: 0;
  margin: 0 0 12px;
  border-bottom: 1px solid var(--mag-rule);
}

#collection-magazine .css-1hjl4tc {
  padding: 0 0 10px;
}

#collection-magazine .css-1hjl4tc h2 {
  margin: 0;
}

#collection-magazine .css-1hjl4tc.active {
  border-bottom: 2px solid var(--mag-rule-strong);
}

#collection-magazine .css-1hjl4tc.active a {
  font-weight: 700;
}

#collection-magazine .css-1hjl4tc.search {
  margin-left: auto;
}

#collection-magazine .css-1hjl4tc.search > a {
  display: flex;
  align-items: center;
  gap: 8px;
}

#collection-magazine .css-3q005l {
  width: 16px;
  height: 16px;
}

#collection-magazine .css-1jhow8c {
  margin-left: 8px;
}

#collection-magazine .label-container {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

#collection-magazine .css-wm4t3d {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--mag-rule);
  border-radius: 999px;
}

#collection-magazine .css-1fz1zp1 {
  width: 140px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--mag-text);
}

#collection-magazine .css-1n61n6c {
  border: 0;
  background: transparent;
  color: var(--mag-muted);
}

#collection-magazine [data-testid="asset-stream"] > div {
  display: none;
}

#collection-magazine .css-18yolpw {
  padding: 24px 0;
  border-top: 1px solid var(--mag-rule);
}

#collection-magazine .css-14ee9cx {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 18px;
  align-items: start;
}

#collection-magazine .css-1l4spti {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

#collection-magazine .css-1spw4h6 {
  grid-column: 1;
  grid-row: 1 / span 6;
  width: 150px;
}

#collection-magazine .css-14c4an5,
#collection-magazine .css-8hzhxf,
#collection-magazine .css-1k6x0q6,
#collection-magazine .css-151zd5b,
#collection-magazine .css-10yllhg {
  grid-column: 2;
}

#collection-magazine .css-rq4mmj {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#collection-magazine .css-e248tq,
#collection-magazine .css-1fcsygh {
  padding-top: 6px;
  text-align: right;
  white-space: nowrap;
}

#collection-magazine .css-10yllhg a {
  color: #0f5ca8;
  font-size: 0.78rem;
}

#collection-magazine .css-qdgekn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--mag-rule);
  color: var(--mag-muted);
  font-size: 0.84rem;
}

#collection-magazine .css-1jx9oro ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#collection-magazine .css-1hbi3hc {
  color: var(--mag-text);
}

#collection-magazine .css-g6hk37 {
  display: grid;
  gap: 28px;
}

#collection-magazine .css-1agu3b8 {
  padding-top: 18px;
  border-top: 1px solid var(--mag-rule);
}

#collection-magazine .module-header h2,
#collection-magazine .masthead {
  margin: 0 0 12px;
  font: 700 0.95rem/1 nyt-franklin, Arial, sans-serif;
  color: var(--mag-text);
}

#collection-magazine .module-body,
#collection-magazine .magazine-supplemental-promo {
  color: var(--mag-text);
  font-size: 0.88rem;
  line-height: 1.36;
}

#collection-magazine .social-media-menu {
  display: grid;
  gap: 12px;
}

#collection-magazine .css-1rkvokn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

#collection-magazine .issue-promo {
  display: grid;
  gap: 12px;
}

#collection-magazine .promo-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

#collection-magazine .promo-headline {
  margin: 0;
  font-family: nyt-cheltenham, Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.06;
}

#collection-magazine .promo-summary {
  margin: 0;
  color: var(--mag-soft);
}

#collection-magazine .secondary-headline {
  color: #0f5ca8;
  font-weight: 700;
}

@media (max-width: 1180px) {
  #collection-magazine .kyt-sxE77 {
    grid-template-columns: 1fr;
  }

  #collection-magazine .css-1u8qly9 .css-11jjg {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  #collection-highlights-container > .template-1 > .css-11jjg {
    grid-template-columns: 1fr;
  }

  #collection-highlights-container > .template-1 > .css-11jjg > .css-ikiut1:first-child {
    grid-column: auto;
  }

  #collection-highlights-container > .template-1 > .css-11jjg > .css-ikiut1:not(:first-child) {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--mag-rule);
  }

  #collection-magazine .css-1ay4g2r {
    grid-template-columns: 1fr;
  }

  #collection-magazine .css-1u8qly9 .css-11jjg {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #collection-magazine {
    width: min(1296px, calc(100% - 16px));
    padding-top: 10px;
  }

  #collection-magazine .css-1eotgoc,
  #collection-magazine .css-v9xr8v {
    font-size: 1.28rem;
  }

  #collection-magazine .css-1u8qly9 .css-11jjg {
    grid-template-columns: 1fr;
  }

  #collection-magazine .css-e1btbg {
    gap: 12px;
  }

  #collection-magazine .css-1hjl4tc.search {
    margin-left: 0;
  }

  #collection-magazine .css-1jhow8c {
    display: none;
  }

  #collection-magazine .css-14ee9cx {
    grid-template-columns: 1fr;
  }

  #collection-magazine .css-1l4spti {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  #collection-magazine .css-1spw4h6,
  #collection-magazine .css-14c4an5,
  #collection-magazine .css-8hzhxf,
  #collection-magazine .css-1k6x0q6,
  #collection-magazine .css-151zd5b,
  #collection-magazine .css-10yllhg {
    grid-column: auto;
    grid-row: auto;
  }

  #collection-magazine .css-1spw4h6 {
    width: 100%;
  }

  #collection-magazine .css-e248tq,
  #collection-magazine .css-1fcsygh,
  #collection-magazine .css-qdgekn {
    text-align: left;
  }

  #collection-magazine .css-qdgekn {
    flex-direction: column;
    align-items: flex-start;
  }
}

.collection-magazine-shell {
  width: 100%;
  margin: 48px 0 0;
  background: #fff;
}

#collection-magazine-host {
  display: block;
  width: 100%;
  min-height: 400px;
  background: #fff;
}

@media (max-width: 767px) {
  .collection-magazine-shell {
    margin-top: 32px;
  }

  #collection-magazine-host {
    min-height: 320px;
  }
}
