/**
 * Floating Elements Manager — Countdown Timer widget.
 * Structural base only; colors/typography/spacing come from Elementor controls.
 */

.fem-countdown {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.fem-countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.fem-countdown-value {
	display: block;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.fem-countdown-label {
	display: block;
	margin-top: 4px;
	text-transform: uppercase;
}

.fem-countdown.is-expired[data-expire-action="hide"] {
	display: none;
}
