section.staff {
  padding-bottom: 100px;
  color: #4d4d4d;
}
section.staff h2 {
  margin: 0 0 24px;
  font-size: 25px;
  font-weight: 500;
}
section.staff p {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.staff__grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.staff__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #4d4d4d;
}
.staff__figure {
  margin: 0;
  background: #bfbaba;
  display: block;
}
.staff__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff__bio {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.staff__role {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.staff__name {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
  .staff__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  section.staff {
    padding-bottom: 80px;
  }
  section.staff h2 {
    font-size: 22px;
  }
  .staff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
}
