/* ===== YAZISIZ SLIDER TASARIMI (arka görsel + ortalanmış yatay slider) ===== */

.slider-wrapper-clean {
  background-image: url('css/hd-10b.jpg'); /* Arkadaki sabit görsel */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Slider container */
.slider-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

/* Swiper alanı */
.swiper {
  width: 100%;
}

/* Slider içindeki görseller */
.swiper-slide img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-slide img {
    aspect-ratio: auto;
    height: 220px;
  }
}
