    .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;}