/* === Aktuelles Seite === */

/* Hauptbereich der News */
.news-list {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Überschrift für die News */
.news-list h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Einzelne News-Einträge */
.news-entry {
    background-color: #f3eeed; /* Heller Hintergrund für jedes News-Item */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.news-entry h3 {
    font-size: 1.6rem;
    color: var(--primary-color); /* Farbe für Titel */
    margin-bottom: 10px;
}

.news-entry .news-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.news-entry p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.news-entry .read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.news-entry .read-more:hover {
    color: #003d47; /* Dunklere Farbe bei Hover */
}
