/* FEATURED HOME GALLERY */

.featured-home-gallery .whatnot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.featured-home-gallery .whatnot-gallery a {
  display: block;
  overflow: hidden;
  border: 5px solid #000;
}

.featured-home-gallery .whatnot-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}


/* OTHER GALLERIES */

.whatnot-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.whatnot-gallery a {
  display: block;
  overflow: hidden;
  border: 5px solid #000;
}

.whatnot-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}


/* RESPONSIVE */

@media (max-width: 1024px) {
  .whatnot-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {

  .featured-home-gallery .whatnot-gallery {
    grid-template-columns: 1fr;
  }

  .whatnot-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* FANCYBOX */

.fancybox__thumbs {
  display: none !important;
}

.has-thumbs .fancybox__viewport {
  right: 0 !important;
}