/* == Masonry Gallery Isolation == */

/* Reset any WP gallery styles inside masonry */
.smg-masonry .gallery-item {
  all: unset !important;
}

/* Masonry container */
.smg-masonry {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

/* Masonry items */
.smg-item {
  box-sizing: border-box !important;
  padding: 10px !important;
  width: 100% !important;
  float: none !important;
  display: block !important;
}

/* Responsive columns */
@media (min-width: 576px) {
  .smg-item {
    width: 50% !important;
  }
}

@media (min-width: 768px) {
  .smg-item {
    width: 33.3333% !important;
  }
}

@media (min-width: 992px) {
  .smg-item {
    width: 25% !important;
  }
}

@media (min-width: 1400px) {
  .smg-item {
    width: 20% !important;
  }
}

/* Images inside masonry items */
.smg-item img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}
