.lcps-wrapper {
    font-family: 'Fira Sans', sans-serif;
    max-width: 1200px !important;
	/*width: 1400px !important*/
/*     margin: 0 auto; */
/*     padding: 20px; */
}
.lcps-title {
    font-size: 39px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
	/* 	margin-left: -70px; */
}
.lcps-lessons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.lcps-lesson-item {
    background: #fff;
    width: 250px;
}
.lcps-lesson-thumbnail {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.lcps-lesson-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #00A6E3;
    color: white;
    padding: 5px 10px;
    border-radius: 35px;
    font-size: 12px;
    text-transform: uppercase;
}
.lcps-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lcps-play-icon::before {
    content: '\25B6';
    color: white;
    font-size: 30px;
}
.lcps-lesson-details {
    padding: 15px;
}
.lcps-lesson-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #00A6E3;
}
.lcps-course-name {
    margin: 0;
    font-size: 14px;
    color: #666;
    margin-top: -15px !important;
}
.lcps-show-more-wrapper {
    text-align: center;
    margin-top: 20px;
}

.lcps-show-more-btn,
.lcps-show-less-btn {
    background-color: #00A6E3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 5px;
}

.lcps-hidden {
    display: none;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .lcps-lessons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lcps-lesson-item {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
		.lcps-title {
  		margin-top: 40px; 
	}
    .lcps-lessons-grid {
        grid-template-columns: 1fr;
    }
    .lcps-title {
        font-size: 24px;
    }
    .lcps-lesson-item {
        width: 100%;
    }
    .lcps-lesson-thumbnail {
        height: 260px;
    }
}