.cdce-dial-widget {
	display: flex;
	width: 100%;
	justify-content: center;
}

.cdce-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	text-align: center;
	background: #fff;
	border: 1px solid #e4e7ed;
	border-radius: 24px;
	padding: 34px;
	box-shadow: 0 4px 24px rgba(15, 30, 60, 0.06);
	transition-property: transform, box-shadow, border-color, background-color;
	transition-timing-function: ease;
	transition-duration: .3s;
}

.cdce-dial-wrap {
	position: relative;
	width: 220px;
	height: auto;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	margin: 6px 0 8px;
	flex: 0 0 auto;
}

.cdce-dial-svg {
	display: block;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	overflow: visible;
}

.cdce-dial-track,
.cdce-dial-fill {
	fill: none;
	stroke-width: 14;
	vector-effect: non-scaling-stroke;
}

.cdce-dial-track {
	stroke: #e9effb;
}

.cdce-dial-fill {
	stroke-linecap: round;
	will-change: stroke-dashoffset;
}

.cdce-dial-center {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15%;
	box-sizing: border-box;
	pointer-events: none;
}

.cdce-dial-number {
	display: block;
	font-size: 40px;
	font-weight: 600;
	line-height: 1;
	color: #1e438d;
	white-space: nowrap;
}

.cdce-dial-label {
	display: block;
	max-width: 150px;
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.35;
	color: #6b7280;
}

.cdce-caption {
	max-width: 280px;
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.55;
	color: #6b7280;
}

.cdce-footer {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	margin-top: 18px;
	padding-top: 16px;
	column-gap: 12px;
	row-gap: 14px;
	border-top: 1px dashed #e4e7ed;
}

.cdce-footer-item {
	min-width: 0;
	text-align: center;
}

.cdce-footer-label,
.cdce-footer-value {
	display: block;
	overflow-wrap: anywhere;
}

.cdce-footer-label {
	font-size: 12.5px;
	line-height: 1.35;
	color: #6b7280;
}

.cdce-footer-value {
	margin-top: 2px;
	font-family: monospace;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.35;
	color: #1e438d;
}

@media (max-width: 767px) {
	.cdce-footer {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cdce-card,
	.cdce-dial-fill {
		transition: none !important;
	}
}
