.post-list {
	margin: 0 0 72px 0;
}
.post-border {
	border-bottom: 3px double $border_light;
	border-top: 3px double $border_light;
	padding: 24px 0;
}
.post-date {
	padding: 0 1em 0 0;
}
.post-thumb {
    height: 150px;
    overflow: hidden;
    margin: 24px auto;
    width: 100%;
	img {
		height: auto;
		left: 50%;
		position: relative;
		top: 50%;
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
		width: 100%;
		&:hover {
			-webkit-filter: grayscale(100%);
			filter: grayscale(100%);
		}
	}
}
.excerpt {
	padding: 0 0 16px 0;
}
.read-more a {
	border-bottom: 1px dotted $border_light;
	border-top: 1px dotted $border_light;
	display: block;
	padding: 16px 0;
	&:hover {
		background: $light_grey;
	}
}
.no-post {
	min-height: 300px;
}