:root {
	--nt-color-active: #d65b5b;
	--nt-color-inactive: #333333;
	--nt-color-line-bg: #e0e0e0;
	--nt-box-bg: #ffffff;
}

.nt-timeline-container-5b7fed63 {
	display: flex;
	gap: 50px;
	position: relative;
	align-items: flex-start;
}

.nt-left-col {
	flex: 1;
	position: sticky;
	top: 100px; /* Offset for sticky */
	height: max-content;
}

.nt-image-wrapper {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.nt-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
	border-radius: 20px;
}

.nt-right-col {
	flex: 1.5;
	position: relative;
	padding-left: 30px;
}

.nt-line-track {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background-color: var(--nt-color-line-bg);
	border-radius: 2px;
	z-index: 1;
}

.nt-line-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background-color: var(--nt-color-active);
	transition: height 0.3s ease;
	border-radius: 2px;
}

.nt-items-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 20px 0;
}

.nt-timeline-item {
	position: relative;
	cursor: pointer;
}

.nt-item-dot {
	position: absolute;
	left: -38px;
	top: 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--nt-color-line-bg);
	z-index: 2;
	transition: background-color 0.3s ease;
}

.nt-timeline-item.is-active .nt-item-dot,
.nt-timeline-item.is-passed .nt-item-dot {
	background-color: var(--nt-color-active);
}

.nt-item-content {
	padding: 25px;
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.nt-item-content.is-active {
	background-color: var(--nt-box-bg);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nt-item-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: var(--nt-color-inactive);
	transition: color 0.3s ease;
}

.nt-item-subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: var(--nt-color-inactive);
	opacity: 0.8;
}

.nt-timeline-item.is-active .nt-item-title {
	color: var(--nt-color-active);
}

/* Responsive */
@media (max-width: 1024px) {
	.nt-timeline-container-5b7fed63 {
		flex-direction: column;
		gap: 30px;
	}
	.nt-left-col {
		position: static;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	.nt-right-col {
		width: 100%;
	}
}