.cle-lessons-carousel .swiper-slide {
    display: flex;
    justify-content: flex-start;
}

.cle-lesson-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #F7EDFD; /* Updated background */
    width: 100%;
    max-width: 300px;
    padding: 15px;
    box-sizing: border-box;
    transition: box-shadow 0.3s;
    box-shadow: 6px 8px 21px 0px #682b8f4d; /* Updated box shadow */
}

.cle-lesson-card:hover {
    box-shadow: 6px 8px 21px 2px #682b8f4d; /* Slight hover effect */
}

.cle-lesson-image img {
    width: 100%;
    border-radius: 15px; /* Optional: keep inside card radius */
    object-fit: cover;
    height: 150px;
    margin-bottom: 10px;
}

.cle-lesson-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

h3.cle-lesson-title   {
   font-size:15px !important;
}


.cle-lesson-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: auto;
}

/* Bottom row */
.cle-lesson-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* Progress */
.cle-lesson-progress {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-text {
    font-size: 12px;
    color: #666;
}

.progress-bar {
    background: #eee;
    height: 6px;
    border-radius: 3px;
    width: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #682B8F; /* Match shadow color */
    border-radius: 3px 0 0 3px;
}

/* Rounded arrow */
.cle-lesson-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #682B8F; /* Match shadow color */
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.cle-lesson-arrow:hover {
    background: #4e1f6e; /* Darker on hover */
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}


.swiper-slide{
	padding-top:50px;
	padding-bottom:50px;
	 
}

.cle-lesson-item {
    background: #F7EDFD;
    border-radius: 20px;
    box-shadow: 6px 8px 21px 0 #682b8f4d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    min-height: 350px; /* <-- increase this for taller cards */
}

.cle-lesson-desc{
	margin-top:-30px;
}
 