/* =============================== Progress =============================== */

.bb-prog__list {
	--bb-cols: 1;

	display: grid;
	grid-template-columns: repeat(var(--bb-cols), minmax(0, 1fr));
	gap: 24px;
}

.bb-prog__item {
	min-width: 0;
}

.bb-prog__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 9px;
}

.bb-prog__label {
	color: var(--bb-heading);
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.4;
}

.bb-prog__value {
	color: var(--bb-saffron-ink);
	font-size: 15px;
	font-weight: 700;
	flex: none;
}

.bb-prog__track {
	position: relative;
	height: 10px;
	border-radius: 999px;
	background: var(--bb-border);
	overflow: hidden;
}

.bb-prog__fill {
	display: block;
	width: 0;
	height: 100%;
	border-radius: 999px;
	background: var(--bb-saffron);
	transition: width 1.1s cubic-bezier(.22, .61, .36, 1);
}

/* Without JS the bars still show their value. */
.bb-prog__list:not([data-bb-progress]) .bb-prog__fill {
	width: var(--bb-value);
}

.bb-prog__note {
	display: block;
	margin-top: 8px;
	color: var(--bb-body);
	font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
	.bb-prog__fill {
		transition: none;
	}
}

@media (max-width: 767px) {
	.bb-prog__list {
		gap: 20px;
	}

	.bb-prog__label {
		font-size: 14.5px;
	}
}
