.swiper {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  transition-property: transform;
  box-sizing: border-box;
  will-change: transform;
  align-items: stretch;
}

.swiper-slide {
  flex: 0 0 auto;
  display: flex;
  height: auto;
  box-sizing: border-box;
}

.swiper-slide > * {
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.swiper-pagination-bullet {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  line-height: 1;
  cursor: pointer;
}
