.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
	aspect-ratio: 16 / 9; /* behoud verhouding */
    cursor: pointer;
	top: 0px;
	margin-bottom: 10px;
	display: inline-block;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* play-indicator */
.video-play-indicator {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: rgba(255,255,255,0.8);
	pointer-events: none;
	transition: opacity 0.3s ease;
	top: 45%;
	color: hsla(0,0%,100%,0.69);
}

.video-wrapper.playing .video-play-indicator {
    opacity: 0;
}

/* audio toggle */
.video-audio-toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;

    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    user-select: none;

    background: rgba(0,0,0,0.4);
    padding: 6px 12px;
    border-radius: 50%;
}

.video-audio-toggle:hover {
    color: #fff;
}
