/* Step Widget 3480ff5f */

/* Wrapper */
.sw-3480ff5f-wrapper {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal {
	flex-direction: row;
	align-items: flex-start;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-vertical {
	flex-direction: column;
}

/* Item */
.sw-3480ff5f-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 0;
	min-width: 0;
	position: relative;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

a.sw-3480ff5f-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Wrap */
.sw-3480ff5f-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-bottom: 16px;
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease;
}

.sw-3480ff5f-item:hover .sw-3480ff5f-icon-wrap {
	transform: scale(1.08);
}

.sw-3480ff5f-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* Number */
.sw-3480ff5f-number {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 6px;
	opacity: 0.8;
}

/* Title */
.sw-3480ff5f-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 8px 0;
	padding: 0;
	line-height: 1.3;
}

/* Description */
.sw-3480ff5f-desc {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

/* ── Connector Lines ── */

/* Horizontal connector */
.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal .sw-3480ff5f-connector {
	flex: 0 0 auto;
	width: 40px;
	min-width: 20px;
	align-self: center;
	margin-top: -40px;
	position: relative;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal .sw-3480ff5f-connector.sw-3480ff5f-connector-solid {
	background-color: #6C63FF;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal .sw-3480ff5f-connector.sw-3480ff5f-connector-dashed {
	background: repeating-linear-gradient(
		to right,
		currentColor 0,
		currentColor 8px,
		transparent 8px,
		transparent 14px
	);
	background-color: transparent !important;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal .sw-3480ff5f-connector.sw-3480ff5f-connector-dotted {
	background: repeating-linear-gradient(
		to right,
		currentColor 0,
		currentColor 3px,
		transparent 3px,
		transparent 8px
	);
	background-color: transparent !important;
}

/* Vertical connector */
.sw-3480ff5f-wrapper.sw-3480ff5f-vertical .sw-3480ff5f-connector {
	height: 40px;
	min-height: 20px;
	align-self: center;
	position: relative;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-vertical .sw-3480ff5f-connector.sw-3480ff5f-connector-solid {
	background-color: #6C63FF;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-vertical .sw-3480ff5f-connector.sw-3480ff5f-connector-dashed {
	background: repeating-linear-gradient(
		to bottom,
		currentColor 0,
		currentColor 8px,
		transparent 8px,
		transparent 14px
	);
	background-color: transparent !important;
}

.sw-3480ff5f-wrapper.sw-3480ff5f-vertical .sw-3480ff5f-connector.sw-3480ff5f-connector-dotted {
	background: repeating-linear-gradient(
		to bottom,
		currentColor 0,
		currentColor 3px,
		transparent 3px,
		transparent 8px
	);
	background-color: transparent !important;
}

/* Connector color inheritance for dashed/dotted */
.sw-3480ff5f-connector {
	color: #6C63FF;
}

/* ── Responsive: Tablet (≤1024px) ── */
@media (max-width: 1024px) {
	.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal {
		flex-wrap: wrap;
		justify-content: center;
	}

	.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal .sw-3480ff5f-item {
		flex: 0 0 calc(50% - 30px);
		min-width: 0;
	}

	.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal .sw-3480ff5f-connector {
		width: 30px;
		min-width: 15px;
		margin-top: 0;
		align-self: center;
	}
}

/* ── Responsive: Mobile (≤767px) ── */
@media (max-width: 767px) {
	/* Stack everything vertically */
	.sw-3480ff5f-wrapper.sw-3480ff5f-horizontal,
	.sw-3480ff5f-wrapper.sw-3480ff5f-vertical {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
	}

	/* Items become full-width vertical card boxes */
	.sw-3480ff5f-wrapper .sw-3480ff5f-item {
		flex: 0 0 auto !important;
		width: 100% !important;
		height: auto !important;
		min-height: unset !important;
		max-height: none !important;
		padding: 24px 20px;
		background-color: #ffffff;
		border-radius: 12px;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
		overflow: visible;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* Ensure all content inside items is visible */
	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-icon-wrap,
	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-number,
	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-title,
	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-desc {
		display: block;
		visibility: visible;
		opacity: 1;
		overflow: visible;
		max-height: none;
	}

	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-icon-wrap {
		display: flex;
		margin-bottom: 12px;
	}

	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-number {
		margin-bottom: 6px;
	}

	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-title {
		font-size: 16px;
		margin-bottom: 6px;
	}

	.sw-3480ff5f-wrapper .sw-3480ff5f-item .sw-3480ff5f-desc {
		font-size: 13px;
		line-height: 1.5;
	}

	/* All connectors become vertical on mobile */
	.sw-3480ff5f-wrapper .sw-3480ff5f-connector {
		width: 2px !important;
		height: 32px !important;
		min-width: unset !important;
		min-height: unset !important;
		align-self: center;
		margin-top: 0 !important;
		margin: 0 auto;
	}

	/* Dashed connector on mobile */
	.sw-3480ff5f-wrapper .sw-3480ff5f-connector.sw-3480ff5f-connector-dashed {
		background: repeating-linear-gradient(
			to bottom,
			currentColor 0,
			currentColor 8px,
			transparent 8px,
			transparent 14px
		) !important;
		background-color: transparent !important;
	}

	/* Dotted connector on mobile */
	.sw-3480ff5f-wrapper .sw-3480ff5f-connector.sw-3480ff5f-connector-dotted {
		background: repeating-linear-gradient(
			to bottom,
			currentColor 0,
			currentColor 3px,
			transparent 3px,
			transparent 8px
		) !important;
		background-color: transparent !important;
	}
}
