.gallery {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 6px;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 25px;
}

.gallery-grid a,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-grid a:nth-of-type(n+6) {
  display: none;
}

.gallery-grid img {
  object-fit: cover;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-rows: 170px 170px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-rows: 120px 120px;
    gap: 4px;
    border-radius: 11px;
  }
}

/* hero grande a sinistra */
.gallery-grid a.hero {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
/*
.show-all {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  font-weight: 600;
}
*/