.news-article {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 20px rgba(50,70,50,0.08);
    margin: 48px auto 36px auto;
    padding: 36px 32px 32px 32px;
    max-width: 820px;
    font-family: 'open_sansregular', Arial, sans-serif;
}
.news-meta {
    font-size: 0.96rem;
    color: #38805c;
    margin-bottom: 6px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.news-title {
    font-size: 1.68rem;
    color: #194c34;
    margin: 9px 0 8px 0;
    font-family: 'open_sansbold', Arial, sans-serif;
}
.news-author {
    font-size: 1.02rem;
    color: #2e2c2f;
    margin-bottom: 16px;
}
.news-img-grid {
    display: flex;
    gap: 22px;
    margin: 23px 0;
    flex-wrap: wrap;
    justify-content: center;
}
.news-img-grid figure {
    margin: 0;
    flex: 1 1 170px;
    max-width: 220px;
    background: #f7f8f6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(50,70,50,0.05);
    display: flex;
    flex-direction: column;
}
.news-img-grid img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-bottom: 1.5px solid #dbe7dd;
}
.news-img-grid figcaption {
    font-size: 0.92rem;
    color: #405650;
    padding: 7px 10px 8px 10px;
    text-align: left;
}
.news-content {
    margin-top: 9px;
    font-size: 1.08rem;
    color: #232c23;
}
.news-content p {
    margin-bottom: 11px;
}
.news-verein-team {
    background: #e7f7ee;
    color: #174e2e;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1.02rem;
    font-family: 'open_sansbold', Arial, sans-serif;
    text-align: center;
}
.team-names {
    font-family: 'open_sansregular', Arial, sans-serif;
    color: #176646;
    font-size: 1.04rem;
    display: block;
    margin-top: 4px;
}

.copyright-hinweis {
    font-size: 0.78rem;
    color: #7a887a;
    margin: 2px 0 4px 10px;
    text-align: left;
    font-family: 'open_sansregular', Arial, sans-serif;
    opacity: 0.75;
}


@media (max-width: 600px) {
    .news-article {
        padding: 15px 4vw 20px 4vw;
    }
    .news-img-grid {
        flex-direction: column;
        gap: 12px;
    }
    .news-img-grid img {
        height: 90px;
    }
}
