.impact-hero {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .impact-hero {
    height: 20rem;
  }
}

.impact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.impact-hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .impact-hero-content {
    padding: 2rem;
  }
}

.impact-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.impact-logos img {
  position: static;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.impact-hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.impact-hero-subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.impact-body > * + * {
  margin-top: 1.5rem;
}
