/* Countdown — Editorial typographic rule */

#countdown-timer {
  margin: 40px 0 48px;
  text-align: center;
}

.cd-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 127, 0, 0.6);
  margin-bottom: 20px;
}

/* Horizontal rule layout */
.cd-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

/* Thin vertical separator */
.cd-rule {
  width: 1px;
  height: 52px;
  background: rgba(255, 127, 0, 0.25);
  flex-shrink: 0;
}

/* The number */
.cd-num {
  font-family: var(--ff-serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* The label */
.cd-lbl {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.cd-expired {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-style: italic;
  color: var(--orange);
}

@media (max-width: 768px) {
  .cd-unit { padding: 0 20px; }
  .cd-num  { font-size: 44px; }
  .cd-rule { height: 36px; }
}
