/* paragraph--countdown.css */

/* ── Wrapper ─────────────────────────────────────────── */
.paragraph--type--countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  font-family: inherit;
  width: 100%;
}

/* ── Titel ───────────────────────────────────────────── */
.countdown__title {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ── Units-Reihe ─────────────────────────────────────── */
.countdown__units {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;  /* bleibt einzeilig solange möglich */
  width: 100%;
}

/* ── Einzelne Einheit ────────────────────────────────── */
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
}

/* ── Slot (Zahlen-Fenster) ───────────────────────────── */
.countdown__slot {
  width: 88px;
  height: 72px;
  overflow: hidden;
  position: relative;
}

/* ── Ziffer ──────────────────────────────────────────── */
.countdown__digit {
  font-size: 52px;
  font-weight: 700;
  line-height: 72px;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  /* Schräger Helligkeitsverlauf */
  background: linear-gradient(120deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,.12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Label ───────────────────────────────────────────── */
.countdown__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Trennzeichen ────────────────────────────────────── */
.countdown__sep {
  font-size: 46px;
  font-weight: 700;
  opacity: 0.5;
  line-height: 1;
  margin-top: 12px;
  flex-shrink: 0;
}

/* ── Animationen ─────────────────────────────────────── */
@keyframes countdown-enter {
  0%   { filter: brightness(.45); }
  100% { filter: brightness(1); }
}

@keyframes countdown-exit {
  0%   { filter: brightness(1); }
  100% { filter: brightness(.45); }
}

/* ── Responsive: Tablet (max. 600px) ────────────────── */
@media (max-width: 600px) {
  .countdown__units {
    gap: 0.4rem;
  }

  .countdown__slot {
    width: 68px;
    height: 56px;
  }

  .countdown__digit {
    font-size: 40px;
    line-height: 56px;
  }

  .countdown__sep {
    font-size: 34px;
    margin-top: 8px;
  }

  .countdown__label {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
}

/* ── Responsive: Mobil klein (max. 400px) ────────────── */
@media (max-width: 400px) {
  .countdown__units {
    gap: 0.25rem;
  }

  .countdown__slot {
    width: 54px;
    height: 46px;
  }

  .countdown__digit {
    font-size: 32px;
    line-height: 46px;
  }

  .countdown__sep {
    font-size: 26px;
    margin-top: 6px;
  }

  .countdown__label {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}