.embla {
	width: 100%;
	position: relative;
}

.embla__container {
	display: flex;
}
.embla__viewport {
	width: 100%;
	overflow: hidden;
}

.embla__slide {
	flex: 0 0 100%;
	min-width: 0;
	user-select: none;
}

.embla__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.embla__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.embla__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #999;
	border: none;
	cursor: pointer;
}

.embla__dot--selected {
	background: #333;
}

div.embla__prev,
div.embla__next {
	cursor: pointer;
}