body {
	background-color: #f8fafb;
}

.post-list {	
	width: 90vw;
	margin : 40px auto 0; 
}

.archive-subtitle {
	margin: 160px 0 100px;
	text-align: center;
	text-transform: uppercase;
}

.nav-pills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.filter {
	margin: 0 18px;
	padding: 15px 25px;
	border: 1px solid #BC8E4E;
	border-radius: 30px;
	color: #BC8E4E;
	cursor: pointer;
	transition: all ease-in-out 0.2s;
	box-shadow: 0px 4px 30px -5px rgba(0, 0, 0, 0);
}

.selected .filter {
	color: #23252B;
	border: 1px solid #23252B;
}

.filter.active {
	border: 1px solid #BC8E4E;
	color: #BC8E4E;
}

.filter:hover {
	box-shadow: 0px 4px 30px -5px rgba(0, 0, 0, 0.1);
	background-color: #BC8E4E;
	color: #fff;
}

#article-list article:not(.loaded) {
	display: none;
}

/*seemore*/
.misha_loadmore {
	display: block;
	margin: 0 auto 100px auto; 
	height: 208px;
	width: 208px;
	border-radius: 210px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 300;
	transition: background ease-in-out 0.2s;
	background: url('../svg/down.svg') no-repeat center 80%;
	background-size: 20px auto;
	cursor: pointer;
}

.misha_loadmore:hover {
	background: url('../svg/down.svg') #E0E6EF no-repeat center 82%;
	background-size: 20px auto;
}


.post {
	margin-bottom: 5px;
}

article a {
	text-decoration: none;
}

.post-content {
	transform: translateY(-40px);
	padding: 32px;
	background: #F8FAFB;
	border: 1px solid #000000;
	border-radius: 14px;
}

.post-title {
	margin-top: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 2.1rem;
	text-transform: uppercase;
	font-weight: bold;
}

.post-attachement-link {
	display: block;
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 128%;
}

.attachment-post-thumbnail, .attachment-post-thumbnail img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
	transition: border-radius ease-in-out 0.3s;
}

.post:hover .attachment-post-thumbnail, .post:hover .attachment-post-thumbnail img {
	border-radius: 42%;
}

.desc-post {
	margin-bottom: 8px;
	font-size: 22px;
}

.desc-post p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	min-height: 54px;
}

article .post-more {
	float: right;
	text-decoration-line: underline;
	color: #BC8E4E;
}

@media (min-width: 1024px) {
	.page-header {
		display: flex;
		align-items: center;
		padding-top: 110px;
	}
	.page-header-image {
		flex-basis: 60%;
		min-width: 60%;
		max-width: 60%;
		width: 60%;
	}
	.page-header-content {
		padding-left: 76px;
		padding-right: 35px;
		flex-basis: 40%;
		max-width: 473px;
	}
	.post {
		margin-bottom: 80px;
	}
}

@media (min-width: 600px) {
	.post-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 100px auto 0;
	}
	article	{
		flex-basis: 558px;
		max-width: calc(50% - 30px);
	}

}

@media (max-width: 1023px) and (min-width: 600px) {
	.post-list {
		margin: 80px auto;
	}
	article	{
		flex-basis: 558px;
		max-width: calc(50% - 30px);
	}
}

@media (min-width: 1023px) {
	.post-list {
		width: 66%;
		min-width: 960px;
	}
}

@media (max-width: 1023px) {
	.page-header {
		position: relative;
	}
	.page-header-image img {
		height: 100vh;
		width: 100%;
		object-fit: cover;
	}
	.page-title {
		position: absolute;
		bottom: 65px;
		width: 200px;
		left: 30px;
		color: #fff;

	}
	.archive-description {
		display: none;
	}
	.nav-pills {
		justify-content: flex-start;
		padding-left: 12px;
		padding-right: 12px;
	}
	.filter {
		margin-bottom: 12px;
	}
	.archive-subtitle {
		margin: 30px;
		text-align: left;
	}
	.site-header:not(.scrolled) .menu-toggle span {
		background-color: #fff;
	}
	.site-header:not(.scrolled) #searchNav path {
		stroke: #fff;
	}
}

@media (min-width: 1023px) and (max-width:  1500px) {
	.post-list .post-title {
		font-size: 1.7rem;
		min-height: 64px;
	}
	.desc-post {
		font-size: 1.8rem
	}
}