.productslisting .listing{
	gap: 60px 0;
}
.productslisting .row + .listing{
	margin-top: 80px;
}
.productslisting .listing-filter{
	margin: 80px 0 40px;
}
.productslisting .counter{
	margin-bottom: 80px;
	font-size: 14px;
	line-height: 1.5714;
	color: var(--wp--preset--color--dark-grey);
}
.productslisting .listing a{
	font-style: normal;
	text-decoration: none;
}
.productslisting .image{
	overflow: hidden;
	position: relative;
	aspect-ratio: 1;
	background: #fbfbfb;
}
.productslisting .image img{
	transition: transform .3s ease;
}
.productslisting a:hover .btn{
	font-style: italic;
	text-decoration: underline;
}
.productslisting a:hover .image img{
	transform: scale(1.1);
}
.productslisting .category{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 5px 10px;
	background: var(--wp--preset--color--light-blue);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5714;
	color: var(--wp--preset--color--etel-blau);
	text-transform: uppercase;
}
.productslisting .excerpt{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--wp--preset--color--dark-grey);
}

@media (max-width: 767px){
	.productslisting .search-wrapper{
		margin-top: 40px;
	}
	.productslisting .listing-filter{
		margin: 20px 0 30px;
	}
	.productslisting .counter{
		margin-bottom: 40px;
	}
	.productslisting .listing{
		gap: 40px 0;
	}
	.productslisting .listing a{
		display: flex;
		gap: 20px;
	}
	.productslisting .image{
		width: 98px;
		flex-shrink: 0;
		background: none;
	}
	.productslisting .text{
		flex-grow: 1;
	}
	.productslisting .category{
		position: static;
		display: inline-block;
	}
	.productslisting .excerpt{
		-webkit-line-clamp: 3;
	}
}