/* Steps */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
    .step { position: relative; padding: 10px 45px 10px 0; }
    .step:not(:last-child)::after { content: ""; position: absolute; left: 53px; right: 15px; top: 30px; height: 1px; background: var(--gray-200); }
    .step-number { position: relative; z-index: 1; display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 24px; color: var(--white); background: var(--navy-900); border: 6px solid var(--white); border-radius: 50%; box-sizing: content-box; font-size: .8rem; font-weight: 850; }
    .step p { max-width: 300px; }
