.donation-form-wrap { max-width: 980px; }
.donation-form h4 { margin: 0 0 12px; }

.df-two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

.df-panel{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.df-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.df-col-2 { grid-column: span 2; }

.donation-form label { display:block; font-weight: 600; }
.donation-form input, .donation-form select, .donation-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-weight: 400;
}

.df-amounts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}



.df-amount-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.df-amount-btn.is-active {
  border-color: #1A3D2E;
  background-color: #1A3D2E;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}
.donation-form .select__field {
  display: block !important;
  width: 100%;
  margin-top: 6px;
}

.donation-form select {
  display: block;
  width: 100%;
}
.df-custom {
  grid-column: 1 / -1; /* full width below buttons */
  margin-top: 6px;
}

.df-deduction { margin: 10px 0 0; opacity: .9; }

.df-submit {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 820px){
  .df-two-col{ grid-template-columns: 1fr; }
  .donation-form-wrap { max-width: 760px; }
}