.insight-page {
  min-width: 320px;
  overflow: hidden;
  background: var(--color-neutral);
}

.insight-main {
  padding: 280px 0 96px;
}

.insight-article {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

.insight-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.insight-type {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.54px;
  text-transform: uppercase;
}

.insight-title {
  width: 100%;
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.64px;
}

.insight-title strong {
  font-weight: 700;
}

.insight-title em {
  font-style: italic;
}

.insight-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}

.insight-details p {
  margin: 0;
}

.insight-details time {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.42px;
}

.insight-content {
  display: flex;
  flex-direction: column;
}

.insight-block {
  margin: 0;
}

.insight-hero + .insight-content {
  margin-top: 64px;
}

.insight-block + .insight-block {
  margin-top: 64px;
}

.insight-block--text {
  font-size: 28px;
  line-height: 1.3;
}

.insight-block--text p,
.insight-block--text ul,
.insight-block--text ol,
.insight-block--text h2,
.insight-block--text h3 {
  margin: 0;
}

.insight-block--text p + p {
  margin-top: 12px;
}

.insight-block--text ul,
.insight-block--text ol {
  padding-left: 1.1em;
}

.insight-block--text * + ul,
.insight-block--text * + ol,
.insight-block--text ul + *,
.insight-block--text ol + * {
  margin-top: 12px;
}

.insight-block--text strong {
  font-weight: 700;
}

.insight-block--text em {
  font-style: italic;
}

.insight-block--text a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.insight-block--image {
  width: calc(100% - 256px);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.insight-image {
  display: block;
  width: 100%;
  height: 500px;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--color-white);
}

.insight-block--image-first .insight-image {
  aspect-ratio: 1 / 1;
  height: auto;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-block--image figcaption {
  margin-top: 10px;
  color: rgba(34, 34, 34, 0.5);
  font-size: 14px;
  line-height: 1.3;
}

.insight-block--image figcaption p {
  margin: 0;
}

.insight-block--image-first figcaption {
  font-family: var(--font-sans);
  line-height: 1;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.insight-block--quote {
  width: calc(100% + 96px);
  margin-left: -48px;
  text-align: center;
}

.insight-block--quote p {
  margin: 0;
  font-size: 48px;
  font-style: italic;
  line-height: 1.22;
}

.insight-block--quote cite {
  display: block;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.insight-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: min(925px, calc(100% - 48px));
  margin: 112px auto 0;
}

.insight-nav a {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1.62px;
  text-transform: uppercase;
}

.insight-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.insight-nav__icon {
  --insight-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M12.751 6.99219L12.7471 6.99609L12.751 7L8.50586 11.2451H6.38477L9.89062 7.73926H1.25V6.23926H9.87598L6.38672 2.75H8.50781L12.751 6.99219Z' fill='black'/%3E%3C/svg%3E");
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: var(--insight-arrow) center / contain no-repeat;
  mask: var(--insight-arrow) center / contain no-repeat;
}

.insight-nav__icon--prev {
  transform: rotate(180deg);
}

.insight-nav__side--next {
  justify-self: end;
}

@media (max-width: 767px) {
  .insight-main {
    padding: 144px 0 64px;
  }

  .insight-article {
    width: calc(100% - 48px);
  }

  .insight-hero {
    align-items: center;
    text-align: center;
  }

  .insight-type {
    margin-bottom: 24px;
    font-size: 18px;
    letter-spacing: 0.54px;
  }

  .insight-title {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -0.64px;
  }

  .insight-details {
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 0.36px;
  }

  .insight-details time {
    display: none;
  }

  .insight-hero + .insight-content {
    margin-top: 64px;
  }

  .insight-block + .insight-block {
    margin-top: 64px;
  }

  .insight-block--text {
    font-size: 28px;
    line-height: 1.3;
  }

  .insight-block--text p + p {
    margin-top: 12px;
  }

  .insight-block--image {
    width: 100%;
  }

  .insight-block--image-first .insight-image {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .insight-image {
    height: 500px;
  }

  .insight-block--image:not(.insight-block--image-first) .insight-image {
    height: 500px;
  }

  .insight-block--image figcaption {
    font-size: 14px;
  }

  .insight-block--quote {
    width: 100%;
    margin-left: 0;
  }

  .insight-block--quote p {
    font-size: 48px;
    line-height: 1.22;
  }

  .insight-block--quote cite {
    margin-top: 32px;
    font-size: 20px;
  }

  .insight-nav {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 48px);
    margin-top: 64px;
  }

  .insight-nav__side {
    grid-row: auto;
  }

  .insight-nav__side--next {
    justify-self: end;
  }

  .insight-nav a {
    font-size: 18px;
    letter-spacing: 1.62px;
  }
}
