﻿/* Shared public timeline: content and sequence belong to the CRM module. */
.web-process-flow {
    --process-accent: var(--bs-primary, #007bff);
    padding-block: clamp(2.5rem, 5vw, 5rem);
    background: linear-gradient(180deg, #fff, #f5f7fb);
}
.web-process-flow__heading { margin-bottom: 2rem; }
.web-process-flow__heading h2 { margin: 0; font-weight: 700; }
.web-process-flow__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}
.web-process-flow__step {
    min-width: 0;
    position: relative;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .04);
    text-align: start;
}
.web-process-flow__marker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--process-accent);
}
.web-process-flow__marker span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.web-process-flow__marker i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: .85rem;
    background: #edf4ff;
    font-size: 1.25rem;
}
.web-process-flow__eyebrow {
    display: block;
    margin-bottom: .5rem;
    color: #526079;
    font-size: .8rem;
    font-weight: 600;
}
.web-process-flow__content h3 {
    margin: 0 0 .75rem;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #17253c;
}
.web-process-flow__content p {
    margin: 0;
    color: #526079;
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}
@media (max-width: 575px) {
    .web-process-flow__steps { grid-template-columns: 1fr; gap: 1rem; }
    .web-process-flow__step { display: grid; grid-template-columns: 3rem minmax(0, 1fr); gap: 1rem; }
    .web-process-flow__marker { flex-direction: column; justify-content: start; margin: 0; }
    .web-process-flow__marker span { font-size: 1.75rem; }
}
