/* --- Galerie masonry --- */

.gallery-list h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

#gallery-groups {
  margin-top: 2rem;
}

/* --- Galerie responsive masonry --- */

.gallery-section {
  padding: 4rem 0;
}

.gallery-year-block {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.8rem;
  border-left: 4px solid #3B55B7;
  background: #f7f8fc;
  border-radius: 6px;
}

.gallery-year-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3B55B7;
}

.gallery-year-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery-year-list li {
  margin: 0.4rem 0;
}

.gallery-year-list a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gallery-year-list a:hover {
  color: #3B55B7;
  text-decoration: underline;
}


.gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.gallery {
  column-count: 3;
  column-gap: 1.2rem;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  break-inside: avoid;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.06);
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery { column-count: 2; }
}

@media (max-width: 600px) {
  .gallery { column-count: 1; }
}