/* Steps Feature widget — numbered-steps list inside .col-text.
   Ports the inline styles used by:
     - prototype/src/pages/learn.astro    "Getting Started" (light badges, h3)
     - prototype/src/pages/programs.astro "What to Expect"  (solid badges, h2)
   to tokenised classes. Markup stays clean, visuals identical. */

.steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.step-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.step-badge {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: var(--weight-semibold);
}

.step-badge--light {
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.step-badge--solid {
    background: var(--color-accent);
    color: #fff;
    font-size: var(--text-sm);
}

.step-body p {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}
