:root {
  --article-ink: #162525;
  --article-paper: #f3efe7;
  --article-rust: #a65036;
  --article-line: rgba(22, 37, 37, 0.17);
}

.page-insight-article {
  background: #fffdf8;
  color: var(--article-ink);
}

.article-hero {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: 86px 0 62px;
  text-align: center;
}

.article-kicker {
  color: var(--article-rust);
  font-size: 0.7rem;
  font-weight: 780;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 1050px;
  margin: 18px auto 0;
  font-size: clamp(3.2rem, 5.5vw, 6.2rem);
  font-weight: 400;
}

.article-hero > p:not(.article-kicker) {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(22, 37, 37, 0.64);
  font-size: 0.9rem;
}

.article-hero figure {
  aspect-ratio: 2.15 / 1;
  margin: 58px 0 0;
  overflow: hidden;
  background: #e6dfd3;
}

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

.article-layout {
  display: grid;
  width: min(1180px, calc(100% - 64px));
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(70px, 9vw, 130px);
  justify-content: center;
  margin: 0 auto;
  padding: 92px 0 120px;
}

.article-toc {
  position: sticky;
  top: 120px;
  align-self: start;
}

.article-toc p {
  margin-bottom: 12px;
  color: var(--article-rust);
  font-size: 0.66rem;
  font-weight: 780;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  border-bottom: 1px solid var(--article-line);
  padding: 12px 0;
  color: rgba(22, 37, 37, 0.64);
  font-size: 0.72rem;
}

.article-body > p:first-child {
  color: var(--article-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.35;
}

.article-body section {
  padding: 52px 0 0;
}

.article-body h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 400;
}

.article-body h3 {
  margin: 28px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 400;
}

.article-body p,
.article-body li {
  color: rgba(22, 37, 37, 0.72);
  font-size: 0.88rem;
  line-height: 1.85;
}

.article-body ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.article-callout {
  margin-top: 58px;
  border-left: 3px solid var(--article-rust);
  padding: 28px 32px;
  background: var(--article-paper);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.article-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  min-height: 360px;
  padding: 72px max(32px, calc((100% - 1180px) / 2));
  background: var(--article-ink);
  color: #fff;
}

.article-next h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 400;
}

.article-next p {
  margin-bottom: 12px;
  color: #d69a84;
  font-size: 0.69rem;
  font-weight: 780;
  text-transform: uppercase;
}

.article-next a {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .article-hero {
    width: calc(100% - 32px);
    padding: 56px 0 36px;
    text-align: left;
  }

  .article-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .article-hero > p:not(.article-kicker) {
    margin-left: 0;
  }

  .article-hero figure {
    aspect-ratio: 4 / 3;
    margin-top: 38px;
  }

  .article-layout {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 0 80px;
  }

  .article-toc {
    position: static;
    margin-bottom: 38px;
  }

  .article-body > p:first-child {
    font-size: 1.45rem;
  }

  .article-callout {
    padding: 24px 22px;
  }

  .article-next {
    grid-template-columns: 1fr;
    min-height: 390px;
    padding: 62px 16px;
  }
}
