.team-savaura {
  position: relative;
  margin: 56px auto 0;
  padding: 42px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 49, 111, 0.96), rgba(0, 128, 160, 0.9)),
    #04316f;
  box-shadow: 0 24px 70px rgba(4, 49, 111, 0.18);
}

.team-savaura::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.team-savaura::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(224, 244, 248, 0.14);
}

.team-heading {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #fff;
}

.team-heading span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #e0f4f8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.team-heading h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
}

.team-heading h2 strong {
  color: #9be7f5;
  font-weight: 700;
}

.team-heading p {
  margin-top: 14px;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
  min-height: 390px;
}

.team-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
  background: #04316f;
  box-shadow: inset 0 -160px 120px -100px rgba(0, 0, 0, 0.86);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 49, 111, 0.06), rgba(4, 49, 111, 0.82));
  z-index: 1;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 -170px 130px -100px rgba(0, 0, 0, 0.92),
    0 22px 44px rgba(0, 0, 0, 0.18);
}

.team-card-featured {
  background-position: center top;
}

.team-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
  z-index: 2;
}

.team-role {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(224, 244, 248, 0.94);
  color: #04316f;
  font-size: 0.72rem;
  font-weight: 700;
}

.team-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.team-card p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.55;
}

.team-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.team-metrics div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.team-metrics strong,
.team-metrics span {
  display: block;
}

.team-metrics strong {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
}

.team-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .team-savaura {
    padding: 32px 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .team-card {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .team-savaura {
    margin-top: 42px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .team-heading p {
    font-size: 0.9rem;
  }

  .team-card {
    min-height: 280px;
    border-radius: 18px;
  }

  .team-card-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .team-metrics {
    grid-template-columns: 1fr;
  }
}
