div.blogList {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

div.blogList div.bItem {
	flex: 0 0 50%;
}

@media (max-width: 61.9rem) {
	div.blogList div.bItem {
		flex: 0 0 100%;
	}
}

div.blogList div.biaWrapper {
	display: grid;
	grid-template-columns: 20% auto;
	grid-template-rows: 15em;
	grid-gap: 1em;
	overflow: hidden;
	padding: 0.5em;
}

div.blogList figure {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

div.blogList header {
	margin-bottom: 1em;
}

div.blogList article {
	color: #2b2d42 !important;
	width: 100%;
	height: 100%;
}

body#body_blog section.articleView {
	display: block;
	width: 100%;
	margin-bottom: 5em;
}

body#body_blog section.articleView header {
	display: block;
	margin: 2em 0;
}

body#body_blog section.articleView header div.subText {
	text-align: right;
}

body#body_blog section.articleView article {
	margin: 1em;
}

body#body_blog section.articleView article h2 {
	display: block;
	margin-top: 2em;
	margin-bottom: 0.5em;
}

body#body_blog section.articleView article p {
	display: block;
	margin-left: 1em;
}

body#body_blog section.articleView article ul, body#body_blog section.articleView article ol {
	display: block;
	margin: 1em 2em;
}

body#body_blog section.articleView article ol li {
	list-style: initial;
}