.cm-stepper {
	position: relative;
	padding-left: calc(var(--cm-circle-size, 32px) + 12px);
	margin: 0;
	list-style: none;
}

.cm-stepper::before {
	content: '';
	position: absolute;
	left: calc(var(--cm-circle-size, 32px) / 2 - var(--cm-line-width, 2px) / 2);
	top: 8px;
	bottom: 8px;
	width: var(--cm-line-width, 2px);
	background: var(--cm-line-color, #62D1D7);
}

.cm-stepper__item {
	position: relative;
	margin-bottom: var(--cm-step-gap, 28px);
}

.cm-stepper__item:last-child {
	margin-bottom: 0;
}

.cm-stepper__num {
	position: absolute;
	left: calc(-1 * (var(--cm-circle-size, 32px) + 12px));
	top: 0;
	width: var(--cm-circle-size, 32px);
	height: var(--cm-circle-size, 32px);
	border-radius: 50%;
	background: var(--cm-circle-color, #62D1D7);
	color: var(--cm-number-color, #1E1E1E);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(var(--cm-circle-size, 32px) * 0.44);
	font-weight: 500;
	line-height: 1;
	overflow: visible;
}

.cm-stepper__num-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.cm-stepper__num-badge {
	position: absolute;
	bottom: -2px;
	right: -2px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--cm-circle-color, #62D1D7);
	color: var(--cm-number-color, #1E1E1E);
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--cm-badge-ring, #fff);
}

.cm-stepper__heading-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 4px;
}

.cm-stepper__title {
	margin: 0;
	font-size: 18px;
	color: var(--cm-title-color, #1E1E1E);
}

.cm-stepper__pill {
	display: inline-block;
	font-size: 12px;
	color: var(--cm-pill-text-color, #1E1E1E);
	background: transparent;
	border: 1px solid var(--cm-pill-color, #62D1D7);
	padding: 2px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

.cm-stepper--pill-solid .cm-stepper__pill {
	background: var(--cm-pill-color, #62D1D7);
}

.cm-stepper__duration-below {
	margin: 0 0 8px;
}

.cm-stepper__desc {
	font-size: 14px;
	color: var(--cm-desc-color, #8F8C88);
	max-width: 480px;
}

.cm-stepper__desc p {
	margin: 0 0 0.5em;
}

.cm-stepper__desc p:last-child {
	margin-bottom: 0;
}
