.ce-eventteaser {
    display: flex;
    flex-direction: row;
    gap: 25px;
    word-break: unset;
}
.ce-eventteaser + .ce-eventteaser {
    margin-top: 25px;
}
@media(max-width: 567px) {
    .ce-eventteaser {
        flex-direction: column;
        gap: 5px;
    }
}
.ce-eventteaser__image {
    width: 60%;
    border-top-left-radius: 20px;
    overflow: hidden;
}
@media(max-width: 567px) {
    .ce-eventteaser__image {
        width: 100%;
    }
}
.ce-eventteaser__image img {
    max-width: 100%;
    height: auto;
    display: block;
}
.ce-eventteaser__body {
    width: 40%;
    display: flex;
    flex-direction: column;
    padding: 10px 0 20px 0;
}
@media(max-width: 567px) {
    .ce-eventteaser__body {
        width: 100%;
    }
}
.ce-eventteaser__body-header {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    hyphens: auto;
}
.ce-eventteaser__body-header + .ce-eventteaser__body-text {
    margin-top: 15px;
}
.ce-eventteaser__more {
    display: flex;
    flex-direction: column;
    justify-content: end;
    flex-grow: 1;
    text-transform: uppercase;
    color: #f39200;
    font-weight: bold;
}