/* Truncate Course Excerpt to 2 lines */
.stm_lms_courses__single--info_excerpt,
.stm_lms_courses__single--excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    max-height: 3em; /* Fallback approximately 2 lines */
    margin-bottom: 10px;
}

/* Force 4 Columns if needed (fallback) */
/* Ideally the PHP filter handles this, but if the theme forces 3 cols when filters are on, this overrides it */
@media (min-width: 1025px) {
    .stm_lms_courses.filter_enabled .stm_lms_courses__grid_3 .stm_lms_courses__single {
        width: 25% !important;
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    .stm_lms_courses.filter_enabled .stm_lms_courses__grid_3 .stm_lms_courses__single:nth-child(3n+1) {
        clear: none !important;
    }
    .stm_lms_courses.filter_enabled .stm_lms_courses__grid_3 .stm_lms_courses__single:nth-child(4n+1) {
        clear: left !important;
    }
}
