.slideshow {
	display: flex;
	flex-direction: column;
	position: relative;
}

.slideshow--embla {
	overflow: hidden;
	cursor: grab;
}

.slideshow_slides {
	flex: 1;
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
	height: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	position: relative;
}

.slideshow--embla > .slideshow_slides {
	overflow: visible;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.slideshow_slides::-webkit-scrollbar {
	display: none;
}

.slideshow_slide {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	max-width: 100%;
	height: 100%;
	overflow: hidden;
	scroll-snap-align: start;
	position: relative;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.slideshow--embla > .slideshow_slides > .slideshow_slide {
	cursor: inherit;
}

.slideshow_slide:focus {
	outline: 0;
}

.slideshow_slide + .slideshow_slide {
	margin-left: var(--margin);
}

.slideshow--unique .slideshow_slide {
	pointer-events: none;
	cursor: default;
}

.slideshow_slides > img {
	scroll-snap-align: start;
}

.slideshow_slides > img,
.slideshow_slide > img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	-webkit-user-select: none;
	user-select: none;
	background-color: var(--grey);
}

.slideshow_footer {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	margin-top: calc(0.5em * var(--line-height));
	position: absolute;
	top: 0;
	left: 0;
}

.slideshow_pagination {
	display: flex;
	font-feature-settings: "tnum" 1;
	line-height: 1;
}

.slideshow_page {
	color: var(--silver);
	transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow_page:hover,
.slideshow_page--current {
	color: var(--offblack);
}

.slideshow_page + .slideshow_page::before {
	content: "\00a0";
}

@media (hover: none) {
	.slideshow_slide {
		pointer-events: none;
	}
}