/* Styles for the Impact section (moved from inline styles in index.html) */

.impact-section {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  box-sizing: border-box;
}

.impact-top {
  height: 300px;
  background: var(--light1);
  padding: 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-bottom: 0.5px solid var(--border);
}

.impact-top .impact-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
}

.impact-top .impact-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 52px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.92;
  margin: 0;
}

.impact-top .impact-sub {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 380px;
  margin: 0;
}

#impact-boxes-container.impact-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 24px;
  box-sizing: border-box;
  justify-items: center;
}

/* Prevent children from forcing the grid to overflow horizontally */
#impact-boxes-container > * {
  min-width: 0;
}

