.s92-process__steps {
	display: grid;
	grid-template-columns: repeat(var(--s92-columns, 4), minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: steps;
}

.s92-process__step {
	position: relative;
	min-width: 0;
	padding: 0 clamp(20px, 3vw, 36px) 0 0;
}

.s92-process__step:not(:last-child)::after {
	position: absolute;
	top: 23px;
	right: 14px;
	left: 58px;
	height: 1px;
	background: var(--s92-section-line);
	content: "";
}

.s92-process__marker {
	position: relative;
	z-index: 1;
	display: flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--s92-section-line);
	background: var(--s92-section-bg);
	color: var(--s92-section-accent);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.s92-process__icon {
	display: none;
}

.s92-process__step h3,
.s92-process__step p {
	margin: 0;
}

.s92-process__step h3 {
	max-width: 18ch;
	margin-top: 24px;
	font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
	font-size: 1.25rem;
	line-height: 1.1;
}

.s92-process__step p {
	max-width: 30ch;
	margin-top: 10px;
	color: var(--s92-section-muted);
	font-size: 0.88rem;
	line-height: 1.55;
}

@media (max-width: 1023px) {
	.s92-process__steps {
		--s92-columns: 2;
		gap: 36px 0;
	}
}

@media (max-width: 767px) {
	.s92-process__steps {
		--s92-columns: 1;
		gap: 28px;
	}

	.s92-process__step {
		padding: 0 0 0 68px;
	}

	.s92-process__marker {
		position: absolute;
		top: 0;
		left: 0;
	}

	.s92-process__step:not(:last-child)::after {
		top: 52px;
		bottom: -24px;
		left: 23px;
		width: 1px;
		height: auto;
	}

	.s92-process__step h3 {
		margin-top: 0;
	}
}
