.youtube-overzicht-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}
@media screen and (max-width: 767px) {
	.youtube-overzicht-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
}
@media screen and (max-width: 479px) {
	.youtube-overzicht-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}
.youtube-item {
	cursor: pointer;
}

.youtube-image img {
	width: 100%;
	height: auto;
}
.youtube-textblock {
	padding: 1rem;
}

.youtube-textblock .text-style-5lines {
	min-height: 8rem;
}

.youtube-film-video {
	display: none;
}
.youtube-film {
	margin-top: 10px;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}
.youtube-film iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
