/* Wrapper & Viewport */
.ht-2d9dbd46-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	overflow: hidden;
}

.ht-2d9dbd46-viewport {
	flex: 1;
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
	scroll-behavior: smooth;
	position: relative;
	padding: 40px 0;
}

.ht-2d9dbd46-viewport::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

/* Track & Line */
.ht-2d9dbd46-track {
	display: flex;
	align-items: center;
	position: relative;
	min-width: max-content;
	padding: 0 40px;
}

.ht-2d9dbd46-track::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	background-color: #e0e0e0;
	transform: translateY(-50%);
	z-index: 1;
}

/* Event Item */
.ht-2d9dbd46-event {
	position: relative;
	width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
	flex-shrink: 0;
	margin: 0 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.ht-2d9dbd46-event.ht-2d9dbd46-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Marker */
.ht-2d9dbd46-marker {
	width: 50px;
	height: 50px;
	background-color: #fff;
	border: 4px solid #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 20px;
	z-index: 3;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ht-2d9dbd46-marker svg {
	width: 20px;
	height: 20px;
	fill: #000;
}

/* Connector */
.ht-2d9dbd46-connector {
	width: 2px;
	height: 30px;
	background-color: #e0e0e0;
}

/* Content Box */
.ht-2d9dbd46-content-box {
	text-align: center;
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	width: 100%;
}

.ht-2d9dbd46-title {
	margin: 0 0 5px;
	font-size: 18px;
	font-weight: 600;
}

.ht-2d9dbd46-date {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
	font-weight: 500;
}

.ht-2d9dbd46-desc {
	font-size: 14px;
	color: #444;
	line-height: 1.5;
}

/* Positioning Layouts */
.ht-2d9dbd46-pos-top {
	flex-direction: column-reverse;
}
.ht-2d9dbd46-pos-bottom {
	flex-direction: column;
}

.ht-2d9dbd46-pos-top .ht-2d9dbd46-content-box {
	margin-bottom: 0;
	margin-top: 15px;
}
.ht-2d9dbd46-pos-bottom .ht-2d9dbd46-content-box {
	margin-top: 0;
	margin-bottom: 15px;
}

/* Navigation */
.ht-2d9dbd46-nav {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: background-color 0.2s, transform 0.2s;
	flex-shrink: 0;
}

.ht-2d9dbd46-nav:hover {
	background: #f5f5f5;
	transform: scale(1.05);
}

.ht-2d9dbd46-nav svg {
	fill: #333;
}

.ht-2d9dbd46-nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.ht-2d9dbd46-nav-prev {
	margin-right: -20px;
}

.ht-2d9dbd46-nav-next {
	margin-left: -20px;
}

@media (max-width: 767px) {
	.ht-2d9dbd46-event {
		width: 200px;
		margin: 0 10px;
	}
	.ht-2d9dbd46-nav-prev {
		margin-right: 5px;
	}
	.ht-2d9dbd46-nav-next {
		margin-left: 5px;
	}
}