.aesc-carousel{
    width:100%;
    overflow:hidden;
    position:relative;
    padding-bottom:60px;
}

.aesc-track{
    display:flex;
    gap:30px;
    transition:transform .5s ease;
}

.aesc-card{
    flex:0 0 calc((100% - 60px) / 3);
    box-sizing:border-box;
}

.aesc-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

.aesc-card h3{
    margin:20px 0 15px;
    font-weight:600;
}

.aesc-card p{
    line-height:1.7;
    margin-bottom:20px;
}

.aesc-card a{
    font-weight:500;
    text-decoration:underline;
}

.aesc-arrow{
    position:absolute;
    top:40%;
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:99;
    font-size:20px;
}

.aesc-prev{
    left:10px;
}

.aesc-next{
    right:10px;
}

.aesc-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:40px;
}

.aesc-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    cursor:pointer;
}

/* Tablet */

@media(max-width:1024px){

    .aesc-card{
        flex:0 0 calc((100% - 30px) / 2);
    }

}

/* Mobile */

@media(max-width:767px){

    .aesc-card{
        flex:0 0 100%;
    }

}