/* ===============================
   WRAPPER
================================ */
.wwas-wrap{
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* ===============================
   VIEWPORT
================================ */
.wwas-viewport{
    display: flex;
    align-items: end;
    width: 100%;
    gap: 30px;
}

/* ===============================
   COLUMNS
================================ */
.wwas-col{
    flex-shrink: 0;
}

/* Fixed widths */
.wwas-left{ width: 500px; }
.wwas-center{ 
    width: 130px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Right takes remaining space */
.wwas-right{
    flex: 1;
    position: relative;
    /* padding-bottom: 20px; */
}

/* ===============================
   LEFT SLIDER
================================ */
.wwas-left-slider.slick-initialized .slick-slide{
    margin: 0 10px;
}

.wwas-left-slider img{
    width: 100%;
    display: block;
    height: 240px !important;
    object-fit: cover;
    border-radius: 20px !important;
}

/* ===============================
   CENTER HEADER
================================ */
.wwas-center-header{
    margin-bottom: 14px;
}
.wwas-center-header h4{
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: -2px;
}
.wwas-center-header p{
    font-family: "Montserrat", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #537BBD;
}

/* ===============================
   CENTER SLIDE
================================ */
.center-slide{
    width: 100%;
}

.num{
    font-family: "Montserrat", Sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #FBAE24;
    margin-bottom: -15px;
}
.num span{
    color: #79aab9;
}

.txt{
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #25728D;
    min-height: 70px;
}

/* ===============================
   RIGHT ICON SLIDER (SLICK)
   WIDTH = CENTER SLIDER
================================ */

/* .wwas-right-bottom-border{
    border-bottom: 4px solid #00B286;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
} */

/* RIGHT slider width same as center */
.wwas-right-slider{
    width: 160px;              /* 👈 EXACT same as center slider */
    position: relative;
}

/* slick slide */
/* .wwas-right-slider .icon-draw{
    display: flex !important;
    justify-content: center;
    align-items: flex-end;
    height: 70px;
} */

/* icon image */
.wwas-right-slider img{
    width: 110px !important;
    height: 110px !important;
    display: block;
}

.wwas-right-slider .slick-slide{
    display: flex !important;
    align-items: end !important;
    justify-content: end !important;
}

/* ===============================
   DOTS – BOTTOM LEFT
================================ */
.wwas-wrap .slick-dots{
    position: absolute;
    left: 0;
    bottom: -40px;
    display: flex !important;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 220px;
}

.wwas-wrap .slick-dots li{
    list-style: none;
    cursor: pointer;
}

.wwas-wrap .slick-dots li button{
    display: none;
}

.wwas-wrap .slick-dots li i{
    font-size: 9px;
    color: #BCD4DC;
}

.wwas-wrap .slick-dots li.slick-active i{
    color: #00B286;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px){
    .wwas-viewport{
        flex-direction: column;
        gap: 0px;
    }
    
    .wwas-center-header{
        display: none;
    }
    
    .wwas-left-slider img{
        height: 150px !important;
    }
    
    .num{
        font-size: 60px;
    }

    .wwas-left,
    .wwas-center,
    .wwas-right{
        width: 100%;
    }
    
    .wwas-right{
        display: none;
    }

    .wwas-right-group{
        justify-content: space-around;
    }
    
    .wwas-left-slider.slick-initialized .slick-slide{
        margin: 0;
    }

    .wwas-wrap .slick-dots{
        position: relative;
        z-index: 999;
        bottom: -10px;
    }
}