 <style>

footer {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.card {
      border: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.2s ease-in-out;
    }

    .card:hover {
      transform: scale(1.01);
    }

    .card-img-top {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin: 15px auto 10px auto;
      display: block;
    }

  .accordion-button:not(.collapsed) {
	   border-bottom: 0.25px solid #000; /* dünner blauer Strich unten */
    background-color: transparent;
    color: inherit;
    box-shadow: none;
  }
.accordion-button:focus {
    outline: none;
    box-shadow: none;
  }
    .accordion-button {
      font-size: 0.9rem;
      padding: 0.3rem 0.75rem;
    }

    .accordion-body {
      font-size: 0.85rem;
      text-align: left;
	   height: 100px; /* z. B. 100px – passe nach Wunsch an */
       overflow-y: auto;
    }

   body,
.navbar,
.navbar * {
  font-family: 'Arimo', sans-serif !important;
  color: #001f3f;
}
	h1, h2, h3, h4, h5, h6, p, li, a, span, div {
    color: #001f3f !important;
  }

  .text-muted {
    color: #6c757d !important; /* ggf. beibehalten für sekundären Text */
  }
	.headerLogo {
   width: 50px;
  height: auto;
  }

 .navbar-toggler {
      border: none;             /* Rahmen entfernen */
      padding: 0.0rem 0.0rem;  /* Kleinerer Button */
    }

    .navbar-toggler i {
      font-size: 1.1rem;        /* Kleineres Icon */
      color: #333;              /* Farbe anpassen bei Bedarf */
    }
    header {
      border-bottom: 1px solid #aaa;
      padding: 1rem 0;
      margin-bottom: 0;
    }

    header h1 {
      font-weight: 700;
      font-size: 2rem;
      font-family: "Times New Roman", Times, serif;
      letter-spacing: 0.1em;
      margin-bottom: 0;
      text-align: center;
    }

    header .date {
      font-style: italic;
      font-size: 0.9rem;
      color: #6c757d !important; /* ggf. beibehalten für sekundären Text */
      text-align: center;
    }

    nav {
      margin-bottom: 2rem;
      border-top: 1px solid #aaa;
      border-bottom: 2px solid #aaa;
      padding: 0.5rem 0;
      background: #f7f5f0;
    }

    nav a {
     color: #6c757d !important; /* ggf. beibehalten für sekundären Text */
      font-weight: 600;
      margin: 0 1rem;
      text-decoration: none;
    }

    nav a:hover {
      text-decoration: none;
    }

.navbar-text-dark {
      color: #001f3f !important;
    }

.nav-link {
  position: relative;
  font-weight: 500;
  color: #6c757d !important; /* ggf. beibehalten für sekundären Text */
   text-decoration: none !important;
}

.nav-link.active {
  font-weight: 900;
  color: #000;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: #000;
}

    .navbar-nav .nav-link:hover {
      text-decoration: none;
	   font-weight: 900;
    }

    footer {
      margin-top: 3rem;
      padding: 1rem 0;
      border-top: 1px solid #aaa;
      font-size: 0.8rem;
      color: #666;
      text-align: center;
    }

    article h2 {
      margin-bottom: 0.5rem;
      font-family: "Times New Roman", Times, serif;
      font-weight: 700;
      font-size: 1.8rem;
      margin-top: 0;
    }

    article p.lead {
      margin-bottom: 0;
      font-style: italic;
      color: #444;
    }

    article > .image-block img {
      margin-top: 0.3rem;
      border: 1px solid #ccc;
      box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    /* WICHTIG: Flexbox für Artikel */
    main .row > .col > article {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Textblock wächst, damit Bild unten bleibt */
    main .row > .col > article > .text-block {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    /* Bild immer unten */
    main .row > .col > article > .image-block {
      margin-top: auto;
      display: flex;
      flex-direction: column;
    }
	
  </style>