.landing-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-content-grid > article:first-child {
  grid-column: auto;
}

.landing-content-grid > article:last-child {
  grid-column: 1 / -1;
}

.landing-content-grid h2 {
  text-wrap: balance;
}

.landing-content-grid p {
  max-width: 68ch;
}

body:not(.home-page) .eyebrow,
body:not(.home-page) .category {
  color: #4f7d1e;
}

body:not(.home-page) .cta .eyebrow {
  color: #b9ff5a;
}

@media (max-width: 800px) {
  .landing-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-content-grid > article:last-child {
    grid-column: auto;
  }
}
