.block-gallery-photo .gallery-photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1367px) {
  .block-gallery-photo .gallery-photo {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .block-gallery-photo .gallery-photo {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 499px) {
  .block-gallery-photo .gallery-photo {
    grid-template-columns: repeat(2, 1fr);
  }
}
.block-gallery-photo .gallery-photo__item {
  border: 8px solid #DEF1FF;
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .block-gallery-photo .gallery-photo__item {
    grid-template-columns: repeat(2, 1fr);
    border: 4px solid #DEF1FF;
  }
}
.block-gallery-photo .gallery-photo__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

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