.tile-teaser {
    position: relative;
    width: 100%;
}
.tile-teaser__inner {
    display: block;
    height: 100%;
    color: #969492;
    border-radius: 3.5px;
    overflow: hidden;
}
.tile-teaser__img-wrap {
    height: 19em;
}
.tile-teaser__img-wrap-gradient-helper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0) 50%);
    pointer-events: none;
}
.tile-teaser__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.tile-teaser__inner:focus .tile-teaser__img,
.no-touchevents .tile-teaser__inner:hover .tile-teaser__img {
    transform: scale(1.03);
}
.content-columns__col.col-md-4:last-child .tile-teaser__img {
    object-position: right;
}
.tile-teaser__hashtag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: .8em;
    padding: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.tile-teaser__body {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px 70px 20px 20px;
}
.tile-teaser__body-date {
    margin-bottom: .6em;
    font-size: .7em;
    color: rgba(255, 255, 255, .66);
}
.tile-teaser--color-3 .tile-teaser__body-date {
    color: #545454;
}
.tile-teaser__body-headline {
    font-weight: bold;
    color: #302e2c;
}
.tile-teaser__body-subheadline {
    margin-top: .3em;
}
.tile-teaser--color-2 .tile-teaser__body-headline,
.tile-teaser--color-2 .tile-teaser__body-subheadline,
.tile-teaser--color-2 .tile-teaser__hashtag {
    color: #F2F2F2;
}
.tile-teaser--color-3 .tile-teaser__body-headline,
.tile-teaser--color-3 .tile-teaser__body-subheadline,
.tile-teaser--color-3 .tile-teaser__hashtag {
    color: #302E2C;
}
.tile-teaser--color-4 .tile-teaser__body-headline,
.tile-teaser--color-4 .tile-teaser__body-subheadline,
.tile-teaser--color-4 .tile-teaser__hashtag {
    color: #545454;
}
.tile-teaser--color-5 .tile-teaser__body-headline,
.tile-teaser--color-5 .tile-teaser__body-subheadline,
.tile-teaser--color-5 .tile-teaser__hashtag {
    color: #969492;
}
.tile-teaser--color-6 .tile-teaser__body-headline,
.tile-teaser--color-6 .tile-teaser__body-subheadline,
.tile-teaser--color-6 .tile-teaser__hashtag {
    color: #CBC9C8;
}
.tile-teaser__arrow-btn {
    position: absolute;
    right: 20px;
    bottom: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    border: 2px solid #f96915;
    border-radius: 50%;
    background-color: #f96915;
    transition: transform .3s ease-out;
}
.tile-teaser__arrow-btn:after {
    content: '→';
    padding-top: 2px;
}
.tile-teaser__inner:focus .tile-teaser__arrow-btn,
.no-touchevents .tile-teaser__inner:hover .tile-teaser__arrow-btn {
    transform: translateX(6px);
}

@media ( min-width: 480px ) {
    .tile-teaser__hashtag {
        padding: 30px;
    }
    .tile-teaser__body {
        padding: 30px 90px 30px 30px;
    }
    .tile-teaser__arrow-btn {
        right: 30px;
        bottom: 30px;
    }
}
@media ( min-width: 768px ) {
    .tile-teaser--type-2 .tile-teaser__body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        top: 0;
        left: auto;
        width: 45%;
    }
}
@media ( min-width: 992px ) {
    .tile-teaser__img-wrap {
        height: 22em;
    }
}
@media ( min-width: 1200px ) {
    .tile-teaser__img-wrap {
        height: 25em;
    }
    .tile-teaser--type-2 .tile-teaser__body {
        padding: 100px;
    }
}
