/* 12206: Keep the Today heading and its subject-relative lesson on one line. */
body.homeDashboardApp .homeTodayHeadingLine {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

body.homeDashboardApp .homeTodayHeadingLine > b {
  min-width: 0;
}

body.homeDashboardApp .homeTodayHeadingLine.hasSubjectLesson {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
}

body.homeDashboardApp .homeTodaySubjectLesson {
  justify-self: end;
  color: #526b7d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 920px) {
  body.homeDashboardApp .homeTodaySubjectLesson {
    font-size: 9px;
  }
}
