/* Our Team page */

.page-our-teams .team-kicker {
  margin: 0 0 0.55rem;
  color: #EC7626;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-our-teams .team-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.page-our-teams .team-intro {
  background: #fff;
}

.page-our-teams .team-intro h2 {
  margin: 0 0 1rem;
  color: #434242;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-our-teams .team-intro__text {
  margin: 0;
 
  color: #616161;
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Leadership split layout */
.page-our-teams .team-leadership {
  background: #f7f7f8;
}

.page-our-teams .team-leadership__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.page-our-teams .team-leadership__photo {
  border-radius: 20px;
  overflow: hidden;
  background: #eaeaea;
  min-height: 100%;
}

.page-our-teams .team-leadership__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.page-our-teams .team-leadership__card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 28px rgba(67, 66, 66, 0.06);
  padding: clamp(1.4rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-our-teams .team-leadership__list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}

.page-our-teams .team-leadership__person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
}

.page-our-teams .team-leadership__person + .team-leadership__person {
  border-top: 1px solid #ececec;
}

.page-our-teams .team-leadership__avatar {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: #f0f0f0;
}

.page-our-teams .team-leadership__person h3 {
  margin: 0 0 0.2rem;
  color: #434242;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.page-our-teams .team-leadership__person p {
  margin: 0;
  color: #248ECD;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .page-our-teams .team-leadership__grid {
    grid-template-columns: 1fr;
  }

  .page-our-teams .team-leadership__photo img {
    min-height: 260px;
  }
}
