.home-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.home-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
}

.home-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.home-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.home-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.home-carousel__dot.is-active {
  background: #fff;
}
