
    .buchmesse-nav {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 5px;
      background: #ffffff;
      border-top: 2px solid #ddd;
      border-bottom: 2px solid #ddd;
      padding: 1rem 0;
      margin-bottom: 2rem;
    }

    .buchmesse-nav a {
      flex: 1 1 auto;
      text-align: center;
      text-decoration: none;
      color: #222;
      font-size: 1.5rem;
      font-weight: 600;
      padding: .6rem 1rem;
      border-radius: 5px;
      transition: all 0.25s ease;
    }

    .buchmesse-nav a:hover {
      background-color: #4d97cd;
      color: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transform: scale(1.03);
    }

    @media (max-width: 768px) {
      .buchmesse-nav a {
        flex: 1 1 45%; /* zwei pro Zeile bei Tablets */
        font-size: 1.2rem;
      }
    }

    @media (max-width: 500px) {
      .buchmesse-nav a {
        flex: 1 1 100%; /* ein Link pro Zeile auf Handy */
      }
    }


.section-title-full {
  position: relative;
  text-align: center;
  margin-top: 0.5rem;       /* wenig Abstand nach oben */
  margin-bottom: 2.5rem;    /* 👈 mehr Abstand nach unten */
  padding-bottom: 0.6rem;   /* etwas mehr Platz zur Linie */
  font-weight: 300;
}

.section-title-full::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #4d97cd; /* Stadtgeschichte-Rot */
}