/**
 * Make entire preview lesson row clickable.
 *
 * TutorLMS marks accessible (non-locked) lessons with the eye icon
 * (.tutor-icon-eye-line) in the status span. For non-enrolled users,
 * only preview lessons get this icon — locked lessons get the lock icon.
 *
 * We target rows that contain the eye icon to apply pointer cursor
 * and ensure the hover highlight covers the full row.
 */
.tutor-course-content-list-item:has(.tutor-icon-eye-line) {
	cursor: pointer;
}
