.recommended {
    margin: 20px 0;
}
.recommended__item {
    width: 30%;
    float: left;
    box-sizing: border-box;
    margin: 0 1.5%;
}
.recommended__item-wrapper {
    text-decoration: none;
    padding: 15px;
    display: inline-block;
    margin: 0 auto;
    border-radius: 2px;
    transition-duration: 200ms;
}
.recommended__item-wrapper:hover {
    box-shadow: 0 0 10px #999;
    transition-duration: 200ms;
}
.recommended__item-image {
    width: 185px;
    height: 103px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}
.recommended__item-name {
    text-align: center;
}
.recommended__item-location {
    color: #182d39;
}

@media screen and (max-width: 415px) {
    .recommended__item {
        width: 100%;
        float: none;
        margin: 0 auto;
    }
    .recommended__item-wrapper {
        width: 100%;
    }
}
