/* Horizontal Timeline 00b4b22a */

.ht-00b4b22a-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	gap: 12px;
	width: 100%;
}

.ht-00b4b22a-viewport {
	overflow: hidden;
	flex: 1;
	position: relative;
}

.ht-00b4b22a-track {
	display: flex;
	align-items: center;
	position: relative;
	padding: 160px 40px;
	gap: 60px;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.ht-00b4b22a-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #E0E0E0;
	transform: translateY(-50%);
	z-index: 0;
}

/* ── Event ── */
.ht-00b4b22a-event {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

/* Above: card → stem → marker (top to bottom) */
.ht-00b4b22a-pos-above {
	flex-direction: column;
}

.ht-00b4b22a-pos-above .ht-00b4b22a-card {
	order: 1;
}
.ht-00b4b22a-pos-above .ht-00b4b22a-stem {
	order: 2;
}
.ht-00b4b22a-pos-above .ht-00b4b22a-marker {
	order: 3;
}

/* Below: marker → stem → card (top to bottom) */
.ht-00b4b22a-pos-below {
	flex-direction: column;
}

.ht-00b4b22a-pos-below .ht-00b4b22a-marker {
	order: 1;
}
.ht-00b4b22a-pos-below .ht-00b4b22a-stem {
	order: 2;
}
.ht-00b4b22a-pos-below .ht-00b4b22a-card {
	order: 3;
}

/* ── Marker ── */
.ht-00b4b22a-marker {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #6C63FF;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	flexshrink: 0;
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 8px rgba(108, 99, 255, 0.25);
	z-index: 2;
	position: relative;
}

.ht-00b4b22a-marker svg {
	fill: currentColor;
}

.ht-00b4b22a-event:hover .ht-00b4b22a-marker {
	transform: scale(1.15);
	box-shadow: 0 4px 16px rgba(108, 99, 255, 0.4);
}

/* ── Stem ── */
.ht-00b4b22a-stem {
	width: 2px;
	height: 30px;
	background-color: #E0E0E0;
	flex-shrink: 0;
}

/* ── Card ── */
.ht-00b4b22a-card {
	background-color: #FFFFFF;
	padding: 16px 20px;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	text-align: center;
	width: 200px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex-shrink: 0;
}

.ht-00b4b22a-event:hover .ht-00b4b22a-card {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.ht-00b4b22a-pos-below:hover .ht-00b4b22a-card {
	transform: translateY(4px);
}

.ht-00b4b22a-date {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #6C63FF;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}

.ht-00b4b22a-title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: #1A1A2E;
	line-height: 1.3;
}

.ht-00b4b22a-desc {
	margin: 0;
	font-size: 13px;
	color: #555555;
	line-height: 1.5;
}

/* ── Navigation ── */
.ht-00b4b22a-nav-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background-color: #6C63FF;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(108, 99, 255, 0.3);
	padding: 0;
}

.ht-00b4b22a-nav-btn:hover {
	transform: scale(1.1);
}

.ht-00b4b22a-nav-btn:disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
}

.ht-00b4b22a-nav-btn svg {
	fill: none;
	stroke: currentColor;
}

/* ── Entrance Animation ── */
.ht-00b4b22a-event {
	opacity: 0;
	transform: translateY(20px);
}

.ht-00b4b22a-event.ht-00b4b22a-visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.ht-00b4b22a-track {
		padding: 130px 20px;
		gap: 40px;
	}

	.ht-00b4b22a-card {
		width: 150px;
		padding: 12px 14px;
	}

	.ht-00b4b22a-title {
		font-size: 14px;
	}

	.ht-00b4b22a-desc {
		font-size: 12px;
	}

	.ht-00b4b22a-marker {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}

	.ht-00b4b22a-stem {
		height: 20px;
	}
}
