.splide__arrow {
	background-color: #aaaaaa !important;
	color:  var(--brand-primary);
	opacity: 50%;
}

.splide__slide {
	position: relative;
	display: flex;
	align-items: flex-start; /* or center */
	justify-content: center;
}

.splide__slide img {
	width: 100%;        /* fill container width */
	height: 100%;       /* fill container height */
	object-fit: cover;  /* crop to maintain aspect ratio */
	display: block;     /* remove inline spacing */
}

.splide__slide::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.35); /* adjust opacity */
	z-index: 5;
}

.splide__slide.finale-slide::before {
	background: none;
}

.carousel-caption {
	position: absolute;
	top: 1vh;
	color: white;
	text-align: center;
	z-index: 10;              /* must be higher than image */
	width: 90%;
	max-width: 900px;
}

.carousel-caption h2 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.carousel-caption p {
	font-size: clamp(1rem, 1vw, 1.5rem);
}

.carousel-caption h2,
.carousel-caption p {
	text-shadow: 3px 3px 9px rgba(0, 0, 0, 0.9); /* horizontal, vertical, blur, color */
}
