/* ==========================================================================
   CSS PAGES - DONASI.CSS (Saluran Donasi & QRIS)
   ========================================================================== */

body {
  background-color: #ffffff !important;
}

.donasi-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.donasi-info-content {
  display: flex;
  flex-direction: column;
}

.donasi-headline {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.donasi-text {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.donation-rekening-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── REKENING CARD STYLING ── */
.bank-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  padding: 1.6rem 1.75rem;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.bank-name {
  color: #4b5563;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.bank-number {
  color: #111827;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.bank-info-flex { min-width: 0; }

.bank-holder {
  color: #1f2937;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-copy {
  background-color: #f3f4f6;
  color: #111827;
  border: 1px solid #d1d5db;
  font-weight: 700;
}

.btn-copy:hover {
  background-color: var(--green, #2e5a1c);
  color: #ffffff;
  border-color: var(--green, #2e5a1c);
}

/* ── QRIS CARD STYLING ── */
.qris-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 2.25rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.qris-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.qris-desc {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.qris-image {
  background-color: #ffffff;
  padding: 0.85rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.qris-holder {
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .donasi-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .donasi-headline {
    font-size: 1.35rem;
  }
  .bank-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1.35rem 1.4rem;
  }
  .bank-info-flex {
    gap: 1rem;
  }
  .bank-number {
    font-size: 1.25rem;
  }
  .btn-copy {
    width: 100%;
    justify-content: center;
  }
}
