.team-hero {
  min-height: 480px;
  padding: 30px clamp(24px, 8vw, 145px) 80px;
  display: grid;
  align-items: stretch;
  justify-items: center;
  background:
    linear-gradient(rgba(9, 8, 7, .52), rgba(9, 8, 7, .65)),
    url("assets/hero/our-team-las-vegas-night.jpg") center / cover no-repeat;
  text-align: center;
}

.team-hero-copy {
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.team-hero-copy > p {
  margin: 0 auto;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.5;
  text-transform: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .65);
}

.team-hero-copy > .team-hero-emphasis {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 7.5vw, 99px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.025em;
  transform: translateY(-42px);
}

.team-intro {
  padding: 68px 24px 5px;
  text-align: center;
}

.team-page-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
}

.team-intro h2 {
  margin: 0;
  color: #111;
  font-size: clamp(42px, 4.3vw, 66px);
  font-weight: 700;
  line-height: 1;
}

.team-intro > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
}

.team-list {
  max-width: 1320px;
  margin: auto;
  padding: 70px clamp(24px, 6vw, 100px) 125px;
}

.team-member {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, .9fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.team-member + .team-member {
  margin-top: 125px;
  padding-top: 125px;
  border-top: 1px solid var(--line);
}

.team-member.reverse img { order: 2; }
.team-member.reverse .member-copy { order: 1; }

.team-member img {
  width: 100%;
  height: min(700px, 65vw);
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.role {
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.member-copy h2 {
  margin: 0 0 27px;
  font-size: clamp(46px, 4.6vw, 68px);
  line-height: 1;
}

.member-copy > p:not(.role) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.member-copy .gold-button { margin-top: 18px; }

@media (max-width: 800px) {
  .team-hero { padding-top: 75px; padding-bottom: 80px; }
  .team-member { grid-template-columns: 1fr; gap: 42px; }
  .team-member.reverse img, .team-member.reverse .member-copy { order: initial; }
  .team-member img { height: 115vw; min-height: 0; max-height: 680px; }
  .team-member + .team-member { margin-top: 85px; padding-top: 85px; }
}
