/* ==========================================
   Nourac Wishlist Grid
========================================== */

.nourac-wishlist-page{
    width:100%;
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
}

.nourac-wishlist-page .learn-press-courses{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    width:100%;
    list-style:none;
    padding:0;
    margin:0;
}

.nourac-wishlist-page .learn-press-courses > *{
    width:100% !important;
    margin:0 !important;
    float:none !important;
}

.nourac-wishlist-page .course-item,
.nourac-wishlist-page .thim-course-content{
    width:100% !important;
    max-width:none !important;
    height:100%;
    border-radius:14px;
    overflow:hidden;
    transition:all .25s ease;
}

.nourac-wishlist-page .thim-course-content:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* ==========================================
   Image
========================================== */

.nourac-wishlist-page .course-thumbnail img,
.nourac-wishlist-page .course-image img{
    width:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
}

/* ==========================================
   Content
========================================== */

.nourac-wishlist-page .course-title{
    font-size:18px;
    line-height:1.45;
    min-height:52px;
}

.nourac-wishlist-page .course-price,
.nourac-wishlist-page .course-meta{
    font-size:14px;
}

/* ==========================================
   Tablet
========================================== */

@media (max-width:991px){

    .nourac-wishlist-page .learn-press-courses{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:767px){

    .nourac-wishlist-page .learn-press-courses{
        grid-template-columns:1fr;
    }

}