.ht-57b3af6d-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.ht-57b3af6d-container {
	overflow-x: auto;
	scroll-behavior: smooth;
	flex-grow: 1;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
	padding: 20px 0;
}

.ht-57b3af6d-container::-webkit-scrollbar {
	display: none;
}

.ht-57b3af6d-track {
	display: flex;
	position: relative;
	min-width: max-content;
	align-items: flex-start;
}

.ht-57b3af6d-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 320px;
	flex-shrink: 0;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.ht-57b3af6d-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ht-57b3af6d-line-segment {
	position: absolute;
	top: 20px; /* Align with center of marker */
	left: 50%;
	width: 100%;
	height: 4px;
	background-color: #e0e0e0;
	z-index: 1;
}

.ht-57b3af6d-item:last-child .ht-57b3af6d-line-segment {
	display: none;
}

.ht-57b3af6d-marker {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	z-index: 2;
	margin-bottom: 30px;
	position: relative;
	box-shadow: 0 0 0 5px #fff;
}

.ht-57b3af6d-content {
	text-align: left;
	width: 100%;
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,0.05);
	position: relative;
}

.ht-57b3af6d-content::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 0 10px 10px 10px;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	filter: drop-shadow(0 -3px 2px rgba(0,0,0,0.03));
}

.ht-57b3af6d-title {
	margin: 0 0 15px 0;
	font-size: 20px;
	color: #333;
	font-weight: 700;
}

.ht-57b3af6d-desc {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
}

.ht-57b3af6d-desc p {
	margin-bottom: 10px;
}

.ht-57b3af6d-desc p:last-child {
	margin-bottom: 0;
}

.ht-57b3af6d-nav {
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.ht-57b3af6d-nav:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.ht-57b3af6d-prev {
	margin-right: -22px;
}

.ht-57b3af6d-next {
	margin-left: -22px;
}

@media (max-width: 767px) {
	.ht-57b3af6d-item {
		width: 280px;
	}
}