.ptw-section {
	position: relative;
}

.ptw-header {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 60px;
}

.ptw-header-title {
	margin: 0 0 10px;
	font-weight: 400;
}

.ptw-header-subtitle {
	margin: 0;
}

.ptw-track {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.ptw-track:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.ptw-item {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 90px;
}

.ptw-item:last-child {
	margin-bottom: 0 !important;
}

.ptw-content {
	flex: 1 1 0;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ptw-item.ptw-visible .ptw-content {
	opacity: 1;
	transform: translateY(0);
}

.ptw-content-left {
	text-align: right;
}

.ptw-content-right {
	text-align: left;
}

.ptw-title {
	margin: 0 0 10px;
	font-weight: 400;
}

.ptw-desc {
	margin: 0;
}

.ptw-marker {
	flex: 0 0 auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

/* Always show content inside the Elementor editor (skip the scroll-reveal animation while building) */
.elementor-editor-active .ptw-content {
	opacity: 1 !important;
	transform: none !important;
}

@media (max-width: 700px) {
	.ptw-track:before {
		left: 17px;
	}

	.ptw-item {
		align-items: flex-start;
	}

	.ptw-marker {
		order: 1;
	}

	/* Left-side items: hide the empty right placeholder, move left content after the marker */
	.ptw-item--left .ptw-content-right {
		display: none;
	}

	.ptw-item--left .ptw-content-left {
		order: 2;
		text-align: left;
		padding-left: 20px !important;
		padding-right: 0 !important;
	}

	/* Right-side items: hide the empty left placeholder, keep right content after marker */
	.ptw-item--right .ptw-content-left {
		display: none;
	}

	.ptw-item--right .ptw-content-right {
		order: 2;
		text-align: left;
		padding-left: 20px !important;
	}
}
