/* Main container fits your 816px right column */
.crea-slider {
  width: 100%;
  aspect-ratio: 816 / 543; /* matches design */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* Slide + image styling */
.crea-slider .swiper-slide,
.crea-slider .swiper-slide img {
  width: 100%;
  height: 100%;
}
.crea-slider .swiper-slide img {
  object-fit: cover;
  display: block;
}

/* Pagination dots (bottom centered, white) */
.crea-slider .swiper-pagination {
  bottom: 14px !important;
}
.crea-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.crea-slider .swiper-pagination-bullet-active {
  background: #fff;
}

/* Subtle hover effect */
.crea-slider:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
