.content-teaser-2 {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.content-teaser-2__headline {
    margin-bottom: 15px;
}
.content-teaser-2__img-wrap {
    position: relative;
    overflow: hidden;
}
.content-teaser-2__img-link {
    display: flex;
    width: 100%;
    outline: none;
}
.content-teaser-2__img-figure {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.content-teaser-2__target-img {
    display: block;
    width: 100%;
}
.content-teaser-2__belly-headline {
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 12px 15px;
    background-color: #333;
    color: #fff;
    font-weight: normal;
    font-size: 1.2rem;
    margin: 0 20px 0 0;
}
/*
.content-teaser-2__belly-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px;
    color: #777;
    text-align: center;
    background-color: rgba(255, 255, 255, .8);
    opacity: 0;
    transform: translateY(60%);
    transition: transform .3s, opacity .3s;
    transition-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); /* easeInCubic */
/*
}
*/
.content-teaser-2__body {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    padding: 20px 5px 20px 0;
}
.content-teaser-2__body-headline {
    font-weight: bold;
    margin-bottom: 1em;
}
.content-teaser-2__body-text {
    margin-bottom: 0;
}
.content-teaser-2__btn-wrap {
    margin-top: 1.7rem;
}

/*
.no-touchevents .content-teaser-2__img-figure:hover .content-teaser-2__belly-caption {
    opacity: 1;
    transform: translateY(0);
    transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
/*}
*/
/* ==========================================================================
   Media Queries
   ========================================================================== */
@media ( min-width: 768px ) {
    .content-teaser-2--text-left {
        flex-direction: row-reverse;
    }
    .content-teaser-2--text-right {
        flex-direction: row;
    }
    .content-teaser-2--text-left .content-teaser-2__img-wrap,
    .content-teaser-2--text-right .content-teaser-2__img-wrap {
        /* IE 10-11 use content box model in flex-basis, even if box-sizing: border-box is applied.
        Workaround: Use auto and width instead of flex-basis.
        https://github.com/philipwalton/flexbugs#7-flex-basis-doesnt-account-for-box-sizingborder-box */
        flex: 1 0 auto;
        /* Pro tip: work with calc() if you need to align with the grid */
        /*width: calc(50% - 30px);*/
        width: 50%;
    }
    .content-teaser-2--text-left .content-teaser-2__body {
        width: 50%;
        padding: 0 20px 20px 0;
    }
    .content-teaser-2--text-right .content-teaser-2__body {
        width: 50%;
        padding: 0 0 20px 20px;
    }
}
@media ( min-width: 992px ) {
    .content-teaser-2__belly-headline {
        left: 20px;
        top: 20px;
    }
}
@media ( min-width: 1200px ) {
    .content-teaser-2__body {
        padding: 40px 5px 40px 0;
    }
    .content-teaser-2--text-left .content-teaser-2__body {
        padding: 0 40px 40px 0;
    }
    .content-teaser-2--text-right .content-teaser-2__body {
        padding: 0 0 40px 40px;
    }
}
