/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_gallery .swiper .swiper-slide figure picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sn_gallery .swiper .swiper-slide figure picture picture, .sn_gallery .swiper .swiper-slide figure picture img {
  width: 100%;
  height: 100%;
}
.sn_gallery .swiper .swiper-slide figure picture img {
  -o-object-fit: cover;
     object-fit: cover;
}

.sn_gallery {
  overflow: hidden;
}
.sn_gallery .swiper {
  overflow: visible;
}
.sn_gallery .swiper > .swiper-wrapper > .swiper-slide {
  width: calc((100% - 3.2px) / 1.2);
  margin-right: 16px;
}
@media only screen and (min-width: 48em) {
  .sn_gallery .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }
}
@media only screen and (min-width: 62em) {
  .sn_gallery .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
  }
}
.sn_gallery .swiper .swiper-slide figure {
  aspect-ratio: 410/729;
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  max-height: 80vh;
  width: 100%;
}