.countdown {
  filter: drop-shadow(0 8px 24px rgba(210, 247, 90, 0.15));
}

.countdown__heading {
  margin-bottom: 0.875rem;
}

.countdown__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg, #ffffff);
  text-align: left;
}

.countdown__counter {
  position: relative;
}

.gw-timer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  box-sizing: border-box;
}

@media (min-width: 680px) {
  .gw-timer {
    gap: 0.75rem;
  }
}

.gw-timer__item {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 1;
  box-sizing: border-box;
}

@media (min-width: 680px) {
  .gw-timer__item {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.gw-timer__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: rgba(20, 20, 24, 0.65);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.gw-timer__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(210, 247, 90, 0.18) 0%, rgba(210, 247, 90, 0) 60%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  opacity: 0.7;
}

.gw-timer__amount {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  color: var(--primary, #d2f75a);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(210, 247, 90, 0.25);
}

@media (min-width: 680px) {
  .gw-timer__amount {
    font-size: 1.875rem;
  }
}

.gw-timer__desc {
  margin-top: 0.3rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg, #ffffff);
  line-height: 1;
  text-align: center;
}

@media (min-width: 680px) {
  .gw-timer__desc {
    font-size: 0.7rem;
  }
}
