.at-teaser {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.at-teaser--hasImage {
    color: #fff;
}

.at-teaser__bg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    transition: 420ms;
}

.at-teaser:hover > .at-teaser__bg {
    transform: scale(1.06);
}

.at-teaser__content {
    position: relative;
    height: 100%;
    min-height: 18em;
    padding: 32px;
}

.at-teaser__label {
    font-weight: 500;
    font-size: 1.125em;
}

[class*='at-teaser__label--'] {
    padding: .1em .5em;
    color: #fff;
}

.at-teaser__label--blue {
    background: #00a8e6;
}

.at-teaser__label--red {
    background: #d12953;
}

.at-teaser__title {
    font: normal 2em/1.2 'pt-serif-italic', serif;
    color: inherit;
}

.at-teaser__title--large {
    font-size: 2.5em;
}

.at-teaser--hasImage .at-teaser__title {
    text-shadow: 0 1px 3px #000;
}

.at-teaser__title::after {
    transform: translateX(-.3em);
    transition: all 420ms;
}

.at-teaser:hover .at-teaser__title::after {
    transform: translateX(0);
}

.at-tease__link {
    font-weight: 500;
    color: #1779ba;
}