.psw-wrapper {
	width: 100%;
}

.psw-steps {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
}

.psw-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 0;
	min-width: 140px;
}

.psw-circle {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #1c1c28;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.psw-circle-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ec1e79;
	font-weight: 700;
	line-height: 1;
}

.psw-circle-inner svg,
.psw-circle-inner i {
	width: 1em;
	height: 1em;
	font-size: 24px;
}

.psw-title {
	margin: 0;
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.psw-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.6;
	max-width: 260px;
}

/* Connector line — sits behind the circles, spans from the middle of one
   circle to the middle of the next. Drawn on every step except the last. */
.psw-connector-solid .psw-step:not(:last-child)::after,
.psw-connector-dashed .psw-step:not(:last-child)::after,
.psw-connector-dotted .psw-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 40px; /* half of default circle size — Elementor JS updates this if size changes */
	left: 50%;
	width: 100%;
	border-top-width: 1px;
	border-top-color: rgba(255, 255, 255, 0.25);
	z-index: 1;
}

.psw-connector-solid .psw-step:not(:last-child)::after {
	border-top-style: solid;
}

.psw-connector-dashed .psw-step:not(:last-child)::after {
	border-top-style: dashed;
}

.psw-connector-dotted .psw-step:not(:last-child)::after {
	border-top-style: dotted;
}

.psw-connector-none .psw-step::after {
	display: none;
}

/* Vertical / column layout: hide the horizontal connector automatically,
   since a horizontal line doesn't make sense stacked vertically. */
.psw-steps[style*='column'] .psw-step:not(:last-child)::after {
	display: none;
}

@media (max-width: 767px) {
	.psw-steps {
		flex-direction: column;
	}
	.psw-step:not(:last-child)::after {
		display: none;
	}
}
