@charset "UTF-8";
/* CSS Document */

.uitgelicht-banner {
	grid-template-columns: 0.8fr 1fr;
	gap: var(--std-gap);
}

.uitgelicht-banner .icon-list {
	padding-top: 100px;
	padding-bottom: 50px;
}

.uitgelicht-banner .afbeelding {
	gap: 100px;
	align-content: space-between;
}

.uitgelicht-banner .afbeelding img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin-top: -50%;
	box-shadow: 0 0 10px 5px rgba(0,0,0,0.1);
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
	.single-productgroep .donkere-banner-top {
		padding-bottom: 10%;
	}
	
    .uitgelicht-banner {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.uitgelicht-banner .afbeelding {
		grid-row: 1;
		justify-items: end;
		grid-template-columns: 1fr 1fr;
		align-items: end;
	}
	
	.uitgelicht-banner .afbeelding img {
		margin-top: -10%;
	}
	
	.uitgelicht-banner .afbeelding h1 {
		font-size: 46px;
		line-height: 57px;
	}

}

@media screen and (max-width: 768px) {
	.single-productgroep .donkere-banner-top {
		padding-bottom: 50%;
	}
	
	.uitgelicht-banner .afbeelding {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.uitgelicht-banner .afbeelding img {
		margin-top: -50%;
	}
	
	.uitgelicht-banner .afbeelding h1 {
		font-size: 36px;
		line-height: 47px;
	}
}