.projects-filters{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 0 80px;
}
.projects-filters .counter{
	width: 100%;
	margin-top: 20px;
	font-weight: 500;
	color: var(--wp--preset--color--grau);
}
.projects-filters .reset{
	font-weight: 500;
}
.projects-grid{
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	grid-auto-rows: 350px;
	gap: 20px;
}
.projects-grid .big-image{
	display: none;
}
.projects-grid > a:nth-child( 12n + 5 of :not([hidden]) ),
.projects-grid > a:nth-child( 12n + 7 of :not([hidden]) ){
	grid-column: span 2;
	grid-row: span 2;
}
.projects-grid > a:nth-child( 12n + 5 of :not([hidden]) ) .small-image,
.projects-grid > a:nth-child( 12n + 7 of :not([hidden]) ) .small-image{
	display: none;
}
.projects-grid > a:nth-child( 12n + 5 of :not([hidden]) ) .big-image,
.projects-grid > a:nth-child( 12n + 7 of :not([hidden]) ) .big-image{
	display: block;
}
.projects-grid > a{
	position: relative;
	display: block;
}
.projects-grid > a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.projects-grid > a .hover{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 40px;
	background: rgba(0,91,189,.8);
	color: #fff;
	font-size: 20px;
	line-height: 1.3;
	text-align: center;
	opacity: 0;
	transition: opacity .3s ease;
}
.projects-grid > a:hover .hover{
	opacity: 1;
}