 #termine {
    scroll-margin-top: 260px; /* Höhe von Header + Navbar */
}

.chronik-section {
  background-color: #e7e6e6;
  padding: 50px 20px;
  text-align: center;
}

.chronik-section h2 {
  font-size: 2.2rem;
  color: green;
  text-shadow: 1px 1px black;
  margin-bottom: 20px;
}

.chronik-section h3 {
  font-size: 1.6rem;
  color: green;
  text-shadow: 1px 1px black;
  margin: 40px 0 20px;
}

.chronik-section .einleitung {
  display: block;
  margin-bottom: 40px;
  font-size: 1rem;
  color: #444;
  font-weight: bold;
}

/* Vertikale Liste */
.chronik-liste {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Einzelne Span-Einträge */
.chronik-liste span {
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  font-size: 0.95rem;
  width: 100%;
  max-width: 600px;
  text-align: left;
}

/* Bild mit Caption */
.chronik-bildtext {
  display: flex;
  justify-content: center;
  width: 100%;
}

.chronik-bildtext figure {
  margin: 20px 0;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.chronik-bildtext img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.chronik-bildtext figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}

.bild img {
  width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
  .chronik-section h2 {
    font-size: 1.8rem;
  }

  .chronik-section h3 {
    font-size: 1.4rem;
  }

  .chronik-liste span {
    font-size: 0.9rem;
  }

  .chronik-bildtext figure {
    max-width: 90%;
  }
}

@media (max-width: 500px) {
  .bild img {
    width: 250px;
  }
}