.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
}

.team-img-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #005f52;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  font-family: "Urbanist", sans-serif;
}

.team-name {
  font-size: 1.2rem;
  font-family: "Playwrite AU QLD", sans-serif;
  color: #005f52;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}

@media (max-width: 768px) {
  .team-card {
    padding: 1rem;
  }
}
