.news-box {
    display: flex;
    flex: 1 1 auto;   /* ← darf schrumpfen */
    min-width: 0;     /* ← verhindert Überbreite */
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 5px;
}


.news-box img {
    flex-shrink: 1;
    margin-top: 10px;
}

.news-text {
    flex: 1;
    margin-top: -8px; /* optischer Ausgleich */
}

.news-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;          /* ← erlaubt Umbruch */
    gap: 0.3rem;              /* Abstand beim Umbruch */
    margin-bottom: 10px;
}

.news-headline h3 {
    margin: 0;
}

.news-headline .news-date {
    font-style: italic;
    color: #555;
    white-space: nowrap; /* Datum bleibt in einer Zeile */
}

.img150 {
    flex-shrink: 1;
    margin: 5px 20px 10px 2px;
    max-width: 150px;
    width: 100%;          /* ← NEU: Bild darf schrumpfen */
    height: auto;
    border-radius: 8px;
}


/* Desktop-Korrekturen */
@media (min-width: 600px) {
    .news-box img {
        flex-shrink: 0;
        margin-top: 10px;   /* optischer Ausgleich */
    }

    .news-text {
        flex: 1;
        margin-top: -8px;   /* optischer Ausgleich */
    }
}

/* Mobile: alles zurücksetzen */
@media (max-width: 599px) {
    .news-box {
        flex-direction: column;
        gap: 10px;
    }

    .news-box img {
        display: block;
        margin: 0 auto 12px;  /* ← zentriert über dem Text */
        max-width: auto;     /* ← nie größer als Original */
        width: 100%;          /* ← darf kleiner werden */
    }

    .news-text {
        margin-top: 0;
    }

}
