.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  min-width: 0;
}

.team-card img,
.team-profile-rachel img {
  object-position: center;
}

.team-card-text-only {
  align-self: start;
  border-top: 1px solid var(--gold);
  padding-top: 12px;
}

.team-card p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.6;
}

.team-card .text-link {
  margin-top: 4px;
  font-size: .75rem;
}

.team-profile-rachel {
  grid-template-columns: 220px minmax(0, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.team-profile-rachel.team-profile-no-photo {
  grid-template-columns: 1fr;
}

.team-profile-rachel .text-link {
  margin-top: 18px;
}

@media (max-width: 780px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-profile-rachel,
  .team-profile-rachel.team-profile-no-photo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}