/* Donations Grid */
.dst-donations-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dst-donations-grid.single {
  max-width: 400px;
  margin: 0 auto;
}

/* Card */
.dst-donation-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dst-donation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Image */
.dst-donation-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

/* Content */
.dst-donation-content {
  padding: 15px;
}

.dst-donation-content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}

.dst-donation-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

/* Donate Button */
.dst-donation-link {
  display: inline-block;
  background: #910011;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.dst-donation-link:hover {
  background: #C69C55;
  color: #000;
  transform: translateY(-2px);
}

/* Progress Section */
.dst-donation-progress {
  margin: 10px 0 15px;
}

.dst-donation-raised {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #910011; /* crimson */
  margin-bottom: 6px;
}

/* Progress Bar */
.dst-progress-bar {
  width: 100%;
  height: 8px;
  background: #f1f1f1;
  border-radius: 4px;
  overflow: hidden;
}

.dst-progress-fill {
  height: 100%;
  width: 100%; /* always filled, since no goal */
  background: linear-gradient(90deg, #910011, #C69C55);
  border-radius: 4px;
}

/* Progress Section */
.dst-donation-progress {
  margin: 10px 0 15px;
}

.dst-donation-raised {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #910011; /* crimson */
  margin-bottom: 6px;
}

/* Progress Bar */
.dst-progress-bar {
  width: 100%;
  height: 8px;
  background: #f1f1f1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.dst-progress-fill {
  height: 100%;
  width: 0; /* start at 0 for animation */
  background: linear-gradient(90deg, #910011, #C69C55);
  border-radius: 4px;
  transition: width 1.2s ease-in-out; /* smooth animation */
}

