a.button.outline {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-weight: 500;
}

a.button.outline:hover {
  background: rgba(201, 91, 23, 0.08);
  box-shadow: none;
  color: var(--orange-dark);
}

.hero-countdown {
  color: var(--orange);
  margin: 0 0 1.6rem;
  max-width: 36rem;
}

.countdown-grid {
  display: grid;
  gap: clamp(0.7rem, 2.5vw, 2rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.countdown-item {
  align-items: center;
  color: var(--orange);
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  min-width: 0;
}

.countdown-item strong {
  color: var(--orange);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.65rem, 6vw, 4.35rem);
  font-weight: 900;
  line-height: 0.9;
}

.countdown-item span {
  color: var(--orange);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 620px) {
  .hero-countdown {
    max-width: 100%;
  }

  .countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
