.newsList {
    text-align: center;
}

.newsItem .image .inside {
    height: 220px;
}

a.newsItem {
    display: inline-block;
    width: 33.33334%;
    vertical-align: top;
    text-align: left;
}

a.newsItem:hover {
 text-decoration: none;
}

.newsItem > .inside {
    margin: 10px;
    background: #ffffff;
    min-height: 500px;
    position: relative;
    box-shadow: 0px 0px 2px rgba(88, 87, 87, 0.45);
    transition: all .2s ease-in-out;
}

.newsItem:hover > .inside {
    box-shadow: 0px 2px 6px rgba(88, 87, 87, 0.7);
}
.newsItem .image {
 position: relative;
}

.newsItem .newsDate {
    position: absolute;
    bottom: -30px;
    left: 5px;
    background: #e86f2d;
    z-index: 2;
    border-radius: 50%;
    width: 40px;
    height: 35px;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    padding: 15px 10px 10px 10px;
    line-height: 17px;
    text-transform: uppercase;
}

.row.bg-d .newsContent > .inside-padding {
    padding: 45px 20px 60px 20px;
}

.newsItem .newsTitle {
    color: #c9b59a;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 15px;
}

.newsItem .readMore {
    color: #e86f2d;
    font-weight: 700;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    transition: all .2s ease-in-out;
}

a.newsItem:hover .readMore {
    color: #C35D25;
}