.hero-countdown {
  width: min(700px, 100%);
  margin: 0 0 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(4, 50, 82, 0.94), rgba(8, 121, 186, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 36, 62, 0.26);
  backdrop-filter: blur(8px);
}

.hero-countdown-copy {
  display: grid;
  gap: 3px;
  line-height: 1.2;
}

.hero-countdown-copy strong {
  font-size: 0.94rem;
  font-weight: 950;
}

.hero-countdown-copy span {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 720;
}

.hero-countdown-clock {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
}

.hero-time-unit {
  min-width: 48px;
  display: grid;
  justify-items: center;
}

.hero-time-unit b {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-time-unit small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-time-separator {
  margin: 1px 2px 0;
  color: #ffd24a;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

@media (max-width: 560px) {
  .hero-countdown {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
    padding: 13px 14px;
  }

  .hero-countdown-copy {
    text-align: center;
  }

  .hero-countdown-copy span {
    max-width: none;
  }

  .hero-countdown-clock {
    justify-content: center;
  }

  .hero-time-unit {
    min-width: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-countdown {
    backdrop-filter: none;
  }
}
