/**
 * Blog Posts
 * =========================================== */

.blog-posts {
	position: relative;
	margin: -15px -16px;
	padding: 15px 0;
	background: #f1f1f1;
}
.blog-posts__filters {
	background-color: #fff;
	margin-bottom:15px;
	border: 1px solid #e3e4e8;
}
.blog-posts__filters:before,
.blog-posts__filters:after {
	content: '';
	display: table;
	clear: both;
}
.blog-posts__filter-status {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	font-size: 13px;
}
.blog-posts__filter-status > li {
	float: left;
	position: relative;
}
.blog-posts__filter-status > .active > a {
	color: #000;
}
.blog-posts__filter-status > li > a {
	display: block;
	padding: 10px 15px;
	cursor: pointer;
	position: relative;
	color: #333;
	text-decoration: none;
	color: #0073aa;
}
.blog-posts__filter-status > li:first-child > a {
	padding-left: 20px;
}
.blog-posts__filter-status > li > a:before {
	content: '';
	display: block;
	width: 100%;
	left: 0;
	bottom: -1px;
	height: 2px;
	background-color: #e3e4e8;
	position: absolute;
}
.blog-posts__filter-status > li > a:hover:before {
	background-color: #0073aa;
}
.blog-posts__filter-status > .active > a:before,
.blog-posts__filter-status > .active > a:hover:before {
	background-color: #32373c;
}
.blog-posts__filter-status > li > a > .count {
	color: #999;
	font-size: 12px;
	margin-left: 5px;
	display: inline-block;
	padding: 0 2px;
	border: solid 1px #999;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	height: 16px;
	width: 16px;
	line-height: 16px;
	text-align: center;
}

.blog-posts__list {
	background-color: #fff;
}
.blog-post__item {
	border: 1px solid #e3e4e8;
	font-size: 13px;
	background-color: #fff;
	position: relative;
	border-radius: 2px;
	padding: 15px 20px;
}
.blog-post__item + .blog-post__item {
	margin-top: -1px;
}
.blog-post__item-inner {
	padding-right: 50px;
}
.blog-post__title {
	color: #333;
	font-weight: 500;
	line-height: 1;
}
.blog-pages .blog-post__title {
	font-weight: 700;
	font-size: 14px;
	font-family: 'Noto Serif', serif;
}
.blog-post__title:hover {
	color: #00b9eb;
	text-decoration: none;
}
.blog-post__info {
	margin-top: 0;
}
.blog-post__date {
	font-size: 12px;
	color: #537994;
}
.blog-post__actions {
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -15px;
}
.blog-post__action-button {
	display: block;
	width: 30px;
	height: 30px;
	font-size: 20px;
	text-align: center;
	line-height: 30px;
	color: #0073aa;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.2s;
}
.blog-post__action-button:hover {
	background-color: #e3e4e8;
}
.open > .blog-post__action-button {
	transform: rotate(90deg);
	background-color: #e3e4e8;
}
.blog-post__actions-dropdown > li > a:hover {
	background-color: #e3e4e8;
	color: #262626;
	text-decoration: none;
}
.blog-post__actions-dropdown > li > a {
	padding: 5px 15px;
	display: block;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
	user-select: none;
}
.blog-post__actions-dropdown {
	font-size: 13px;
	display: none;
	position: absolute;
	top: 100%;
	right: -27px;
	z-index: 1000;
	min-width: 160px;
	padding: 5px 0;
	margin: 5px 0 0;
	list-style: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 2px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
}
.open .blog-post__actions-dropdown {
	display: block;
}
.blog-post__actions-dropdown:before {
	margin: 0 -6px;
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	bottom: 100%;
	right: 41px;
	border-width: 6px;
	border-bottom-color: #ccc;
}
.blog-post__actions-dropdown:after {
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	bottom: 100%;
	right: 41px;
	border-width: 5px;
	margin: 0 -5px;
	border-bottom-color: #fff;
}
.blog-post__actions-dropdown > li > a {
	padding: 5px 15px;
	display: block;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
}
.blog-post__actions-dropdown > li > a:hover {
	background-color: #e3e4e8;
	color: #262626;
	text-decoration: none;
}
