/**
 * Countdown – styles and accessibility (DD : HH : MM).
 */

.visually-hidden,
.countdown .visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.countdown {
	display: inline-block;
	/* Police du thème (preset block themes ou héritée) + fallback système */
	font-family: var(--wp--preset--font-family--primary, inherit), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.4;
	color: #1a1a1a;
}

.countdown__label {
	display: block;
	margin-bottom: 0.25em;
	font-weight: 600;
}

.countdown__display {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.1em;
	font-variant-numeric: tabular-nums;
}

/* Format "labels" : DD : HH : MM avec libellés sous chaque valeur */
.countdown--labels .countdown__display {
	align-items: flex-start;
	gap: 0.25em 0.5em;
}

.countdown--labels .countdown__part {
	flex-direction: column;
	align-items: center;
	min-width: 2.5ch;
}

.countdown--labels .countdown__separator {
	font-weight: 700;
	opacity: 0.9;
	align-self: flex-start;
}

.countdown--labels .countdown__value {
	display: block;
	font-weight: 700;
}

.countdown--labels .countdown__unit-label {
	display: block;
	font-size: 0.5em;
	opacity: 0.85;
	text-transform: lowercase;
	font-weight: 500;
}

/* Format "compact" : DD HH MM avec abréviations inline */
.countdown__part {
	display: inline-flex;
	align-items: baseline;
	font-weight: 700;
	min-width: 2ch;
	text-align: center;
}

.countdown__unit {
	margin-left: 0.1em;
	opacity: 0.85;
	user-select: none;
}
</think><｜tool▁call▁begin｜>
TodoWrite

.countdown__sr-only {
	margin: 0;
}

.countdown--ended .countdown__display {
	opacity: 0.7;
}
