
/* People */

.people,
.people .upperCurve {
  background: #fff;
}

.peopleGroup {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.peopleSingle {
  display: grid;
  gap: 20px;
}

.peoplePortrait {
  border-radius: 10px;
}

.peopleLink {
  display: flex;
  gap: 8px;
}

.peopleName {
  font-size: 18px;
  font-weight: 700;
}

.peopleArrow {
  max-width: 32px;
}

.peopleContents {
  font-size: 14px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .peopleGroup {
    grid-template-columns: 1fr 1fr;
  }
  .peopleSingle:last-child {
    grid-column: span 2;
    justify-self: center;
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .peopleGroup {
    grid-template-columns: 1fr;
  }
  .peopleSingle:last-child {
    grid-column: span 1;
    justify-self: unset;
    width: 100%;
  }
}
