@layer components {
  .feature-row {
    display: grid;
    gap: 1.5rem;
  }

  .feature {
    padding-top: 1.1rem;
    border-top: 2px solid var(--accent);
  }

  .feature h3 {
    margin-bottom: 0.35rem;
  }

  .feature p {
    margin-bottom: 0;
    color: var(--ink-soft);
  }

  .is-dark .feature p {
    color: var(--on-dark-soft);
  }

  .steps {
    list-style: none;
    counter-reset: s;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
  }

  .step {
    counter-increment: s;
    position: relative;
    padding-left: 3.6rem;
  }

  .step::before {
    content: counter(s, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    color: hsl(258 42% 9%);
    background: var(--accent);
  }

  .step h3 {
    margin-bottom: 0.3rem;
  }

  .step p {
    margin-bottom: 0;
    color: var(--ink-soft);
  }

  .prose {
    max-width: 46rem;
  }

  .prose h2 {
    margin-top: 2rem;
  }

  .prose ul {
    padding-left: 1.2rem;
  }

  .prose li {
    margin-bottom: 0.4rem;
  }

  @media (min-width: 700px) {
    .feature-row {
      grid-template-columns: repeat(3, 1fr);
    }

    .steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem 2.5rem;
    }
  }
}
