/*
 * Shared local-service delivery process.
 *
 * Service routes provide their own semantic stages. This module owns the two
 * approved process presentations and their mobile reflow.
 */

.nm-local-process {
    background: #08090f;
}

.nm-local-process-grid {
    display: grid;
    grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.nm-local-process ol {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(225, 29, 51, 0.55);
    list-style: none;
}

.nm-local-process li {
    min-width: 0;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--nm-color-line);
}

.nm-local-process h3 {
    margin: 0 0 0.75rem;
    color: var(--nm-color-text);
    font-family: var(--nm-font-display);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nm-local-process li p {
    max-width: 38rem;
    margin: 0;
    color: var(--nm-color-text-muted, #b3b3b3);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .nm-local-process-grid {
        grid-template-columns: 1fr;
    }
}
