/* JOC Progress stepper — [joc_progress] */

.bl-joc-progress {
	color: #111;
	max-width: 760px;
}

.bl-joc-progress__header {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #999;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 16px;
}

.bl-joc-progress__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	padding: 4px 10px;
	border-radius: 2px;
	margin-bottom: 18px;
}

.bl-joc-progress__badge--coop {
	background: #ffd800;
	color: #000;
}

.bl-joc-progress__badge--standalone {
	background: #eee;
	color: #555;
}

.bl-joc-progress__steps {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bl-joc-progress__step {
	display: flex;
	gap: 14px;
}

.bl-joc-progress__spine {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 26px;
	flex-shrink: 0;
}

.bl-joc-progress__dot {
	box-sizing: border-box;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	background: #eee;
	border: 2px solid #ddd;
	color: #999;
	flex-shrink: 0;
}

.bl-joc-progress__check {
	display: block;
}

.bl-joc-progress__line {
	width: 2px;
	flex: 1 1 auto;
	min-height: 18px;
	background: #ddd;
}

.bl-joc-progress__line.is-done {
	background: #222;
}

.bl-joc-progress__body {
	padding-top: 2px;
	padding-bottom: 22px;
}

.bl-joc-progress__step:last-child .bl-joc-progress__body {
	padding-bottom: 0;
}

.bl-joc-progress__title {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.35;
	color: #111;
}

.bl-joc-progress__tag {
	font-size: 11px;
	font-weight: 400;
	font-style: italic;
	color: #999;
}

.bl-joc-progress__desc {
	margin: 4px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: #777;
	max-width: 60ch;
}

/* Completed step */
.bl-joc-progress__step.is-done .bl-joc-progress__dot {
	background: #111;
	border-color: #111;
	color: #fff;
}

/* Current step */
.bl-joc-progress__step.is-current .bl-joc-progress__dot {
	background: #ffd800;
	border-color: #000;
	color: #000;
	box-shadow: 0 0 0 4px rgba(255, 216, 0, 0.25);
}

.bl-joc-progress__step.is-current .bl-joc-progress__title {
	color: #000;
}
