/* ── Elementor Timeline Widget ── */

.etw-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.etw-step {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	position: relative;
	padding-bottom: 36px;
}

.etw-step:last-child {
	padding-bottom: 0;
}

/* Linia przez ::after — jak w oryginale */
.etw-step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 19px;
	top: 42px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #E8D5F0, transparent);
}

/* Lewa kolumna: kółko */
.etw-step-left {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.etw-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 50%;
	background-color: #6B3A90;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	font-style: normal;
	text-align: center;
	padding: 2px 0 0 0;
}

/* Prawa kolumna: tytuł + opis */
.etw-step-body {
	padding-top: 4px;
	flex: 1;
	min-width: 0;
}

.etw-step-title {
	margin: 0 0 8px;
	padding: 0;
	color: #3D2060;
}

.etw-step-desc {
	margin: 0;
	padding: 0;
	color: #5A3860;
	line-height: 1.6;
}
