/* Craig Proctor–style event countdown (circular units, always one row) */
.cp-countdown {
  margin: 0 0 18px;
  width: 100%;
}

.cp-countdown-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(4px, 1.5vw, 10px);
  width: 100%;
}

.cp-countdown-unit {
  flex: 1 1 0;
  min-width: 0;
  max-width: 76px;
  text-align: center;
}

.cp-countdown-circle {
  width: min(72px, 100%);
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto 6px;
  border: 3px solid #1d3fb1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-sizing: border-box;
}

.cp-countdown-value {
  font-family: Poppins, "Open Sans", sans-serif;
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.cp-countdown-label {
  display: block;
  font-family: Poppins, "Open Sans", sans-serif;
  font-size: clamp(8px, 2.2vw, 11px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
}

.cp-countdown--ended .cp-countdown-grid {
  display: none;
}

.cp-countdown-ended-msg {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  text-align: center;
  font-family: Poppins, "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2344a3;
  background: #e8f0fa;
  border-radius: 6px;
  line-height: 1.4;
}

.cp-countdown--ended .cp-countdown-ended-msg {
  display: block;
}

@media (max-width: 520px) {
  .cp-countdown-circle {
    border-width: 2px;
  }
}
