/* =============================================
   DONATE STRIP — Divyang Mitra + 3-track donation
   ============================================= */

#donate { background: #0F3D2E; padding: 40px 0; }
.don-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.don-pill {
  display: inline-block;
  background: rgba(200,150,58,0.15);
  border: 1px solid rgba(200,150,58,0.4);
  color: #E8BE7A; font-size: 11px; font-weight: bold;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 18px;
}
#donate h2  { font-size: 30px; color: #fff; line-height: 1.25; margin-bottom: 14px; }
#donate p   { font-size: 16px; color: #9FD4BE; line-height: 1.6; margin-bottom: 28px; }
.don-amt    { color: #E8BE7A; font-weight: bold; }
.don-btns   { display: flex; gap: 12px; flex-wrap: wrap; }
.don-note   { margin-top: 14px; font-size: 13px; color: #9FD4BE; }
.don-note strong { color: #E8BE7A; }

/* 3 donation tracks */
.don-tracks { display: flex; flex-direction: column; gap: 14px; }
.don-track {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(159,212,190,0.30);
  border-radius: 10px; padding: 14px 18px;
}
.dt-ico {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(200,150,58,0.18);
  border: 1px solid rgba(200,150,58,0.40);
  border-radius: 10px; display: flex;
  align-items: center; justify-content: center;
  font-size: 26px; color: #E8BE7A; font-weight: bold; padding: 8px;
}
.dt-name { font-size: 14px; font-weight: bold; color: #fff; margin-bottom: 3px; }
.dt-desc { font-size: 12px; color: #9FD4BE; line-height: 1.4; }

@media (max-width: 768px) {
  .don-grid { grid-template-columns: 1fr; gap: 36px; }
}
