.hero-slider {
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: var(--teal-dark);
}

.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 49, 0.05) 30%, rgba(8, 16, 49, 0.82) 100%);
}

.hero-slide-caption {
  position: absolute;
  z-index: 2;
  left: clamp(1.5rem, 4vw, 3.5rem);
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(3.5rem, 8vw, 5.5rem);
  color: #fff;
  /*max-width: 560px;*/
}

.hero-slide-caption h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.hero-slide-caption p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 500px;
}

.hero-slide-doctors {
  position: absolute;
  z-index: 2;
  top: clamp(2rem, 8vh, 5rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 490px);
  padding: 0.8rem 1rem 0.65rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px;
}

.hero-slide-doctors img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slide-doctors span {
  display: block;
  color: #fff;
  font-size: 1.74rem;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 16, 49, 0.5);
  color: #fff;
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  display: none;
}

.hero-slider .swiper-button-prev span,
.hero-slider .swiper-button-next span {
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-slider .swiper-pagination {
  bottom: 20px;
}

.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 900px) {
  .hero-slider {
    min-height: 340px;
  }
}

@media (max-width: 700px) {
  .hero-slide-doctors {
    top: 1.25rem;
    width: min(72%, 300px);
    padding: 0.45rem 0.65rem 0.4rem;
  }

  .hero-slide-doctors span {
    font-size: 1rem;
  }

  .hero-slide-caption {
    bottom: 3.25rem;
  }

  .hero-slide-caption p {
    display: none;
  }

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}
