/*
 * SBN Developer Notes.
 * Scope: process and step sections.
 * Used by: membership/application-style journeys and reusable content sections.
 * Edit risk: low to medium; mostly presentational.
 * QA: number alignment, long step labels, mobile spacing.
 */

.sbn-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sbn-gutter);
    position: relative;
    margin: var(--sbn-space-lg) 0;
}

.sbn-steps--cards {
    margin: 0;
}

.sbn-step {
    position: relative;
}

.sbn-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sbn-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sbn-serif);
    font-size: 20px;
    color: var(--sbn-navy);
    margin-bottom: var(--sbn-space-xs);
    font-weight: 400;
    position: relative;
    z-index: 2;
    box-shadow: var(--sbn-shadow-sm);
}

.sbn-step-connector {
    position: absolute;
    top: 22px;
    left: 44px;
    right: calc(var(--sbn-gutter) * -1);
    height: 1px;
    background: linear-gradient(90deg, var(--sbn-mist) 0%, transparent 100%);
    z-index: 1;
}

.sbn-step:last-child .sbn-step-connector {
    display: none;
}

.sbn-step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--sbn-navy);
    margin-bottom: 8px;
}

.sbn-step-desc {
    font-size: 14px;
    color: var(--sbn-ink);
    opacity: 0.75;
    line-height: 1.6;
}
