.ja-crs-slider{
    width:100%;
    position:relative;
}

.ja-crs-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.ja-crs-header h2{
    font-size:32px;
    margin:0;
    font-weight:700;
}

.ja-crs-nav{
    display:flex;
    gap:10px;
}

.ja-crs-prev,
.ja-crs-next{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    background:#fff;
    transition:.3s;
    font-size:18px;
    user-select:none;
}

.ja-crs-prev:hover,
.ja-crs-next:hover{
    background:#111;
    color:#fff;
    border-color:#111;
}

.ja-crs-card{
    background:#fff;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.ja-crs-card:hover{
    transform:translateY(-6px);
}

.ja-crs-card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.ja-crs-card:hover img{
    transform:scale(1.05);
}

.ja-crs-bottom{
    padding:15px;
}

.ja-crs-stars{
    color:#ff9800;
    font-size:20px;
    margin-bottom:10px;
    letter-spacing:2px;
}

.ja-crs-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.ja-crs-row h4{
	margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.ja-crs-row a{
    background:#333;
    color:#fff;
    padding:8px 14px;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
    white-space:nowrap;
}

.ja-crs-row a:hover{
    background:#333;
}

@media(max-width:1024px){

    .ja-crs-header h2{
        font-size:26px;
    }

}

@media(max-width:767px){

    .ja-crs-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}