/* ==========================================================================
   Numbered step — editorial "1, 2, 3" step list.
   Replaces ad-hoc .tip-item / .tip-number / .tip-content patterns.

   Anatomy:
     .numbered-step-list           — flex column container, hairline dividers
       .numbered-step              — single step row
         .numbered-step__num       — large serif numeral (editorial)
         .numbered-step__content   — body block
           .numbered-step__title   — Cormorant Garamond h-level title
           .numbered-step__body    — paragraph copy
   ========================================================================== */

.numbered-step-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hairline);
}

.numbered-step {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: clamp(20px, 3vw, 36px);
    padding: clamp(24px, 3vw, 36px) 0;
    border-bottom: 1px solid var(--hairline);
    align-items: start;
}

.numbered-step__num {
    font-family: var(--font-display);
    font-feature-settings: "tnum" 1;
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    font-size: clamp(2.75rem, 5vw, 4rem);
    line-height: 0.9;
    color: var(--terracotta);
    letter-spacing: -0.02em;
}

.numbered-step__content {
    min-width: 0;
}

.numbered-step__title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.25;
    color: var(--ink);
}

.numbered-step__body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    max-width: 70ch;
}

@media (max-width: 600px) {
    .numbered-step {
        grid-template-columns: 60px 1fr;
        gap: 18px;
    }

    .numbered-step__num {
        font-size: 2.25rem;
    }
}
