/* ═══════════════════════════════════════════════════════════
   TOTEC — Countdown-timer
═══════════════════════════════════════════════════════════ */

/* ─── Grid: fyra enheter på rad ─────────────────────────── */
.countdown__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: nowrap;
}

/* ─── En siffra + etikett ───────────────────────────────── */
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  min-width: 0;
}

/* ─── Siffran ────────────────────────────────────────────── */
.countdown__digit {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6.5vw, 3rem);
  color: var(--color-gold);
  line-height: 1;

  /* Terminalram */
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-sm);
  min-width: clamp(3rem, 14vw, 6rem);
  text-align: center;

  /* Grundglöd */
  box-shadow:
    0 0 6px rgba(200, 146, 10, 0.3),
    inset 0 0 8px rgba(0, 0, 0, 0.6);
}


/* ─── Separator ":" ─────────────────────────────────────── */
.countdown__sep {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  color: var(--color-muted);
  line-height: 1;
  /* Justerar vertikalt så den hamnar i linje med siffrorna */
  padding-top: clamp(0.5rem, 2vw, 0.9rem);
  flex-shrink: 0;
  user-select: none;
}

/* ─── Etikett (DAGAR / TIMMAR …) ────────────────────────── */
.countdown__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── Live-läge ─────────────────────────────────────────── */
.countdown__live {
  font-family: var(--font-display);
  font-size: clamp(var(--text-sm), 4vw, var(--text-xl));
  color: var(--color-gold-bright);
  text-shadow: var(--glow-gold);
  letter-spacing: 0.05em;
  animation: titel-puls 2s ease-in-out infinite;
}

/* ─── Desktop (768px+) ───────────────────────────────────── */
@media (min-width: 768px) {
  .countdown__grid {
    gap: var(--space-md);
  }

  .countdown__digit {
    padding: var(--space-md) var(--space-md);
  }
}
