.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}

.team-card {
  flex: 1 1 calc(33% - 20px);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #ddd;
}

.team-card h3 {
  margin: 10px 0 5px;
  font-size: 1.1em;
}

.team-card p {
  margin: 4px 0;
}

.team-card a {
  color: #0066cc;
  text-decoration: none;
}

.team-card a:hover {
  text-decoration: underline;
}

/* Responsive breakpoints */
@media(max-width: 900px) {
  .team-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media(max-width: 600px) {
  .team-card {
    flex: 1 1 100%;
  }
}
