.don-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.don-wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #f0c23c;
  margin-bottom: 1rem;
  font-weight: bold;
}

.don-intro {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 900px;
}

.don-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

/* === CARDS === */
.don-card {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 280px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.don-card:hover {
  transform: scale(1.05);
}

.don-card:hover .don-box {
  background-color: #3a3a3a;
  box-shadow: 0 12px 24px rgba(240, 194, 60, 0.2);
}

.don-box {
  background-color: #2a2a2a;
  padding: 24px 20px;
  border-radius: 20px;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.don-box h2 {
  color: #f0c23c;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.don-box p {
  font-size: 0.95rem;
  color: white;
  line-height: 1.4;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* === BOUTON === */
.don-btn {
  display: inline-block;
  background-color: #f0c23c;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  font-family: "Playfair Display", serif;
}

.don-btn:hover {
  background-color: #ffe57a;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .don-card {
    width: 90%;
  }

  .don-box {
    padding: 20px;
  }

  .don-wrapper h2 {
    font-size: 1.5rem;
  }

  .don-intro {
    font-size: 1rem;
  }
}

@media (min-width: 1600px) {
  .don-wrapper {
    padding-top: 60px;
    padding-bottom: 80px;
    max-width: 1800px;
  }

  .don-wrapper h2 {
    font-size: 3.2rem;
  }

  .don-intro {
    font-size: 1.5rem;
    max-width: 85%;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  .don-options {
    max-width: 1400px;
    gap: 40px;
  }

  .don-card {
    width: 360px;
  }

  .don-box {
    padding: 36px 28px;
    min-height: 320px;
  }

  .don-box h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .don-box p {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .don-btn {
    padding: 14px 28px;
    font-size: 1.15rem;
    margin-top: auto;
  }
}
