    .news-related-wrap {
      max-width: 960px;
      margin: 40px auto;
      padding: 20px;
      background-color: #f9f9f9;
      border-top: 2px solid #e0e0e0;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      overflow: hidden;
      font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    }

    .news-related-wrap h4 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: #333;
    }

    .news-related-wrap ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .news-related-wrap li {
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      overflow: hidden;
      white-space: nowrap;
    }

    .news-related-wrap li .news-related-news-date {
      color: #555;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .news-related-wrap li .news-related-news-date::after {
      content: " ▶";
      color: #aaa;
      margin: 0 0.5ch;
    }

    .news-related-wrap li a {
      text-decoration: none;
      color: #0074c1;
      transition: color 0.2s ease;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
      flex-grow: 1;
      display: inline-block;
    }

    .news-related-wrap li a:hover {
      color: #005b99;
    }

    @media (max-width: 600px) {
      .news-related-wrap {
        padding: 20px 16px;
      }

      .news-related-wrap li {
        /* NICHT umstellen auf column! Nur Padding reduzieren */
        font-size: 0.9rem;
      }

      .news-related-wrap li a {
        max-width: 100%;
      }
    }p, li, th, td, dt, dd, label, legend, blockquote, caption {hyphens: none;}    @media (min-width: 1024px) {
      /* NUR Ebene 2: erster Eintrag im Flyout */
      .sub-navi-wrapper > ul.nav-list.sub-navi.level-2 > li.nav-item:first-child {
        text-align: center;
        font-weight: 700;

        margin: 1rem 0;            /* gleicher Abstand oben & unten */
        padding: 0.5rem 0;         /* Innenabstand für den Text */
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;

        /* über volle Breite spannen – egal ob Grid, Flex oder Columns */
        grid-column: 1 / -1;
        flex: 0 0 100%;
        width: 100%;
        -webkit-column-span: all;
        column-span: all;
      }

      .sub-navi-wrapper > ul.nav-list.sub-navi.level-2 > li.nav-item:first-child > .nav-link {
        display: inline-block;
        font-size: 1.1rem;
        text-decoration: none;
      }
    }    /* Breadcrumb auf Mobile/Tablet ausblenden */
    @media screen and (max-width: 1024px) {
      .main__breadcrumb,
      .main__breadcrumb .breadcrumb,
      .main__breadcrumb .breadcrumb__list {
        display: none !important;
      }
    }

    /* Breadcrumb auf Desktop wieder anzeigen */
    @media screen and (min-width: 1025px) {
      .main__breadcrumb {
        display: block !important;
      }
    }

    /* Unterstreichung der Breadcrumb-Links entfernen */
    .main__breadcrumb a,
    .main__breadcrumb a:link,
    .main__breadcrumb a:visited {
      text-decoration: none !important;
    }

    /* Optional: bei Hover dezentes Styling */
    .main__breadcrumb a:hover,
    .main__breadcrumb a:focus {
      text-decoration: underline; /* oder z.B. border-bottom */
    }