.t-tile {
    width: 100%;
    margin-bottom: 32px;
    text-decoration: none;
}

.t-tiles__imageWrapper {
    overflow: hidden;
}

.t-tile:hover .t-tiles__image {
    transform: scale(1.05);
}

.t-tiles__image {
    padding-top: 51%;
    background-size: cover;
    transition: transform .3s ease-out;
}

.t-tiles__title {
    position: absolute;
    top: -1.6em;
    left: 0;
    display: block;
    max-width: calc(100% - 4rem);
    margin: 0;
    padding: .5rem 1.5rem 0 0;
    font-size: 1.75em;
    background: #fff;
}

.t-tiles__titleWrapper {
    display: block;
    padding-bottom: .7rem;
    box-shadow: 0 -3px 0 0 inset;
}

.t-tiles__titleSpan {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'adellesanscondensedsemibold', 'Arial Narrow', Arial, Helvetica, sans-serif;;
    text-overflow: ellipsis;
    color: #333;
}

.t-tile:hover .t-tiles__titleSpan {
    color: #666;
}

.t-tiles__text {
    position: relative;
    padding-top: 12px;
    line-height: 1.375;
}

@media screen and (min-width: 576px) {
    .t-tile {
        width: calc(50% - 16px);
    }
}

@media screen and (min-width: 768px) {
    .l-cl-md-4 .t-tile {
        width: 100%;
    }

    .t-tiles__title {
        top: -1.5em;
    }

    .l-cl-lg-12 .t-tile {
        width: calc(33.333% - 16px);
    }
}

@media screen and (min-width: 1024px) {
    .l-cl-md-8 .t-tile {
        width: calc(50% - 16px);
    }
}

