/**
 * @file
 * Photo gallery.
 */

.sc-gallery-photos-field__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sc-gallery-photos-field__item img {
  transition: var(--animation-speed) ease;
}

.sc-gallery-photos-field__item:hover img {
  opacity: .95;
}

@media screen and (max-width: 1200px) {
  .sc-gallery-photos-field__items {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media screen and (max-width: 760px) {
  .sc-gallery-photos-field__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 756px) {
  .sc-gallery-photos-field__items {
    grid-template-columns: 1fr;
  }
}
