/* Akademia Oferta Timer – style domyślne.
   Wszystkie kolory, typografia i odstępy są nadpisywalne w zakładce „Styl" w Elementorze. */

.aof-timer {
	display: block;
	max-width: 100%;
	font-family: inherit;
	line-height: 1.4;
}

.aof-timer__heading {
	font-size: 1.6em;
	font-weight: 800;
	margin: 0 0 8px;
}

.aof-timer__sub {
	font-size: 1em;
	margin: 0 0 18px;
	opacity: 0.95;
}

.aof-timer__now {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	justify-content: inherit;
	align-items: baseline;
	font-size: 0.95em;
	margin: 0 0 18px;
}

/* Wyrównanie środkowe domyślnie – sterowane przez text-align na .aof-timer */
.aof-timer[style*="center"] .aof-timer__now,
.aof-timer .aof-timer__now {
	justify-content: center;
}

.aof-timer__date::before {
	content: "📅 ";
}

.aof-timer__time::before {
	content: "⏰ ";
}

.aof-timer__countdown {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 0;
}

.aof-timer__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	min-width: 64px;
}

.aof-timer__num {
	display: inline-block;
	min-width: 64px;
	padding: 12px 8px;
	font-size: 1.9em;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	border-radius: 10px;
	color: #fff;
	background: #dc2626;
}

.aof-timer__label {
	font-size: 0.8em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.aof-timer__expired {
	font-size: 1.2em;
	font-weight: 700;
	margin-top: 6px;
}

/* Responsywność – mniejsze cyfry na telefonach */
@media (max-width: 480px) {
	.aof-timer__num {
		min-width: 52px;
		font-size: 1.5em;
		padding: 10px 6px;
	}
	.aof-timer__unit {
		min-width: 52px;
	}
}
