.block-teaser-text .teaser-text-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}
.block-teaser-text .teaser-text-wrapper > * {
    flex: 1;
}

@media only screen and (min-width: 992px) {
    .block-teaser-text .teaser-text-wrapper .headline {
        flex: 1.1;
    }
}

/* Responsive */
@media only screen and (max-width: 767px) {
    .block-teaser-text .teaser-text-wrapper {
        flex-direction: column;
        gap: 0;
    }
}