.ea-team-section {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Manrope, Arial, sans-serif;
  scroll-margin-top: 155px;
  box-sizing: border-box;
}
}

.ea-team-panel {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  background: #ffffff;
  background: var(--ea-team-panel-bg, #ffffff);
  border-radius: 28px;
  padding: var(--ea-team-panel-padding, 34px);
  box-shadow: 0 20px 50px rgba(33, 54, 130, 0.16);
  overflow: hidden;
  box-sizing: border-box;
}

.ea-team-heading {
  color: var(--ea-team-heading-color, #213682);
  font-family: Archivo, Arial, sans-serif;
  font-size: clamp(28px, var(--ea-team-heading-size, 34px), 42px);
  line-height: 1.08;
  font-weight: 900;
  text-align: center;
  margin: 0 0 14px;
}

.ea-team-intro {
  max-width: 860px;
  margin: 0 auto 18px;
  color: var(--ea-team-text-color, #213682);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

.ea-team-intro p {
  margin: 0 0 10px;
}

.ea-team-intro p:last-child {
  margin-bottom: 0;
}

.ea-team-slider {
  position: relative;
  padding: 0 68px;
}

.ea-team-track {
  position: relative;
  min-height: 250px;
}

.ea-team-slide {
  display: none;
  animation: ea-team-fade 0.28s ease both;
}

.ea-team-slide.is-active {
  display: block;
}

@keyframes ea-team-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ea-team-member-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 22px auto 14px;
}

.ea-team-headshot-wrap {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 4px;
  background: rgba(0, 104, 55, 0.08);
  box-shadow: 0 10px 22px rgba(33, 54, 130, 0.12);
}

.ea-team-headshot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ea-team-title-block {
  text-align: left;
}

.ea-team-accent-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  color: var(--ea-team-accent-color, #ff6700);
  font-family: Archivo, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ea-team-member-title {
  color: var(--ea-team-accent-color, #ff6700);
  font-family: Archivo, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 6px;
}

.ea-team-member-name {
  color: var(--ea-team-name-color, #213682);
  font-family: Archivo, Arial, sans-serif;
  font-size: clamp(20px, var(--ea-team-name-size, 22px), 30px);
  line-height: 1.1;
  font-weight: 900;
  margin: 0;
}

.ea-team-logo-wrap {
  display: flex;
  justify-content: center;
  margin: 10px auto 14px;
}

.ea-team-logo {
  display: block;
  max-width: 320px;
  max-height: 58px;
  width: auto;
  height: auto;
}

.ea-team-bio {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ea-team-text-color, #213682);
  font-size: var(--ea-team-bio-size, 16px);
  line-height: 1.5;
  text-align: center;
}

.ea-team-bio p {
  margin: 0 0 12px;
}

.ea-team-bio p:last-child {
  margin-bottom: 0;
}

.ea-team-bio strong,
.ea-team-bio b {
  color: #006837;
  font-weight: 900;
}

.ea-team-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ea-team-button-color, #213682);
  color: var(--ea-team-button-icon-color, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(33, 54, 130, 0.22);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ea-team-arrow:hover,
.ea-team-arrow:focus {
  background: var(--ea-team-button-hover-color, #ff6700);
  color: var(--ea-team-button-icon-color, #ffffff);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 28px rgba(255, 103, 0, 0.24);
}

.ea-team-arrow span {
  display: block;
  font-size: 38px;
  line-height: 0;
  transform: translateY(-2px);
}

.ea-team-arrow-prev {
  left: 0;
}

.ea-team-arrow-next {
  right: 0;
}

.ea-team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ea-team-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(33, 54, 130, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ea-team-dot.is-active,
.ea-team-dot:hover,
.ea-team-dot:focus {
  background: var(--ea-team-accent-color, #ff6700);
  transform: scale(1.2);
}

.ea-team-placeholder {
  color: var(--ea-team-text-color, #213682);
  font-size: 16px;
  text-align: center;
  padding: 42px 20px;
}

@media (max-width: 900px) {
  .ea-team-panel {
    border-radius: 24px;
    padding: 28px 22px;
  }

  .ea-team-slider {
    padding: 0 0 58px;
  }

  .ea-team-arrow {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .ea-team-arrow:hover,
  .ea-team-arrow:focus {
    transform: scale(1.04);
  }

  .ea-team-arrow-prev {
    left: calc(50% - 54px);
  }

  .ea-team-arrow-next {
    right: calc(50% - 54px);
  }

  .ea-team-member-top {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .ea-team-title-block {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ea-team-panel {
    border-radius: 22px;
    padding: 24px 16px;
  }

  .ea-team-heading {
    font-size: 28px;
  }

  .ea-team-headshot-wrap {
    width: 76px;
    height: 76px;
  }

  .ea-team-logo {
    max-width: 250px;
    max-height: 48px;
  }

  .ea-team-bio {
    font-size: 15px;
    line-height: 1.45;
  }

  .ea-team-dots {
    margin-top: 16px;
  }
}