.team-hero {
  padding: 6rem 0 3.5rem;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
}

.team-hero h1 span {
  color: var(--brand);
}

.team-hero p {
  margin: 0;
  color: #4f6456;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 100%;
  aspect-ratio: 812 / 492;
  object-fit: cover;
  background: #e3ebe5;
}

.team-meta {
  padding: 0.8rem 0.8rem 1rem;
}

.team-meta h3 {
  margin: 0;
}

.team-meta .role {
  margin: 0.2rem 0 0.3rem;
  color: #194621;
  font-weight: 700;
}

.team-meta .detail {
  margin: 0;
  color: #425548;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
