.c-aktuellesTeaser {
    display: flex;
    gap: 2rem;
    padding: 0;
    border-radius: 1.5rem;
    background: #f5f5f5; /* oder dein helles Grau */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    margin-bottom:70px;
}

/* Bildspalte */
.c-aktuellesTeaser__media {
    flex: 0 0 40%;
}

.c-aktuellesTeaser__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem; /* abgerundete Ecken wie gewünscht */
    display: block;
}

/* Textspalte */
.c-aktuellesTeaser__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:28px;
    color: #000000;
    font-family: Lato, sans-serif;
}

.c-aktuellesTeaser__headline {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    font-family: Lato, sans-serif;
}

.c-aktuellesTeaser__divider {
    height: 4px;
    width: 120px;
    background: #30b2cf; /* diese Türkis-Linie aus deinem Layout */
    margin-bottom: 1.5rem;
}

.c-aktuellesTeaser__text {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #000000;
    font-family: Lato, sans-serif;
}
.c-aktuellesTeaser__text p {
    color: #000000;
    font-family: Lato, sans-serif;
}

/* Button */
.c-aktuellesTeaser__actions {
    margin-top: auto;
}

.c-aktuellesTeaser__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #30b2cf, #24a2c0);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.c-aktuellesTeaser__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

/* Responsive: Bild oben, Text unten */
@media (max-width: 1000px) {
    .c-aktuellesTeaser {
        flex-direction: column;
        padding: 0;
    }

    .c-aktuellesTeaser__media {
        flex: 0 0 auto;
    }

    .c-aktuellesTeaser__image {
        height: auto;
        max-height: 360px;
    }
}
