/* =========================
   TEAM PAGE
========================= */

.team-page {
  background: #f7f9f8;
}


/* =========================
   HERO
========================= */

.team-hero {
  padding: 120px 0 80px 0;
  background: linear-gradient(
    135deg,
    rgba(178, 219, 208, 0.6),
    rgba(200, 230, 223, 0.8)
  );
  text-align: center;
}

.team-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.team-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 0;
}


/* =========================
   GRID
========================= */

.team-content {
  padding: 80px 0 120px 0;
}

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


/* =========================
   CARD
========================= */

.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;

  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


/* =========================
   PHOTO
========================= */

.team-photo-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo-wrapper img {
  transform: scale(1.05);
}


/* =========================
   CARD BODY
========================= */

.team-card-body {
  padding: 30px 28px 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}


/* =========================
   NAME
========================= */

.team-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f1f1f;
  transition: color 0.3s ease;
}

.team-card:hover .team-name {
  color: #3a7d6c;
}


/* =========================
   ROLE
========================= */

.team-role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 18px;
}


/* =========================
   BIO
========================= */

.team-bio {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: center;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .team-hero h1 {
    font-size: 38px;
  }

  .team-subtitle {
    font-size: 18px;
  }

  .team-content {
    padding: 60px 0 80px 0;
  }

}

@media (max-width: 576px) {

  .team-hero {
    padding: 90px 0 60px 0;
  }

  .team-hero h1 {
    font-size: 32px;
  }

}
