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

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

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

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

:root {
  --ink: #151515;
  --ink-soft: #4f5157;
  --muted: #777980;
  --paper: #fffdf9;
  --paper-deep: #f7f3ed;
  --white: #ffffff;
  --border: #e8e4de;
  --coral: #ff7c60;
  --coral-deep: #e76247;
  --pink: #c53d8f;
  --purple: #814ba5;
  --blue: #397fc8;
  --reading-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-width: 760px;
  --page-width: 1180px;
  --shadow: 0 22px 60px rgba(36, 29, 24, 0.08);
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

button {
  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.38);
  outline-offset: 4px;
}

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.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);
}

.site-header__inner {
  width: min(calc(100% - 44px), var(--page-width));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}

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

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

.article-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
}

.article-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

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

.back-link {
  min-height: 44px;
  margin-left: auto;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--purple), var(--pink));
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.back-link:hover {
  border-color: transparent;
  background: linear-gradient(120deg, #724198, #b93485);
  box-shadow: 0 9px 24px rgba(129, 75, 165, 0.22);
  transform: translateY(-1px);
}

.back-link:focus-visible {
  outline: 3px solid rgba(129, 75, 165, 0.28);
  outline-offset: 3px;
}

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

.article-hero::before {
  position: absolute;
  top: -330px;
  left: -200px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: rgba(255, 124, 96, 0.14);
  content: "";
  filter: blur(90px);
  pointer-events: none;
}

.article-hero__inner {
  position: relative;
  width: min(calc(100% - 44px), var(--page-width));
  min-height: 620px;
  margin: 0 auto;
  padding: 74px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
}

.article-hero__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.article-title {
  margin: 0;
  font-size: clamp(49px, 5.2vw, 69px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 1.08;
}

.article-title .accent {
  color: var(--coral);
}

.article-lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 300;
  line-height: 1.7;
}

.article-meta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 12px;
}

.article-meta__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.article-author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-author > img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 16px rgba(36, 29, 24, 0.12);
}

.article-author__identity {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.article-author__identity span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-author__identity strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.article-author__divider {
  width: 1px;
  height: 28px;
  margin: 0 3px;
  background: var(--border);
}

.article-author__date,
.article-author__time {
  color: var(--muted);
  font-size: 11px;
}

.article-author__date {
  white-space: nowrap;
}

.article-hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #242a31;
  border-radius: 20px;
  aspect-ratio: 1.2 / 1;
  background: #111820;
  box-shadow: var(--shadow);
}

.article-hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.article-layout {
  width: min(calc(100% - 44px), var(--content-width));
  margin: 0 auto;
  padding: 102px 0 120px;
}

.article-toolbar {
  margin-bottom: 48px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.article-toolbar > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copy-link {
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.copy-link:hover {
  color: var(--ink);
}

.copy-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.article {
  min-width: 0;
}

.article p {
  margin: 0 0 31px;
  color: #292a2d;
  font-family: var(--reading-font);
  font-size: clamp(17px, 1.65vw, 19px);
  font-weight: 400;
  line-height: 1.85;
}

.article-emphasis {
  color: var(--story-accent-deep, var(--coral-deep));
  font-weight: 600;
}

.article .opening {
  margin-bottom: 36px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.48;
}

.question-list {
  margin: 42px 0 55px;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.question-list li {
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.question-list .icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #fff0eb;
  font-size: 20px;
}

.article-section {
  margin-top: 108px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.article-section .section-label {
  margin-bottom: 16px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.article-section h2 {
  margin: 0 0 37px;
  font-size: clamp(36px, 4.7vw, 51px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.16;
  text-align: left;
}

.article-section h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.margin-note {
  margin: 48px 0;
  padding: 28px 31px;
  border-left: 3px solid var(--coral);
  background: #fff4f0;
}

.margin-note__label {
  display: block;
  margin-bottom: 10px;
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article .margin-note p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.6;
}

.idea-blocks,
.principle-grid {
  width: min(920px, calc(100vw - 44px));
  margin-right: 50%;
  margin-left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transform: translateX(-50%);
}

.idea-blocks {
  margin-top: 56px;
  margin-bottom: 66px;
  gap: 14px;
}

.idea-block {
  position: relative;
  min-width: 0;
  padding: 35px 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 35px rgba(36, 29, 24, 0.035);
}

.idea-block:nth-child(1) {
  border-top: 3px solid var(--coral);
}

.idea-block:nth-child(2) {
  border-top: 3px solid var(--pink);
}

.idea-block:nth-child(3) {
  border-top: 3px solid var(--purple);
}

.idea-block:nth-child(4) {
  border-top: 3px solid var(--blue);
}

.idea-block__number {
  display: block;
  margin-bottom: 42px;
  color: #a09d97;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.idea-block h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.2vw, 27px);
}

.article .idea-block p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
}

.article .idea-block p:last-child {
  margin-bottom: 0;
}

.pull-quote {
  position: relative;
  width: min(88%, 680px);
  margin-top: 68px;
  margin-bottom: 68px;
  padding: 34px clamp(18px, 5vw, 46px);
  border-top: 1px solid var(--coral);
  border-bottom: 1px solid var(--coral);
  text-align: left;
}

.pull-quote::before {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 124, 96, 0.38);
  content: "“";
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.65;
}

.pull-quote p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.pull-quote strong {
  color: var(--coral-deep);
  font-weight: 400;
}

.pull-quote--left {
  margin-right: auto;
  margin-left: 0;
}

.pull-quote--right {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.pull-quote--right::before {
  content: "”";
}

.principle-grid {
  margin-top: 52px;
  margin-bottom: 62px;
  gap: 12px;
}

.principle-card {
  min-height: 175px;
  padding: 29px;
  border: 1px solid var(--border);
  background: var(--white);
}

.principle-card > span {
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.article .principle-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.principle-card--coral {
  border-top: 3px solid var(--coral);
}

.principle-card--pink {
  border-top: 3px solid var(--pink);
}

.principle-card--purple {
  border-top: 3px solid var(--purple);
}

.principle-card--blue {
  border-top: 3px solid var(--blue);
}

.decision-panel {
  width: min(920px, calc(100vw - 44px));
  margin: 58px 50% 66px;
  padding: clamp(35px, 6vw, 60px);
  border-radius: 20px;
  background: #111820;
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.article .decision-panel__intro {
  max-width: 620px;
  margin-bottom: 38px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.decision-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-panel li {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.5fr);
  gap: 28px;
}

.decision-panel strong {
  color: #ff9b84;
  font-size: 14px;
  font-weight: 500;
}

.decision-panel li span {
  color: #b8c0c7;
  font-size: 14px;
  line-height: 1.7;
}

.process-list {
  margin: 52px 0 62px;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.process-list__marker {
  width: 48px;
  height: 48px;
  border: 1px solid #f0d1ca;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7f4;
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 600;
}

.process-list h3 {
  margin: 1px 0 8px;
}

.article .process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.article-conclusion {
  position: relative;
  width: min(920px, calc(100vw - 44px));
  margin: 100px 50% 0;
  padding: clamp(42px, 7vw, 72px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(36, 29, 24, 0.06);
  transform: translateX(-50%);
}

.article-conclusion::after {
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 124, 96, 0.12);
  content: "";
  filter: blur(55px);
}

.article .article-conclusion__kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 17px;
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-conclusion .closing-question {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 4.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.28;
}

.article .article-conclusion__answer {
  position: relative;
  z-index: 1;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.related-articles {
  min-width: 0;
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  justify-self: end;
}

.related-articles__inner {
  width: max-content;
  max-width: 100%;
  margin: 0;
}

.related-articles__heading {
  margin-bottom: 12px;
}

.related-articles__heading p {
  display: none;
}

.related-articles__heading h2 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 218px));
  justify-content: end;
  gap: 24px;
}

.related-card {
  position: relative;
  min-width: 0;
  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);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.related-card__media {
  display: block;
  flex: 0 0 96px;
  overflow: hidden;
  border-radius: 11px 11px 0 0;
  height: 96px;
  background: #252525;
}

.related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.related-card:hover .related-card__media img {
  transform: scale(1.035);
}

.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);
}

.related-card__body {
  padding: 8px 4px 5px;
  display: flex;
  align-items: center;
  flex: 1;
}

.related-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.related-card h3 a {
  color: #f6f3ef;
  text-decoration: none;
  transition: color 180ms ease;
}

.related-card h3 a:hover,
.related-card h3 a:focus-visible {
  color: #df64aa;
}

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

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

.site-footer__brand img {
  width: 135px;
  height: auto;
}

.site-footer__brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #aaa7a2;
  font-size: 12px;
  line-height: 1.75;
}

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

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

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

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

@media (max-width: 1040px) {
  .article-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.95fr);
    gap: 45px;
  }

}

@media (max-width: 780px) {
  .site-header__inner {
    min-height: 0;
    padding: 12px 0 10px;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }

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

  .article-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 12px;
    scrollbar-width: none;
  }

  .article-nav::-webkit-scrollbar {
    display: none;
  }

  .article-nav a {
    flex: 0 0 auto;
    padding: 7px 0;
    font-size: 13px;
  }

  .back-link {
    grid-column: 2;
    grid-row: 1;
  }

  .article-hero__inner {
    min-height: 0;
    padding: 64px 0 52px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article-title {
    max-width: 650px;
    font-size: clamp(45px, 10vw, 65px);
  }

  .article-hero__media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .article-layout {
    padding-top: 76px;
    padding-bottom: 90px;
  }

  .article-section {
    margin-top: 84px;
  }

  .idea-blocks,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .decision-panel li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(180px, 0.7fr) auto minmax(330px, 1.3fr);
    gap: 24px;
  }

  .related-articles__grid {
    gap: 22px;
  }
}

@media (max-width: 540px) {
  .site-header__inner,
  .article-hero__inner,
  .article-layout {
    width: calc(100% - 32px);
  }

  .related-articles {
    width: 100%;
    padding: 0;
    justify-self: stretch;
  }

  .related-articles__inner {
    width: 100%;
  }

  .related-articles__heading {
    margin-bottom: 12px;
  }

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

  .related-card {
    height: auto;
    aspect-ratio: 1.14 / 1;
  }

  .back-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .article-hero__inner {
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .eyebrow {
    max-width: 280px;
  }

  .article-title {
    font-size: clamp(42px, 13vw, 55px);
  }

  .article-lede {
    font-size: 16px;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .article-meta__dot {
    display: none;
  }

  .article-toolbar {
    margin-bottom: 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .article-hero__media {
    border-radius: 15px;
    aspect-ratio: 1.15 / 1;
  }

  .article p {
    font-size: 17px;
    line-height: 1.85;
  }

  .article .opening {
    font-size: 26px;
  }

  .question-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    font-size: 18px;
  }

  .question-list .icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .article-section h2 {
    font-size: 36px;
  }

  .margin-note {
    padding: 24px 22px;
  }

  .idea-blocks,
  .principle-grid,
  .pull-quote,
  .decision-panel,
  .article-conclusion {
    width: calc(100vw - 32px);
  }

  .idea-block {
    padding: 29px 25px;
  }

  .pull-quote {
    padding: 28px 12px;
  }

  .pull-quote p {
    font-size: 27px;
  }

  .decision-panel {
    padding: 34px 25px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .process-list__marker {
    width: 42px;
    height: 42px;
  }

  .article-conclusion {
    padding: 38px 26px;
  }

  .article-conclusion .closing-question {
    font-size: 32px;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer nav {
    transform: none;
  }

}

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

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