.ccd-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.ccd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.ccd-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ccd-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.ccd-desc {
  font-size: 14px;
  margin-bottom: 10px;
}

.ccd-urgency.red {
  background: #ffe5e5;
  color: #d8000c;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ccd-urgency.orange {
  background: #fff4e5;
  color: #ff8800;
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.ccd-proof {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.ccd-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.ccd-btn:hover {
  background: linear-gradient(135deg, #1ebe5d, #17a34a);
}

.ccd-expired {
  background: #fff3cd;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

.ccd-header {
  background:#f8f9fa;
  padding:20px;
  border-radius:10px;
  margin-bottom:20px;
}

.ccd-cta {
  display:inline-block;
  background:#28a745;
  color:#fff;
  padding:10px 15px;
  border-radius:6px;
  text-decoration:none;
}

.ccd-stats {
  display:flex;
  gap:15px;
  margin:15px 0;
  font-size:14px;
}

.ccd-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.ccd-cta,
.ccd-btn,
.ccd-btn:hover,
.ccd-btn:focus {
  text-decoration: none !important;
}

/* MOBILE */
@media (max-width:600px) {
  .ccd-stats {
    flex-direction:column;
  }