.case-process__paragraph p {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.case-process__body {
    position: relative;
    margin-top: 48px;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

.case-process__grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.case-process__timeline {
    --step-x: 0px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.case-process__step {
    width: fit-content;
    max-width: 100%;
    transform: translateX(calc(var(--i) * var(--step-x)));
    padding: 0 24px;
    min-height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    font-size: clamp(12px, 2.6vw, 18px);
    white-space: nowrap;
    transition: transform 0.25s ease;
}

@media (max-width: 600px) {
    .case-process__step {
        white-space: normal;
        overflow-wrap: anywhere;
    }
}
