.at-block {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all .1s ease-in .1s;
    -webkit-transform: scale(1);
    -ms-transition: all .1s ease-in .1s;
    -ms-transform: scale(1);
    -moz-transition: all .1s ease-in .1s;
    -moz-transform: scale(1);
    transition: all .1s ease-in .1s;
    transform: scale(1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px -2px #000;
}

.at-block:hover {
    -webkit-transition: all .1s ease-in .1s;
    -webkit-transform: scale(1.05);
    -ms-transition: all .1s ease-in .1s;
    -ms-transform: scale(1.05);
    -moz-transition: all .1s ease-in .1s;
    -moz-transform: scale(1.05);
    transition: all .1s ease-in .1s;
    transform: scale(1.05);
    z-index: +1;
    box-shadow: 0 2px 8px -2px #000;
}

.at-block--hasImage {
    background-color: rgba(0, 0, 0, 0.33);
}

.at-block--hasVideo {
    position: relative;
    overflow: hidden;
    padding-top: 50%;
    background: #000 no-repeat;
    background-size: cover;
}

@media screen and (min-width: 678px) {
    .at-block--hasVideo .u-videoWrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
}

.at-block__link--play {
    background: url(../../img/play.png) no-repeat 50% 50%;
}

.at-block__placeholderImage {
    display: block; /** removes whitespace under image */
    width: 100%;
}

.at-block--hasImage .at-block__textContainer {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.33);
    font-weight: bold;

}

.at-block__textContainer {
    padding: 40px;
}

.at-block--hasVideo .at-block__textContainer {
    position: absolute;
    top: 0;
    color: #fff;
    right: 0;
    bottom: 0;
    left: 0;
}

.at-block__articleTitleElement {
    margin-top: 0;
    font-size: 23px;
    color: inherit;
}

.at-block__linkUrl {
    display: block;
}

.at-block__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

.at-block__article:hover .at-block__linkUrl {
    color: #ea5b0c;
}

@media screen and (min-width: 680px) {
    .at-block {
        padding-top: 60%;
    }

    .at-block__placeholderImage {
        display: none;
    }

    .at-block__textContainer {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
    }
}