/* The badge keeps its size. JS fits only the completed lesson heading text
 * into the remaining mobile width, without wrapping or omitting any text. */
@media(max-width:768px){
 .classroomFlow[data-classroom-view="completed"] .classroomSessionBar>div:first-child>h2>.classroomCompletedTitleText{
  min-width:0;
  width:max-content;
  white-space:nowrap;
  overflow-wrap:normal;
 }
}
