.cl-sv-countdown {
  --cl-sv-red: #d81b28;
  --cl-sv-white: #ffffff;
  --cl-sv-bg: none;
  --cl-sv-overlay-bg: linear-gradient(135deg, rgba(216, 27, 40, 0.9), rgba(216, 27, 40, 0.75));
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 10px 18px;
  border-radius: 0;
  background-color: #000000;
  background-image: var(--cl-sv-bg);
  background-size: cover;
  background-position: center;
  color: var(--cl-sv-white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.cl-sv-countdown::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cl-sv-overlay-bg);
  z-index: 0;
}

.cl-sv-countdown__title,
.cl-sv-countdown__timer {
  position: relative;
  z-index: 1;
}

.cl-sv-countdown__title {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
}

.cl-sv-countdown__timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cl-sv-countdown__segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  border-radius: 0;
  background: #0000005c;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  min-height: 58px;
}

.cl-sv-countdown__num {
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  font-family: "Lato";
}

.cl-sv-countdown__label {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (min-width: 641px) {
  .cl-sv-countdown__num {
    font-size: 1em;
  }
}

@media (max-width: 640px) {
  .cl-sv-countdown {
    border-radius: 0;
    padding: 12px 12px;
  }

  .cl-sv-countdown__timer {
    gap: 6px;
  }

  .cl-sv-countdown__segment {
    min-height: 39px;
    padding: 7px 3px;
  }

  .cl-sv-countdown__num {
    font-size: 0.9rem;
  }

  .cl-sv-countdown__label {
    font-size: 0.5rem;
  }
}

@media (max-width: 420px) {
  .cl-sv-countdown__title {
    font-size: 0.7rem;
  }

  .cl-sv-countdown__num {
    font-size: 0.9rem;
  }

  .cl-sv-countdown__label {
    font-size: 0.5rem;
  }
}
