.promos{
    width:980px;
    margin:18px auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.promo{
    font-family:
        "Lucida Grande",
        Helvetica,
        Arial,
        sans-serif;
    position:relative;
    width:232px;
    height:150px;
    background:
        linear-gradient(
            to bottom,
            #fafafa 0%,
            #eeeeee 100%
        );
    border:3px solid #ffffff;
    border-radius:5px;
    box-shadow:
        inset 0 0 0 1px #ffffff,
        0 1px 2px rgba(0,0,0,.30);
    overflow:hidden;
}

.promo:last-child {
    border-right:0;
}

.promo img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
        transform .35s ease;
}
.promo:hover img {
    transform:
        scale(1.05);
}

.promo-text {
    position:absolute;
    bottom:15px;
    left:0;
    width:100%;
    text-align:center;
    background:
    rgba(255,255,255,.8);
    padding:8px 0;
}
.promo-text h3 {
    margin:0;
    font-size:20px;
    font-weight:normal;
}
.promo-text p {
    margin:4px 0 0;
    font-size:12px;
    color:#666;
}