/* Team Page */
.team-page {
  min-height: 100vh;
  background-color: #234fc2;
}

/* Team Section */
.team {
  width: 100%;
  background-color: #234fc2;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
}

.team-back {
  max-width: clamp(1200px, 90vw, 1400px);
  margin: 0 auto clamp(2rem, 3vw, 3rem);
}

.back-link {
  font-family: "Lexend", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  color: #fbf2e3;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.back-link:hover {
  color: #93b1ee;
  transform: translateX(-4px);
}

.team-container {
  max-width: clamp(1200px, 90vw, 1400px);
  width: 100%;
  margin: 0 auto;
}

.team-title {
  font-family: "Onest", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fbf2e3;
  text-align: center;
  margin: 0 0 clamp(3rem, 5vw, 5rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background-color: #93b1ee;
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgb(0 0 0 / 20%);
}

.team-member-image {
  width: clamp(120px, 15vw, 180px);
  height: clamp(120px, 15vw, 180px);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  border: 4px solid #fbf2e3;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-family: "Onest", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #1a3a8f;
  margin: 0 0 clamp(0.3rem, 0.5vw, 0.5rem);
}

.team-member-role {
  font-family: "Lexend", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  color: #234fc2;
  margin: 0 0 clamp(0.8rem, 1.2vw, 1rem);
}

.team-member-bio {
  font-family: "Lexend", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 400;
  color: #1a3a8f;
  line-height: 1.6;
  margin: 0;
}
