/* Homepage hero slideshow — image only (desktop 1920×680, mobile 750×600) */
.home-hero {
  width: 100%;
  margin-bottom: 0;
}

.home-hero__carousel {
  width: 100%;
  overflow: hidden;
}

.home-hero__slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 680;
  overflow: hidden;
  background-color: #111;
}

.home-hero__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.home-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .home-hero__slide {
    aspect-ratio: 750 / 600;
  }

  .home-hero__img {
    object-position: center top;
  }
}

.home-hero__indicators {
  margin-bottom: 1rem;
  gap: 0.35rem;
  z-index: 3;
}

.home-hero__indicators [data-bs-target] {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.home-hero__indicators .active {
  background-color: #fff;
}

.home-hero__control {
  width: auto;
  opacity: 1;
  z-index: 3;
}

.home-hero__control--prev {
  left: 1rem;
}

.home-hero__control--next {
  right: 1rem;
}

.home-hero__control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
}

.home-hero__control-icon .bi {
  font-size: 1.125rem;
}

@media (max-width: 575.98px) {
  .home-hero__control--prev {
    left: 0.5rem;
  }

  .home-hero__control--next {
    right: 0.5rem;
  }

  .home-hero__control-icon {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.home-hero .carousel-item,
.home-hero .carousel-fade .carousel-item {
  transition-duration: 0.65s;
}

.home-hero .carousel-inner,
.home-hero .carousel-item {
  width: 100%;
}
