/* ÄUSSERE HÜLLE: 16:9 über Padding-Trick */
.nt-news-stream-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    background: #0e0e52 center center / cover no-repeat;
    overflow: hidden;
}

/* 16:9 – Höhe ergibt sich aus der Breite */
.nt-news-stream-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 9/16 */
}

/* INNERE FLÄCHE füllt den 16:9-Block */
.nt-news-stream-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start; /* mit deinem 100px-Top-Abstand */
    justify-content: center;
    box-sizing: border-box;
    padding: 100px 2vw 2vh 2vw;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nt-news-stream-loading,
.nt-news-stream-error {
    color: #ffffff;
    font-size: 1.5rem;
}

.nt-news-stream-slide-container {
    width: 100%;
    height: 100%;
    transition: opacity 1.0s ease;
    opacity: 1;
}


.nt-news-stream-slide {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 2vw;
}

/* Bildbereich: 4:3 */
.nt-news-stream-image-wrapper {
    flex: 0 0 40%;
    position: relative;
    background: #00000033;
    border-radius: 1rem;
    overflow: hidden;
}

/* 4:3 Ratio */
.nt-news-stream-image-wrapper::before {
    content: "";
    display: block;
    padding-top: 75%; /* 3/4 = 0.75 */
}

.nt-news-stream-image-wrapper img,
.nt-news-stream-image-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt-news-stream-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    background: #22224f;
}

/* Textbereich */
.nt-news-stream-text-wrapper {
    flex: 1 1 auto;
    padding: 0 2rem; /* etwas horizontaler Abstand lassen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent !important;
    border: none !important;
}


.nt-news-stream-excerpt {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 0;
    max-height: 80%;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
    .nt-news-stream-inner {
        padding: 1rem;
    }

    .nt-news-stream-slide {
        flex-direction: column;
    }

    .nt-news-stream-image-wrapper {
        flex: 0 0 auto;
    }

    .nt-news-stream-excerpt {
        font-size: 1.1rem;
    }
	
}


.nt-news-stream-excerpt,
.nt-news-stream-paragraph,
.nt-news-stream-teaser {
    font-size: 17px !important;
    line-height: 1.4;
    color: #ffffff;
	


