.vvge-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vvge-slider {
	--vvge-slide-h: 730px;
	--vvge-slide-maxw: 1300px;
	--vvge-slide-radius: 20px;

	position: relative;
	max-width: var(--vvge-slide-maxw);
	margin-inline: auto;
}

.vvge-slider__viewport {
	position: relative;
	width: 100%;
	height: var(--vvge-slide-h);
	overflow: hidden;
	background: #111;
	border-radius: var(--vvge-slide-radius);
	clip-path: inset(0 round var(--vvge-slide-radius));
}

.vvge-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.55s ease;
}

.vvge-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.vvge-slide__link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: var(--vvge-slide-radius);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	color: inherit;
	text-decoration: none;
}

.vvge-slide__link:focus-visible {
	outline: 3px solid #fff;
	outline-offset: -3px;
	border-radius: var(--vvge-slide-radius);
}

.vvge-slide__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	border-radius: var(--vvge-slide-radius);
}

.vvge-slide__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 1.75rem 1.75rem 2rem;
	z-index: 2;
}

.vvge-slide__row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	max-width: 100%;
}

.vvge-slide__text {
	pointer-events: none;
	max-width: 250px;
	text-align: left;
	font-family: Sagace;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 400;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.vvge-slide__text > *:first-child {
	margin-top: 0;
}

.vvge-slide__text > *:last-child {
	margin-bottom: 0;
}

.vvge-slide__arrow {
	flex: 0 0 auto; /* uitlijning: verticaal midden t.o.v. het tekstblok */
	width: 35px;
	height: 35px;
	object-fit: contain;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.vvge-slider__nav {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 0 0;
}

.vvge-slider__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	cursor: pointer;
	line-height: 0;
}

.vvge-slider__dot.is-active {
	background: rgba(0, 0, 0, 0.75);
}

.vvge-slider__dot:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

@media (max-width: 781px) {
	.vvge-slider__viewport {
		height: auto;
		aspect-ratio: 1300 / 730;
	}

	.vvge-slide__overlay {
		padding: 1rem 1rem 1.25rem;
	}

	.vvge-slide__text {
		max-width: min(250px, 70vw);
	}
}
