.at-highlight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-bottom: 5em;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px -3px #9E9E9E;
}

.at-highlight__imageContainer img {
    width: 100%;
}

.at-highlight__body {
    padding: 0 2em;
}

.at-highlight__title {
    margin: .6em 0 0;
}

.at-highlight__subTitle {
    display: block;
    margin-bottom: 1em;
    font: normal 1.3em/1.3 'IM Fell Double Pica SC', 'Times New Roman', serif;
    text-transform: lowercase;
    letter-spacing: .1em;
    color: #666;
}

.at-highlight__title + p {
    margin-top: 1em;
}

@media screen and (min-width:415px) {
    .at-highlight {
        flex-direction: row;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        align-items: center;
    }

    .at-highlight__imageContainer {
        flex-basis: 33.3%;
        min-width: 200px;
    }

    .at-highlight__body {
        text-align: center;
    }
}

