/* Responsive grid for minti_gallery */
.minti-gallery-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.minti-gallery-wrapper .gallery-item {
  overflow: hidden;
}
.minti-gallery-wrapper .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}
.minti-gallery-wrapper .gallery-item:hover img {
  transform: scale(1.05);
}
