.reiseerlebnis-container {
    position: relative;
    width: 100%;
    height: auto;
    border: 2px solid rgba(215,0,71,1);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 40px;
    overflow: hidden;
}

.reiseerlebnis-container:last-of-type {
    margin-bottom: 160px;
}

.reiseerlebnis-bildbox {
    position: relative; 
    width: 42%;
    height: auto;
    min-height: 100px;
    background: grey;
    clip-path: polygon(0% 0%,100% 0%,72% 100%,0% 100%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.reiseerlebnis-bildbox img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.2);
}

.reiseerlebnis-textbox {
    position: relative;
    width: 55%;
    height: auto;
    padding: 40px;
    background: #fff;
}

.reiseerlebnis-textbox h5 {
    color: #777;
    margin-bottom: 20px;
}

.reiseerlebnis-link {
    position: relative; 
    display: inline-block; 
    border: 1px solid #d30146; 
    padding: 10px 30px; 
    background-color: none; 
    font-family: 'Oswald', sans-serif; 
    font-weight: 500;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #d30146; 
    margin-top: 20px; 
}

.reiseerlebnis-link:hover {
    background-color: #d30146;
    color: #fff;
}

@media screen and (max-width: 759px) {
    .reiseerlebnis-container {
        flex-direction: column;
    }

    .reiseerlebnis-bildbox {
        clip-path: none;
        width: 100%;
        height: 20vh;
    }

    .reiseerlebnis-textbox {
        width: 100%;
        height: auto;
        text-align: center;
    }
}