h2.screen-reader-text{
	display: none;
}
.pagination{
	display: flex;
	justify-content: center;
	padding-top: 32px;
	width: 100%;
}
.nav-links{
	display: flex;
	gap: 12px;
}
.nav-links .page-numbers{
	border-radius: 9999px;
	align-items: center;
	background-color: var( --color-contrast );
	display: flex;
	font-family: var(--font-family-headlines);
	font-size: 14px;
	font-weight: 600;
	height: 40px;
	justify-content: center;
	min-width: 40px;
	padding: 0 12px;
}
.nav-links .page-numbers:is(.next,.prev){
	border-radius: 12px;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current{
	background-color: var( --color-contrast-plus );
}
#content .nav-links .page-numbers{
	color: white;
}
.content-blog{
	padding: 0 64px;
	flex-direction: row-reverse;
}
.content-posts{
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	padding-bottom: 64px;
	width: 100%;
}
.content-post{
	background-color: white;
	box-shadow: 0 5px 10px 2px rgba(0,0,0,0.07);
	display: flex;
	flex-direction: column;
	width: calc(100% / 2 - 9px);
	justify-content: end;
}
.content-post header{
	align-items: center;
	display: flex;
	gap: 12px;
	font-size: 16px;
	font-weight: 600;
	padding: 18px;
	height: 80px;
}
.content-post h3{
	font-size: 16px;
	font-weight: 600;
}
.content-post .blog-img{
	aspect-ratio: 2.5;
	overflow: hidden;
	width: 100%;
}
.content-post .blog-img img{
	object-fit: cover;
	height: 100%;
	width: 100%;
	scale: 1;
	transition: scale .4s ease-in-out;
}
.content-post:hover .blog-img img{
	scale: 1.05;
}
.sidebar-blog{
	padding-left: 32px;
	min-width: 340px;
}
.filter{
	align-items: center;
	display: flex;
	gap: 24px;
	font-family: var(--font-family-headlines);
	font-weight: 600;
	font-size: 18px;
}
.filter span{
	position: relative;
}
.filter:hover span:after,
.filter.active span:after{
	background: var(--color-contrast);
	border-radius: 2px;
	content: "";
	display: block;
	height: 4px;
	position: absolute;
	width: 100%;
}
body:is(.archive, .blog) #breadcrumbs{
	font-family: var(--font-family-headlines);
	font-size: 24px;
	font-weight: 600;
	padding: 32px 0 32px 64px;
}
#breadcrumbs .trenner{
	margin: 0 8px;
}
#filter{
	position: sticky;
	top: 130px;
}
#filter > div{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#content{
	padding: 0;
}
@media screen and (max-width: 639.98px) {
	.content-post{
		height: fit-content;
		width: 100%;
	}
	.content-blog{
		padding: 0 12px;
	}
	.sidebar-blog{
		padding-bottom: 12px;
	}
	body:is(.archive, .blog) #breadcrumbs{
		padding: 24px 12px;
	}
	.nav-links .page-numbers{
		display: none;
	}
	.nav-links .page-numbers:is(.next,.prev,.current){
		display: flex;
	}
	.content-post header+div{
		display: none;
	}
}
@media screen and (min-width: 640px) {
	.container-sticky,
	.container-sticky .content-post{
		width: 100%;
	}
	.container-sticky .content-post{
		flex-direction: row;
		justify-content: start;
	}
	.content-post header+div{
		padding:0 18px 18px 18px;
	}
	.container-sticky .content-post .blog-img{
		aspect-ratio: .3;
		max-height: 306px;
		min-width: 49.2%;
		max-width: 49.2%;
	}
}
@media screen and (min-width: 640px) and ( max-width: 959.98px) {
	.content-blog{
		padding: 0 32px;
	}
	body.archive #breadcrumbs{
		padding: 24px 32px;
	}
}
@media screen and ( max-width: 959.98px) {
	.content-posts{
		padding-bottom: 32px;
	}
	.content-blog{
		flex-direction: column;
	}
	.sidebar-blog{
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 32px;
		min-width: unset;
	}
	
}
@media screen and (min-width: 960px) and ( max-width: 1200px) {
	.content-post{
		width: 100%;
	}
	.container-sticky .content-post .blog-img{
		max-height: 360px;
	}
}