.carousel {
	position: relative;
}

.carousel-item-container {
	padding: 24px 24px 56px 24px;
	text-align: center;
	gap: 32px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	display: flex;
	justify-content: safe center;
	scroll-padding: 24px;
	scrollbar-width: none;
}

.carousel-item {
	scroll-snap-align: center;
	text-align: center;
	width: 360px;
	flex: 0 0 330px;
}

.carousel-indicator-container {
	position: absolute;
	bottom: 20px;
	left: 0;
	display: flex;
	flex-direction: row;
	gap: 12px;
	width: 100%;
	justify-content: center;
}

.carousel-indicator {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	transition: background-color 100ms linear;
	background-color: var(--color-text-2);
	cursor: pointer;
}

.carousel-indicator-active {
	background-color: var(--color-accent-1);
}

@media screen and (min-width: 799px) {
	.carousel-item {
		scroll-snap-align: start;
	}
}