/* ══════════════════════════════════════════
   TEAM HERO
══════════════════════════════════════════ */
.team-hero {
  padding: 180px 80px 100px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(45,43,107,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.team-hero-content {
  position: relative; 
  z-index: 10; 
  max-width: 800px; 
  margin: 0 auto;
}

.team-hero h1 { 
  font-size: 68px; 
  color: var(--white); 
  margin-bottom: 24px; 
  line-height: 1.1;
}

.team-hero h1 em { 
  color: var(--gold-bright); 
  font-style: italic; 
}

.team-hero p { 
  font-size: 19px; 
  color: rgba(255,255,255,0.75); 
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TEAM GRID
══════════════════════════════════════════ */
.team-main {
  padding: 100px 80px;
  background: var(--off-white);
  min-height: 50vh;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.tc-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green-light);
  position: relative;
  overflow: hidden;
}

.tc-img-placeholder {
  position: absolute; 
  inset: 0;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 64px; 
  color: rgba(0,0,0,0.1);
  background: linear-gradient(135deg, var(--green-light), #e0dfef);
}

.tc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .tc-img-wrap img {
  transform: scale(1.05);
}

.tc-info {
  padding: 32px 28px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tc-role {
  display: inline-block;
  font-size: 11px; 
  font-weight: 800; 
  letter-spacing: 2.5px;
  text-transform: uppercase; 
  color: var(--gold);
  background: rgba(255,107,53,0.1);
  padding: 6px 16px; 
  border-radius: 50px;
  margin: 0 auto 18px;
  width: fit-content;
}

.tc-info h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px; 
  font-weight: 700; 
  color: var(--text);
  margin-bottom: 12px;
}

.tc-bio {
  font-size: 14.5px; 
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .team-hero { padding: 160px 40px 80px; }
  .team-main { padding: 80px 40px; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  .team-hero { padding: 140px 28px 60px; }
  .team-hero h1 { font-size: 46px; }
  .team-main { padding: 60px 28px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .tc-img-wrap { aspect-ratio: 1/1; }
}
