#gallery-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  justify-content: flex-start;
  align-items: stretch;
}

.gallery-item {
  flex: 1 1 auto;
  width: auto !important;
  max-height: 400px;
}

.gallery-card {
  background: black !important;
  border: 1px solid #E504A1;
  box-shadow: 0 0 15px rgba(229, 4, 161, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-img {
  height: 300px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent !important;
}

@media (max-width: 768px) {
  .gallery-img {
    height: 200px;
  }
}/*# sourceMappingURL=gallery.css.map */