.resource-reading--single {
  grid-template-columns: minmax(0, 800px);
  justify-content: center;
}

.resource-reading--single .prose {
  max-width: 800px;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
  border-top: var(--border);
}

.editorial-intro h2,
.editorial-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: .95;
  text-transform: uppercase;
  margin: .15em 0;
}

.editorial-intro > div:last-child {
  max-width: 720px;
  font-size: 1.08rem;
}

.section-lede {
  max-width: 760px;
  margin: -1.5rem 0 2.5rem;
  font-size: 1.08rem;
}

.topic-grid,
.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.topic-panel,
.guidance-grid article {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: var(--border);
  background: var(--warm);
}

.topic-panel > i,
.guidance-grid article > i {
  color: var(--clay);
  font-size: 1.5rem;
}

.topic-panel h3,
.guidance-grid h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 1rem 0 .65rem;
}

.topic-panel h3 a {
  text-decoration: none;
}

.active-book-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.active-book-grid a {
  display: flex;
  min-height: 170px;
  padding: 1.25rem;
  flex-direction: column;
  border: var(--border);
  background: var(--warm);
  text-decoration: none;
}

.active-book-grid span,
.active-book-grid small {
  font-size: .72rem;
  color: var(--grey);
}

.active-book-grid span {
  text-transform: capitalize;
}

.active-book-grid strong {
  margin: auto 0 .7rem;
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.editorial-cta {
  display: flex;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
  justify-content: space-between;
  border-top: var(--border);
}

.editorial-cta > div {
  max-width: 780px;
}

.hero-illustration {
  width: min(100%, 500px);
  margin: 0;
  justify-self: end;
  position: relative;
}

.hero-illustration::before {
  content: "";
  position: absolute;
  inset: 18px -14px -16px 18px;
  z-index: -1;
  background: var(--sage);
  border: var(--border);
  transform: rotate(2deg);
}

.hero-illustration img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: var(--border);
  background: var(--warm);
}

@media (max-width: 900px) {
  .hero-illustration {
    justify-self: center;
    margin-top: 1rem;
  }

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

  .editorial-cta {
    display: grid;
  }

  .topic-grid,
  .guidance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .active-book-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .topic-grid,
  .guidance-grid,
  .active-book-grid {
    grid-template-columns: 1fr;
  }
}
