.hop-album-carousel {
	margin: 40px 0;
}

.hop-album-carousel .swiper-wrapper {
	align-items: center; /* lagere foto's verticaal centreren binnen de containerhoogte */
}

.hop-album-carousel .swiper-slide {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hop-album-carousel .swiper-slide img {
	/* width: 100% laat de browser de hoogte berekenen uit de
	width/height-attributen van de <img> i.p.v. de intrinsieke
	maat van de LiteSpeed-placeholder (iOS Safari-fix). */
	width: 100%;
	height: auto;
	max-height: 80vh;
	object-fit: contain; /* portretfoto's niet vervormen bij afkappen door max-height */
	border-radius: 8px;
	display: block;
}

.hop-album-carousel .swiper-pagination {
	position: static;
	margin-top: 12px;
}

.hop-album-carousel .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 6px;
	background: var(--e-global-color-primary);
	opacity: 0.3;
	transition: all 0.3s ease;
}

.hop-album-carousel .swiper-pagination-bullet-active {
	background: var(--e-global-color-primary);
	opacity: 1;
}