.dc-carousel {
  display: flex; overflow-x: auto; gap: 24px;
  scroll-behavior: smooth; padding: 30px 0 20px 0;
}
.dc-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px #e2eaf8;
  flex: 0 0 12%;
  min-width: 260px;
  max-width: 280px;
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #f0f4fc;
  position: relative;
}
.dc-category {
  background: #1B4D91;
  color: #fff;
  border-radius: 12px;
  font-size: 13px;
  padding: 3px 16px;
  font-weight: 500;
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
}
.dc-image {
  margin: 9px 0 12px 0;
  width: 100%;
}
.dc-image img {
  border-radius: 13px;
  width: 100%;
  height: 110px;
  object-fit: cover;
  display:block;
}
.dc-progress-bar {
  width: 100%;
  background: #d8e6f9;
  border-radius: 7px;
  height: 13px;
  margin: 6px 0 3px 0;
  position: relative;
}
.dc-progress {
  background: #1B4D91;
  height: 13px;
  border-radius: 7px;
  transition: width 0.4s;
}
.dc-percent {
  position: absolute;
  right: 10px;
  top: -21px;
  font-size: 13px;
  color: #1B4D91;
  font-weight: bold;
}
.dc-stats {
  font-size: 13px;
  color: #666;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 9px;
}
.dc-title {
  font-weight: bold;
  font-size: 1.07em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.dc-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
  height: 44px;
  overflow: hidden;
}
.dc-donate-btn {
  background: #1B4D91;
  font-weight: 600;
  border-radius: 20px;
  padding: 9px 26px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  transition: background 0.2s;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.dc-donate-btn:hover { background: #193b6a; color: #fff; }
@media(max-width:1450px) { .dc-card { flex: 0 0 18%; } }
@media(max-width:1200px) { .dc-card { flex: 0 0 23%; font-size:15px;} }
@media(max-width:900px)  { .dc-card { flex: 0 0 28%; } }
@media(max-width:700px)  { .dc-card { flex: 0 0 47%; } }
@media(max-width:540px)  { .dc-card { flex: 0 0 97%; min-width:180px; padding:12px;} }