/* =====================
   GALERÍA
===================== */

.collection-title {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Swiper */
.swiper {
  width: 90%;
  height: 70vh;
  margin: 0 auto;
}

.swiper-slide {
  width: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  height: 70vh;
  object-fit: contain;
  opacity: 0;
  filter: blur(20px);
  transform: scale(1.05);
  transition: all 0.6s ease;
}

.swiper-slide img.loaded {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.swiper-scrollbar {
  width: 70%;
  height: 8px;
  margin: 20px auto 0;
  background: #ddd;
}

.swiper-scrollbar-drag {
  background: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .swiper {
    height: 75vh;
  }

  .swiper-slide img {
    max-height: 70vh;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .swiper {
    height: 65vh;
  }
}