.donateGrid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .donateGrid {
    grid-template-columns: 1fr;
  }
}

.donateBox {
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.donateText {
  line-height: 1.55;
  margin-bottom: 12px;
}

.qrWrap {
  margin-top: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.qrImg {
  width: min(320px, 100%);
  height: auto;
  border-radius: 12px;
}

.donateLink {
  font-size: 14px;
  word-break: break-all;
}

.link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.wrap {
  text-align: center;
}

.top {
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.brand {
  justify-content: center;
  text-align: center;
}

.card {
  margin: 0 auto;
}