.umaps-pledge-progress {
	--umaps-primary: #014d6d;
	--umaps-secondary: #008b95;
	--umaps-levy: #9ad4d7;
	--umaps-stripe: #43b5bb;
	--umaps-merits: #f0a35c;
	--umaps-union: #014d6d;
	--umaps-signal: #da2a47;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: clamp(24px, 3vw, 32px);
	border: 1px solid #d3e0e5;
	border-radius: 7px;
	background: #fff;
	color: #173042;
	font-family: inherit;
}

.umaps-pledge-progress *,
.umaps-pledge-progress *::before,
.umaps-pledge-progress *::after {
	box-sizing: border-box;
}

.umaps-pledge-progress__eyebrow {
	margin-bottom: 16px;
	color: var(--umaps-secondary);
	font-size: 0.82rem;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.umaps-pledge-progress__summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 24px 48px;
}

.umaps-pledge-progress__amount {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px 12px;
	color: var(--umaps-primary);
	line-height: 1;
}

.umaps-pledge-progress__amount span {
	font-size: clamp(2.45rem, 7vw, 4.25rem);
	font-weight: 800;
	letter-spacing: -0.045em;
}

.umaps-pledge-progress__amount small {
	font-size: clamp(1rem, 2.4vw, 1.25rem);
	font-weight: 700;
}

.umaps-pledge-progress__target {
	margin-top: 8px;
	color: #58707e;
	font-size: 1rem;
	font-weight: 600;
}

.umaps-pledge-progress__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(125px, auto));
	align-items: stretch;
	gap: 0;
	padding-bottom: 3px;
}

.umaps-pledge-progress__stats--single {
	grid-template-columns: minmax(125px, auto);
}

.umaps-pledge-progress__stat {
	min-width: 0;
	padding: 3px 24px;
	border-left: 1px solid #d3e0e5;
}

.umaps-pledge-progress__stat:last-child {
	padding-right: 0;
}

.umaps-pledge-progress__stat strong,
.umaps-pledge-progress__stat span {
	display: block;
}

.umaps-pledge-progress__stat strong {
	color: var(--umaps-primary);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 800;
	line-height: 1.15;
}

.umaps-pledge-progress__stat span {
	margin-top: 4px;
	color: #58707e;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.35;
}

.umaps-pledge-progress__track {
	position: relative;
	display: flex;
	overflow: hidden;
	height: 16px;
	margin-top: 24px;
	border: 1px solid rgba(1, 77, 109, 0.12);
	border-radius: 999px;
	background: #e8f0f2;
}

.umaps-pledge-progress__fill {
	display: block;
	flex: 0 0 auto;
	height: 100%;
	min-width: 0;
	transition: width 600ms ease;
}

.umaps-pledge-progress__fill--levy {
	background: var(--umaps-levy);
}

.umaps-pledge-progress__fill--union {
	background: var(--umaps-union);
}

.umaps-pledge-progress__fill--stripe {
	background: var(--umaps-stripe);
}

.umaps-pledge-progress__fill--merits {
	background: var(--umaps-merits);
}

.umaps-pledge-progress__fill--pledge {
	background: var(--umaps-secondary);
}

.umaps-pledge-progress__bar-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px 24px;
	margin-top: 9px;
	color: var(--umaps-primary);
	font-size: 0.92rem;
}

.umaps-pledge-progress__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin-top: 12px;
	color: #35505f;
	font-size: 0.88rem;
	font-weight: 650;
}

.umaps-pledge-progress__legend span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.umaps-pledge-progress__key {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 3px;
}

.umaps-pledge-progress__key--levy {
	background: var(--umaps-levy);
}

.umaps-pledge-progress__key--union {
	background: var(--umaps-union);
}

.umaps-pledge-progress__key--stripe {
	background: var(--umaps-stripe);
}

.umaps-pledge-progress__key--merits {
	background: var(--umaps-merits);
}

.umaps-pledge-progress__key--pledge {
	background: var(--umaps-secondary);
}

.umaps-pledge-progress__note {
	margin-top: 11px;
	color: #58707e;
	font-size: 0.84rem;
	line-height: 1.45;
}

.umaps-pledge-progress__pending {
	color: var(--umaps-primary);
	font-size: clamp(1.75rem, 5vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.umaps-pledge-progress__updated {
	margin-top: 8px;
	color: #58707e;
	font-size: 0.8rem;
}

.umaps-pledge-progress--compact {
	width: 100%;
	max-width: 100%;
	padding: 24px;
}

.umaps-pledge-progress--compact .umaps-pledge-progress__amount span {
	font-size: clamp(2.1rem, 7vw, 3.25rem);
}

.umaps-pledge-progress--compact .umaps-pledge-progress__track {
	height: 14px;
	margin-top: 18px;
}

@media (max-width: 760px) {
	.umaps-pledge-progress__summary {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 20px;
	}

	.umaps-pledge-progress__stats {
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.umaps-pledge-progress__stats--single {
		grid-template-columns: 1fr;
	}

	.umaps-pledge-progress__stat:first-child {
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 420px) {
	.umaps-pledge-progress__stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.umaps-pledge-progress__stat,
	.umaps-pledge-progress__stat:last-child {
		padding: 0;
		border-left: 0;
	}

	.umaps-pledge-progress__legend {
		display: grid;
		gap: 7px;
	}

	.umaps-pledge-progress__bar-meta {
		display: grid;
		gap: 4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.umaps-pledge-progress__fill {
		transition: none;
	}
}
