.new-hire-training,
.new-hire-calendar {
  --nht-purple: #7300cd;
  --nht-purple-soft: #f5effb;
  --nht-green: #13795b;
  --nht-green-soft: #eaf7f2;
  --nht-blue: #2855a6;
  --nht-blue-soft: #edf3ff;
  margin-top: 38px;
}

.new-hire-training .sr-only,
.new-hire-calendar .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.new-hire-calendar {
  margin-top: 38px;
}

.new-hire-training {
  margin-top: 18px;
}

.nht-calendar-shell {
  overflow: hidden;
  border: 1px solid var(--workspace-line, #e8e4ec);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--workspace-shadow, 0 14px 40px rgba(21, 15, 61, .055));
}

.nht-calendar-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 26px 30px 22px;
  border-bottom: 1px solid var(--workspace-line, #e8e4ec);
  background:
    radial-gradient(circle at 90% 0, rgba(115, 0, 205, .09), transparent 36%),
    linear-gradient(135deg, #fff 25%, #fbf8fe);
}

.nht-calendar-header h2 {
  margin: 0;
  color: var(--workspace-ink, #111126);
  font: 400 30px/1.08 "DM Serif Display", Georgia, serif;
  letter-spacing: -.025em;
}

.nht-calendar-header p:last-child {
  margin: 8px 0 0;
  color: var(--workspace-muted, #706d7e);
  font-size: 11px;
}

.nht-calendar-navigation {
  display: grid;
  grid-template-columns: 38px minmax(150px, auto) 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--workspace-line, #e8e4ec);
  border-radius: 11px;
  background: #fff;
}

.nht-calendar-navigation button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--nht-purple);
}

.nht-calendar-navigation button:hover:not(:disabled) {
  background: var(--nht-purple-soft);
}

.nht-calendar-navigation button:disabled {
  color: #c8c3ce;
  cursor: not-allowed;
}

.nht-calendar-navigation .material-symbols-rounded {
  font-size: 20px;
}

.nht-calendar-navigation strong {
  padding-inline: 12px;
  color: var(--workspace-ink, #111126);
  font-size: 11px;
  text-align: center;
}

.nht-calendar-weekdays,
.nht-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.nht-calendar-weekdays {
  border-bottom: 1px solid var(--workspace-line, #e8e4ec);
  background: #faf9fb;
}

.nht-calendar-weekdays span {
  padding: 10px 12px;
  color: #8a8494;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .9px;
  text-align: right;
  text-transform: uppercase;
}

.nht-calendar-day {
  position: relative;
  min-width: 0;
  min-height: 116px;
  padding: 10px;
  border-right: 1px solid var(--workspace-line, #e8e4ec);
  border-bottom: 1px solid var(--workspace-line, #e8e4ec);
  background: #fff;
}

.nht-calendar-day:nth-child(7n) {
  border-right: 0;
}

.nht-calendar-day:nth-last-child(-n + 7) {
  border-bottom: 0;
}

.nht-calendar-day.outside {
  background: #fbfafc;
}

.nht-calendar-day-number {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-left: auto;
  border-radius: 50%;
  color: var(--workspace-muted, #706d7e);
  font-size: 10px;
  font-weight: 700;
}

.nht-calendar-day.outside .nht-calendar-day-number {
  color: #c1bdc6;
}

.nht-calendar-day.today .nht-calendar-day-number {
  background: var(--nht-purple);
  color: #fff;
}

.nht-calendar-event {
  width: 100%;
  min-height: 64px;
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid #d9c2e9;
  border-radius: 9px;
  padding: 8px 9px;
  background: var(--nht-purple-soft);
  color: var(--nht-purple);
  text-align: left;
}

.nht-calendar-event:hover {
  border-color: var(--nht-purple);
  background: #eee2f8;
}

.nht-calendar-event strong,
.nht-calendar-event span,
.nht-calendar-event small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nht-calendar-event strong {
  font-size: 9px;
}

.nht-calendar-event span {
  margin-top: 4px;
  color: #4f315f;
  font-size: 8px;
}

.nht-calendar-event small {
  margin-top: 3px;
  color: #7b6984;
  font-size: 7px;
}

.nht-calendar-agenda {
  display: none;
}

.nht-shell {
  overflow: hidden;
  border: 1px solid var(--workspace-line, #e8e4ec);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--workspace-shadow, 0 14px 40px rgba(21, 15, 61, .055));
}

.nht-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 30px 32px 25px;
  border-bottom: 1px solid var(--workspace-line, #e8e4ec);
  background:
    radial-gradient(circle at 92% 0, rgba(115, 0, 205, .10), transparent 34%),
    linear-gradient(135deg, #fff 30%, #fbf8fe);
}

.nht-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  color: var(--nht-purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nht-kicker .material-symbols-rounded {
  font-size: 17px;
}

.nht-header h2 {
  margin: 0;
  color: var(--workspace-ink, #111126);
  font: 400 32px/1.08 "DM Serif Display", Georgia, serif;
  letter-spacing: -.025em;
}

.nht-header-copy {
  max-width: 690px;
  margin: 9px 0 0;
  color: var(--workspace-muted, #706d7e);
  font-size: 12px;
  line-height: 1.55;
}

.nht-source-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--workspace-muted, #706d7e);
  font-size: 10px;
  white-space: nowrap;
}

.nht-source-note .material-symbols-rounded {
  color: var(--nht-green);
  font-size: 18px;
}

.nht-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--workspace-line, #e8e4ec);
}

.nht-summary article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 19px 24px;
}

.nht-summary article + article {
  border-left: 1px solid var(--workspace-line, #e8e4ec);
}

.nht-summary .material-symbols-rounded {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--nht-purple-soft);
  color: var(--nht-purple);
  font-size: 21px;
}

.nht-summary article:nth-child(2) .material-symbols-rounded {
  background: var(--nht-green-soft);
  color: var(--nht-green);
}

.nht-summary article:nth-child(3) .material-symbols-rounded {
  background: var(--nht-blue-soft);
  color: var(--nht-blue);
}

.nht-summary strong,
.nht-summary small {
  display: block;
}

.nht-summary strong {
  color: var(--workspace-ink, #111126);
  font-size: 19px;
  line-height: 1;
}

.nht-summary small {
  overflow: hidden;
  margin-top: 5px;
  color: var(--workspace-muted, #706d7e);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .6px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nht-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
}

.nht-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.nht-filter {
  min-height: 34px;
  border: 1px solid var(--workspace-line, #e8e4ec);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--workspace-muted, #706d7e);
  font-size: 10px;
  font-weight: 800;
}

.nht-filter:hover {
  border-color: #c8acd9;
  color: var(--nht-purple);
}

.nht-filter[aria-pressed="true"] {
  border-color: var(--nht-purple);
  background: var(--nht-purple);
  color: #fff;
}

.nht-toolbar label {
  position: relative;
  display: block;
  width: min(280px, 100%);
}

.nht-toolbar label .material-symbols-rounded {
  position: absolute;
  top: 50%;
  left: 11px;
  color: #8c8796;
  font-size: 18px;
  transform: translateY(-50%);
  pointer-events: none;
}

.nht-search {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--workspace-line, #e8e4ec);
  border-radius: 10px;
  padding: 9px 12px 9px 36px;
  background: #fbfafc;
  color: var(--workspace-ink, #111126);
  font-size: 11px;
}

.nht-search:focus {
  border-color: var(--nht-purple);
  box-shadow: 0 0 0 3px rgba(115, 0, 205, .09);
  outline: 0;
}

.nht-class-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  padding: 0 24px 25px;
}

.nht-class-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

.nht-class {
  align-self: start;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--workspace-line, #e8e4ec);
  border-radius: 14px;
  background: #fff;
}

.nht-class.completed {
  border-color: #cce6d8;
  background: #f1faf5;
}

.nht-class[open] {
  border-color: #d5b9e8;
  box-shadow: 0 10px 28px rgba(58, 16, 91, .07);
}

.nht-class summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  min-height: 158px;
  padding: 19px;
  cursor: pointer;
  list-style: none;
}

.nht-class summary::-webkit-details-marker {
  display: none;
}

.nht-class summary:hover {
  background: #fcfbfd;
}

.nht-class.completed summary:hover {
  background: #e9f6ef;
}

.nht-class.completed .nht-roster {
  background: #fff;
}

.nht-class-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.nht-status,
.nht-region {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.nht-status.current {
  background: var(--nht-green-soft);
  color: var(--nht-green);
}

.nht-status.upcoming {
  background: var(--nht-blue-soft);
  color: var(--nht-blue);
}

.nht-region {
  background: #f2f0f5;
  color: #6e6879;
}

.nht-class h3 {
  margin: 0;
  color: var(--workspace-ink, #111126);
  font-size: 15px;
  line-height: 1.25;
}

.nht-class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin-top: 12px;
  color: var(--workspace-muted, #706d7e);
  font-size: 10px;
}

.nht-class-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nht-class-meta .material-symbols-rounded {
  color: var(--nht-purple);
  font-size: 15px;
}

.nht-class-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.nht-class-timeline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 27px;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 8px;
}

.nht-class-timeline span b {
  font-size: 8px;
}

.nht-class-timeline .training {
  background: var(--nht-purple-soft);
  color: #5d287b;
}

.nht-class-timeline .curriculum {
  background: var(--nht-green-soft);
  color: var(--nht-green);
}

.nht-class-count {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--nht-purple-soft);
  color: var(--nht-purple);
}

.nht-class-count strong,
.nht-class-count small {
  display: block;
  text-align: center;
}

.nht-class-count strong {
  font-size: 19px;
}

.nht-class-count small {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.nht-class-chevron {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  margin: 0;
  color: var(--nht-purple);
  font-size: 18px;
  transform: translateX(-50%);
  transition: transform .18s ease;
}

.nht-class[open] .nht-class-chevron {
  transform: translateX(-50%) rotate(180deg);
}

.nht-roster {
  border-top: 1px solid var(--workspace-line, #e8e4ec);
  background: #fcfbfd;
}

.nht-roster-empty {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px;
  color: var(--workspace-muted, #706d7e);
  background: #fff;
}

.nht-roster-empty .material-symbols-rounded {
  color: var(--nht-purple);
  font-size: 24px;
}

.nht-roster-empty strong,
.nht-roster-empty p {
  display: block;
  margin: 0;
}

.nht-roster-empty strong {
  color: var(--workspace-ink, #111126);
  font-size: 13px;
}

.nht-roster-empty p {
  max-width: 620px;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.5;
}

.nht-roster.is-empty .nht-metrics-context,
.nht-roster.is-empty .nht-roster-scroll {
  display: none;
}

.nht-metrics-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  border-bottom: 1px solid #ebe7ef;
  background: #faf8fc;
}

.nht-metrics-context > div,
.nht-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nht-metrics-context .material-symbols-rounded {
  color: var(--nht-purple);
  font-size: 17px;
}

.nht-metrics-context p,
.nht-metrics-context strong,
.nht-metrics-context small {
  display: block;
  margin: 0;
}

.nht-metrics-context strong {
  color: var(--workspace-ink, #111126);
  font-size: 9px;
}

.nht-metrics-context small,
.nht-scroll-hint {
  margin-top: 2px;
  color: var(--workspace-muted, #706d7e);
  font-size: 8px;
}

.nht-scroll-hint {
  flex: 0 0 auto;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.nht-roster-scroll {
  max-height: 286px;
  overflow: auto;
  background: #fff;
  scrollbar-gutter: stable;
  overscroll-behavior-inline: contain;
}

.nht-roster-scroll:focus-visible {
  outline: 2px solid var(--nht-purple);
  outline-offset: -2px;
}

.nht-roster-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.nht-roster-table th,
.nht-roster-table td {
  box-sizing: border-box;
  width: 158px;
  min-width: 158px;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid #efedf2;
  background: #fff;
  color: var(--workspace-muted, #706d7e);
  font-size: 9px;
  text-align: left;
  vertical-align: middle;
}

.nht-roster-table thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  height: 50px;
  background: #fcfbfd;
  color: #817b8b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.nht-roster-table thead th span,
.nht-roster-table thead th small,
.nht-metric-value strong,
.nht-metric-value small,
.nht-metric-empty span,
.nht-metric-empty small {
  display: block;
}

.nht-roster-table thead th small {
  margin-top: 3px;
  color: #9a93a3;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.nht-roster-table th:first-child,
.nht-roster-table td:first-child {
  width: 225px;
  min-width: 225px;
}

.nht-roster-table th:nth-child(2),
.nht-roster-table td:nth-child(2) {
  width: 116px;
  min-width: 116px;
}

.nht-roster-table th:nth-child(3),
.nht-roster-table td:nth-child(3) {
  width: 168px;
  min-width: 168px;
}

.nht-sticky-learner {
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 1px 0 0 #e8e4ec, 8px 0 13px rgba(29, 19, 43, .035);
}

.nht-roster-table thead .nht-sticky-learner {
  z-index: 5;
}

.nht-roster-table tbody th,
.nht-roster-table tbody td {
  height: 42px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.nht-roster-table tbody tr:last-child th,
.nht-roster-table tbody tr:last-child td {
  border-bottom: 0;
}

.nht-roster-table tbody tr:hover th,
.nht-roster-table tbody tr:hover td {
  background: #fdfbff;
}

.nht-roster-table tfoot th,
.nht-roster-table tfoot td {
  border-top: 2px solid #d9c0ec;
  border-bottom: 0;
  background: #f7f1fb;
}

.nht-roster-table tfoot .nht-sticky-learner {
  z-index: 3;
  background: #f7f1fb;
}

.nht-average-label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nht-average-label .material-symbols-rounded {
  color: var(--nht-purple);
  font-size: 17px;
}

.nht-average-label strong {
  color: var(--workspace-ink, #111126);
  font-size: 10px;
}

.nht-average-scope {
  color: #6f6879;
  font-size: 8px;
  font-weight: 800;
}

.nht-average-value strong,
.nht-average-value small,
.nht-average-empty span,
.nht-average-empty small {
  display: block;
}

.nht-average-value strong {
  color: var(--workspace-ink, #111126);
  font-size: 10px;
}

.nht-average-value small,
.nht-average-empty small {
  margin-top: 3px;
  color: #7f7689;
  font-size: 7px;
  line-height: 1.3;
}

.nht-average-empty span {
  color: #716a79;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.nht-metric-value strong {
  color: var(--workspace-ink, #111126);
  font-size: 10px;
}

.nht-roster-table td.nht-metric-value.meets-goal,
.nht-roster-table tbody tr:hover td.nht-metric-value.meets-goal {
  background: #edf8f1;
}

.nht-roster-table td.nht-metric-value.below-goal,
.nht-roster-table tbody tr:hover td.nht-metric-value.below-goal {
  background: #fff0f0;
}

.nht-roster-table tfoot td.nht-average-value.meets-goal {
  background: #e6f4eb;
}

.nht-roster-table tfoot td.nht-average-value.below-goal {
  background: #fde8e8;
}

.nht-average-value.meets-goal .nht-goal-status {
  color: #157347;
}

.nht-average-value.below-goal .nht-goal-status {
  color: #b4232f;
}

.nht-metric-value.meets-goal .nht-goal-status {
  color: #157347;
}

.nht-metric-value.below-goal .nht-goal-status {
  color: #b4232f;
}

.nht-goal-status {
  font-weight: 800;
}

.nht-metric-value small,
.nht-metric-empty small {
  margin-top: 3px;
  color: #918a9a;
  font-size: 7px;
  line-height: 1.3;
}

.nht-metric-empty span {
  width: max-content;
  border-radius: 999px;
  padding: 3px 6px;
  background: #f1edf4;
  color: #716a79;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.nht-roster-table tbody tr {
  height: 42px;
}

.nht-roster-person {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nht-avatar {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eee6f5;
  color: var(--nht-purple);
  font-size: 8px;
  font-weight: 800;
}

.nht-roster-person strong {
  overflow: hidden;
  color: var(--workspace-ink, #111126);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nht-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  border: 1px dashed #d9d3df;
  border-radius: 14px;
  background: #fbfafd;
  color: var(--workspace-muted, #706d7e);
  text-align: center;
  font-size: 11px;
}

@media (max-width: 980px) {
  .nht-calendar-header {
    align-items: flex-start;
  }
  .nht-calendar-day {
    min-height: 102px;
    padding: 8px;
  }
  .nht-calendar-event {
    padding-inline: 7px;
  }
  .nht-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nht-summary {
    grid-template-columns: repeat(2, 1fr);
  }
  .nht-summary article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--workspace-line, #e8e4ec);
  }
  .nht-summary article:nth-child(4) {
    border-top: 1px solid var(--workspace-line, #e8e4ec);
  }
  .nht-class-list {
    display: flex;
    flex-direction: column;
  }
  .nht-class-column {
    display: contents;
  }
  .nht-class {
    order: var(--nht-card-order);
  }
}

@media (max-width: 620px) {
  .nht-metrics-context {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .nht-calendar-header {
    align-items: stretch;
    flex-direction: column;
    padding: 23px 20px 20px;
  }
  .nht-calendar-navigation {
    grid-template-columns: 42px 1fr 42px;
  }
  .nht-calendar-navigation button {
    width: 42px;
    height: 42px;
  }
  .nht-calendar-weekdays span {
    padding: 9px 2px;
    text-align: center;
  }
  .nht-calendar-day {
    min-height: 54px;
    padding: 5px 3px;
  }
  .nht-calendar-day-number {
    width: 23px;
    height: 23px;
    margin-inline: auto;
  }
  .nht-calendar-event {
    position: relative;
    min-height: 20px;
    margin-top: 0;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .nht-calendar-event::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nht-purple);
    transform: translateX(-50%);
  }
  .nht-calendar-event strong,
  .nht-calendar-event span,
  .nht-calendar-event small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .nht-calendar-agenda {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid var(--workspace-line, #e8e4ec);
    background: #faf9fb;
  }
  .nht-calendar-agenda-item {
    min-height: 62px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 11px;
    align-items: center;
    border: 1px solid var(--workspace-line, #e8e4ec);
    border-radius: 11px;
    padding: 9px 10px;
    background: #fff;
    color: var(--workspace-ink, #111126);
    text-align: left;
  }
  .nht-calendar-agenda-item > span:first-child {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--nht-purple-soft);
    color: var(--nht-purple);
    font-size: 13px;
    font-weight: 800;
  }
  .nht-calendar-agenda-item > span:first-child small {
    margin-top: -7px;
    font-size: 7px;
    letter-spacing: .7px;
    text-transform: uppercase;
  }
  .nht-calendar-agenda-item div {
    min-width: 0;
  }
  .nht-calendar-agenda-item strong,
  .nht-calendar-agenda-item div small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nht-calendar-agenda-item strong {
    font-size: 10px;
  }
  .nht-calendar-agenda-item div small {
    margin-top: 5px;
    color: var(--workspace-muted, #706d7e);
    font-size: 8px;
  }
  .nht-calendar-agenda-item > .material-symbols-rounded {
    color: var(--nht-purple);
    font-size: 18px;
  }
  .nht-header {
    padding: 24px 20px 21px;
  }
  .nht-header h2 {
    font-size: 28px;
  }
  .nht-summary {
    grid-template-columns: 1fr;
  }
  .nht-summary article + article,
  .nht-summary article:nth-child(3) {
    border-top: 1px solid var(--workspace-line, #e8e4ec);
    border-left: 0;
  }
  .nht-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding-inline: 16px;
  }
  .nht-toolbar label {
    width: 100%;
  }
  .nht-class-list {
    padding-inline: 16px;
  }
  .nht-class summary {
    min-height: 0;
    padding: 16px;
  }
  .nht-class-count {
    width: 54px;
    height: 54px;
  }
  .nht-roster-head,
  .nht-roster-row {
    grid-template-columns: minmax(135px, 1.2fr) minmax(90px, .8fr);
  }
  .nht-roster-head span:last-child,
  .nht-roster-row > span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nht-class-chevron {
    transition: none;
  }
}
