.about-hero-band {
  background: var(--tint);
  border-bottom: 0;
}

.about-author-hero {
  width: 100%;
  padding: clamp(4rem, 7vw, 7.25rem) 0 clamp(3.1rem, 6vw, 5rem);
  background: var(--tint);
}

.about-author-hero__grid {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  display: grid;
  gap: clamp(2.2rem, 5vw, 5.8rem);
  align-items: center;
}

.about-author-hero__copy {
  display: grid;
  gap: clamp(1rem, 2vw, 1.2rem);
  max-width: 58rem;
}

.about-author-hero__copy h1 {
  max-width: 10.8em;
}

.about-author-hero__copy .lead {
  max-width: 48rem;
}

.about-author-hero__copy p:not(.eyebrow):not(.lead) {
  max-width: 45rem;
  color: var(--ink-2);
}

.about-author-profile {
  display: grid;
  gap: clamp(1rem, 2.3vw, 1.35rem);
  width: min(100%, 23rem);
  margin: 0;
  justify-self: start;
  align-self: center;
}

.about-author-profile__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--tint-2);
  box-shadow: 0 24px 54px rgba(23, 34, 31, 0.10);
}

.about-author-profile__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-author-profile__caption {
  display: grid;
  gap: 0.42rem;
  padding-top: 1.05rem;
  border-top: var(--section-rule);
}

.about-author-profile__caption span {
  color: var(--green-3);
}

.about-author-profile__caption strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  font-weight: var(--weight-bold);
  letter-spacing: var(--title-display-tracking);
  line-height: 0.98;
}

.about-author-profile__caption p {
  max-width: 22rem;
  color: var(--ink-2);
  font-size: 0.97rem;
  line-height: 1.54;
}

.about-delivery__grid,
.about-founder-story {
  display: grid;
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: start;
}

.about-delivery__copy,
.about-founder-story__copy,
.about-fit__grid article {
  display: grid;
  gap: var(--section-heading-gap);
}

.about-delivery__copy h2,
.about-founder-story__copy h2,
.about-fit .section-heading h2 {
  max-width: 12.5em;
}

.about-delivery__copy p:not(.eyebrow),
.about-founder-story__copy p:not(.eyebrow),
.about-fit .section-heading p,
.about-fit__grid p {
  color: var(--ink-2);
}

.about-discipline-card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-self: center;
  width: 100%;
  max-width: 31rem;
  padding: clamp(1.55rem, 3.5vw, 2.25rem);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(201, 155, 63, 0.18), transparent 36%),
    linear-gradient(145deg, var(--green-3), var(--green-2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.about-discipline-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4.75rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.4rem rgba(255, 255, 255, 0.02),
    0 0 0 4.8rem rgba(255, 255, 255, 0.015);
}

.about-discipline-card h3,
.about-discipline-card p {
  position: relative;
  z-index: 1;
}

.about-discipline-card h3 {
  max-width: 13em;
  color: white;
}

.about-discipline-card p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 0.2vw + 0.94rem, 1.04rem);
  line-height: 1.68;
}

.about-founder-band {
  border-top: 0;
  border-bottom: 0;
}

.about-founder-story__copy {
  max-width: 58rem;
}

.about-fit {
  display: grid;
}

.about-fit__grid {
  display: grid;
  gap: 0;
  border-top: var(--section-rule);
}

.about-fit__grid article {
  padding: var(--content-row-y) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 760px) {
  .about-fit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .about-fit__grid article {
    padding: clamp(1.35rem, 3vw, 2rem);
    border-right: 1px solid var(--line);
  }
}

@media (min-width: 920px) {
  .about-author-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.4fr);
    gap: clamp(4.5rem, 8vw, 7rem);
  }

  .about-author-profile {
    justify-self: center;
  }

  .about-delivery__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(22rem, 0.78fr);
  }

  .about-discipline-card {
    justify-self: end;
  }

  .about-founder-story {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .about-author-profile {
    width: min(100%, 18.5rem);
  }
}
