#recommendations,
#recommendations * {
    box-sizing: border-box;
}

#recommendations {
    position: relative;
    float: left;
    width: 100%;
    margin: .5em 0 0;
    padding: .75em 0 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

#recommendations > .title {
    color: #808080;
    font-weight: bold;
    margin: 0 0 .5em 0;
    padding: 0;
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
}

#recommendations > .title > a
{
	font-size: 11px;
	font-weight: normal;
	padding: 6px 10px 0 0;
}

#recommendations > ul,
#recommendations > ul > li,
#recommendations > ul > li > div {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

#recommendations > ul {
    width: 100%;
}

#recommendations > ul > li {
    width: 100%;
    padding-bottom: 1em;
}

#recommendations > ul > li > div {
    width: 100%;
}

#recommendations > ul > li > div > * {
    position: relative;
    display: block;
    float: left;
    clear: both;
    margin: 0;
    padding: 0;
    clear: both;
    width: 100%;
    line-height: 1;
}

#recommendations > ul > li > div > .cover {
    height: 0;
    margin: 0 0 7px;
	padding: 0 0 85%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: .25em;
}

#recommendations > ul > li > div > h5 {
    font-size: 15px;
}

#recommendations > ul > li > div > p {
    font-size: 12px;
    margin-top: 4px;
    color: #808080;
    display: none;
}

@media screen and (min-width: 481px) {
    #recommendations > ul > li {
        width: 50%;
        padding-right: 10px;
    }

    #recommendations > ul > li:nth-of-type(odd) {
        clear: left;
    }
}

@media screen and (min-width: 768px) {
    #recommendations > ul > li {
        width: 25%;
        padding-bottom: 0;
    }

    #recommendations > ul > li:nth-of-type(odd) {
        clear: none;
    }
}