.ctp-countdown-wrapper {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 20px;
  max-width: 720px;
  background: #fff;
}

.ctp-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.ctp-segment {
  text-align: center;
  padding: 14px 10px;
  border-radius: 10px;
  background: #f6f7f9;
}

.ctp-number {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
}

.ctp-label {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: #555;
}

.ctp-expired {
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .ctp-countdown {
    grid-template-columns: repeat(2, minmax(70px, 1fr));
  }
}
