.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}


.gallery figure {
  margin: 0;
  text-align: center;
}


.gallery img {
  max-width: 100%;
  height: auto;
  width: auto; /* verhindert erzwungene Vergrößerung */
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.gallery figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}


/* Navigations-Buttons in Galerie-Seiten */
.navbutton {
  margin-right: 2rem;
  display: inline-block;
}




.gallery-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.gallery-nav a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: #eee;
  border-radius: 4px;
  color: #333;
  font-weight: bold;
}

.gallery-nav a:hover {
  background: #ddd;
}