.newsphotos-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.newsphotos-list.-album {
  grid-template-columns: repeat(2, 1fr);
}

.newsphotos-list.-archive {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

/* Masonry-style gallery (CSS columns) */
.newsphotos-list.newsphotos-gallery {
  display: block;
  column-count: 2;
  column-gap: 15px;
}

.newsphotos-list.newsphotos-gallery .newsphotos-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 15px;
  display: inline-block;
  width: 100%;
}

.newsphotos-archive .headline {
  font-family: "MatichonHead", sans-serif;
}

.newsphotos-item>.info>.title {
  margin: 5px 0 15px;
  font-size: 1rem;
}

.front-newsphotos {
  margin-bottom: 20px;
}

.front-newsphotos>.readmore {
  text-align: center;
  margin-top: 15px;
}

.front-newsphotos>.readmore>.link {
  font-size: 1.25rem;
}

.newsphotos-item a.newsphoto-link {
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

.newsphotos-item a.newsphoto-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.2s ease;
}

.newsphotos-item a:hover.newsphoto-link img {
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .newsphotos-list {
    grid-template-columns: repeat(6, 1fr);
  }

  .newsphotos-list.-archive {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsphotos-list.-album {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsphotos-list.newsphotos-gallery {
    column-count: 3;
  }
}

@media (min-width: 1200px) {
  .newsphotos-list.newsphotos-gallery {
    column-count: 3;
  }
}