:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211f;
  background: #f7faf9;
}

body {
  margin: 0;
}

a {
  color: #126b53;
  font-weight: 700;
}

.shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.eyebrow {
  color: #16805f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
}

h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

p {
  max-width: 760px;
  color: #66726f;
  font-size: 18px;
  line-height: 1.62;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

article {
  padding: 24px;
  border: 1px solid #dce7e3;
  border-radius: 10px;
  background: #fff;
}

article p {
  margin-bottom: 0;
  font-size: 16px;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
