.hero {
  animation: rise 560ms ease-out both;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-copy .lead {
  max-width: 58ch;
  margin-top: 18px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.section-card h2,
.section-card h3 {
  margin-bottom: 10px;
}

.section-card p:last-child,
.section-card ul:last-child {
  margin-bottom: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-copy h1 {
    max-width: 100%;
  }
}
