.em-wrap {
  color: #3d4552;
}

.em-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.em-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 24px 64px;
  background: radial-gradient(circle at 85% 20%, #153a5c, #0a1628 60%);
}

.em-hero-blob {
  position: absolute;
  top: -140px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .08);
}

.em-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #8fa1b8;
  font-size: 13px;
}

.em-breadcrumb a {
  color: #8fa1b8;
  text-decoration: none;
}

.em-breadcrumb span:last-child {
  color: #e6c996;
  font-weight: 600;
}

.em-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}

.em-hero p {
  max-width: 650px;
  margin: 0;
  color: #b7c4d6;
  font-size: 15.5px;
  line-height: 1.75;
}

.em-section {
  padding: 70px 24px;
  background: #fbfaf7;
}

.em-featured {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 44px;
  border-radius: 20px;
  background: #0f2c4c;
}

.em-featured::before {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .1);
  content: "";
}

.em-f-photo,
.em-f-content {
  position: relative;
  z-index: 2;
}

.em-f-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 3.4;
  border-radius: 14px;
  object-fit: cover;
}

.em-f-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  padding: 14px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e6c996, #a3823f);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .3);
  color: #0f2c4c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.em-f-role {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(201, 169, 110, .4);
  border-radius: 20px;
  background: rgba(201, 169, 110, .14);
  color: #e6c996;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.em-f-content h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.em-f-specialty {
  margin: 0 0 18px;
  color: #e6c996;
  font-size: 15px;
  font-weight: 600;
}

.em-f-bio {
  margin: 0 0 24px;
  color: #b7c4d6;
  font-size: 14.5px;
  line-height: 1.75;
}

.em-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e6c996, #a3823f);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
  color: #0f2c4c;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
}

.em-team-head {
  max-width: 640px;
  margin: 70px auto 40px;
  text-align: center;
}

.em-eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: #a3823f;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.em-eyebrow::before {
  width: 20px;
  height: 1px;
  background: #c9a96e;
  content: "";
}

.em-team-head h2 {
  margin: 0;
  color: #0f2c4c;
  font-size: 28px;
  font-weight: 800;
}

.em-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.em-card {
  overflow: hidden;
  border: 1px solid #ece6d6;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}

.em-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 44, 76, .1);
}

.em-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.em-card-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a96e, #a3823f);
  content: "";
}

.em-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.em-card-body {
  padding: 22px 22px 26px;
}

.em-card-name {
  margin: 0 0 4px;
  color: #0f2c4c;
  font-size: 17px;
  font-weight: 700;
}

.em-card-cred {
  margin: 0 0 12px;
  color: #a3823f;
  font-size: 12px;
  font-weight: 600;
}

.em-card-specialty {
  margin: 0 0 10px;
  color: #2f6fb5;
  font-size: 13px;
  font-weight: 600;
}

.em-card-bio {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.em-card-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 2px solid #c9a96e;
  color: #0f2c4c;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.em-empty {
  padding: 56px 24px;
  border: 1px solid #ece6d6;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.em-empty h2 {
  margin-bottom: 10px;
  color: #0f2c4c;
}

.em-final {
  padding: 64px 24px;
  background: linear-gradient(120deg, #0a1628, #153a5c);
  text-align: center;
}

.em-final h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.em-final p {
  margin: 0 0 28px;
  color: #b7c4d6;
  font-size: 15px;
}

@media (max-width: 900px) {
  .em-featured {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .em-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .em-hero {
    padding: 52px 20px 48px;
  }

  .em-hero h1 {
    font-size: 28px;
  }

  .em-section {
    padding: 48px 18px;
  }

  .em-featured {
    padding: 24px;
  }

  .em-f-badge {
    right: 12px;
    bottom: -14px;
    left: auto;
  }

  .em-grid {
    grid-template-columns: 1fr;
  }
}
