.ece-countdown {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.ece-countdown *,
.ece-countdown *::before,
.ece-countdown *::after {
	box-sizing: border-box;
}

.ece-countdown__prefix {
	margin-bottom: 14px;
	color: #6b7280;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ece-countdown__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 16px;
	width: 100%;
}

.ece-countdown__item {
	display: flex;
	min-width: 110px;
	padding: 22px 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 22px;
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
	text-align: center;
}

.ece-countdown__number {
	display: block;
	color: #111827;
	font-size: clamp(36px, 6vw, 68px);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.ece-countdown__label {
	display: block;
	margin-top: 10px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ece-countdown__separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111827;
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 800;
	line-height: 1;
}

.ece-countdown__expired {
	color: #111827;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.ece-countdown-admin-note {
	padding: 14px 16px;
	border-left: 4px solid #d63638;
	background: #fff8f8;
	color: #1d2327;
}

@media (max-width: 767px) {
	.ece-countdown__inner {
		gap: 12px;
	}

	.ece-countdown__item {
		min-width: 92px;
		padding: 18px 16px;
	}
}

@media (max-width: 480px) {
	.ece-countdown__inner {
		gap: 10px;
	}

	.ece-countdown__item {
		min-width: 86px;
	}

	.ece-countdown__separator {
		display: none;
	}
}
