/* Inline phrase: "146 DAYS TO GO!" */
.wedding-countdown {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  text-align: center;
}

/* Big elegant number */
.wedding-countdown .wc-value {
  font-family: "Cormorant Garamond", "Bodoni Moda", serif;
  line-height: 1;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #414042;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

/* Text (keep your label style) */
.wedding-countdown .wc-text {
  font-family: "Cormorant Garamond", "Bodoni Moda", serif;
  line-height: 1;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #414042;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 520px) {
  .wedding-countdown {
    gap: 10px;
    flex-wrap: wrap;
    padding-inline: 14px;
  }

  .wedding-countdown .wc-text {
    font-size: 18px;
    letter-spacing: 0.22em;
  }
}
