#gallery {
  background-color: var(--innerBg);
}
.gallery__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding-bottom: 32px;
}
.gallery__collage {
  padding: 0 20px 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Сетка из 5 колонок */
  grid-template-rows: repeat(1, 1fr);
  gap: 10px; /* Отступы между изображениями */
  width: 100%; /* Ширина на всю страницу */
}
.gallery__collage div:nth-child(3),
.gallery__collage div:nth-child(4),
.gallery__collage div:nth-child(5) {
  display: none;
}
@media (min-width: 900px) {
  .gallery__collage {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__collage div:nth-child(3) {
    display: block;
  }
}
@media (min-width: 1200px) {
  .gallery__collage {
    grid-template-columns: repeat(5, 1fr);
  }
  .gallery__collage div:nth-child(4),
  .gallery__collage div:nth-child(5) {
    display: block;
  }
}
