﻿/* blog-listing */
.blog-listing .blog-item {
    margin-top: 40px;
}
.blog-listing {
    margin-bottom: 40px;
}

/* row */
.blog-item-row {
    margin-bottom: 20px;
    clear: both;
}
.blog-item-row::after {
    clear: both;
    display: table;
    content: ' ';
}

/* columns */
.blog-item-col-date {
    float: left;
    width: 10%;   
    min-width: 90px;             
}
.blog-item-col-title {
    float: left;
    width: 70%;    
    line-height: 24px;
}     

/* title */
.blog-item-title {
    font-weight: bold;
}

/* view all*/
.blog-item-more-link {
    font-weight: bold;
    margin-bottom: 15px;
}    

.blog-listing .blog-item .view-all:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 14px;
    background-image: url('../Images/arrow-right.png');
    background-size: 24px 14px;
    margin-left: 15px;
    padding-left: 5px;
}

@media screen and (min-width: 894px) {
    .blog-listing .blog-item .view-all:after {
        background: none;
        content: "›";
        font-size: 20px;
        margin: 0;
    }
}