.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.staff-card {
  text-align: center;
}

.staff-card-image {
  width: min(180px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.staff-card p {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .staff-card-image {
    width: min(160px, 100%);
    margin-bottom: 12px;
  }
}
