.about-contact-flow__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
}

.about-process__card {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.about-process__card h3 {
	font-size: var(--text-xl);
	font-weight: 900;
	color: var(--color-text-dark);
	margin: 0;
}

.about-process__card p {
	color: var(--color-muted);
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
	margin: 0;
}

.about-way__num {
	width: 34px;
	height: 34px;
	border-radius: var(--radius-full);
	background: var(--color-primary);
	color: var(--color-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-heading);
	font-size: var(--text-sm);
	font-weight: 900;
}

.about-way__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-md);
	margin-top: var(--space-xl);
}

.about-contact-flow .about-process__card {
	background: transparent;
	border: 0;
	text-align: center;
	align-items: center;
	padding: 0 var(--space-md);
}

.about-contact-flow .about-way__num {
	width: 48px;
	height: 48px;
	font-size: var(--text-lg);
	box-shadow: 0 0 0 6px var(--color-surface-100);
}

@media (min-width: 768px) {
	.about-contact-flow__grid {
		position: relative;
	}

	.about-contact-flow__grid::before {
		content: "";
		position: absolute;
		top: 24px;
		left: 16%;
		right: 16%;
		height: 2px;
		background: var(--color-border);
		z-index: 0;
	}

	.about-contact-flow .about-process__card {
		position: relative;
		z-index: 1;
	}
}
