.mendelc-registry-summary {
	background: linear-gradient(180deg, rgba(38, 86, 217, 0.06), rgba(38, 86, 217, 0.02));
	border: 1px solid rgba(38, 86, 217, 0.16);
	border-radius: 16px;
	display: flex;
	flex: 0 1 280px;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	min-height: 100%;
	padding: 12px 14px;
}

.mendelc-registry-summary__total {
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 10px;
}

.mendelc-registry-summary__total-row {
	align-items: flex-end;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.mendelc-registry-summary__total-main {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.mendelc-registry-summary__split {
	display: grid;
	gap: 10px 12px;
	grid-template-columns: 1fr 1fr;
}

.mendelc-registry-summary__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.mendelc-registry-summary__label {
	color: #6b7280;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
}

.mendelc-registry-summary__total .mendelc-registry-summary__value {
	font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.mendelc-registry-summary__split .mendelc-registry-summary__value {
	font-size: clamp(0.95rem, 2.4vw, 1.08rem);
}

.mendelc-registry-summary__value {
	color: #111827;
	font-weight: 800;
	line-height: 1.15;
	white-space: nowrap;
}

.mendelc-registry-summary__item--synced .mendelc-registry-summary__value {
	color: #047857;
}

.mendelc-registry-summary__item--pending .mendelc-registry-summary__value {
	color: #b45309;
}

.mendelc-registry-summary__percent {
	color: #2656d9;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.1;
	white-space: nowrap;
}

.mendelc-registry-summary.is-progress-active .mendelc-registry-summary__percent.is-over-goal {
	color: #ea580c;
}

.mendelc-registry-summary.is-progress-static .mendelc-registry-summary__percent {
	display: none;
}

.mendelc-registry-summary__progress {
	background: rgba(17, 24, 39, 0.08);
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.mendelc-registry-summary__progress-green,
.mendelc-registry-summary__progress-red {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	top: 0;
	transition: width 240ms ease;
}

.mendelc-registry-summary__progress-green {
	background: linear-gradient(90deg, #059669, #10b981);
	inset-inline-start: 0;
	width: 0;
	z-index: 1;
}

.mendelc-registry-summary__progress-red {
	background: linear-gradient(270deg, #ea580c, #fb923c);
	inset-inline-end: 0;
	width: 0;
	z-index: 2;
}

.mendelc-registry-summary.is-progress-static .mendelc-registry-summary__progress-green {
	background: linear-gradient(90deg, rgba(38, 86, 217, 0.55), rgba(79, 124, 240, 0.75));
	width: 100% !important;
}

.mendelc-registry-summary.is-progress-static .mendelc-registry-summary__progress-red {
	display: none;
}

.mendelc-card__header,
.mendelc-conductor-card__header {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	justify-content: space-between;
}

.mendelc-card__header-main,
.mendelc-conductor-card__header-main {
	flex: 1 1 220px;
	min-width: 0;
}

.mendelc-conductor-card__header {
	margin-bottom: 16px;
}

.mendelc-conductor-card__header-main h2 {
	margin: 0;
}