.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  display: block;
}

.team-card h4 {
  margin: 0.6rem 0 0.15rem;
}

.team-card .role {
  display: block;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 0.6rem;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.9;
}

.team-hero {
  min-height: unset;
  height: auto;
  padding: 4rem 1.5rem 3rem;
  background: none;
}

.team-hero .hero-content {
  background: rgba(47, 107, 47, 0.95);
  border-radius: 18px;
  padding: 2.5rem 3rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.team-hero h2 {
  margin-top: 0;
}

.team-hero .tagline {
  opacity: 0.9;
}
