.steps__heading {
	text-align: center;
	color: inherit;
	margin-bottom: var(--space-xl);
}

.steps__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-l);
}

.steps__item {
	padding-top: var(--space-l);
	border-top: 1px solid var(--color-border);
}

.steps__item:first-child {
	padding-top: 0;
	border-top: none;
}

.steps__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	font-family: var(--font-heading);
	font-weight: var(--font-weight-heading);
	margin-bottom: var(--space-2xl);
}

.steps__item-title {
	color: inherit;
	margin-bottom: var(--space-2xs);
}

.steps__item-text {
	color: inherit;
	opacity: 0.75;
	margin: 0;
}

.steps__cta {
	display: flex;
	justify-content: center;
	margin-top: var(--space-xl);
}

.steps__cta .btn {
	width: 100%;
}

@media ( max-width: 63.99rem ) {
	.steps__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

@media ( min-width: 64rem ) {
	.steps__items {
		grid-template-columns: repeat( 3, 1fr );
		gap: 0;
	}

	.steps__item {
		padding-top: 0;
		padding-inline: var(--space-l);
		border-top: none;
		border-right: 1px solid var(--color-border);
	}

	.steps__item:first-child {
		padding-left: 0;
	}

	.steps__item:last-child {
		padding-right: 0;
		border-right: none;
	}

	.steps__cta .btn {
		width: auto;
	}
}
