/* ═══════════════════════════════════════════════════════════════════
   About — Impact & Scale (Figma node 1388:1948)
   ═══════════════════════════════════════════════════════════════════ */

.about-impact {
  background-color: var(--color-bg);
  /* Bottom padding dropped: the reused manufacturing-footprint.php section
     that immediately follows this one on the About page supplies its own
     (reduced) top padding — see .mfg-footprint--tight-top. Together they
     add up to one 40px gap (Figma 1388:1948) instead of two full section
     paddings stacking on top of each other. */
  padding-bottom: 0;
}

/* ── Header ──────────────────────────────────────────────────────── */

.about-impact__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--header-max-width);
  margin: 0 auto 40px;
  text-align: center;
}

.about-impact__title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  line-height: normal;
}

.about-impact__sub {
  font-size: var(--font-size-h4);
  font-weight: 400;
  color: var(--color-dark);
  margin: 0;
  line-height: normal;
}

/* ── Cards ───────────────────────────────────────────────────────── */

.about-impact__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-impact__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 450px;
  min-width: 300px;
  height: 344px;
  padding: 32px;
  background-color: #f3f3e7;
  border: 1px solid rgba(37, 37, 37, 0.1);
  border-radius: 10px;
}

.about-impact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: var(--color-primary);
}

.about-impact__card-title {
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: normal;
}

.about-impact__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-impact__list li {
  position: relative;
  padding-left: 16px;
  font-size: var(--font-size-body-md);
  font-weight: 400;
  color: var(--color-darker);
  line-height: normal;
}

.about-impact__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 14px;
}

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .about-impact__card {
    height: auto;
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .about-impact__card {
    flex: 1 1 100%;
    min-width: 0;
    padding: 24px;
  }
}
