body {
	background-color: #f8fafb;
}

.post-list {	
	width: 1267px;
	max-width: calc(100% - 60px);
	margin : 0px auto 40px; 
}

.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 10px;
	padding: 10px 12px;
	border: 1px solid #23252B;
	border-radius: 30px;
	color: #23252B;
	cursor: pointer;
}

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

.post {
	margin-bottom: 15px;
}

article a {
	text-decoration: none;
}

.post-content {
	transform: translateY(-40px);
	padding: 32px;
	background: #F8FAFB;
	border: 1px solid #000000;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	border-bottom-right-radius: 0;
	transform: translate(0, 40px);
	transition: transform ease-in-out 0.2s, border-radius ease-in-out 0.2s;
}

.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 img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.post:hover .attachment-post-thumbnail {
	border-bottom-right-radius: 61px;
}

.post:hover .post-content {
	transform: translate(24px, 40px);
	border-bottom-right-radius: 61px;
}

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

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

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

.post a {
	display: flex;
	flex-direction: column-reverse;
}

/*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;
}


@media (min-width: 1023px) {
	.page-header {
		padding-top: 110px;
		display: flex;
		align-items: center;
	}
	.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;
	}
	.filter {
		margin: 0 18px;
		padding: 15px 25px;
	}
	.post {
		margin-bottom: 123px;
	}

}

@media (min-width: 600px) {
	.post-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 100px auto;
	}
	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 (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;
	}
}