/* Minimal layout needed */
.swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  box-sizing: border-box;
  padding: 0;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* Pagination */
.swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
}

.swiper-pagination-bullet.active {
  background: #333;
}

.swiper-wrapper img {
    max-width: 100%;
    display: block;
}
