.countdown-component {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(169, 210, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
    rgba(5, 22, 42, 0.42);
  box-shadow:
    0 22px 60px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.countdown-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 4px 4px 24px;
}

.countdown-kicker {
  margin: 0 0 7px;
  color: #77baff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
}

.countdown-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.035em;
}

.meeting-date {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.time-card {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px) 12px;
  text-align: center;
  border: 1px solid rgba(160, 210, 255, 0.12);
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(91, 169, 255, .09), rgba(255,255,255,.025));
}

.time-value {
  display: block;
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}

.time-label {
  display: block;
  margin-top: 10px;
  color: rgba(213, 232, 255, .48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.countdown-bottom {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 20px 4px 1px;
  color: var(--muted);
  font-size: 13px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #70b8ff;
  box-shadow: 0 0 18px rgba(93, 177, 255, .85);
  animation: countdown-pulse 2.2s ease-in-out infinite;
}

@keyframes countdown-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .countdown-copy {
    display: block;
  }

  .meeting-date {
    margin-top: 10px;
    text-align: left;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
