.team-intro {
  max-width: 790px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  min-height: 300px;
}

.team-photo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 25px;
}

.team-card h2 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0 0 5px;
}

.team-role {
  color: #347552;
  font-weight: 800;
  margin: 0 0 17px;
}

.team-bio {
  color: var(--muted);
  margin: 0;
}

.team-link {
  display: inline-block;
  margin-top: 20px;
  color: #2f704c;
  font-size: .88rem;
  font-weight: 800;
}

.team-link:hover {
  color: var(--ink);
}

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

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