/* BLOG, CATEGORY */
.blog > .container, .category > .container {
	padding: 100px 0;
	display: flex;
	flex-wrap: wrap;
}

.blog article, .category article {
	flex: 33.333%;
	max-width: 33.333%;
	box-sizing: border-box;
	margin: 0 0 40px 0;
	padding: 0 20px;
	vertical-align: top;
	color: #fff;
	position: relative;
}

.blog article .content, .category article .content {
	padding: 30px;
	box-sizing: border-box;
	background: #1b1b1b;
	margin-top: -2px;
	border-radius: 5px;
}

.blog article .article_image, .category article .article_image {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.blog_meta_date {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 5px 9px;
	background: rgba(255, 255, 255, 0.7);
	color: #1b1b1b;
	border-radius: 3px;
	display: inline-block;
	margin-bottom: 10px;
}

.post-categories li {
	display: inline-block;
	margin-right: 10px;
}

.post-categories li a {
	font-size: 13px;
	font-style: italic;
	text-transform: uppercase;
	color: grey;
}

.post-categories li a:hover {
	color: #fff;
}

.blog .article_image .blog_meta_date, .category .article_image .blog_meta_date {
	position: absolute;
	top: 30px;
}

.blog article img, .category article img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.blog article h2, .category article h2 {
	margin: 10px 0 10px 0;
}

.blog article h2 a, .category article h2 a {
	color: #fff;
}

.blog .blog_button_link, .category .blog_button_link {
	color: grey;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all ease 0.4s;
	font-size: 13px;
}

.blog .blog_button_link:hover, .category .blog_button_link:hover {
	color: #fff;
}

/* single */
.single-post > .container {
	width: 800px;
	padding: 100px 0;
}

.single-post .post-categories li a:hover {
	color: #1b1b1b;
}

.single-post > .blog_single_title  {
	padding: 50px 0;
	background: #eee;
	text-align: center;
}

.single-post .blog_single_title > h1 {
	text-align: center;
	margin: 20px 0 10px;
	padding: 0 !important;
}

.single-post h2 {
	margin: 20px 0 20px;
}

.single-post .container article img {
	margin-bottom: 30px;
}