.mediaGallery .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
}
.mediaGallery .images figure {
  flex: 0 0 100%;
  margin: 0 0 2%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .mediaGallery .images figure {
    flex: 0 0 32%;
  }
}
.mediaGallery .images figure img {
  object-fit: contain;
  width: 100%;
  margin-bottom: 0;
}
.mediaGallery .images::after {
  content: "";
  flex: auto;
}

/*# sourceMappingURL=mediaGallery.css.map */
