.timer-container {
  background-color: var(--bg-white, #fff);
  box-shadow: 0px 8px 16px 0px rgba(39, 40, 51, 0.16);
  padding: var(--spacing--card-padding);
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
  max-width: 500px;
}

.card-title, .faq-q-text {
  --font--card-title: var(--card-title);
}

.card-title {
  font-size: var(--font--card-title);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: initial;
}

.timer-container .card-title {
  margin: 0;
}

.timer-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 24px;
}

.timer-unit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--swatch--cmic-red, #da291c);
  line-height: 1;
  font-family: Barlow, sans-serif;
}

.timer-label {
  font-size: 24px;
  line-height: 1.375;
  margin-top: 6px;
}

.timer-separator {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  font-family: Barlow, sans-serif;
}

@media screen and (max-width: 991px) {
  .timer-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .timer-wrapper {
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .timer-container {
    padding: var(--spacing-md, 24px);
  }
  .timer-number {
    font-size: 32px;
  }
  .timer-separator {
    font-size: 24px;
  }
  .timer-wrapper {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .timer-number {
    font-size: 24px;
  }
  .timer-label {
    font-size: 16px;
  }
  .timer-wrapper {
    gap: 4px;
  }
}
