.team-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem) 2.5rem;
  background: #f7fbf9;
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 2.8rem);
}

.team-hero {
  background: radial-gradient(circle at 20% 20%, rgba(25, 161, 134, 0.16), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(0, 98, 77, 0.18), transparent 45%),
    linear-gradient(135deg, #0a211b, #0d2e25 60%, #0a211b);
  color: #e8f5ef;
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.team-hero h1 {
  margin: 0.3rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.hero-lead {
  color: #cde9e0;
  line-height: 1.6;
  margin: 0;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b7e0d5;
  font-size: 0.85rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.profile-card {
  background: #ffffff;
  border: 1px solid rgba(0, 98, 77, 0.08);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 12px 24px rgba(10, 33, 27, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 98, 77, 0.12);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(0, 98, 77, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

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

.profile-name {
  margin: 0.6rem 0 0.2rem;
  color: #0b1f1a;
  font-weight: 700;
  text-decoration: none;
}

.profile-role {
  margin: 0;
  color: #475569;
  font-weight: 600;
}

.committee-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 98, 77, 0.08);
  border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  box-shadow: 0 12px 24px rgba(10, 33, 27, 0.06);
}

.committee-header {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #0b1f1a;
  margin: 0 0 0.75rem;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.committee-card {
  background: #f9fdfa;
  border: 1px solid rgba(0, 98, 77, 0.1);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(10, 33, 27, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.committee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 98, 77, 0.12);
}

.committee-name {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #0b1f1a;
}

.committee-details {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.cta-row {
  margin-top: 1rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #00624d, #19a186);
  color: #f7fbf9;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 98, 77, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .team-shell {
    padding: 1.1rem 1rem 2rem;
    gap: 1.6rem;
  }
}
