.wp-block-gallery {
  width: 100%;
}

.wp-block-gallery .gallery {
  width: 93.1428571429vw;
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

.wp-block-gallery .gallery .image {
  display: flex;
  align-items: center;
  padding: 0 1vw;
}

@media only screen and (max-width: 800px) {
  .wp-block-gallery .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .wp-block-gallery .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
