@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2") format("woff2");
}

:root {
  --ink: #151515;
  --ink-soft: #4f5157;
  --muted: #767880;
  --paper: #fffdf9;
  --paper-deep: #f7f3ed;
  --white: #ffffff;
  --line: #e8e4de;
  --coral: #ff7c60;
  --coral-deep: #e76247;
  --blue: #397fc8;
  --plum: #854b84;
  --logo-pink: #c53d8f;
  --logo-purple: #814ba5;
  --shadow: 0 22px 60px rgba(36, 29, 24, 0.08);
  --page: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(57, 127, 200, 0.4);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 228, 222, 0.88);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 44px), var(--page));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.site-logo {
  width: 137px;
  display: inline-flex;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.primary-nav a {
  position: relative;
  padding: 30px 0 26px;
  color: rgba(21, 21, 21, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--ink);
}

.header-articles-link {
  min-height: 44px;
  margin-left: auto;
  padding: 0 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--logo-purple), var(--logo-pink));
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(129, 75, 165, 0.18);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-articles-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.header-articles-link:hover {
  box-shadow: 0 10px 26px rgba(129, 75, 165, 0.26);
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: -280px;
  left: -210px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255, 124, 96, 0.12);
  content: "";
  filter: blur(80px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  width: min(100%, 1440px);
  min-height: 606px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(440px, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  /* Align to the shared 1180px page shell without counting the
     centred 1440px hero canvas twice on wide viewports. */
  margin-left: max(22px, calc((min(100vw, 1440px) - var(--page)) / 2));
  padding: 82px 30px 88px 0;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero__lede {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 124, 96, 0.2);
}

.button--primary:hover {
  background: #ff8b73;
  box-shadow: 0 14px 28px rgba(255, 124, 96, 0.25);
}

.hero__art {
  --hero-art-overlap: clamp(264px, calc(710px - 31vw), 370px);

  width: calc(100% + var(--hero-art-overlap) + max(0px, (100vw - 1440px) / 2));
  align-self: stretch;
  margin-left: calc(-1 * var(--hero-art-overlap));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 8%,
    rgba(0, 0, 0, 0.16) 15%,
    rgba(0, 0, 0, 0.38) 23%,
    rgba(0, 0, 0, 0.68) 31%,
    rgba(0, 0, 0, 0.9) 38%,
    #000 45%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 8%,
    rgba(0, 0, 0, 0.16) 15%,
    rgba(0, 0, 0, 0.38) 23%,
    rgba(0, 0, 0, 0.68) 31%,
    rgba(0, 0, 0, 0.9) 38%,
    #000 45%,
    #000 100%
  );
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  mix-blend-mode: multiply;
}

.section-shell {
  width: min(calc(100% - 44px), var(--page));
  margin-right: auto;
  margin-left: auto;
}

.latest {
  padding-top: 96px;
  padding-bottom: 112px;
}

.section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.editorial__intro h2,
.conversation h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.featured-story {
  overflow: hidden;
  border: 1px solid #242a31;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  background: #111820;
  color: var(--white);
  box-shadow: var(--shadow);
}

.featured-story__media {
  min-height: 478px;
  overflow: hidden;
}

.featured-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.featured-story:hover .featured-story__media img {
  transform: scale(1.025);
}

.featured-story__content {
  padding: 54px 54px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aebdcb;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-meta__author {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.story-meta__author img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 9px rgba(17, 24, 32, 0.16);
}

.featured-story h3 {
  margin: 22px 0 20px;
  font-size: clamp(31px, 3.5vw, 45px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

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

.featured-story__content > p {
  margin: 0;
  color: #c0c9d1;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.read-link {
  width: max-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff9b84;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.read-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.read-link:hover span {
  transform: translateX(4px);
}

.insights {
  padding-top: 102px;
  padding-bottom: 112px;
  border-top: 1px solid var(--line);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.insight-list:has(> .insight-row:only-child) {
  grid-template-columns: minmax(0, 560px);
}

.insight-row {
  position: relative;
  min-width: 0;
  padding: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(36, 29, 24, 0.035);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.insight-row:hover {
  border-color: #e7cfc8;
  box-shadow: 0 20px 46px rgba(36, 29, 24, 0.08);
  transform: translateY(-4px);
}

.insight-row__media {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.52 / 1;
  background: var(--paper-deep);
}

.insight-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.insight-row:hover .insight-row__media img {
  transform: scale(1.035);
}

.insight-row__content {
  padding: 26px 24px 0;
  flex: 1;
}

.insight-row__content .story-meta {
  color: var(--muted);
}

.insight-row__content .story-meta__author {
  color: var(--coral-deep);
}

.insight-row__content .story-meta__author img {
  border-color: rgba(231, 98, 71, 0.3);
}

.insight-row__content h3 {
  margin: 13px 0 12px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.26;
}

.insight-row__content h3 a {
  text-decoration: none;
}

.insight-row__content > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.72;
}

.insight-row__arrow {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 249, 0.94);
  color: var(--coral-deep);
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17, 24, 32, 0.12);
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

.insight-row__arrow:hover {
  background: var(--white);
  transform: translate(2px, -2px);
}

.editorial {
  padding-top: 102px;
  padding-bottom: 112px;
  border-top: 1px solid var(--line);
}

.editorial__intro {
  max-width: 730px;
  margin-bottom: 58px;
}

.editorial__intro > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.editorial-grid article {
  position: relative;
  min-height: 330px;
  padding: 36px 38px 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.editorial-grid article:last-child {
  border-right: 1px solid var(--line);
}

.editorial-card__number {
  position: absolute;
  top: 23px;
  right: 26px;
  color: #aaa69f;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.editorial-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 70px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.editorial-card__icon--coral {
  background: #fff0eb;
  color: var(--coral-deep);
}

.editorial-card__icon--blue {
  background: #eaf4fc;
  color: var(--blue);
}

.editorial-card__icon--plum {
  background: #f4eaf4;
  color: var(--plum);
}

.editorial-grid h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.editorial-grid p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.reading-note {
  padding: 0 22px;
}

.reading-note__inner {
  width: min(100%, 1360px);
  min-height: 290px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 124, 96, 0.22), transparent 30%),
    radial-gradient(circle at 86% 76%, rgba(57, 127, 200, 0.17), transparent 30%),
    #f5f0ea;
}

.reading-note__mark {
  align-self: flex-start;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 0.9;
}

.reading-note p {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.conversation {
  margin-top: 110px;
  margin-bottom: 110px;
  padding: 54px 58px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--white);
  box-shadow: 0 15px 50px rgba(36, 29, 24, 0.05);
}

.conversation__content {
  max-width: 740px;
}

.conversation h2 {
  font-size: clamp(31px, 3.4vw, 44px);
}

.conversation__content > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.button--dark {
  min-width: 164px;
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: #343434;
  box-shadow: 0 12px 24px rgba(21, 21, 21, 0.14);
}

.site-footer {
  padding: 34px max(22px, calc((100vw - var(--page)) / 2));
  border-top: 1px solid #2d2d2d;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) auto minmax(360px, 1.35fr);
  gap: 46px;
  align-items: start;
}

.footer-brand img {
  width: 135px;
  height: auto;
}

.footer-brand p {
  max-width: 290px;
  margin: 18px 0 0;
  color: #aaa7a2;
  font-size: 13px;
  line-height: 1.7;
}

.footer-copyright {
  margin-top: 30px;
  display: block;
  color: #94918d;
  font-size: 10px;
}

.footer-related {
  min-width: 0;
  width: max-content;
  max-width: 100%;
  justify-self: end;
}

.footer-related h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.footer-related__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 218px));
  justify-content: end;
  gap: 34px;
}

.footer-related__card {
  position: relative;
  height: 167px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(#1d1d1d, #1d1d1d) padding-box,
    linear-gradient(135deg, rgba(129, 75, 165, 0.95), rgba(197, 61, 143, 0.82)) border-box;
  box-shadow: 0 8px 22px rgba(197, 61, 143, 0.13);
  text-decoration: none;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-related__card img {
  width: 100%;
  height: 96px;
  flex: 0 0 auto;
  border-radius: 11px 11px 0 0;
  object-fit: cover;
}

.footer-related__card > span {
  min-width: 0;
  padding: 8px 4px 5px;
  display: flex;
  align-items: center;
  flex: 1;
}

.footer-related__card strong {
  display: block;
  color: #f6f3ef;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
  transition: color 180ms ease;
}

.footer-related__card:hover strong,
.footer-related__card:focus-visible strong {
  color: #df64aa;
}

.footer-related__card:hover {
  box-shadow:
    0 12px 28px rgba(197, 61, 143, 0.22),
    0 0 0 1px rgba(129, 75, 165, 0.18);
  transform: translateY(-3px);
}

.footer-inner nav {
  justify-self: center;
  justify-items: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  text-align: left;
  transform: translateX(48px);
}

.footer-inner nav a {
  color: #d4d1cc;
  font-size: 13px;
  text-underline-offset: 4px;
  text-decoration: none;
}

.footer-inner nav a:hover {
  color: var(--white);
}

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

  .hero__copy {
    width: min(calc(100% - 44px), var(--page));
    margin: 0 auto;
    padding: 80px 0 45px;
  }

  .hero__art {
    width: auto;
    height: min(52vw, 510px);
    margin-left: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__art img {
    object-fit: cover;
    object-position: center right;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .primary-nav {
    gap: 25px;
  }

  .featured-story__content {
    padding: 42px;
  }

  .featured-story__media {
    min-height: 430px;
  }

  .insight-list {
    gap: 18px;
  }

  .insight-row__content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .insight-row__content h3 {
    font-size: 23px;
  }

  .editorial-grid article {
    padding: 32px 28px;
  }

  .conversation {
    padding: 45px;
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .site-logo {
    width: 123px;
    grid-column: 1;
    grid-row: 1;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    grid-column: 3;
    grid-row: 1;
  }

  .menu-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-button__icon,
  .menu-button__icon::before,
  .menu-button__icon::after {
    width: 22px;
    height: 1.5px;
    border-radius: 99px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button__icon {
    position: relative;
  }

  .menu-button__icon::before,
  .menu-button__icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-button__icon::before {
    top: -7px;
  }

  .menu-button__icon::after {
    top: 7px;
  }

  .menu-button[aria-expanded="true"] .menu-button__icon {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-button__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    height: calc(100dvh - 72px);
    padding: 38px 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .header-articles-link {
    margin-left: 0;
    min-height: 40px;
    padding: 0 13px;
    grid-column: 2;
    grid-row: 1;
    gap: 8px;
    font-size: 12px;
  }

  .header-articles-link svg {
    width: 14px;
    height: 14px;
  }

  .hero h1 {
    font-size: clamp(40px, 10.6vw, 55px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__art {
    height: 58vw;
    min-height: 320px;
  }

  .latest {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }

  .section-heading > p {
    max-width: 430px;
    text-align: left;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-story__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .featured-story__content {
    padding: 38px 34px 42px;
  }

  .insights {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .insight-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .editorial__intro {
    margin-bottom: 42px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid article {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .editorial-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .editorial-card__icon {
    margin-bottom: 50px;
  }

  .reading-note__inner {
    min-height: 250px;
    padding: 44px 35px;
    gap: 18px;
  }

  .reading-note__mark {
    font-size: 66px;
  }

  .conversation {
    margin-top: 82px;
    margin-bottom: 82px;
    padding: 38px 34px;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
  }

  .footer-inner nav {
    justify-self: end;
    transform: none;
  }

  .footer-related {
    width: 100%;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .footer-related__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

}

@media (max-width: 640px) {
  .insight-list {
    grid-template-columns: 1fr;
  }

  .insight-list:has(> .insight-row:only-child) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .header-inner {
    width: calc(100% - 32px);
    gap: 7px;
  }

  .site-logo {
    width: 110px;
  }

  .header-articles-link {
    padding: 0 11px;
    gap: 6px;
  }
}

@media (max-width: 540px) {
  .header-inner,
  .section-shell {
    width: min(calc(100% - 32px), var(--page));
  }

  .hero__copy {
    width: calc(100% - 32px);
    padding-top: 62px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.2vw, 49px);
  }

  .hero__art {
    min-height: 290px;
    height: 70vw;
  }

  .hero__art img {
    object-position: right center;
  }

  .section-heading h2,
  .editorial__intro h2,
  .conversation h2 {
    font-size: 35px;
  }

  .featured-story {
    border-radius: 16px;
  }

  .featured-story__content {
    padding: 30px 24px 34px;
  }

  .featured-story h3 {
    font-size: 30px;
  }

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

  .insight-row__media {
    aspect-ratio: 1.7 / 1;
  }

  .insight-row__content {
    padding: 24px 22px 0;
  }

  .insight-row__content h3 {
    font-size: 26px;
  }

  .insight-row__content > p {
    font-size: 13px;
  }

  .insight-row__arrow {
    top: 15px;
    right: 15px;
  }

  .editorial-grid article {
    padding: 30px 25px;
  }

  .reading-note {
    padding: 0;
  }

  .reading-note__inner {
    min-height: 290px;
    border-radius: 0;
  }

  .reading-note p {
    font-size: 28px;
  }

  .conversation {
    padding: 32px 25px;
  }

  .button--dark {
    width: 100%;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .footer-related {
    width: 100%;
    justify-self: stretch;
  }

  .footer-related__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-related__card {
    height: auto;
    aspect-ratio: 1.14 / 1;
  }

  .footer-inner nav {
    justify-self: start;
    transform: none;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
