.layout-item--gallery {
  margin-top: 30px;
  margin-bottom: 30px;
}
.layout-item--gallery__container > .field {
  display: grid;
  grid-gap: 15px;
  gap: 15px;
  grid-template-rows: auto;
  grid-auto-flow: dense;
}
.layout-item--gallery .gallery-item {
  cursor: pointer;
  /* height: 200px;
  display: inline-table; */
}
.layout-item--gallery .gallery-item .media {
  height: 100%;
}
.layout-item--gallery .gallery-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.gallery-popup {
  position: fixed;
  display: none;
  justify-content: center;
  top: 0;
  background-color: rgba(25, 25, 25, 0.9);
  width: 100vw;
  height: 100vh;
  z-index: 666;
}
.gallery-popup--opened {
  display: flex;
}
.gallery-popup--close {
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 20px;
  color: white;
  border: 2px solid white;
  border-radius: 40px;
  width: 30px;
  text-align: center;
  cursor: pointer;
}
.gallery-popup--next {
  position: absolute;
  top: 50%;
  right: 5%;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
.gallery-popup img {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.spl-title {
  text-align: center;
}
