/* csrActivities.css — premium CSR page styles */

/* Hero */
.csr-hero {
  background: linear-gradient(180deg, rgba(125,91,166,0.04), rgba(255,255,255,0.02));
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.06);
}
.kicker {
  color: #7d5ba6;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero-title {
  font-size: 1.9rem;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  color: #0f1724;
  font-weight: 700;
}
.hero-sub {
  color: #556173;
  max-width: 58ch;
}
.hero-image {
  max-height: 260px;
  object-fit: cover;
}

/* Metrics */
.csr-metrics .metric {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(125,91,166,0.04);
}
.metric-value {
  font-size: 2.1rem;
  color: #7d5ba6;
  font-weight: 800;
}
.metric-label {
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Programs grid */
.program-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(15,23,42,0.08);
}
.program-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

/* Case study carousel items */
#casesCarousel .item {
  padding: 6px;
  box-sizing: border-box;
}
.case-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* donate CTA button */
.btn-donate {
  background: linear-gradient(90deg,#fbbf24,#f59e0b);
  color: #111;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 26px rgba(245,158,11,0.12);
}

/* small helpers */
.stretched-link::after { display: none; } /* keep default link appearance */

/* spacing / utility overrides */
.card.border-0 { background: transparent; }
.card .card-body { padding: 16px; }

/* mobile responsiveness */
@media (max-width: 768px) {
  .hero-title { font-size: 1.45rem; }
  .program-img { height: 180px; }
  .case-img { height: 180px; }
  .hero-image { max-height: 180px; }
  .metric-value { font-size: 1.45rem; }
}

/* smaller mobile */
@media (max-width: 420px) {
  .hero-title { font-size: 1.15rem; }
  .csr-hero { padding: 18px; }
}
