.gallery-block {
  position: relative;
}
body:not(.wp-admin) .gallery-block {
  margin-bottom: 140px;
  margin-top: 140px;
}
@media (max-width: 1023px) {
  body:not(.wp-admin) .gallery-block {
    margin-bottom: 100px;
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  body:not(.wp-admin) .gallery-block {
    margin-bottom: 60px;
    margin-top: 60px;
  }
}
.gallery-block .gallery-items {
  display: grid;
  column-gap: 30px;
  row-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  margin-top: 40px;
}
@media (min-width: 700px) and (max-width: 1023px) {
  .gallery-block .gallery-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 699px) {
  .gallery-block .gallery-items {
    grid-template-columns: 100%;
    row-gap: 30px;
  }
}
@media (min-width: 1024px) {
  .gallery-block .gallery-items.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 767px) and (max-width: 1023px) {
  .gallery-block .gallery-items.four-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-block .gallery-items.four-col {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-block .gallery-items li {
  margin-bottom: 0 !important;
}
.gallery-block .gallery-items li:before {
  display: none !important;
}
@media (min-width: 550px) and (max-width: 699px) {
  .gallery-block .gallery-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 699px) {
  .gallery-block .gallery-items {
    row-gap: 40px;
  }
}
.gallery-block .gallery-items li a {
  display: block;
}
.gallery-block .gallery-items li a img {
  transition: transform 0.2s;
  width: 100%;
}
.gallery-block .gallery-items li a:hover, .gallery-block .gallery-items li a:focus-visible {
  outline: none;
}
.gallery-block .gallery-items li a:hover img, .gallery-block .gallery-items li a:focus-visible img {
  transform: scale(1.1);
}
body.wp-admin .gallery-block {
  position: relative;
  margin-bottom: 60px;
  margin-top: 60px;
}
body.wp-admin .gallery-block:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 22;
}
body.wp-admin .gallery-block .gallery:empty {
  background-color: #ECF8FE;
  color: var(--default);
  padding: 60px 20px;
  text-align: left;
}
body.wp-admin .gallery-block .gallery:empty:before {
  content: "Enter images...";
}/*# sourceMappingURL=acf-gallery.css.map */