/* Purpose: CSR · Impact. White section, centred head, 3 photo-backed impact cards with an
   emerald scrim + big number, plus CTAs. Ported from the WV reference. */

.csr { background: #FFFFFF; }
.csr-head { text-align: center; max-width: 880px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; }
.csr-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px 8px 12px; margin-bottom: 24px;
  background: var(--cream); border: 1px solid rgba(55, 96, 84, 0.10); border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--emerald);
}
.csr-pill svg { width: 14px; height: 14px; fill: var(--emerald); }
.csr-head__title {
  font-family: var(--font-display); font-weight: var(--weight-regular);
  font-size: var(--sec-h2); line-height: 1.05; letter-spacing: -0.022em; color: var(--ink);
}
.csr-head__title em { color: var(--emerald); font-style: italic; opacity: 0.78; }
.csr-head__lead { color: var(--ink-72); margin-top: 16px; max-width: 56ch; }
.csr-head__lead strong { color: var(--emerald); font-weight: 700; }

.csr-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
@media (min-width: 961px) { .csr-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.csr-card {
  position: relative; border-radius: 22px; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 30px 30px; color: #FFFFFF; text-decoration: none;
  transition: transform var(--dur-default), box-shadow var(--dur-default);
}
@media (min-width: 961px) { .csr-card { min-height: 380px; } }
.csr-card:hover { transform: translateY(-6px); box-shadow: 0 32px 64px -22px rgba(55, 96, 84, 0.42); }
.csr-card__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.csr-card__bg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 800ms cubic-bezier(0.2,0.7,0.2,1); }
.csr-card:hover .csr-card__bg img { transform: scale(1.06); }
.csr-card__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(55, 96, 84, 0.55) 0%, rgba(55, 96, 84, 0.82) 55%, rgba(55, 96, 84, 0.95) 100%);
}
.csr-card__content { position: relative; z-index: 2; }
.csr-card__n {
  font-family: var(--font-display); font-weight: var(--weight-regular);
  font-size: clamp(56px, 7vw, 92px); line-height: 0.95; letter-spacing: -0.022em;
  color: #FFFFFF; margin: 0 0 14px; text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.csr-card__label {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream);
  margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px;
}
.csr-card__label::before { content: ''; width: 22px; height: 1px; background: var(--cream); display: inline-block; }
.csr-card__desc { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.85); margin: 0; }

.csr-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
@media (max-width: 600px) { .csr-ctas { flex-direction: column; align-items: stretch; } }
