.people-slider {
  padding: 80px 32px 0;
}

.latest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.team-navs {
  position: relative;
  width: 88px;
  height: 40px;
  display: flex;
  gap: 8px;
}

.swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #E9E9EA;
  border-radius: 6px;
  transition: ease 0.3s;
}
.swiper-nav svg {
  transition: ease 0.3s;
  width: 14px;
  height: 12px;
  fill: #212530;
}
.swiper-nav:hover {
  cursor: pointer;
  background-color: #1582E7;
  border: 1px solid #1582E7;
}
.swiper-nav:hover svg {
  fill: white;
}

.swiper-nav-prev svg {
  transform: rotate(-180deg);
}

.team-swiper {
  overflow: unset;
  margin-bottom: 48px;
}

.agent-phone {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 8px;
  top: 8px;
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 8px;
  opacity: 0;
  transition: ease 0.6s;
  box-shadow: 0 2px 8px 0 rgba(33, 37, 48, 0.3);
}
.agent-phone svg {
  width: 16px;
  height: 16px;
  fill: #1582E7;
}

.team-img {
  display: flex;
  width: 100%;
  aspect-ratio: 298/493;
  border-radius: 8px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-info {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 0 24px 24px;
  color: white;
  z-index: 1;
  margin-bottom: -68px;
  transition: ease 0.4s;
}
.agent-info .agent-full-name {
  font-size: 20px;
  font-family: Semi;
  line-height: 1.7;
  text-transform: uppercase;
}
.agent-info .agent-position-card {
  font-size: 14px;
  font-family: Medium;
  line-height: 1.4;
}
.agent-info .agent-card-btn {
  margin-top: 24px;
}

.agent-bg-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  z-index: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background: linear-gradient(180deg, rgba(33, 37, 48, 0) 0%, #212530 100%);
}

.team-slide {
  position: relative;
  overflow: hidden;
}
.team-slide:hover .agent-phone {
  opacity: 1;
}
.team-slide:hover .agent-info {
  margin-bottom: 0;
}
.team-slide:hover .agent-card-btn {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .people-slider {
    padding: 0 16px;
  }
  .latest-head {
    margin-bottom: 24px;
  }
  .team-navs {
    display: none;
  }
  .team-swiper {
    margin-bottom: 24px;
  }
  .team-img {
    aspect-ratio: 298/340;
  }
  .team-img img {
    object-position: top;
  }
  .team-slide .agent-phone {
    opacity: 1;
  }
  .team-slide .agent-info {
    margin-bottom: 0;
  }
  .team-slide .agent-card-btn {
    margin-top: 16px;
  }
}