/* Donate Page Styles */
.text-accent { color: var(--accent); }

/* Who layout — two column editorial */
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.who-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.who-text p:last-child { margin-bottom: 0; }

/* Impact cards */
.impact-card {
  padding: 40px 32px;
  border-left: 4px solid var(--blue);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
}
.impact-card:nth-child(2) { border-left-color: var(--accent); }
.impact-card:nth-child(3) { border-left-color: #16a34a; }
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(58,174,224,.15);
  line-height: 1;
  margin-bottom: 16px;
}
.impact-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.impact-card p { font-size: .98rem; line-height: 1.7; }

/* Give cards */
.give-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.give-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); transform: translateY(-4px); }
.give-icon { font-size: 2.2rem; margin-bottom: 16px; }
.give-card h3 { color: var(--white); margin-bottom: 12px; }
.give-card p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 6px; }

@media (max-width: 768px) {
  .who-layout { grid-template-columns: 1fr; gap: 32px; }
  .impact-card { padding: 28px 24px; }
  .give-card { padding: 28px 24px; }
}
