:root {
    --steps-count: 6;
    --tl-v-step: clamp(18px, 4.5vw, 36px);
    --tl-h-step: clamp(18px, 6vw, 120px);
}

#primary section.single-process {
    padding: 60px 0;
}

.single-process__paragraph p {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.single-process__body {
    position: relative;
    margin-top: 48px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.process-timeline__container {
    --step-x: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.process-timeline__item {
    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 screen and (max-width: 768px) {
    #primary section.single-process {
        padding: 20px 0;
    }
}

@media (max-width: 600px) {
    .process-timeline__item {
        white-space: normal;
        overflow-wrap: anywhere;
    }
}
