
h1 {
    color: white;
    text-align: center;
}

#news-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Die News-Boxen wie die Kategorie-Boxen */
.news-entry {
    background-color: #2a2a2a;
    border-left: 5px solid #00AAAA;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.3s ease;
    align-items: flex-start;
}

.news-entry:hover {
    background-color: #3d3d3d;
    box-shadow: 0 4px 12px rgba(85, 255, 255, 0.6);
}

/* Bild in News */
.news-image {
    width: 300px; /* etwas kleiner als vorher */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Text-Container */
.news-content {
    flex: 1;
}

/* News Titel wie Kategorie h2 */
.news-title {
    color: #00AAAA;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

/* Datum */
.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* Untertitel */
.news-undertitle {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0;
}
