.gallery-main{
  width:100%;
  height:62vh;
  min-height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 50px rgba(15,23,42,.18);
}
.gallery-main .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.gallery-thumbs{
  height:110px;
  margin-top:1.25rem;
}
.gallery-thumbs .swiper-slide{
  opacity:.55;
  cursor:pointer;
  border-radius:18px;
  overflow:hidden;
  transition:opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.gallery-thumbs .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.gallery-thumbs .swiper-slide-thumb-active{
  opacity:1;
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(15,23,42,.15);
}

@media (max-width:680px){
  .gallery-main{
    height:45vh;
    min-height:260px;
    border-radius:18px;
  }
  .gallery-thumbs{
    height:90px;
  }
  .gallery-thumbs .swiper-slide-thumb-active{
    transform:none;
    box-shadow:0 10px 20px rgba(15,23,42,.12);
  }
}
