/*
* blog
*/
#blog-posts {
	text-align: center;
}

#blog-posts > div {
	clear: both;
}

#blog-posts .col-8 {
	float: none;
	margin: 0 auto;
}

#blog-posts > div:not(:last-child) {
	margin-bottom: 64px;
}

.date {
	color: #1e1e1e;
	font: 27px / 27px 'Baloo Paaji', cursive;
	margin-bottom: 36px;
}

.date span {
	display: block;
	text-transform: uppercase;
}

.date .day {
	font-size: 76px;
	line-height: 66px;
}

.date:after {
	background: url('../img/triangle-down.svg') center bottom no-repeat;
	content: '';
	display: block;
	margin: 0 auto;
	height: 24px;
	width: 60px;
}

.post-image {
	overflow: hidden;
	position: relative;
}

.post-image img {
	display: block;
	transition: transform 0.35s;
    transform: scale(1.12);
	width: 100%;
}

.post-image:hover img {
    transform: scale(1);
}

.post-image .post-info {
	position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
}

.post-info p {
	background-color: rgba(255,255,255, 0.7);
	color: #1e1e1e;
	display: inline-block;
	font: 700 18px / 28px 'Open Sans', Arial, sans-serif;
	margin: 0 auto;
	padding: 20px 74px;
}

.post-info span {
	padding: 0 5px;
}

.categories a {
	color: #efa842;
	text-decoration: none;
}

.categories a:hover {
	color: #1e1e1e;
}

.post h2 {
	font: 45px / 50px 'Baloo Paaji', cursive;
	margin-bottom: 20px;
	padding-top: 41px;
}

.post h2 a {
	color: #1e1e1e;
	text-decoration: none;
}

.post h2 a:hover {
	color: #f0a842;
	text-decoration: underline;
}

.pagination a,
.pagination span {
	border-radius: 50%;
	color: #919191;
	font: 700 16px/35px 'Open Sans', sans-serif;
	display: inline-block;
	height: 35px;
	text-align: center;
	text-decoration: none;
	width: 35px;
}

.pagination a.next,
.pagination a.prev {
	display: none;
}

.pagination span.current,
.pagination a:hover {
	background-color: #efa741;
	color: #fff;
}

