.sw-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 630px) {
  .sw-wrap {
    min-height: 450px;
    max-height: 850px;
  }
}

.sw-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .sw-track {
    transition: none;
  }
}

.sw-slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
}

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

@media (max-width: 767px) {
  .sw-slide {
    aspect-ratio: 4 / 3;
  }
}
