.nv-index-posts {
    padding-right: 0 !important;
}
.blog-card {
	width: 100%;
}
.blog-card:not(:last-of-type) {
    border-bottom-style: dashed;
    border-bottom-color: #e5e5e5;
    border-bottom-width: 1px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.blog-detail p {
    margin-bottom: 0px;
}
.blog-content {
	display: flex;
	flex-direction: row;
    background: rgba(230,238,233,1);
    height: 350px;
}
.blog-thumbnail {
	overflow: hidden;
    position: relative;
	max-width: 35%;
	display: inline-block;
}
.blog-thumbnail img {
	height: 350px;
    width: 500px;
    max-width: 100%;
    object-fit: cover;
    display: block;
}
.blog-detail {
	text-align: left;
	padding: 0px 20px 0px 20px;
	display: block;
    flex: 1;
    align-self: center;
    color: #777;
    -webkit-line-clamp: 6; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.blog-readmore-link {
    margin-top: 20px;
}
.blog-readmore-link a {
    color: #0d1523;
}
.blog-readmore-link a:hover {
    color: #018b98;
}
.blog-readmore-link a svg {
    fill: #0d1523;
    height: auto;
    width: 15px;
    margin-left: 6px;
    vertical-align: sub;
    display: inline-block;
}
.blog-title {
    color: #0e1523;
}
.blog-title h2 {
    font-weight: 500;
    line-height: 27px !important;
}
.blog-date p{
    color: #929292;
    font-size: 12px;
    margin-bottom: 20px;
}
.blog-date svg {
    width: auto;
    height: 12px;
    fill: #929292;
    stroke-width: 7px;
    margin-right: 5px;
    position: relative;
    top: 0;
    display: inline-block;
}
.blog-abstract {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

@media only screen and (max-width: 768px) {
    .blog-abstract {
        display: none;
    }
    .blog-thumbnail {
        height: 300px;
    }
    .blog-content {
        height: 300px;
    }
}

@media only screen and (max-width: 600px) {
    .blog-content {
        display: block;
        height: auto;
    }
    .blog-thumbnail {
        max-width: 100%;
    }
    .blog-detail {
        padding: 20px;
    }
}