/*
 * Litter countdown.
 *
 * Numbers in the display face, labels in letterspaced caps, hairline
 * separators — the same language as the pedigree tables.
 */

.cz-countdown {
	text-align: center;
}

.cz-countdown .cz-eyebrow {
	margin-bottom: 0.9rem;
}

.cz-countdown__title {
	font-family: var(--wp--preset--font-family--display, Georgia, serif);
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	font-weight: 400;
	letter-spacing: 0.012em;
	color: var(--wp--preset--color--gold, #c39a63);
	margin: 0 0 0.35rem;
}

.cz-countdown__date {
	color: var(--wp--preset--color--muted, #a89f93);
	font-size: 0.9375rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 2.2rem;
}

.cz-countdown__grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0;
	margin: 0 auto 2.4rem;
	max-width: 40rem;
}

.cz-countdown__unit {
	flex: 1 1 0;
	padding: 0.4rem 1.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.cz-countdown__unit + .cz-countdown__unit {
	border-left: 1px solid var(--wp--preset--color--rule, #312a24);
}

.cz-countdown__num {
	font-family: var(--wp--preset--font-family--display, Georgia, serif);
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 400;
	line-height: 1;
	color: var(--wp--preset--color--bone, #f0ebe3);
	font-variant-numeric: tabular-nums;
}

.cz-countdown__label {
	font-size: 0.6875rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted, #a89f93);
}

.cz-countdown__cta {
	display: flex;
	justify-content: center;
}

@media (max-width: 600px) {
	.cz-countdown__unit {
		padding: 0.3rem 0.6rem;
	}
}
