@charset "UTF-8";

.blog-search {
	display: flex;
	margin-bottom: 25px;
	justify-content: flex-end;
}
.blog-search-input {
	width: 100%;
	max-width: 250px;
	height: 38px;
	margin-left: auto;
	padding: 3px 0 3px 20px;
	line-height: 30px;
	background: #fff;
	outline: none;
	font-size: 15px;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
	border: 1px solid #ddd;
	border-right: none;
	transition: all ease 0.25s;
}
.blog-search-input.wide {
	max-width: unset;
}
.blog-search-button {
	width: 48px;
	height: 38px;
	line-height: 36px;
	background: #fff;
	border: 1px solid #ddd;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	transition: all ease 0.25s;
	font-size: 16px;
	color: #777;
}
.blog-search-button:hover,
.blog-search-button:active,
.blog-search-button:focus {
	outline: none;
	color: #333;
	background: #eee;
}
.blog-search-input:focus, .blog-search-input:focus + .blog-search-button {
	border-color: #07c;
}

.blog-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-post-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.blog-post-preview {
}

.bpp-heading {
	position: relative;
}
.bpp-badges {
	position: absolute;
	top: 0;
	right: 0;
}
.bpp-badge {
	float: left;
	margin-left: 5px;
	font-size: 18px;
	padding: 5px;
	background: #eee;
	border-radius: 100px;
	width: 32px;
	height: 32px;
	text-align: center;
}
.bpp-badge.pin {
	color: #555;
}
.bpp-badge.new {
	color: #d21;
}

.bpp-heading h2 {
	margin: 10px 0 5px 0;
	padding: 0;
}
.bpp-heading a {
	color: #23527c;
}
.bpp-info {
	font-size: 13px;
	color: #777;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}
.bpp-image {
	margin: 15px 0;
}
.bpp-intro {
}
.bpp-content {
}
.bpp-read-more {
	font-size: 13px;
	text-align: right;
}

.blog-sidebar-bsp {
}
.blog-sidebar-bsp + .blog-sidebar-bsp {
	margin-top: 25px;
}
.bsp-heading {
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 18px;
	text-transform: uppercase;
}
.bsp-heading h4 {
	margin: 0 0 15px 0;
	border-bottom: 2px dotted #ccc;
}
.bsp-body {
	font-size: 16px;
}

.blog-post-comments {
	margin-top: 30px;
}
.bpc-heading > h4 {
	margin: 15px 0;
	text-transform: uppercase;
}

.blog-sidebar-separator {
	padding-top: 30px;
	border-top: 1px solid #ddd;
	margin-top: 30px;
}

.blog-history-years {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-history-months {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-history-posts {
	list-style: none;
	margin: 0 0 0 2px;
	padding: 0 0 0 13px;
	border-left: 1px solid #eee;
}

.blog-history-year {
	display: block;
	margin-top: 15px;
	font-weight: bold;
	font-size: 16px;
	border-bottom: 1px solid #eee;
	color: #333;
}
.blog-history-month {
	display: block;
	margin-top: 10px;
	font-size: 15px;
	color: #333;
}
.blog-history-post {
	display: block;
	padding: 3px 0;
	font-size: 14px;
	line-height: normal;
}

.blog-comments {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.blog-comments ul {
	list-style: none;
	margin: 0;
	padding: 0 0 0 15px;
	border-left: 1px solid #ddd;
}
.blog-comments li {
	margin-top: 15px;
}
.blog-comment {
}
.bc-image {
	float: left;
	width: 60px;
	height: 60px;
	border: 1px solid #ddd;
	margin-right: 15px;
}
.bc-comment {
	overflow: hidden;
}
.bcc-topinfo {
	font-size: 12px;
	color: #999;
	margin-bottom: 5px;
}
.bcc-comment {
	font-size: 13px;
}
.bcc-bottominfo {
	margin-top: 5px;
	font-size: 12px;
	color: #999;
}
.blog-comment-title {
	margin: 0 0 15px 0;
}
.blog-comment-count {
	font-size: 80%;
	color: #777;
}
.blog-comment-reply {
	font-size: 13px;
}

.blog-collapse-plus,
.blog-collapse-plus:hover,
.blog-collapse-plus:focus,
.blog-collapse-plus:active {
	text-decoration: none;
}
.blog-collapse-plus:after {
	content: "+";
	display: inline-block;
	text-align: center;
	height: 19px;
	width: 19px;
	line-height: 19px;
	font-size: 18px;
	font-weight: bold;
	font-family: monospace;
	text-decoration: none;
	color: #fff;
	background: #666;
	border-radius: 2px;
}
.blog-collapse-plus[aria-expanded=true]:after {
	content: "–";
}
.blog-collapse-plus.indented:after {
	margin-left: 10px;
}
