/* ================================================================
   How We Work — Steps slider
   ================================================================ */
.how-section {
    padding-block: 120px 0;
}

/* ---- Slider wrapper with connecting line ---- */
.steps-slider-wrap {
    position: relative;
    margin-top: 40px;
}

/* Horizontal line through centers of number circles (72px / 2 = 36px) */
.steps-slider-wrap::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
    z-index: 0;
}

/* ---- Step item ---- */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-item__number {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--color-accent-primary);
    background: var(--color-white);
    flex-shrink: 0;
    margin-bottom: 20px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.step-item__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-item__desc {
    font-size: 12px;
    color: #5A5A5A;
    line-height: 16px;
    font-family: var(--font-body);
}

/* ---- Slide widths for slidesPerView: 'auto' ---- */
.js-steps-slider .swiper-slide {
    width: 155px;
}

/* ================================================================
   Responsive
   ================================================================ */

@media (max-width: 768px) {
    .how-section { padding-block: 0 0; }

    .steps-slider-wrap::before  {
        display: none;
    }

    .step-item__number {
        width: 40px;
        height: 40px;
        font-size: 22px;
        line-height: 30px;
        box-shadow: 0px 4px 4px 0px #00000040;
        margin-bottom: 10px;
    }

    .step-item__title {
        font-size: 16px;
    }

    .how-section {
        background-color: #fff;
    }
}
