    /* Grid-Layout für News Items */
    .news-container .news-list-view {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;


    }
    @media (max-width: 768px) {
      .news-container .news-list-view {
        grid-template-columns: 1fr;
      }
    }
    .news-container .news-list-item {
      background-color: #2a2a2a;
      border: 1px solid #444;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 20px;
    }
    .news-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
      margin-bottom: 15px;
    }
    .news-container .news-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #444;
      padding-bottom: 10px;
    }
    .news-title {
      margin: 0;
      font-size: 1.4em;
      font-family: 'Press Start 2P', cursive;
    }

	.news-title a {
      color: #ffcc00;
}

	.news-title a:hover {
      color: #a18206;
}
    .news-meta {
      font-size: 0.85em;
      color: #aaa;
    }
    .news-content {
      margin-top: 15px;
      line-height: 1.6;
      color: #ccc;
    }
    .news-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
      flex-wrap: wrap;
      border-top: 1px solid #444;
      padding-top: 10px;
    }
    .tags span {
      display: inline-block;
      background: #00ff39;
      color: #000;
      padding: 5px 10px;
      border-radius: 4px;
      margin-right: 8px;
      font-size: 1.1em;
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .tags span {
      font-size: 0.6em;
      }
    }

    .button-container {
      display: flex;
      justify-content: flex-end;
      width: 100%;
    }
    .btn-read-more {
      padding: 10px 20px;
      background-color: #00aaff;
      color: #fff;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }
    .btn-read-more:hover {
      background-color: #0088cc;
    }

/*Single PAGE*/
    .news-single {
      margin: auto;
      padding: 20px;
      background-color: #2a2a2a;
      border: 1px solid #444;
      border-radius: 8px;
    }

.news-single ul{
	padding-left: 50px;
}

    .news-single .news-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .news-single .news-header {
      margin-bottom: 20px;
      border-bottom: 1px solid #444;
      padding-bottom: 10px;
    }
    .news-single .news-header h1 {
	text-align: left;
    }
    .news-single .news-title {
      font-size: 3em;
      font-family: 'Press Start 2P', cursive;
      color: #ffcc00;
      margin: 0;
    }

    @media (max-width: 768px) {
      .news-single .news-title {
        font-size: 1.8em;
      }
    }
    .news-single .news-meta {
      font-size: 0.9em;
      color: #aaa;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .news-single .news-meta {
       font-size: 0.5em;
      }
    }

    .news-single .news-category {
      font-size: 1em;
      color: #ccc;
      margin-top: 5px;
    }
    @media (max-width: 768px) {
     .news-single .news-category{
       font-size: 0.7em;
      }
    }
    .news-single .news-content {
      margin-top: 20px;
      line-height: 1.6;
      color: #ccc;
    }
    .news-single .news-content p {
      margin-bottom: 20px;
    }
    .news-single .news-footer {
      margin-top: 20px;
      border-top: 1px solid #444;
      padding-top: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .news-single .back-button {
      padding: 10px 20px;
      background-color: #00aaff;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }
    .news-single .back-button:hover {
      background-color: #0088cc;
    }