.mj-step-by-step {
	width: 100%;
	max-width: 56rem;
	margin-inline: auto;
}

.mj-step-by-step__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mj-step-by-step__item {
	position: relative;
	padding-left: 2rem;
	padding-bottom: 3rem;
	border-left: 1px solid var(--mj-step-border, rgba(0, 0, 0, 0.15));
}

.mj-step-by-step__item:last-child {
	border-left: 0;
	padding-bottom: 0;
}

.mj-step-by-step__number {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(-50%);
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--mj-step-primary, #000000);
	color: var(--mj-step-primary-foreground, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	font-weight: 300;
}

.mj-step-by-step__content {
	padding-top: 0.25rem;
}

.mj-step-by-step__label {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--mj-step-muted, rgba(0, 0, 0, 0.55));
}

.mj-step-by-step__title {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	line-height: 1.25;
	font-weight: 500;
	color: inherit;
}

.mj-step-by-step__text {
	margin: 0;
	color: var(--mj-step-muted, rgba(0, 0, 0, 0.55));
	line-height: 1.625;
}

@media (min-width: 768px) {
	.mj-step-by-step__item {
		padding-left: 4rem;
	}

	.mj-step-by-step__number {
		width: 3rem;
		height: 3rem;
		font-size: 1.125rem;
	}
}