/* Scroll Timeline Widget — 82df71de */

.st-82df71de-wrapper {
	position: relative;
	box-sizing: border-box;
}

/* Line container */
.st-82df71de-line-container {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	/* Centered on the icon column — icon box default 40px, so left = 20px - 1.5px */
	left: 20px;
	transform: translateX(-50%);
	z-index: 0;
}

/* RTL support */
[dir="rtl"] .st-82df71de-line-container {
	left: auto;
	right: 20px;
	transform: translateX(50%);
}

.st-82df71de-line {
	position: absolute;
	top: 0;
	bottom: 0;
	width: inherit;
	background-color: #D4D4D8;
	border-radius: 2px;
}

.st-82df71de-line-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: inherit;
	height: 0;
	background-color: #6B21A8;
	border-radius: 2px;
	transition: height 300ms ease;
	z-index: 1;
}

[dir="rtl"] .st-82df71de-line-progress {
	left: auto;
	right: 0;
}

/* Timeline item */
.st-82df71de-item {
	display: flex;
	align-items: flex-start;
	position: relative;
	z-index: 2;
}

/* Icon column */
.st-82df71de-icon-col {
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Icon wrap shared */
.st-82df71de-icon-wrap {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s ease;
	background-color: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* Make the icon-col reserve space */
.st-82df71de-icon-col {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
}

/* Inactive icon visible by default */
.st-82df71de-icon-inactive {
	opacity: 1;
	z-index: 2;
}

/* Active icon hidden by default */
.st-82df71de-icon-active {
	opacity: 0;
	z-index: 1;
}

/* When item is active */
.st-82df71de-item.st-82df71de-active .st-82df71de-icon-inactive {
	opacity: 0;
	z-index: 1;
}

.st-82df71de-item.st-82df71de-active .st-82df71de-icon-active {
	opacity: 1;
	z-index: 2;
}

/* Content */
.st-82df71de-content {
	flex: 1;
	min-width: 0;
	margin-inline-start: 16px;
	padding-top: 8px;
}

.st-82df71de-heading {
	margin: 0 0 4px 0;
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #1A1A2E;
}

.st-82df71de-desc {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #52525B;
}

.st-82df71de-desc p {
	margin: 0 0 0.5em 0;
}

.st-82df71de-desc p:last-child {
	margin-bottom: 0;
}

.st-82df71de-image {
	margin-top: 12px;
}

.st-82df71de-image img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}

/* Entrance animation */
.st-82df71de-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.st-82df71de-item.st-82df71de-visible {
	opacity: 1;
	transform: translateY(0);
}

/* When animation is disabled or prefers-reduced-motion */
.st-82df71de-wrapper[data-disable-animation="true"] .st-82df71de-item,
.st-82df71de-no-motion .st-82df71de-item {
	opacity: 1;
	transform: none;
	transition: none;
}

.st-82df71de-wrapper[data-disable-animation="true"] .st-82df71de-line-progress,
.st-82df71de-no-motion .st-82df71de-line-progress {
	transition: none;
}

/* Responsive — line position follows icon box size via JS, but we add fallback */
@media (max-width: 767px) {
	.st-82df71de-content {
		margin-inline-start: 12px;
	}

	.st-82df71de-heading {
		font-size: 17px;
	}

	.st-82df71de-desc {
		font-size: 13px;
	}
}

/* Accessibility — reduced motion */
@media (prefers-reduced-motion: reduce) {
	.st-82df71de-item {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.st-82df71de-line-progress {
		transition: none;
	}

	.st-82df71de-icon-wrap {
		transition: none;
	}
}
