
.gallery__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery__items--show-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery__item {
  position: relative;
  cursor: pointer;
}

.gallery__item > picture {
  width: 100%;
  height: 100%;
}

.gallery__item > img,
.gallery__item > picture img {
  display: block;
  aspect-ratio: 5 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery:not(.gallery--partner) .gallery__item:nth-child(n+4) {
  display: none;
}

.gallery--partner .gallery__item:nth-child(n+7) {
  display: none;
}

.gallery__items--show-5 .gallery__item:nth-child(1) {
  grid-row: span 2;
}

@media (max-width:767.98px) {
  .gallery__items--show-3 .gallery__item:nth-child(1) {
    grid-row: span 2;
  }
}

@media (min-width:768px) {
  .gallery__items--show-3,
  .gallery__items--show-5,
  .gallery__items--show-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* @media (min-width:992px) {

} */
