.vxd-how-it-works-widget {
	width: 100%;
	font-family: "Manrope", sans-serif;
}

.vxd-how-it-works-inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 60px 20px 50px;
}

.vxd-how-it-works-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	width: 100%;
	margin: 0 auto 28px;
}

.vxd-how-it-works-point {
	width: 20px;
	height: 20px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	position: relative;
	justify-self: center;
	z-index: 2;
	background: #303030;
	box-sizing: border-box;
}

.vxd-how-it-works-point::after {
	content: "";
	position: absolute;
	inset: 5px;
	border-radius: 50%;
	background: #ffffff;
}

.vxd-how-it-works-line {
	position: absolute;
	top: 50%;
	border-top: 2px dotted rgba(255, 255, 255, 0.85);
	transform: translateY(-50%);
	z-index: 1;
}

.vxd-how-it-works-line-1 {
	left: calc(16.666% + 26px);
	right: calc(50% + 26px);
}

.vxd-how-it-works-line-2 {
	left: calc(50% + 26px);
	right: calc(16.666% + 26px);
}

.vxd-how-it-works-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px;
	text-align: center;
}

.vxd-how-it-works-card h3 {
	margin: 0 0 26px;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: -0.03em;
}

.vxd-how-it-works-card p {
	margin: 0 auto;
	max-width: 280px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 400;
	color: #afafaf;
	letter-spacing: -0.03em;
}

/* Tablet */
@media (max-width: 1024px) {
	.vxd-how-it-works-inner {
		max-width: 900px;
		padding: 55px 20px 45px;
	}

	.vxd-how-it-works-cards {
		gap: 24px;
	}

	.vxd-how-it-works-card p {
		max-width: 230px;
	}
}

/* Mobile - vertical layout */
@media (max-width: 767px) {
	.vxd-how-it-works-inner {
		padding: 40px 20px 35px;
	}

	.vxd-how-it-works-widget .vxd-how-it-works-timeline {
		display: none;
	}

	.vxd-how-it-works-cards {
		position: relative;
		display: grid;
		grid-template-columns: 1fr;
		gap: 34px;
		text-align: left;
	}

	.vxd-how-it-works-cards::before {
		content: "";
		position: absolute;
		left: 10px;
		top: 12px;
		bottom: 12px;
		border-left: 2px dotted rgba(255, 255, 255, 0.85);
	}

	.vxd-how-it-works-card {
		position: relative;
		padding-left: 42px;
	}

	.vxd-how-it-works-card::before {
		content: "";
		position: absolute;
		left: 0;
		top: 2px;
		width: 22px;
		height: 22px;
		border: 2px solid #ffffff;
		border-radius: 50%;
		background: #303030;
		box-sizing: border-box;
		z-index: 2;
	}

	.vxd-how-it-works-card::after {
		content: "";
		position: absolute;
		left: 7px;
		top: 9px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #ffffff;
		z-index: 3;
	}

	.vxd-how-it-works-card h3 {
		margin: 0 0 10px;
		font-size: 20px;
		line-height: 1.25;
	}

	.vxd-how-it-works-card p {
		margin: 0;
		max-width: 100%;
		font-size: 16px;
		line-height: 1.4;
	}
}