/* Countdown Timer – Moje Cesta */
.ctmj-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  gap: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.ctmj-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ctmj-number {
  font-size: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ctmj-label {
  font-size: 1rem;
  color: #666;
}

.ctmj-separator {
  font-size: 2rem;
  color: #e0b400;
  margin: 0 10px;
}

.ctmj-footer {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 1.1rem;
  color: #555;
  font-weight: 400;
}
