/* ============================================
   Process Steps Widget
   ============================================ */

.bai_ps_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.bai_ps_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}

.bai_ps_image {
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
}

.bai_ps_image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.bai_ps_content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
}

.bai_ps_number {
    font-size: 55px;
    color: #b81e1e;
    font-weight: 500;
    line-height: 0.8;
    margin-right: 12px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    flex-shrink: 0;
}

.bai_ps_text {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Arrow */
.bai_ps_arrow {
    width: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
    flex-shrink: 0;
}

.bai_ps_arrow svg {
    width: 100%;
    height: 100%;
}

/* Responsive - horizontal scroll on mobile */
@media (max-width: 768px) {
    .bai_ps_container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
        justify-content: flex-start;
        gap: 0;
        padding: 20px 16px;
        flex-wrap: nowrap;
    }

    .bai_ps_container::-webkit-scrollbar {
        display: none;
    }

    .bai_ps_step {
        flex-shrink: 0;
        min-width: 200px;
        width: 200px;
    }

    .bai_ps_arrow {
        margin-bottom: 70px;
        flex-shrink: 0;
        width: 24px;
        height: 50px;
    }

    .bai_ps_image {
        height: 120px;
    }

    .bai_ps_number {
        font-size: 40px;
    }

    .bai_ps_text {
        font-size: 15px;
    }

    .bai_ps_content {
        padding-left: 10px;
    }
}
