/* Funnels – Countdown-Timer (Norman-Brand: Navy/Weiß) */
.gf-timer {
	--gf-navy: #062741;
	--gf-ink: #ffffff;
	display: flex;
	justify-content: center;
	margin: 1em 0;
	font-family: inherit;
}
.gf-timer-grid {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.gf-timer-unit {
	background: var(--gf-navy);
	color: var(--gf-ink);
	border-radius: 10px;
	min-width: 66px;
	padding: 12px 10px;
	text-align: center;
	box-shadow: 0 12px 34px -16px rgba(6, 39, 65, .45);
}
.gf-timer-num {
	display: block;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.gf-timer-lbl {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .78;
}
.gf-timer-sep {
	color: var(--gf-navy);
	font-size: 26px;
	font-weight: 700;
	opacity: .35;
	line-height: 1;
	padding-bottom: 14px;
}
.gf-timer.is-expired .gf-timer-grid { display: none; }
.gf-timer-expired {
	font-weight: 600;
	color: var(--gf-navy);
	text-align: center;
	padding: 10px 0;
}
@media (max-width: 480px) {
	.gf-timer-unit { min-width: 54px; padding: 10px 7px; }
	.gf-timer-num { font-size: 23px; }
	.gf-timer-sep { font-size: 20px; padding-bottom: 12px; }
}
