/* News Page Specific Styles */
.news-section {
    margin: 30px 0;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.news-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.news-content {
    padding: 25px;
}

.news-content a {
    color: var(--primary-color)
}

.news-content ol {
    list-style-position: inside;
}

.news-content li {
    margin-bottom: 15px; /* etwas Abstand zwischen den Punkten */
}

@media (max-width: 576px) {
    .news-content {
        padding: 20px;
    }
}