.team-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}

.team-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.team-kicker {
  color: #ff9900;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-hero h1 {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.05;
  margin-bottom: 25px;
}

.team-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.team-grid {
  display: grid;
  gap: 35px;
}

.team-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  padding: 35px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-role {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff9900;
  font-weight: 800;
}

.team-content h2 {
  font-size: 36px;
  margin: 0 0 15px;
}

.team-content h3 {
  margin-top: 25px;
}

.team-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.team-tags,
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-tags span,
.expertise-grid span {
  padding: 10px 15px;
  border-radius: 999px;
  background: #f5f5f5;
  font-weight: 600;
  font-size: 14px;
}

.expertise-section {
  margin-top: 70px;
  padding: 45px;
  border-radius: 28px;
  background: #151515;
  color: #fff;
}

.expertise-section h2 {
  margin-top: 0;
  font-size: 36px;
}

.expertise-grid span {
  background: rgba(255,255,255,.1);
  color: #fff;
}

@media (max-width: 768px) {
  .team-card {
    grid-template-columns: 1fr;
    padding: 25px;
    text-align: center;
  }

  .team-image {
    max-width: 260px;
    margin: 0 auto;
  }

  .team-content h2 {
    font-size: 30px;
  }

  .expertise-section {
    padding: 30px 22px;
  }

  .team-tags,
  .expertise-grid {
    justify-content: center;
  }
}