.author {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) 1.15fr;
  min-height: 680px;
  background: #202b23;
}

.author-photo {
  position: relative;
  overflow: hidden;
}

.author-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 19, .5), transparent 45%);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.05);
}

.author-copy {
  align-self: center;
  padding: clamp(70px, 9vw, 140px);
}

.author-copy h2 {
  margin: 0 0 30px;
  font: 400 clamp(42px, 5vw, 76px)/1.1 Prata, serif;
}

.author-copy > p {
  max-width: 670px;
  color: #c4c8bf;
  line-height: 1.75;
}

.author-copy .author-lead {
  color: var(--paper);
  font: 400 23px/1.55 Prata, serif;
}

.author-copy blockquote {
  max-width: 720px;
  margin: 38px 0;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  color: var(--gold);
  font: italic 24px/1.55 Prata, serif;
}

.author-copy .author-note {
  color: var(--sage);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.support-credit {
  color: var(--sage);
  border-bottom: 1px solid rgba(184, 196, 157, .35);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}

.support-credit:hover,
.support-credit:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 760px) {
  .author {
    grid-template-columns: 1fr;
  }

  .author-photo {
    height: 460px;
  }

  .author-copy {
    padding: 70px 24px 80px;
  }

  .author-copy .author-lead {
    font-size: 20px;
  }

  .author-copy blockquote {
    margin: 30px 0;
    font-size: 21px;
  }
}
