#donate {
  background-color: var(--white);
  color: var(--blue);
  padding: 3.2rem 0;
}

/* two-column layout */
.donate {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 3rem;
}

/* LEFT COLUMN: QR + text */
.donate-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.donate-qr img {
  max-width: 260px; /* controls size */
  width: 100%;
  height: auto;
  display: block;
}

.donate-note {
  margin: 0;
  max-width: 32ch;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--blue);
}

/* RIGHT COLUMN: title + button */
.donate-right .section-title {
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 920px) {
  .donate {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }

  .donate-right {
    text-align: center;
    grid-row: 1/2;
  }

  .donate-right .section-title {
    max-width: 20ch;
    margin: 0 auto 2rem auto;
  }

  .donate-cta {
    margin: 0 auto;
  }
}
