.news-header {
    text-align: center;
    padding: 60px 20px 30px;
    background: #1a1a2e;
}
.news-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.news-header p {
    color: #aaa;
    font-size: 1.1rem;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.news-container a {
    text-decoration: none;
    color: white;
}

.news-card {
    background-color: #1f1f3d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}
.news-card:hover {
    transform: translateY(-5px);
}

.news-thumb {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
}
.news-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 50%; /* 2:1 Verhältnis (600 / 1200 * 100) */
    overflow: hidden;
}
.news-thumb-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-meta {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.news-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.news-desc {
    font-size: 1rem;
    color: #ccc;
}