/* process-steps – c-process */

.c-process {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

.c-process__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.c-process__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.c-process__headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.875rem;
}

.c-process__intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0 0 2rem;
    max-width: 720px;
}

.c-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Vertical layout (default) */
.c-process__steps--vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c-process__steps--vertical .c-process__step {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.c-process__steps--vertical .c-process__step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1.375rem;
    top: 3rem;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

/* Horizontal layout */
.c-process__steps--horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.c-process__steps--horizontal .c-process__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.c-process__step-number {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-process__step-content {
    padding-top: 0.35rem;
}

.c-process__step-headline {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.c-process__step-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 600px) {
    .c-process__steps--horizontal {
        grid-template-columns: 1fr;
    }
}
