#soortLichtstraten {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 35px;
}
#soortLichtstraten .optie {
	/* display: block;  */
	border-radius: 10px; overflow: hidden;
	position: relative;
	aspect-ratio: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#soortLichtstraten .optie::before {
	content: ''; 
	position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 40%, rgba(0, 0, 0, 0.50) 100%);
	transition: all 0.3s ease-in-out; opacity: 1;
}
#soortLichtstraten .optie:hover::before {
	/* opacity: 0.75; */
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.50) 100%);
}
#soortLichtstraten .optie > img {
	/* aspect-ratio: 1 / 2;  */
	object-fit: cover;
	width: 100%; position: absolute; z-index: 0; inset: 0;
	height: 100%;
	vertical-align: middle;
}
#soortLichtstraten .optie > .optie-content {
	/* position: absolute; bottom: 0; left: 0; right: 0;  */
	z-index: 3;
	padding: 30px 20px; color: #ffffff;
}
#soortLichtstraten .optie > .optie-content .optie-title {
	color: inherit; font-size: 40px; margin-bottom: 0;
}
#soortLichtstraten .optie > .optie-content .prijsklasse {
	display: inline-block; margin-top: 1em;
	background-color: #213C31; padding: 4px 16px;
	border-radius: 5px; font-weight: 800;
}
#soortLichtstraten .optie > .optie-hover-content {
	/* position: absolute; bottom: 0; left: 0; z-index: 5; */
	background-color: #ffffff;  z-index: 5;
	border-top-left-radius: 10px; border-top-right-radius: 10px;
	padding: 0 20px ; width: 100%; overflow: hidden;
	display: grid; opacity: 0; 
	grid-template-rows: 0fr; transition: all 0.3s ease-in-out;
}
#soortLichtstraten .optie:hover > .optie-hover-content {
	grid-template-rows: 1fr; opacity: 1;
	 padding: 20px;
	 height: 50%;
}
#soortLichtstraten .optie .optie-hover-content-wrapper {
	overflow: hidden;
}
#soortLichtstraten .optie > .optie-hover-content .kleuren-content {
	display: flex; align-items: center; gap: 8px;
}
#soortLichtstraten .optie > .optie-hover-content .kleur {
	width: 20px; height: 20px; border-radius: 100%;
}
#soortLichtstraten .optie > .optie-hover-content .straat-usps {
	margin-top: 1em;
}
#soortLichtstraten .optie > .optie-hover-content .prijsklasse {
	display: none; margin-top: 1.5em; font-family: 'avenir-next-demibold';
	font-size: 16px;
}

@media screen and (min-width: 1025px) {
	#soortLichtstraten .optie > .optie-hover-content {
		height: 0;
	}
}

@media screen and (max-width: 1024px) {
	#soortLichtstraten {
		grid-template-columns: repeat(2, 1fr); gap: 20px;
	}
	#soortLichtstraten .optie > .optie-content {
		padding: 20px;
	}
	#soortLichtstraten .optie > .optie-content .optie-title {
		font-size: 30px;
	}
	#soortLichtstraten .optie > .optie-content .prijsklasse {
		display: none;
	}
	#soortLichtstraten .optie > .optie-hover-content .prijsklasse {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	#soortLichtstraten {
		display: flex; flex-direction: row; gap: 25px;
		overflow: auto; padding-bottom: 40px;
	}
	#soortLichtstraten .optie {
		flex-shrink: 0; max-width: calc(100vw - 100px);
	}
	#soortLichtstraten .optie > .optie-hover-content {
		opacity: 1; grid-template-rows: 1fr; padding: 20px;
		height: auto;
	}
}