/* Impact panels, prose lists, next-project link and the page footer */

.impact {
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--impact-bg, var(--surface-1));
  border: 1px solid var(--impact-border, var(--border-soft));
}

.impact__kicker {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-block-end: 1rem;
}

.impact__title { font-size: var(--fs-sm); font-weight: 600; margin-block-end: 0.375rem; }
.impact__body { font-size: var(--fs-sm); line-height: 1.55; color: var(--impact-fg, var(--text-2)); }

/* Contribution / outcome prose */
.prose p { color: var(--text-2); line-height: 1.6; margin-block-end: 1.25rem; }
.prose ul { display: flex; flex-direction: column; gap: 0.625rem; }
.prose li { color: var(--text-2); line-height: 1.6; }

/* Next-project link card */
.next {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--border-soft);
  color: var(--text);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.next:hover {
  border-color: var(--border-strong);
  color: var(--text);
  transform: translateY(-2px);
}

.next__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.next__arrow { font-size: 1.5rem; }

.footer {
  padding: 2rem var(--gutter);
  border-block-start: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--text-5);
}

.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: var(--text-3); }
