.mcl-course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-family: 'Arial', sans-serif;
    transition: transform 0.2s;
    max-width: 350px;
    margin: 10px;
}

.mcl-course-card:hover {
    transform: translateY(-5px);
}

.mcl-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mcl-price-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #E0F7FA;
    color: #4A148C;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mcl-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.mcl-card-body {
    padding: 20px;
}

.mcl-category {
    color: #7E57C2;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.mcl-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
}

.mcl-title a {
    text-decoration: none;
    color: inherit;
}

.mcl-rating {
    color: #FFB300;
    margin-bottom: 15px;
    font-size: 14px;
}

.mcl-rating .rating-score {
    color: #333;
    font-weight: bold;
    margin-right: 5px;
}

.mcl-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.mcl-meta p {
    margin: 3px 0;
}

.mcl-enroll-btn {
    display: block;
    background: #4A148C; /* Purple color from image */
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.mcl-enroll-btn:hover {
    background: #38006b;
}