/* ── Desktop: Horizontal timeline ── */
.st-759bc107-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}

.st-759bc107-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    min-width: max-content;
}

.st-759bc107-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 100px;
}

.st-759bc107-circle-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.st-759bc107-connector {
    flex: 1;
    height: 2px;
    background-color: #FF9E1B;
    display: block;
}

.st-759bc107-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #FF9E1B;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-759bc107-step:hover .st-759bc107-circle {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 158, 27, 0.4);
}

.st-759bc107-number {
    font-size: 20px;
    font-weight: 600;
    color: #FF9E1B;
    line-height: 1;
    font-family: Inter, sans-serif;
}

.st-759bc107-label {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 160px;
    font-family: Inter, sans-serif;
}

/* ── Tablet & Mobile: 2-column centered grid ── */
@media (max-width: 1024px) {
    .st-759bc107-wrapper {
        overflow-x: hidden;
    }

    .st-759bc107-track {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
        min-width: unset;
    }

    .st-759bc107-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex: none;
        min-width: unset;
        width: 100%;
    }

    .st-759bc107-circle-row {
        display: flex;
        width: auto;
        justify-content: center;
    }

    .st-759bc107-connector {
        display: none;
    }

    .st-759bc107-label {
        margin-top: 12px;
        text-align: center;
        max-width: 180px;
    }
}

/* ── Mobile: tighter spacing ── */
@media (max-width: 767px) {
    .st-759bc107-track {
        gap: 32px 0;
    }

    .st-759bc107-label {
        max-width: 150px;
        font-size: 13px;
    }
}
