.leadership {
  padding-top: clamp(5rem, 10vw, 10rem);
}

.leadership-heading {
  max-width: 900px;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.leadership-heading h2 {
  margin-bottom: 1.5rem;
}

.leadership-heading > p:last-child {
  max-width: 650px;
  font-size: 1.08rem;
  color: #5d5e5c;
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(245px, .75fr) minmax(0, 1.25fr);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.team-profile:last-child {
  border-bottom: 1px solid var(--line);
}

.team-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #1b1c1d;
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.team-copy {
  align-self: center;
  padding: clamp(2.25rem, 5vw, 5.5rem);
}

.team-copy > span {
  display: block;
  margin-bottom: .85rem;
  color: var(--gold);
  font: 600 .8rem/1.45 "Barlow Condensed";
  letter-spacing: .14em;
  text-transform: uppercase;
}

.team-copy h3 {
  margin: 0 0 2rem;
  color: var(--ink) !important;
  font: 700 clamp(2.7rem, 5vw, 5.5rem)/.9 "Barlow Condensed";
  letter-spacing: -.035em;
}

.team-copy p {
  max-width: 780px;
  margin-bottom: 1.2rem;
  color: #3f4140;
}

.team-copy p:last-child {
  margin-bottom: 0;
}

.team-profile--reverse .team-photo {
  grid-column: 2;
}

.team-profile--reverse .team-copy {
  grid-row: 1;
  grid-column: 1;
}

@media (max-width: 900px) {
  .team-profile {
    grid-template-columns: 1fr;
  }

  .team-profile--reverse .team-photo,
  .team-profile--reverse .team-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .team-photo img {
    height: auto;
    min-height: 340px;
    max-height: 540px;
  }

  .team-copy {
    padding: 3rem 1.5rem;
  }

  .team-copy h3 {
    font-size: 3.5rem;
  }
}
