.c-postBanner {
    position: relative;
    margin: 2em 0;
    padding: 1.3em;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,.1);
    background-color: hsla(0,0%,100%,.8);
    transition: transform 0.4s cubic-bezier(.21,.48,.53,.96);
    transform: scale(1.0001);
    will-change: transform;
}

@media screen and (min-width: 960px) {
    .c-postBanner {
        padding: 1.8em;
    }
}

.c-postBanner:hover {
    transform: scale(1.04);
}

.c-postBanner__preTitle {
    margin-bottom: 0.5em !important;
}

.c-postBanner__overlayMainLink {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -999em;
}