/* public/countdownPage.css */

.page--countdown{
  /* widen the layout for this page */
  --max: 1400px;
}

.page--countdown .page{
  /* fill the viewport and center the countdown card */
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-items: center;
}

.page--countdown .footer{
  margin-top: 0;
}

.countdownPage{
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px;
}

.countdownPage__sub{
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.count--big{
  margin-top: 18px;
  gap: 18px;
}

.count--big .tbox{
  padding: 32px 18px;
  border-radius: 22px;
}

.count--big .tbox__n{
  font-size: clamp(96px, 10.5vw, 220px);
  font-weight: 950;
  letter-spacing: -1.5px;
  line-height: .95;
}

.count--big .tbox__l{
  margin-top: 10px;
  font-size: 15px;
}

.countdownPage .progress-bar{
  margin-top: 16px;
  height: 12px;
  border-radius: 999px;
}

@media (max-width: 520px){
  .count--big{ grid-template-columns: repeat(2, 1fr); }
}
