/* Conteneur général en colonne */
.edgtf-countdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* 1) Rangée des chiffres (plein écran) */
.edgtf-countdown .countdown-row {
  display: flex !important;
  justify-content: space-between;
  width: 100%;
  max-width: none;
}

/* 2) Chaque “section” : part égale et centré */
.edgtf-countdown .countdown-section {
  flex: 1;
  text-align: center;
}

/* 3) Les chiffres en très grand */
.edgtf-countdown .countdown-amount {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

/* 4) Les libellés */
.edgtf-countdown .countdown-period {
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.8;
  color: #fff;
}

/* 5) Titre de l’événement sous le countdown */
.ec-countdown-event-title {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #fff;
}
