/* Container */
.card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  align-items: stretch;
  padding: 1%;
}

/* Each item */
.item {
  display: flex;
  flex-direction: column;
}

/* Title */
.donate-title {
  text-align: center;
  color: #0a7a73;
  margin-top: 15px;
}

/* Gray wrapper */
.card-wrapper {
  background: #cfcfcf;
  border-radius: 15px;
  flex-grow: 1;
  display: flex;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Card */
.donation {
  background: #f3f3f3;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Image */
.donation img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Text */
.card-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Button */
.donation button {
  background: #0a7a73;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.donation button:hover {
  background: #075f59;
}

/* Mobile */
@media (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}