.cae-learning-shell {
  --cae-bg: #f2efe8;
  --cae-surface: #ffffff;
  --cae-surface-soft: #e8ece8;
  --cae-ink: #171a19;
  --cae-muted: #626a67;
  --cae-line: #d5d7d1;
  --cae-dark: #101211;
  --cae-gold: #c5a85d;
  --cae-sage: #6f8778;
  --cae-danger: #a33f32;
  --cae-success: #397158;
  --cae-radius-sm: 4px;
  --cae-radius-md: 8px;
  background: var(--cae-bg);
  color: var(--cae-ink);
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: clip;
  scroll-padding-top: 104px;
  width: 100%;
}

.cae-learning-shell .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.cae-learning-shell [hidden] {
  display: none !important;
}

.cae-learning-shell .screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  width: auto;
}

.cae-learning-shell .cae-study-reminder {
  margin-block: 22px 28px;
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-left: 4px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  color: var(--cae-ink);
}

.cae-learning-shell .cae-study-reminder.is-enabled {
  border-left-color: var(--cae-accent, var(--cae-sage));
}

.cae-learning-shell .cae-study-reminder form {
  padding: 20px 22px;
}

.cae-learning-shell .cae-study-reminder__lead {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cae-learning-shell .cae-study-reminder__lead h2 {
  margin: 0 0 4px;
  color: var(--cae-ink);
  font-family: inherit;
  font-size: 18px;
  line-height: 1.3;
}

.cae-learning-shell .cae-study-reminder__lead p {
  margin: 0;
  color: var(--cae-muted);
  font-size: 14px;
}

.cae-learning-shell .cae-study-reminder__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  background: var(--cae-surface-soft);
  border-radius: 50%;
  color: var(--cae-accent, var(--cae-sage));
  font-size: 17px;
}

.cae-learning-shell .cae-switch {
  min-height: 44px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cae-ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.cae-learning-shell .cae-switch input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.cae-learning-shell .cae-switch__track {
  width: 42px;
  height: 24px;
  flex: 0 0 42px;
  padding: 3px;
  background: var(--cae-line);
  border-radius: 999px;
  transition: background-color 160ms ease;
}

.cae-learning-shell .cae-switch__track span {
  width: 18px;
  height: 18px;
  display: block;
  background: var(--cae-surface);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.cae-learning-shell .cae-switch input:checked + .cae-switch__track {
  background: var(--cae-accent, var(--cae-sage));
}

.cae-learning-shell .cae-switch input:checked + .cae-switch__track span {
  transform: translateX(18px);
}

.cae-learning-shell .cae-switch input:focus-visible + .cae-switch__track {
  outline: 3px solid color-mix(in srgb, var(--cae-accent, var(--cae-sage)) 28%, transparent);
  outline-offset: 3px;
}

.cae-learning-shell .cae-study-reminder__options {
  margin-top: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  background: var(--cae-surface-soft);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
}

.cae-learning-shell .cae-study-reminder__options[hidden] {
  display: none;
}

.cae-learning-shell .cae-study-reminder__options label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  color: var(--cae-muted);
  font-size: 13px;
  font-weight: 650;
}

.cae-learning-shell .cae-study-reminder__number {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cae-ink);
  white-space: nowrap;
}

.cae-learning-shell .cae-study-reminder__number input {
  width: 64px;
  min-height: 38px;
  padding: 6px 8px;
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
  color: var(--cae-ink);
  font: inherit;
  font-size: 15px;
  text-align: center;
}

.cae-learning-shell .cae-study-reminder__footer {
  min-height: 42px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cae-learning-shell .cae-study-reminder__footer p {
  margin: 0;
  color: var(--cae-muted);
  font-size: 13px;
}

@media (max-width: 680px) {
  .cae-learning-shell .cae-study-reminder form {
    padding: 17px 16px;
  }

  .cae-learning-shell .cae-study-reminder__options {
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-study-reminder__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .cae-learning-shell .cae-study-reminder__footer .cae-button {
    width: 100%;
  }
}

.cae-learning-shell .cae-learner-tools {
  margin-block: 28px;
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  overflow: hidden;
}

.cae-learning-shell .cae-learner-tools__header {
  min-height: 82px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--cae-line);
}

.cae-learning-shell .cae-learner-tools__header h2,
.cae-learning-shell .cae-learner-tools__header p {
  margin: 0;
}

.cae-learning-shell .cae-favorite-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--cae-line);
  border-radius: 50%;
  color: var(--cae-muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.cae-learning-shell .cae-favorite-button.is-active {
  background: var(--cae-surface-soft);
  border-color: var(--cae-gold);
  color: var(--cae-gold);
}

.cae-learning-shell .cae-learner-tools__tabs {
  min-height: 48px;
  padding-inline: 18px;
  display: flex;
  align-items: end;
  gap: 4px;
  background: var(--cae-surface-soft);
  border-bottom: 1px solid var(--cae-line);
  overflow-x: auto;
}

.cae-learning-shell .cae-learner-tools__tabs button {
  min-height: 44px;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--cae-muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.cae-learning-shell .cae-learner-tools__tabs button[aria-selected="true"] {
  border-bottom-color: var(--cae-sage);
  color: var(--cae-ink);
}

.cae-learning-shell .cae-learner-tools__panel {
  padding: 22px;
}

.cae-learning-shell .cae-learner-tools__panel[hidden] {
  display: none;
}

.cae-learning-shell .cae-learner-tools__panel label {
  display: block;
  margin-bottom: 9px;
  color: var(--cae-ink);
  font-weight: 750;
}

.cae-learning-shell .cae-learner-tools__panel textarea {
  width: 100%;
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
  background: var(--cae-bg);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
  color: var(--cae-ink);
  font: inherit;
  line-height: 1.55;
}

.cae-learning-shell .cae-learner-tools__actions {
  min-height: 42px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cae-learning-shell .cae-learner-tools__actions span,
.cae-learning-shell .cae-learner-tools__favorite-status {
  color: var(--cae-muted);
  font-size: 13px;
}

.cae-learning-shell .cae-learner-tools__favorite-status {
  min-height: 18px;
  margin: 0;
  padding: 0 22px 12px;
  text-align: right;
}

@media (max-width: 600px) {
  .cae-learning-shell .cae-learner-tools {
    margin-block: 22px;
  }

  .cae-learning-shell .cae-learner-tools__header,
  .cae-learning-shell .cae-learner-tools__panel {
    padding: 16px;
  }

  .cae-learning-shell .cae-learner-tools__tabs {
    padding-inline: 10px;
  }

  .cae-learning-shell .cae-learner-tools__favorite-status {
    padding-inline: 16px;
  }
}

.cae-learning-shell .cae-header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cae-learning-shell .cae-header-tool {
  position: relative;
}

.cae-learning-shell .cae-header-tool__button {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  position: relative;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  transform: none;
}

.cae-learning-shell .cae-header-tool__button:hover,
.cae-learning-shell .cae-header-tool__button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
}

.cae-learning-shell .cae-header-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.cae-learning-shell .cae-header-tool__button b {
  min-width: 18px;
  height: 18px;
  padding-inline: 3px;
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  background: var(--cae-danger);
  border: 2px solid var(--cae-dark);
  border-radius: 10px;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
}

.cae-learning-shell .cae-header-panel {
  width: min(420px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 94px));
  padding: 0;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 10020;
  overflow: auto;
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  color: var(--cae-ink);
}

.cae-learning-shell .cae-header-panel[hidden] {
  display: none;
}

.cae-learning-shell .cae-header-panel > header {
  min-height: 58px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--cae-line);
}

.cae-learning-shell .cae-header-panel > header h2 {
  margin: 0;
  color: var(--cae-ink);
  font-size: 18px;
}

.cae-learning-shell .cae-header-panel > header button {
  width: 34px;
  height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--cae-ink);
  cursor: pointer;
  font-size: 18px;
}

.cae-learning-shell .cae-search-panel form {
  padding: 14px 16px;
  border-bottom: 1px solid var(--cae-line);
}

.cae-learning-shell .cae-search-panel input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: var(--cae-bg);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
  color: var(--cae-ink);
  font: inherit;
}

.cae-learning-shell .cae-search-results,
.cae-learning-shell .cae-notification-list {
  display: grid;
}

.cae-learning-shell .cae-search-results > a,
.cae-learning-shell .cae-notification-list > article {
  min-width: 0;
  padding: 13px 16px;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--cae-line);
  color: var(--cae-ink);
  text-decoration: none;
}

.cae-learning-shell .cae-search-results > a:hover,
.cae-learning-shell .cae-search-results > a:focus-visible {
  background: var(--cae-surface-soft);
}

.cae-learning-shell .cae-search-results small,
.cae-learning-shell .cae-search-results span,
.cae-learning-shell .cae-notification-list span,
.cae-learning-shell .cae-notification-list p {
  color: var(--cae-muted);
  font-size: 12px;
}

.cae-learning-shell .cae-search-results strong,
.cae-learning-shell .cae-search-results span,
.cae-learning-shell .cae-notification-list strong,
.cae-learning-shell .cae-notification-list p {
  overflow-wrap: anywhere;
}

.cae-learning-shell .cae-notification-list > article.is-unread {
  border-left: 4px solid var(--cae-sage);
  background: var(--cae-surface-soft);
}

.cae-learning-shell .cae-notification-list article > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.cae-learning-shell .cae-notification-list p {
  margin: 0;
  line-height: 1.45;
}

.cae-learning-shell .cae-notification-list a {
  justify-self: start;
  color: var(--cae-ink);
  font-size: 13px;
  font-weight: 800;
}

.cae-learning-shell .cae-header-panel > .cae-text-link {
  margin: 12px 16px 16px;
}

.cae-learning-shell .cae-header-panel__empty {
  margin: 0;
  padding: 24px 16px;
  color: var(--cae-muted);
}

.cae-learning-shell .cae-dashboard-experience {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.cae-learning-shell .cae-dashboard-widget--wide {
  grid-column: 1 / -1;
}

.cae-learning-shell .cae-course-events {
  border-block: 1px solid var(--cae-line);
  margin-block: 40px;
  padding-block: 32px;
}

.cae-learning-shell .cae-course-events > header {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cae-learning-shell .cae-course-events > header p,
.cae-learning-shell .cae-course-events > header h2 {
  margin: 0;
}

.cae-learning-shell .cae-event-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cae-learning-shell .cae-event-item {
  align-items: start;
  border-top: 1px solid var(--cae-line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  padding: 24px 0;
}

.cae-learning-shell .cae-event-item:first-child {
  border-top: 0;
}

.cae-learning-shell .cae-event-item__date {
  display: grid;
  gap: 5px;
}

.cae-learning-shell .cae-event-item__date strong {
  color: var(--cae-ink);
  font-size: 15px;
}

.cae-learning-shell .cae-event-item__date span,
.cae-learning-shell .cae-event-item__meta {
  color: var(--cae-muted);
  font-size: 13px;
}

.cae-learning-shell .cae-event-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
}

.cae-learning-shell .cae-event-item__meta span:first-child {
  color: var(--cae-accent);
  font-weight: 700;
}

.cae-learning-shell .cae-event-item__content h3 {
  font-size: 21px;
  margin: 7px 0 8px;
}

.cae-learning-shell .cae-event-item__content > p {
  color: var(--cae-muted);
  margin: 0;
  max-width: 720px;
}

.cae-learning-shell .cae-event-item__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.cae-learning-shell .cae-event-list.is-compact .cae-event-item {
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  padding-block: 18px;
}

.cae-learning-shell .cae-course-community {
  border-top: 1px solid var(--cae-line);
  margin-top: 44px;
  padding-top: 36px;
}

.cae-learning-shell .cae-course-community > header p,
.cae-learning-shell .cae-course-community > header h2 {
  margin: 0;
}

.cae-learning-shell .cae-community-band {
  margin-top: 32px;
}

.cae-learning-shell .cae-community-band--submissions {
  border-top: 1px solid var(--cae-line);
  padding-top: 32px;
}

.cae-learning-shell .cae-community-band__heading {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cae-learning-shell .cae-community-band__heading > div {
  align-items: center;
  display: flex;
  gap: 10px;
}

.cae-learning-shell .cae-community-band__heading h3 {
  font-size: 23px;
  margin: 0;
}

.cae-learning-shell .cae-community-band__heading > div > span {
  align-items: center;
  background: var(--cae-surface-soft);
  border-radius: 50%;
  color: var(--cae-muted);
  display: inline-flex;
  font-size: 12px;
  height: 28px;
  justify-content: center;
  min-width: 28px;
}

.cae-learning-shell .cae-community-composer {
  position: relative;
}

.cae-learning-shell .cae-community-composer > summary {
  cursor: pointer;
  list-style: none;
}

.cae-learning-shell .cae-community-composer > summary::-webkit-details-marker {
  display: none;
}

.cae-learning-shell .cae-community-composer[open] {
  width: min(100%, 620px);
}

.cae-learning-shell .cae-community-composer[open] > summary {
  margin-left: auto;
  width: max-content;
}

.cae-learning-shell .cae-community-composer form {
  background: var(--cae-surface-soft);
  border: 1px solid var(--cae-line);
  border-radius: 6px;
  margin-top: 12px;
  padding: 20px;
}

.cae-learning-shell .cae-community-composer form p {
  margin: 0 0 14px;
}

.cae-learning-shell .cae-community-composer label:not(.cae-checkbox),
.cae-learning-shell .cae-community-reply label {
  color: var(--cae-ink);
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
}

.cae-learning-shell .cae-community-composer input[type="text"],
.cae-learning-shell .cae-community-composer input[type="url"],
.cae-learning-shell .cae-community-composer textarea,
.cae-learning-shell .cae-community-reply textarea {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: 4px;
  color: var(--cae-ink);
  font: inherit;
  padding: 10px 12px;
  resize: vertical;
  width: 100%;
}

.cae-learning-shell .cae-community-composer form > div,
.cae-learning-shell .cae-community-reply > div {
  align-items: center;
  display: flex;
  gap: 14px;
}

.cae-learning-shell [data-cae-community-status] {
  color: var(--cae-muted);
  font-size: 13px;
  min-height: 18px;
}

.cae-learning-shell .cae-checkbox {
  align-items: center;
  display: flex;
  gap: 8px;
}

.cae-learning-shell .cae-discussion-list,
.cae-learning-shell .cae-submission-list {
  display: grid;
  gap: 14px;
}

.cae-learning-shell .cae-discussion,
.cae-learning-shell .cae-submission {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: 6px;
  padding: 22px;
}

.cae-learning-shell .cae-discussion > header > div,
.cae-learning-shell .cae-submission > header > div,
.cae-learning-shell .cae-community-replies li > div {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
}

.cae-learning-shell .cae-discussion > header span,
.cae-learning-shell .cae-submission > header span,
.cae-learning-shell .cae-community-replies span {
  color: var(--cae-muted);
  font-size: 12px;
}

.cae-learning-shell .cae-discussion h4,
.cae-learning-shell .cae-submission h4 {
  font-size: 20px;
  margin: 8px 0;
}

.cae-learning-shell .cae-discussion > p,
.cae-learning-shell .cae-submission > p {
  color: var(--cae-muted);
  margin: 8px 0 12px;
}

.cae-learning-shell .cae-submission > header {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.cae-learning-shell .cae-community-status {
  border: 1px solid var(--cae-line);
  border-radius: 999px;
  flex: 0 0 auto;
  padding: 4px 8px;
}

.cae-learning-shell .cae-community-status.is-pending {
  color: var(--cae-accent);
}

.cae-learning-shell .cae-community-replies {
  border-left: 2px solid var(--cae-line);
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0 0 0 18px;
}

.cae-learning-shell .cae-community-replies p {
  color: var(--cae-muted);
  margin: 5px 0 0;
}

.cae-learning-shell .cae-community-reply {
  border-top: 1px solid var(--cae-line);
  margin-top: 20px;
  padding-top: 16px;
}

.cae-learning-shell .cae-community-reply > div {
  margin-top: 8px;
}

.cae-learning-shell .cae-community-empty {
  color: var(--cae-muted);
  margin: 0;
  padding-block: 12px;
}

.cae-learning-shell .cae-lesson-questions {
  border-block: 1px solid var(--cae-line);
  margin-block: 34px;
  padding-block: 30px;
}

.cae-learning-shell .cae-lesson-questions__heading {
  align-items: start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.cae-learning-shell .cae-lesson-questions__heading h2,
.cae-learning-shell .cae-lesson-questions__heading p {
  margin: 0;
}

.cae-learning-shell .cae-lesson-questions__heading h2 {
  font-size: 26px;
  margin-top: 5px;
}

.cae-learning-shell .cae-lesson-questions__heading h2 + p {
  color: var(--cae-muted);
  margin-top: 8px;
  max-width: 680px;
}

.cae-learning-shell .cae-lesson-questions__privacy {
  align-items: center;
  border: 1px solid var(--cae-line);
  border-radius: 4px;
  color: var(--cae-muted);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  padding: 7px 9px;
}

.cae-learning-shell .cae-lesson-question-form {
  background: var(--cae-surface-soft);
  border-left: 4px solid var(--cae-accent, var(--cae-sage));
  margin-top: 22px;
  padding: 20px;
}

.cae-learning-shell .cae-lesson-question-form > label {
  color: var(--cae-ink);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
}

.cae-learning-shell .cae-lesson-question-form textarea {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: 4px;
  color: var(--cae-ink);
  font: inherit;
  min-height: 112px;
  padding: 12px 14px;
  resize: vertical;
  width: 100%;
}

.cae-learning-shell .cae-lesson-question-form > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cae-learning-shell .cae-lesson-question-video-context {
  align-items: center;
  color: var(--cae-muted);
  display: flex;
  font-size: 13px;
  gap: 7px;
  margin: 10px 0 0;
}

.cae-learning-shell .cae-lesson-question-video-context[hidden] {
  display: none;
}

.cae-learning-shell .cae-lesson-question-video-context strong {
  color: var(--cae-ink);
  font-variant-numeric: tabular-nums;
}

.cae-learning-shell .cae-lesson-question-history {
  margin-top: 32px;
}

.cae-learning-shell .cae-lesson-question-history > h3 {
  font-size: 18px;
  margin: 0 0 5px;
}

.cae-learning-shell .cae-lesson-question-history > ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cae-learning-shell .cae-lesson-question-thread {
  border-top: 1px solid var(--cae-line);
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 18px;
}

.cae-learning-shell .cae-lesson-question-message {
  max-width: min(760px, 92%);
}

.cae-learning-shell .cae-lesson-question-message.is-instructor {
  background: var(--cae-surface-soft);
  border-left: 3px solid var(--cae-accent, var(--cae-sage));
  margin-left: auto;
  padding: 15px 17px;
}

.cae-learning-shell .cae-lesson-question-message > div {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.cae-learning-shell .cae-lesson-question-message span {
  color: var(--cae-muted);
  font-size: 12px;
}

.cae-learning-shell .cae-lesson-question-video-link {
  align-items: center;
  color: var(--cae-accent, var(--cae-sage));
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 5px;
  text-decoration: none;
}

.cae-learning-shell .cae-lesson-question-video-link:hover {
  text-decoration: underline;
}

.cae-learning-shell .cae-lesson-question-message p {
  color: var(--cae-ink);
  margin: 6px 0 0;
}

.cae-learning-shell .cae-lesson-question-pending {
  align-items: center;
  color: var(--cae-muted);
  display: flex;
  font-size: 13px;
  gap: 8px;
  margin: 0;
}

.cae-learning-shell .cae-dashboard-widget > header {
  margin-bottom: 16px;
}

.cae-learning-shell .cae-dashboard-widget > header p,
.cae-learning-shell .cae-dashboard-widget > header h2 {
  margin: 0;
}

.cae-learning-shell .cae-work-queue,
.cae-learning-shell .cae-activity-list {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.cae-learning-shell .cae-work-queue li,
.cae-learning-shell .cae-activity-list li {
  border-top: 1px solid var(--cae-line);
}

.cae-learning-shell .cae-work-queue li:last-child,
.cae-learning-shell .cae-activity-list li:last-child {
  border-bottom: 1px solid var(--cae-line);
}

.cae-learning-shell .cae-work-queue a {
  min-height: 76px;
  padding-block: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--cae-ink);
  text-decoration: none;
}

.cae-learning-shell .cae-work-queue a > span,
.cae-learning-shell .cae-activity-list a {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.cae-learning-shell .cae-work-queue small,
.cae-learning-shell .cae-activity-list small,
.cae-learning-shell .cae-favorite-list small {
  color: var(--cae-muted);
  font-size: 12px;
}

.cae-learning-shell .cae-work-queue b {
  color: var(--cae-sage);
  font-size: 12px;
  text-align: right;
}

.cae-learning-shell .cae-activity-list li {
  min-height: 66px;
  padding-block: 11px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.cae-learning-shell .cae-activity-list li > span {
  width: 8px;
  height: 8px;
  background: var(--cae-sage);
  border-radius: 50%;
}

.cae-learning-shell .cae-activity-list a {
  color: var(--cae-ink);
  text-decoration: none;
}

.cae-learning-shell .cae-favorite-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cae-learning-shell .cae-favorite-list a {
  min-height: 112px;
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  color: var(--cae-ink);
  text-decoration: none;
}

.cae-learning-shell .cae-favorite-list a > span {
  justify-self: end;
  color: var(--cae-sage);
}

@media (max-width: 760px) {
  .cae-learning-shell .cae-header-panel {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100vh - 88px);
  }

  .cae-learning-shell .cae-dashboard-experience {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cae-learning-shell .cae-dashboard-widget--wide {
    grid-column: auto;
  }

  .cae-learning-shell .cae-favorite-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
	.cae-learning-shell .cae-course-events > header {
		align-items: stretch;
		flex-direction: column;
	}

	.cae-learning-shell .cae-event-item,
	.cae-learning-shell .cae-event-list.is-compact .cae-event-item {
		gap: 12px;
		grid-template-columns: 1fr;
	}

  .cae-learning-shell .cae-work-queue a {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .cae-learning-shell .cae-work-queue b {
    text-align: left;
  }
}

.cae-learning-shell.cae-learning-embed {
  background: transparent;
  min-height: 0;
}

.cae-learning-shell.cae-learning-embed .cae-shell {
  padding: 0;
}

.cae-learning-shell,
.cae-learning-shell *,
.cae-learning-shell *::before,
.cae-learning-shell *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.cae-learning-shell a,
.cae-learning-shell button,
.cae-learning-shell input,
.cae-learning-shell summary,
.cae-learning-shell [tabindex] {
  scroll-margin-block: 112px 40px;
}

.cae-learning-shell .cae-skip-link {
  background: var(--cae-surface);
  color: var(--cae-ink);
  font-weight: 800;
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -100px;
  z-index: 100001;
}

.cae-learning-shell .cae-skip-link:focus {
  top: 12px;
}

.cae-learning-shell .cae-learning-bar {
  background: var(--cae-dark);
  color: #ffffff;
  min-height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cae-learning-shell.is-admin-bar-visible .cae-learning-bar {
  top: 32px;
}

.cae-learning-shell .cae-learning-bar__inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 72px;
  padding: 0 32px;
  width: 100%;
}

.cae-learning-shell .cae-learning-bar__brand {
  align-items: center;
  color: #ffffff;
  display: flex;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.cae-learning-shell .cae-learning-bar__brand img {
  height: 32px;
  object-fit: contain;
  width: auto;
}

.cae-learning-shell .cae-learning-bar__brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.cae-learning-shell .cae-learning-bar__brand span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: #c8cdc9;
  font-size: 11px;
  font-weight: 800;
  padding-left: 12px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-theme-navigation,
.cae-learning-shell .cae-theme-profile {
  display: none;
}

.cae-learning-shell .cae-learning-bar__progress {
  align-items: baseline;
  display: flex;
  gap: 6px;
  white-space: nowrap;
}

.cae-learning-shell .cae-learning-bar__progress strong {
  color: var(--cae-gold);
  font-size: 16px;
}

.cae-learning-shell .cae-learning-bar__progress span {
  color: #c8cdc9;
  font-size: 12px;
}

.cae-learning-shell .cae-learning-bar__nav {
  align-items: center;
  display: flex;
  gap: 20px;
}

.cae-learning-shell .cae-learning-bar__nav > a,
.cae-learning-shell .cae-account-menu > summary {
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  line-height: 44px;
  list-style: none;
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}

.cae-learning-shell .cae-account-menu {
  position: relative;
}

.cae-learning-shell .cae-account-menu > summary::-webkit-details-marker {
  display: none;
}

.cae-learning-shell .cae-account-menu > summary::after {
  content: "\2304";
  display: inline-block;
  margin-left: 7px;
}

.cae-learning-shell .cae-account-menu[open] > summary::after {
  transform: rotate(180deg);
}

.cae-learning-shell .cae-account-menu > div {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
  box-shadow: 0 18px 40px rgba(16, 18, 17, 0.18);
  display: grid;
  min-width: 210px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
}

.cae-learning-shell .cae-account-menu > div a {
  border-radius: var(--cae-radius-sm);
  color: var(--cae-ink);
  font-size: 14px;
  min-height: 44px;
  padding: 12px;
  text-decoration: none;
}

.cae-learning-shell .cae-account-menu > div a:hover,
.cae-learning-shell .cae-account-menu > div a:focus-visible {
  background: var(--cae-surface-soft);
}

.cae-learning-shell .cae-shell {
  flex: 1 0 auto;
  margin: 0 auto;
  max-width: 1440px;
  padding: 56px 48px 88px;
  width: 100%;
}

.cae-learning-shell .cae-shell h1,
.cae-learning-shell .cae-dashboard h1 {
  color: var(--cae-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.06;
  margin: 0;
  overflow-wrap: anywhere;
}

.cae-learning-shell .cae-shell h2,
.cae-learning-shell .cae-dashboard h2,
.cae-learning-shell .cae-shell h3 {
  color: var(--cae-ink);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.cae-learning-shell .cae-eyebrow,
.cae-learning-shell .cae-block-label {
  color: var(--cae-sage);
  font-size: 12px;
  font-weight: 850;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-lead {
  color: var(--cae-muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 760px;
}

.cae-learning-shell .cae-button {
  align-items: center;
  background: var(--cae-gold);
  border: 1px solid var(--cae-gold);
  border-radius: var(--cae-radius-sm);
  color: var(--cae-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  gap: 14px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.cae-learning-shell .cae-button:hover,
.cae-learning-shell .cae-button:focus-visible {
  background: #b99a4c;
  border-color: #b99a4c;
  color: var(--cae-dark);
}

.cae-learning-shell .cae-button--secondary {
  background: transparent;
  border-color: var(--cae-ink);
  color: var(--cae-ink);
}

.cae-learning-shell .cae-button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.cae-learning-shell .cae-text-link {
  align-items: center;
  color: var(--cae-ink);
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  text-underline-offset: 4px;
}

.cae-learning-shell .cae-mobile-primary-action {
  display: none;
}

.cae-learning-shell .cae-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cae-learning-shell .cae-dashboard {
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.cae-learning-shell .cae-dashboard__header {
  border-bottom: 1px solid var(--cae-line);
  margin-bottom: 32px;
  padding-bottom: 28px;
}

.cae-learning-shell .cae-dashboard__header > p:last-child {
  color: var(--cae-muted);
  font-size: 17px;
  margin: 16px 0 0;
}

.cae-learning-shell .cae-dashboard-metrics {
  display: none;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.cae-learning-shell .cae-dashboard-metrics > div {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 20px;
}

.cae-learning-shell .cae-dashboard-metrics span,
.cae-learning-shell .cae-dashboard-metrics small {
  color: var(--cae-muted);
  overflow-wrap: anywhere;
}

.cae-learning-shell .cae-dashboard-metrics span {
  font-size: 12px;
  font-weight: 750;
}

.cae-learning-shell .cae-dashboard-metrics strong {
  color: var(--cae-ink);
  font-size: 28px;
  line-height: 1.1;
}

.cae-learning-shell .cae-dashboard-metrics small {
  font-size: 11px;
  line-height: 1.35;
}

.cae-learning-shell .cae-learning-route {
  display: none;
  align-items: start;
  grid-template-columns: auto minmax(28px, 1fr) auto minmax(28px, 1fr) auto minmax(28px, 1fr) auto;
  margin: 0 0 28px;
}

.cae-learning-shell .cae-learning-route > div {
  align-items: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.cae-learning-shell .cae-learning-route b {
  align-items: center;
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.cae-learning-shell .cae-learning-route span {
  color: var(--cae-muted);
  font-size: 11px;
  font-weight: 800;
}

.cae-learning-shell .cae-learning-route > i {
  background: var(--cae-line);
  height: 2px;
  margin-top: 18px;
  width: 100%;
}

.cae-learning-shell .cae-learning-route .is-done b,
.cae-learning-shell .cae-learning-route .is-current b {
  background: var(--cae-sage);
  border-color: var(--cae-sage);
  color: #ffffff;
}

.cae-learning-shell .cae-learning-route > i.is-done {
  background: var(--cae-sage);
}

.cae-learning-shell .cae-course-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cae-learning-shell .cae-course-card {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
}

.cae-learning-shell .cae-course-card:only-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: none;
}

.cae-learning-shell .cae-course-card__media {
  aspect-ratio: 16 / 9;
  background: #202523;
  color: #ffffff;
  display: block;
  min-height: 260px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.cae-learning-shell .cae-course-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cae-learning-shell .cae-course-cover {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.cae-learning-shell .cae-course-cover::before,
.cae-learning-shell .cae-course-cover::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}

.cae-learning-shell .cae-course-cover::after {
  border-left: 0;
  border-right: 0;
  inset: 44% 0 auto;
  transform: rotate(-7deg);
}

.cae-learning-shell .cae-course-cover span,
.cae-learning-shell .cae-course-cover strong,
.cae-learning-shell .cae-course-cover b {
  position: relative;
  z-index: 1;
}

.cae-learning-shell .cae-course-cover span {
  color: var(--cae-gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cae-learning-shell .cae-course-cover strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  margin-top: 12px;
  max-width: 480px;
}

.cae-learning-shell .cae-course-cover b {
  color: rgba(255, 255, 255, 0.22);
  font-size: 48px;
  font-weight: 400;
  position: absolute;
  right: 30px;
  top: 28px;
}

.cae-learning-shell .cae-course-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
}

.cae-learning-shell .cae-course-card:only-child .cae-course-card__body {
  padding: 38px;
}

.cae-learning-shell .cae-course-card__meta {
  align-items: center;
  color: var(--cae-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 750;
  gap: 12px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-status-label {
  border-bottom: 2px solid var(--cae-gold);
  color: var(--cae-ink);
  padding-bottom: 3px;
}

.cae-learning-shell .cae-course-card.is-expired .cae-status-label {
  border-color: var(--cae-danger);
  color: var(--cae-danger);
}

.cae-learning-shell .cae-course-card__body h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0 12px;
}

.cae-learning-shell .cae-course-card__body h2 a {
  color: inherit;
  text-decoration: none;
}

.cae-learning-shell .cae-course-card__body > p {
  color: var(--cae-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

.cae-learning-shell .cae-next-lesson {
  border-bottom: 1px solid var(--cae-line);
  border-top: 1px solid var(--cae-line);
  display: grid;
  gap: 4px;
  margin: 8px 0 22px;
  padding: 16px 0;
}

.cae-learning-shell .cae-next-lesson span,
.cae-learning-shell .cae-next-lesson small {
  color: var(--cae-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-next-lesson strong {
  font-size: 15px;
  line-height: 1.45;
}

.cae-learning-shell .cae-progress {
  margin-top: auto;
}

.cae-learning-shell .cae-progress__summary {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cae-learning-shell .cae-progress__track {
  background: #e1e1dc;
  height: 4px;
  overflow: hidden;
}

.cae-learning-shell .cae-progress__track span {
  background: var(--cae-sage);
  display: block;
  height: 100%;
}

.cae-learning-shell .cae-progress progress {
  accent-color: var(--cae-sage);
  display: block;
  height: 8px;
  margin: 8px 0;
  width: 100%;
}

.cae-learning-shell .cae-course-card__footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 22px;
}

.cae-learning-shell .cae-course-card__footer small {
  color: var(--cae-muted);
}

.cae-learning-shell .cae-empty,
.cae-learning-shell .cae-error-state,
.cae-learning-shell .cae-access-callout {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  max-width: 760px;
  padding: 36px;
}

.cae-learning-shell .cae-recovery-notice {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--cae-accent);
  background: var(--cae-surface);
  color: var(--cae-ink);
  font-size: 14px;
  line-height: 1.55;
}

.cae-learning-shell .cae-empty h1,
.cae-learning-shell .cae-empty h2,
.cae-learning-shell .cae-error-state h2,
.cae-learning-shell .cae-access-callout h2 {
  font-size: 28px;
  margin: 0 0 12px;
}

.cae-learning-shell .cae-empty p,
.cae-learning-shell .cae-error-state p,
.cae-learning-shell .cae-access-callout p {
  color: var(--cae-muted);
  line-height: 1.65;
  margin: 0 0 22px;
}

.cae-learning-shell .cae-empty .cae-text-link,
.cae-learning-shell .cae-error-state .cae-text-link,
.cae-learning-shell .cae-access-callout .cae-text-link {
  display: inline-flex;
  margin-left: 16px;
}

.cae-learning-shell .cae-availability-lock__rules {
  border-bottom: 1px solid var(--cae-line);
  border-top: 1px solid var(--cae-line);
  display: grid;
  gap: 0;
  margin: 22px 0;
}

.cae-learning-shell .cae-availability-lock__rules > div {
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  padding: 13px 0;
}

.cae-learning-shell .cae-availability-lock__rules > div + div {
  border-top: 1px solid var(--cae-line);
}

.cae-learning-shell .cae-availability-lock__rules dt {
  color: var(--cae-muted);
  font-size: 12px;
  font-weight: 750;
}

.cae-learning-shell .cae-availability-lock__rules dd {
  color: var(--cae-ink);
  font-weight: 750;
  margin: 0;
  overflow-wrap: anywhere;
}

.cae-learning-shell .cae-breadcrumb {
  align-items: center;
  color: var(--cae-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 9px;
  margin-bottom: 34px;
}

.cae-learning-shell .cae-breadcrumb a {
  color: inherit;
}

.cae-learning-shell .cae-course-overview-header {
  align-items: end;
  border-bottom: 1px solid var(--cae-line);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 32px;
  padding-bottom: 36px;
}

.cae-learning-shell .cae-course-overview-meta {
  display: grid;
  gap: 0;
  grid-auto-flow: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cae-learning-shell .cae-course-overview-meta li {
  border-left: 1px solid var(--cae-line);
  display: grid;
  gap: 4px;
  min-width: 128px;
  padding: 4px 22px;
}

.cae-learning-shell .cae-course-overview-meta li:last-child {
  padding-right: 0;
}

.cae-learning-shell .cae-course-overview-meta strong {
  color: var(--cae-ink);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.cae-learning-shell .cae-course-overview-meta span {
  color: var(--cae-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-course-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.cae-learning-shell .cae-course-profile-tags li {
  border: 1px solid var(--cae-line);
  color: var(--cae-muted);
  font-size: 11px;
  font-weight: 750;
  padding: 7px 9px;
}

.cae-learning-shell .cae-course-profile-tags .is-level {
  background: var(--cae-dark);
  border-color: var(--cae-dark);
  color: #ffffff;
}

.cae-learning-shell .cae-course-profile {
  border-bottom: 1px solid var(--cae-line);
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: -6px 0 32px;
  padding: 0 0 30px;
}

.cae-learning-shell .cae-course-profile div {
  min-width: 0;
}

.cae-learning-shell .cae-course-profile span {
  color: var(--cae-muted);
  display: block;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-course-profile p {
  color: var(--cae-ink);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.cae-learning-shell .cae-course-resume {
  background: var(--cae-dark);
  color: #ffffff;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  margin-bottom: 52px;
}

.cae-learning-shell .cae-course-resume__next,
.cae-learning-shell .cae-course-resume__progress {
  padding: 36px 40px;
}

.cae-learning-shell .cae-course-resume__next {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.cae-learning-shell .cae-course-resume__next > span {
  color: #c8cdc9;
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 8px;
}

.cae-learning-shell .cae-course-resume h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 12px;
}

.cae-learning-shell .cae-course-resume__next > p:not(.cae-block-label) {
  color: #c8cdc9;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 650px;
}

.cae-learning-shell .cae-course-resume__next .cae-button {
  margin-top: 8px;
}

.cae-learning-shell .cae-course-resume__progress {
  align-content: center;
  display: grid;
  gap: 20px;
}

.cae-learning-shell .cae-course-resume__percent {
  align-items: end;
  display: flex;
  gap: 14px;
}

.cae-learning-shell .cae-course-resume__percent strong {
  color: var(--cae-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 0.9;
}

.cae-learning-shell .cae-course-resume__percent span {
  color: #c8cdc9;
  font-size: 12px;
}

.cae-learning-shell .cae-course-resume__progress .cae-progress__track {
  background: rgba(255, 255, 255, 0.2);
}

.cae-learning-shell .cae-course-resume__progress .cae-progress__track span {
  background: var(--cae-gold);
}

.cae-learning-shell .cae-course-resume__progress dl {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.cae-learning-shell .cae-course-resume__progress dl div {
  display: grid;
  gap: 3px;
}

.cae-learning-shell .cae-course-resume__progress dt {
  color: #9fa7a2;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cae-learning-shell .cae-course-resume__progress dd {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}

.cae-learning-shell .cae-course-overview-body {
  margin-bottom: 56px;
}

.cae-learning-shell .cae-course-overview-body.has-trust {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.cae-learning-shell .cae-course-purpose {
  font-size: 17px;
  line-height: 1.72;
  max-width: 780px;
  min-width: 0;
}

.cae-learning-shell .cae-course-purpose > *:first-child {
  margin-top: 0;
}

.cae-learning-shell .cae-course-purpose > *:last-child {
  margin-bottom: 0;
}

.cae-learning-shell .cae-course-purpose h2,
.cae-learning-shell .cae-course-purpose h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.cae-learning-shell .cae-course-trust {
  border-left: 1px solid var(--cae-line);
  padding-left: 30px;
}

.cae-learning-shell .cae-course-trust h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 22px;
}

.cae-learning-shell .cae-course-trust dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.cae-learning-shell .cae-course-trust dl div {
  border-bottom: 1px solid var(--cae-line);
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
}

.cae-learning-shell .cae-course-trust dt {
  color: var(--cae-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cae-learning-shell .cae-course-trust dd {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.cae-learning-shell .cae-course-update-note {
  background: var(--cae-surface-soft);
  border-left: 3px solid var(--cae-sage);
  margin-top: 20px;
  padding: 16px 18px;
}

.cae-learning-shell .cae-course-update-note strong {
  font-size: 12px;
}

.cae-learning-shell .cae-course-update-note p {
  color: var(--cae-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.cae-learning-shell .cae-course-access-band {
  align-items: center;
  background: var(--cae-dark);
  color: #ffffff;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 52px;
  padding: 34px 40px;
}

.cae-learning-shell .cae-course-access-band h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  margin: 0 0 10px;
}

.cae-learning-shell .cae-course-access-band p:not(.cae-block-label) {
  color: #c8cdc9;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.cae-learning-shell .cae-course-access-band .cae-actions {
  align-items: flex-start;
  max-width: 310px;
}

.cae-learning-shell .cae-course-access-band .cae-button--secondary,
.cae-learning-shell .cae-course-access-band .cae-text-link {
  border-color: #ffffff;
  color: #ffffff;
}

.cae-learning-shell .cae-course-access-band .cae-text-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
}

.cae-learning-shell .cae-course-path {
  border-top: 1px solid var(--cae-line);
  padding-top: 42px;
}

.cae-learning-shell .cae-course-path > header {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.cae-learning-shell .cae-course-path > header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
  margin: 0;
}

.cae-learning-shell .cae-course-path > header > p {
  color: var(--cae-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  margin: 0;
}

.cae-learning-shell .cae-course-header {
  align-items: end;
  border-bottom: 1px solid var(--cae-line);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  margin-bottom: 40px;
  padding-bottom: 36px;
}

.cae-learning-shell .cae-course-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.cae-learning-shell .cae-course-content {
  max-width: 820px;
  min-width: 0;
}

.cae-learning-shell .cae-course-content > *:first-child {
  margin-top: 0;
}

.cae-learning-shell .cae-curriculum {
  border-left: 1px solid var(--cae-line);
  min-width: 0;
  padding-left: 30px;
}

.cae-learning-shell .cae-curriculum > h2 {
  font-size: 20px;
  margin: 0 0 24px;
}

.cae-learning-shell .cae-course-outline {
  display: grid;
  gap: 28px;
}

.cae-learning-shell .cae-course-outline--overview {
  gap: 0;
}

.cae-learning-shell .cae-course-outline--overview .cae-module {
  border-top: 1px solid var(--cae-line);
  padding: 30px 0 34px;
}

.cae-learning-shell .cae-course-outline--overview .cae-module:last-child {
  border-bottom: 1px solid var(--cae-line);
}

.cae-learning-shell .cae-course-outline--overview .cae-module__header {
  align-items: start;
  margin-bottom: 14px;
}

.cae-learning-shell .cae-course-outline--overview .cae-module h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.cae-learning-shell .cae-course-outline--overview .cae-module__header > p {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cae-learning-shell .cae-module-state {
  color: var(--cae-muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.cae-learning-shell .cae-module-state.is-completed {
  color: var(--cae-success);
}

.cae-learning-shell .cae-module-state.is-in_progress {
  color: #6f5b24;
}

.cae-learning-shell .cae-course-outline--overview .cae-module__outcome {
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 760px;
}

.cae-learning-shell .cae-course-outline--overview .cae-lesson-row {
  min-height: 64px;
  padding-left: 10px;
  padding-right: 10px;
}

.cae-learning-shell .cae-course-outline--overview .cae-lesson-row__body > a,
.cae-learning-shell .cae-course-outline--overview .cae-lesson-row__title {
  font-size: 14px;
}

.cae-learning-shell .cae-module {
  min-width: 0;
}

.cae-learning-shell .cae-module__header {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cae-learning-shell .cae-module__header > p {
  color: var(--cae-muted);
  font-size: 11px;
  margin: 0;
  white-space: nowrap;
}

.cae-learning-shell .cae-course-outline--compact .cae-module__header {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.cae-learning-shell .cae-course-outline--compact .cae-module__header > p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  white-space: normal;
}

.cae-learning-shell .cae-module__number {
  color: var(--cae-sage);
  font-size: 11px;
  font-weight: 850;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-module h3 {
  font-size: 17px;
  margin: 0;
}

.cae-learning-shell .cae-module__outcome {
  color: var(--cae-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.cae-learning-shell .cae-module ol {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cae-learning-shell .cae-lesson-row {
  align-items: center;
  border-bottom: 1px solid var(--cae-line);
  display: grid;
  gap: 10px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 9px 4px;
}

.cae-learning-shell .cae-lesson-row.is-current {
  background: var(--cae-surface-soft);
  border-left: 3px solid var(--cae-sage);
  padding-left: 9px;
}

.cae-learning-shell .cae-lesson-row__index {
  align-items: center;
  border: 1px solid var(--cae-line);
  border-radius: 50%;
  color: var(--cae-muted);
  display: inline-flex;
  font-size: 9px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.cae-learning-shell .cae-lesson-row__body {
  min-width: 0;
}

.cae-learning-shell .cae-lesson-row__body > a,
.cae-learning-shell .cae-lesson-row__title {
  align-items: center;
  color: var(--cae-ink);
  display: flex;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  min-height: 44px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.cae-learning-shell .cae-lesson-row__meta {
  color: var(--cae-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 5px 10px;
  margin-top: 4px;
}

.cae-learning-shell .cae-lesson-status {
  align-items: center;
  color: var(--cae-muted);
  display: inline-flex;
  font-size: 10px;
  gap: 4px;
  white-space: nowrap;
}

.cae-learning-shell .cae-lesson-status.is-completed {
  color: var(--cae-success);
}

.cae-learning-shell .cae-lesson-status.is-ready_to_complete {
  color: #6f5b24;
}

.cae-learning-shell .cae-lesson-status.is-locked {
  color: var(--cae-danger);
}

.cae-learning-shell .cae-lesson-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, 310px) minmax(0, 860px);
  justify-content: center;
}

.cae-learning-shell .cae-lesson-layout.is-sidebar-collapsed {
  grid-template-columns: 104px minmax(0, 860px);
}

.cae-learning-shell .cae-lesson-sidebar {
  border-right: 1px solid var(--cae-line);
  max-height: calc(100vh - 116px);
  overflow: auto;
  padding-right: 24px;
  position: sticky;
  top: 104px;
}

.cae-learning-shell.is-admin-bar-visible .cae-lesson-sidebar {
  top: 136px;
}

.cae-learning-shell .cae-lesson-sidebar__heading {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 28px;
}

.cae-learning-shell .cae-lesson-sidebar__heading button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
  color: var(--cae-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 5px;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
}

.cae-learning-shell .cae-lesson-sidebar__heading button [aria-hidden="true"] {
  font-size: 20px;
  line-height: 1;
}

.cae-learning-shell .cae-lesson-layout.is-sidebar-collapsed .cae-lesson-sidebar {
  padding-right: 12px;
}

.cae-learning-shell .cae-lesson-layout.is-sidebar-collapsed .cae-lesson-sidebar__heading {
  display: block;
}

.cae-learning-shell .cae-lesson-layout.is-sidebar-collapsed .cae-lesson-sidebar__heading button {
  width: 100%;
}

.cae-learning-shell .cae-lesson-sidebar__heading p {
  color: var(--cae-sage);
  font-size: 11px;
  font-weight: 850;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-lesson-sidebar__heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  margin: 0;
}

.cae-learning-shell .cae-lesson-main {
  min-width: 0;
  width: 100%;
}

.cae-learning-shell .cae-lesson-header {
  margin-bottom: 30px;
}

.cae-learning-shell .cae-lesson-header h1 {
  font-size: 48px;
  max-width: 820px;
}

.cae-learning-shell .cae-preview-label {
  background: var(--cae-sage-soft, #dfe6df);
  border-left: 3px solid var(--cae-sage);
  color: var(--cae-ink);
  display: inline-block;
  font-size: 11px;
  font-weight: 850;
  margin: 0 0 18px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-lesson-meta {
  color: var(--cae-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px 20px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.cae-learning-shell .cae-lesson-meta li {
  align-items: center;
  display: inline-flex;
  font-variant-numeric: tabular-nums;
  min-height: 24px;
}

.cae-learning-shell .cae-lesson-meta li + li::before {
  color: var(--cae-line);
  content: "|";
  margin-right: 20px;
}

.cae-learning-shell .cae-lesson-outcome {
  background: var(--cae-surface);
  border-left: 4px solid var(--cae-sage);
  border-radius: var(--cae-radius-sm);
  margin-top: 26px;
  padding: 20px 22px;
}

.cae-learning-shell .cae-lesson-outcome strong {
  color: var(--cae-muted);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-lesson-outcome p {
  line-height: 1.55;
  margin: 8px 0 0;
}

.cae-learning-shell .cae-player {
  margin: 0 0 26px;
  width: 100%;
}

.cae-learning-shell .cae-player__stage {
  aspect-ratio: 16 / 9;
  background: #181b1a;
  border-radius: var(--cae-radius-md);
  color: #ffffff;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.cae-learning-shell .cae-player__stage iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.cae-learning-shell .cae-player__loading,
.cae-learning-shell .cae-player__error {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: absolute;
  text-align: center;
}

.cae-learning-shell .cae-player__error {
  color: #ffd4cd;
}

.cae-learning-shell .cae-player__loading strong,
.cae-learning-shell .cae-player__error strong {
  color: #ffffff;
  font-size: 17px;
}

.cae-learning-shell .cae-player__loading span,
.cae-learning-shell .cae-player__error p {
  color: #bdc5c0;
  font-size: 13px;
  margin: 0;
}

.cae-learning-shell .cae-player__error .cae-button {
  margin-top: 6px;
}

.cae-learning-shell .cae-player__tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  min-height: 48px;
  padding-top: 8px;
}

.cae-learning-shell .cae-player__tools button {
  background: transparent;
  border: 0;
  color: var(--cae-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  min-height: 44px;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cae-learning-shell .cae-player__tools span {
  color: var(--cae-muted);
  font-size: 12px;
}

.cae-learning-shell .cae-video-chapters {
  border-bottom: 1px solid var(--cae-line);
  border-top: 1px solid var(--cae-line);
  margin-bottom: 28px;
  padding: 8px 0;
}

.cae-learning-shell .cae-video-chapters ol {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cae-learning-shell .cae-video-chapters button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--cae-ink);
  cursor: pointer;
  display: grid;
  font-size: 13px;
  gap: 14px;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 44px;
  padding: 8px 6px;
  text-align: left;
  width: 100%;
}

.cae-learning-shell .cae-video-chapters button:hover,
.cae-learning-shell .cae-video-chapters button:focus-visible {
  background: var(--cae-surface-soft);
}

.cae-learning-shell .cae-video-chapters button span {
  color: var(--cae-sage);
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.cae-learning-shell .cae-lesson-section {
  margin-top: 42px;
}

.cae-learning-shell .cae-watch {
  margin-top: 0;
}

.cae-learning-shell .cae-section-heading {
  margin-bottom: 20px;
}

.cae-learning-shell .cae-section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

.cae-learning-shell .cae-section-heading > p:last-child:not(.cae-block-label) {
  color: var(--cae-muted);
  line-height: 1.6;
  margin: 10px 0 0;
  max-width: 700px;
}

.cae-learning-shell .cae-section-intro {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 760px;
}

.cae-learning-shell .cae-step-list {
  counter-reset: cae-step;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cae-learning-shell .cae-step-list li {
  align-items: start;
  border-top: 1px solid var(--cae-line);
  counter-increment: cae-step;
  display: grid;
  gap: 16px;
  grid-template-columns: 34px minmax(0, 1fr);
  line-height: 1.65;
  padding: 16px 0;
}

.cae-learning-shell .cae-step-list li::before {
  color: var(--cae-sage);
  content: counter(cae-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 850;
  padding-top: 3px;
}

.cae-learning-shell .cae-transcript {
  border-bottom: 1px solid var(--cae-line);
  border-top: 1px solid var(--cae-line);
  margin: 30px 0 0;
}

.cae-learning-shell .cae-transcript summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  min-height: 50px;
  padding: 16px 4px;
}

.cae-learning-shell .cae-transcript > div {
  color: var(--cae-muted);
  font-size: 15px;
  line-height: 1.75;
  max-height: 520px;
  overflow: auto;
  padding: 0 4px 24px;
  white-space: pre-wrap;
}

.cae-learning-shell .cae-example {
  background: var(--cae-surface);
  border-left: 4px solid var(--cae-gold);
  padding: 26px 28px;
}

.cae-learning-shell .cae-example > div {
  color: var(--cae-muted);
  line-height: 1.7;
}

.cae-learning-shell .cae-lesson-content {
  font-size: 17px;
  line-height: 1.75;
  max-width: 780px;
}

.cae-learning-shell .cae-lesson-content h2,
.cae-learning-shell .cae-lesson-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 38px 0 14px;
}

.cae-learning-shell .cae-lesson-content ol,
.cae-learning-shell .cae-lesson-content ul {
  padding-left: 24px;
}

.cae-learning-shell .cae-lesson-content img,
.cae-learning-shell .cae-lesson-content video,
.cae-learning-shell .cae-lesson-content iframe {
  height: auto;
  max-width: 100%;
}

.cae-learning-shell .cae-lesson-content table {
  border-collapse: collapse;
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.cae-learning-shell .cae-practical-task,
.cae-learning-shell .cae-check-questions,
.cae-learning-shell .cae-resources {
  border-top: 1px solid var(--cae-line);
  margin-top: 38px;
  padding-top: 28px;
}

.cae-learning-shell .cae-practical-task {
  background: var(--cae-surface-soft);
  border: 0;
  border-radius: var(--cae-radius-md);
  padding: 0;
}

.cae-learning-shell .cae-practical-task summary {
  cursor: pointer;
  display: grid;
  gap: 6px;
  list-style-position: inside;
  min-height: 72px;
  padding: 20px 24px;
}

.cae-learning-shell .cae-practical-task summary span {
  color: var(--cae-sage);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cae-learning-shell .cae-practical-task summary strong {
  font-size: 22px;
}

.cae-learning-shell .cae-practical-task__body {
  border-top: 1px solid var(--cae-line);
  padding: 22px 24px 26px;
}

.cae-learning-shell .cae-practical-task__body > p {
  line-height: 1.7;
  margin: 0;
}

.cae-learning-shell .cae-practical-task__body > .cae-practical-task__requirement {
  margin-top: 14px;
  padding-left: 12px;
  border-left: 3px solid var(--cae-accent, var(--cae-sage));
  color: var(--cae-muted);
  font-size: 13px;
}

.cae-learning-shell .cae-practical-task h2,
.cae-learning-shell .cae-check-questions h2,
.cae-learning-shell .cae-resources h2 {
  font-size: 23px;
  margin: 0 0 14px;
}

.cae-learning-shell .cae-practical-task p:last-child,
.cae-learning-shell .cae-check-questions li {
  line-height: 1.65;
}

.cae-learning-shell .cae-resources ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cae-learning-shell .cae-resources li {
  align-items: center;
  border-bottom: 1px solid var(--cae-line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 52px;
  padding: 10px 0;
}

.cae-learning-shell .cae-resources a {
  align-items: center;
  color: var(--cae-ink);
  display: inline-flex;
  font-weight: 750;
  min-height: 44px;
  overflow-wrap: anywhere;
}

.cae-learning-shell .cae-resources small {
  color: var(--cae-muted);
  white-space: nowrap;
}

.cae-learning-shell .cae-check-questions ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
}

.cae-learning-shell .cae-mastery form {
  display: grid;
  gap: 18px;
}

.cae-learning-shell .cae-mastery fieldset {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 20px;
}

.cae-learning-shell .cae-mastery fieldset.is-correct {
  border-left: 4px solid var(--cae-success);
}

.cae-learning-shell .cae-mastery fieldset.is-incorrect {
  border-left: 4px solid var(--cae-danger);
}

.cae-learning-shell .cae-mastery legend {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  padding: 0 4px;
}

.cae-learning-shell .cae-mastery label {
  align-items: start;
  border: 1px solid transparent;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 20px minmax(0, 1fr);
  line-height: 1.5;
  min-height: 44px;
  padding: 10px;
}

.cae-learning-shell .cae-mastery label:hover {
  background: var(--cae-surface-soft);
}

.cae-learning-shell .cae-mastery input {
  height: 18px;
  margin: 2px 0 0;
  width: 18px;
}

.cae-learning-shell .cae-mastery [data-cae-check-feedback] {
  color: var(--cae-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 6px 10px 0 30px;
}

.cae-learning-shell .cae-mastery fieldset.is-correct [data-cae-check-feedback] {
  color: var(--cae-success);
}

.cae-learning-shell .cae-mastery fieldset.is-incorrect [data-cae-check-feedback] {
  color: var(--cae-danger);
}

.cae-learning-shell .cae-mastery__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cae-learning-shell .cae-mastery__actions .cae-text-link {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
}

.cae-learning-shell .cae-mastery__status {
  color: var(--cae-muted);
  margin: 0;
  min-height: 24px;
}

.cae-learning-shell .cae-mastery__rules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.cae-learning-shell .cae-mastery__rules li {
  color: var(--cae-muted);
  font-size: 12px;
  font-weight: 750;
}

.cae-learning-shell .cae-mastery__result {
  border-block: 1px solid var(--cae-line);
  display: grid;
  gap: 7px;
  padding: 18px 0;
}

.cae-learning-shell .cae-mastery__result strong {
  color: var(--cae-ink);
  font-size: 18px;
}

.cae-learning-shell .cae-mastery__result p {
  color: var(--cae-muted);
  margin: 0;
}

.cae-learning-shell .cae-mastery__result.is-passed {
  border-color: var(--cae-success);
}

.cae-learning-shell .cae-mastery__result.is-locked {
  border-color: var(--cae-warning);
}

.cae-learning-shell .cae-self-checks {
  display: grid;
  gap: 12px;
  line-height: 1.6;
  margin: 24px 0 0;
  padding-left: 24px;
}

.cae-learning-shell .cae-lesson-trust {
  border-bottom: 1px solid var(--cae-line);
  border-top: 1px solid var(--cae-line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 40px;
  padding: 18px 0;
}

.cae-learning-shell .cae-lesson-trust strong,
.cae-learning-shell .cae-lesson-trust span {
  font-size: 12px;
}

.cae-learning-shell .cae-lesson-trust strong {
  color: var(--cae-sage);
}

.cae-learning-shell .cae-lesson-trust span {
  color: var(--cae-muted);
}

.cae-learning-shell .cae-lesson-trust p {
  color: var(--cae-muted);
  flex-basis: 100%;
  font-size: 13px;
  line-height: 1.55;
  margin: 4px 0 0;
}

.cae-learning-shell .cae-preview-end {
  background: var(--cae-dark);
  color: #ffffff;
  margin-top: 48px;
  padding: 34px;
}

.cae-learning-shell .cae-preview-end h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 12px;
}

.cae-learning-shell .cae-preview-end > p:not(.cae-block-label) {
  color: #c8cdc9;
  line-height: 1.6;
  margin: 0 0 22px;
}

.cae-learning-shell .cae-preview-end .cae-button--secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.cae-learning-shell .cae-lesson-completion {
  align-items: center;
  border-top: 1px solid var(--cae-line);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 42px;
  padding-top: 28px;
}

.cae-learning-shell .cae-lesson-completion h2 {
  font-size: 20px;
  margin: 0;
}

.cae-learning-shell .cae-lesson-completion p {
  color: var(--cae-muted);
  grid-column: 1 / -1;
  margin: 0;
}

.cae-learning-shell .cae-inline-error {
  color: var(--cae-danger) !important;
  width: 100%;
}

.cae-learning-shell .cae-lesson-nav {
  border-top: 1px solid var(--cae-line);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
  padding-top: 24px;
}

.cae-learning-shell .cae-lesson-nav a {
  color: var(--cae-ink);
  display: grid;
  gap: 4px;
  min-height: 52px;
  text-decoration: none;
}

.cae-learning-shell .cae-lesson-nav a:last-child {
  text-align: right;
}

.cae-learning-shell .cae-lesson-nav span {
  color: var(--cae-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-mobile-course-tools,
.cae-learning-shell .cae-curriculum-drawer {
  display: none;
}

.cae-learning-shell .cae-curriculum-drawer[hidden] {
  display: none !important;
}

.cae-learning-shell .cae-return-panel {
  background: var(--cae-dark);
  border-radius: var(--cae-radius-md);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 420px;
  overflow: hidden;
}

.cae-learning-shell .cae-return-panel__content {
  align-content: center;
  display: grid;
  min-width: 0;
  padding: 44px;
}

.cae-learning-shell .cae-return-panel h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  margin: 0 0 24px;
}

.cae-learning-shell .cae-return-panel__next {
  display: grid;
  gap: 6px;
  margin: 0 0 24px;
}

.cae-learning-shell .cae-return-panel__next span {
  color: #bdc5c0;
  font-size: 11px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-return-panel__next strong {
  font-size: 18px;
  line-height: 1.35;
}

.cae-learning-shell .cae-return-panel__next p,
.cae-learning-shell .cae-return-panel__state-copy {
  color: #c7cdca;
  line-height: 1.55;
  margin: 4px 0 0;
  max-width: 620px;
}

.cae-learning-shell .cae-return-panel__next .cae-return-panel__lock {
  color: #f0cf80;
  font-weight: 750;
}

.cae-learning-shell .cae-return-panel__facts {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 4px 0 26px;
  padding: 18px 0;
}

.cae-learning-shell .cae-return-panel__facts div {
  min-width: 0;
}

.cae-learning-shell .cae-return-panel__facts dt {
  color: #aeb7b2;
  font-size: 10px;
  font-weight: 750;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-return-panel__facts dd {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  margin: 0;
}

.cae-learning-shell .cae-return-panel__progress {
  background: rgba(255, 255, 255, 0.2);
  height: 4px;
  margin: -10px 0 24px;
  overflow: hidden;
}

.cae-learning-shell .cae-return-panel__progress span {
  background: var(--cae-gold);
  display: block;
  height: 100%;
}

.cae-learning-shell .cae-return-panel__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.cae-learning-shell .cae-return-panel__actions small {
  color: #aeb7b2;
  font-size: 11px;
}

.cae-learning-shell .cae-return-panel__renew {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  min-height: 44px;
  padding: 12px 0;
  text-underline-offset: 4px;
}

.cae-learning-shell .cae-return-panel__media {
  background: #26302c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  overflow: hidden;
  padding: 38px;
  position: relative;
  text-decoration: none;
}

.cae-learning-shell .cae-return-panel__media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.cae-learning-shell .cae-return-panel__media::before {
  border: 1px solid rgba(255, 255, 255, 0.24);
  content: "";
  inset: 20px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cae-learning-shell .cae-return-panel__media span,
.cae-learning-shell .cae-return-panel__media strong,
.cae-learning-shell .cae-return-panel__media b {
  position: relative;
  z-index: 2;
}

.cae-learning-shell .cae-return-panel__media span {
  color: var(--cae-gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cae-learning-shell .cae-return-panel__media strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
  margin-top: 12px;
}

.cae-learning-shell .cae-return-panel__media b {
  color: rgba(255, 255, 255, 0.28);
  font-size: 54px;
  font-weight: 400;
  position: absolute;
  right: 36px;
  top: 32px;
}

.cae-learning-shell .cae-return-panel.is-expired {
  border-top: 4px solid var(--cae-danger);
}

.cae-learning-shell .cae-dashboard-section,
.cae-learning-shell .cae-dashboard-completed {
  margin-top: 52px;
}

.cae-learning-shell .cae-dashboard-section > header {
  margin-bottom: 20px;
}

.cae-learning-shell .cae-dashboard-section > header h2 {
  font-size: 25px;
  margin: 0;
}

.cae-learning-shell .cae-dashboard-section > header > p:last-child:not(.cae-block-label) {
  color: var(--cae-muted);
  margin: 8px 0 0;
}

.cae-learning-shell .cae-compact-course-list {
  display: grid;
  gap: 12px;
}

.cae-learning-shell .cae-compact-course {
  align-items: center;
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr) auto;
  min-height: 126px;
  padding: 22px 24px;
}

.cae-learning-shell .cae-compact-course.is-expired {
  border-left: 3px solid var(--cae-danger);
}

.cae-learning-shell .cae-compact-course__heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  margin: 10px 0 0;
}

.cae-learning-shell .cae-compact-course__heading h3 a {
  color: inherit;
  text-decoration: none;
}

.cae-learning-shell .cae-compact-course__context > p {
  display: grid;
  gap: 3px;
  margin: 0 0 12px;
}

.cae-learning-shell .cae-compact-course__context > p span,
.cae-learning-shell .cae-compact-course__context dt {
  color: var(--cae-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.cae-learning-shell .cae-compact-course__context > p strong {
  font-size: 13px;
}

.cae-learning-shell .cae-compact-course__context > p small {
  color: var(--cae-warning);
  font-size: 11px;
  line-height: 1.4;
}

.cae-learning-shell .cae-compact-course__context dl {
  display: flex;
  gap: 24px;
  margin: 0;
}

.cae-learning-shell .cae-compact-course__context dl div {
  display: flex;
  gap: 6px;
}

.cae-learning-shell .cae-compact-course__context dd {
  font-size: 11px;
  font-weight: 800;
  margin: 0;
}

.cae-learning-shell .cae-compact-course__action {
  align-items: center;
  color: var(--cae-ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 14px;
  justify-content: flex-end;
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}

.cae-learning-shell .cae-dashboard-completed {
  border-bottom: 1px solid var(--cae-line);
  border-top: 1px solid var(--cae-line);
  padding: 6px 0;
}

.cae-learning-shell .cae-dashboard-completed > summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 850;
  justify-content: space-between;
  list-style: none;
  min-height: 52px;
  padding: 0 8px;
}

.cae-learning-shell .cae-dashboard-completed > summary::-webkit-details-marker {
  display: none;
}

.cae-learning-shell .cae-dashboard-completed > summary span:last-child {
  align-items: center;
  background: var(--cae-surface-soft);
  border-radius: 50%;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.cae-learning-shell .cae-dashboard-completed .cae-compact-course-list {
  padding: 10px 0 18px;
}

.cae-learning-shell .cae-support-panel {
  align-items: center;
  border-top: 1px solid var(--cae-line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1.3fr) auto;
  margin-top: 56px;
  padding-top: 28px;
}

.cae-learning-shell .cae-support-panel h2 {
  font-size: 20px;
  margin: 0;
}

.cae-learning-shell .cae-support-panel > p {
  color: var(--cae-muted);
  line-height: 1.55;
  margin: 0;
}

.cae-learning-shell .cae-support-panel > nav {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.cae-learning-shell .cae-save-state {
  align-items: center;
  color: var(--cae-muted);
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  margin: 0;
}

.cae-learning-shell .cae-lesson-header + .cae-save-state {
  margin: -14px 0 24px;
}

.cae-learning-shell .cae-save-state__indicator {
  background: var(--cae-success);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.cae-learning-shell .cae-save-state[data-state="saving"] .cae-save-state__indicator {
  background: var(--cae-gold);
}

.cae-learning-shell .cae-save-state[data-state="offline"] .cae-save-state__indicator,
.cae-learning-shell .cae-save-state[data-state="failed"] .cae-save-state__indicator {
  background: var(--cae-danger);
}

.cae-learning-shell .cae-save-state button {
  background: transparent;
  border: 0;
  color: var(--cae-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 44px;
  text-decoration: underline;
}

.cae-learning-shell .cae-task-toggle {
  align-items: center;
  background: var(--cae-surface);
  border: 1px solid var(--cae-ink);
  border-radius: var(--cae-radius-sm);
  color: var(--cae-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  margin-top: 18px;
  min-height: 48px;
  padding: 11px 16px;
}

.cae-learning-shell .cae-task-toggle.is-complete {
  border-color: var(--cae-success);
  color: var(--cae-success);
}

.cae-learning-shell .cae-completion-page {
  max-width: 1180px;
}

.cae-learning-shell .cae-completion-hero {
  border-bottom: 1px solid var(--cae-line);
  padding: 24px 0 48px;
}

.cae-learning-shell .cae-completion-hero p:not(.cae-eyebrow) {
  color: var(--cae-muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 720px;
}

.cae-learning-shell .cae-completion-hero .cae-completion-date {
  color: var(--cae-ink);
  font-size: 13px;
  margin: 20px 0;
}

.cae-learning-shell .cae-completion-hero .cae-actions {
  margin-top: 28px;
}

.cae-learning-shell .cae-completion-workspace {
  display: grid;
  gap: 44px 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 48px 0;
}

.cae-learning-shell .cae-completion-workspace h2,
.cae-learning-shell .cae-completion-actions h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  margin: 0 0 18px;
}

.cae-learning-shell .cae-completion-checklist,
.cae-learning-shell .cae-completion-artifacts,
.cae-learning-shell .cae-completion-update {
  border-top: 3px solid var(--cae-sage);
  padding-top: 20px;
}

.cae-learning-shell .cae-completion-checklist ol,
.cae-learning-shell .cae-completion-artifacts ul {
  display: grid;
  gap: 12px;
  line-height: 1.6;
  margin: 0;
  padding-left: 24px;
}

.cae-learning-shell .cae-completion-update {
  border-top-color: var(--cae-gold);
}

.cae-learning-shell .cae-completion-update p:not(.cae-block-label) {
  color: var(--cae-muted);
  line-height: 1.6;
}

.cae-learning-shell .cae-completion-actions {
  align-items: center;
  background: var(--cae-dark);
  color: #ffffff;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 48px;
  padding: 34px 38px;
}

.cae-learning-shell .cae-completion-actions h2 {
  color: #ffffff;
}

.cae-learning-shell .cae-completion-actions p:not(.cae-block-label) {
  color: #c8cdc9;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.cae-learning-shell .cae-completion-actions .cae-actions {
  justify-content: flex-end;
  max-width: 430px;
}

.cae-learning-shell .cae-completion-actions .cae-button--secondary,
.cae-learning-shell .cae-completion-actions .cae-text-link {
  border-color: #ffffff;
  color: #ffffff;
}

.cae-learning-shell .cae-completion-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 44px 0;
}

.cae-learning-shell .cae-completion-grid section {
  border-top: 3px solid var(--cae-sage);
  padding-top: 18px;
}

.cae-learning-shell .cae-learning-footer {
  background: var(--cae-dark);
  color: #c7ccc9;
  flex: 0 0 auto;
}

.cae-learning-shell .cae-learning-footer__inner {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 76px;
  padding: 16px 32px;
}

.cae-learning-shell .cae-learning-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cae-learning-shell .cae-learning-footer a {
  color: #ffffff;
}

.cae-learning-shell a:focus-visible,
.cae-learning-shell button:focus-visible,
.cae-learning-shell summary:focus-visible {
  outline: 3px solid #e5b846;
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .cae-learning-shell .cae-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .cae-learning-shell .cae-course-card:only-child {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  }

  .cae-learning-shell .cae-lesson-layout {
    grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .cae-learning-shell.is-admin-bar-visible .cae-learning-bar {
    top: 46px;
  }

  .cae-learning-shell .cae-learning-bar__inner {
    gap: 14px;
    grid-template-columns: minmax(140px, 1fr) auto;
    padding: 0 20px;
  }

  .cae-learning-shell .cae-learning-bar__progress {
    display: none;
  }

  .cae-learning-shell .cae-shell {
    padding: 38px 20px 64px;
  }

  .cae-learning-shell .cae-shell h1,
  .cae-learning-shell .cae-dashboard h1,
  .cae-learning-shell .cae-lesson-header h1 {
    font-size: 40px;
  }

  .cae-learning-shell .cae-course-grid,
  .cae-learning-shell .cae-course-card:only-child,
  .cae-learning-shell .cae-course-header,
  .cae-learning-shell .cae-course-layout,
  .cae-learning-shell .cae-course-overview-header,
  .cae-learning-shell .cae-course-resume,
  .cae-learning-shell .cae-course-overview-body.has-trust,
  .cae-learning-shell .cae-course-access-band,
  .cae-learning-shell .cae-lesson-completion,
  .cae-learning-shell .cae-completion-workspace,
  .cae-learning-shell .cae-completion-actions,
  .cae-learning-shell .cae-completion-grid {
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-completion-actions .cae-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .cae-learning-shell .cae-course-overview-meta {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cae-learning-shell .cae-course-profile {
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-course-overview-meta li {
    border-left: 0;
    border-right: 1px solid var(--cae-line);
    min-width: 0;
    padding: 4px 18px;
  }

  .cae-learning-shell .cae-course-overview-meta li:first-child {
    padding-left: 0;
  }

  .cae-learning-shell .cae-course-overview-meta li:last-child {
    border-right: 0;
  }

  .cae-learning-shell .cae-course-resume__next {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

  .cae-learning-shell .cae-course-overview-body.has-trust {
    gap: 40px;
  }

  .cae-learning-shell .cae-course-trust {
    border-left: 0;
    border-top: 1px solid var(--cae-line);
    padding-left: 0;
    padding-top: 30px;
  }

  .cae-learning-shell .cae-course-access-band .cae-actions {
    max-width: none;
  }

  .cae-learning-shell .cae-course-card:only-child .cae-course-card__media {
    min-height: 240px;
  }

  .cae-learning-shell .cae-curriculum {
    border-left: 0;
    border-top: 1px solid var(--cae-line);
    padding-left: 0;
    padding-top: 30px;
  }

  .cae-learning-shell .cae-lesson-layout {
    display: block;
  }

  .cae-learning-shell .cae-lesson-sidebar {
    display: none;
  }

  .cae-learning-shell .cae-mobile-course-tools {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
  }

  .cae-learning-shell .cae-mobile-course-tools > span {
    color: var(--cae-muted);
    font-size: 12px;
  }

  .cae-learning-shell .cae-curriculum-toggle {
    align-items: center;
    background: var(--cae-surface);
    border: 1px solid var(--cae-line);
    border-radius: var(--cae-radius-sm);
    color: var(--cae-ink);
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 850;
    gap: 9px;
    min-height: 48px;
    padding: 10px 14px;
    text-transform: uppercase;
  }

  .cae-learning-shell .cae-curriculum-drawer:not([hidden]) {
    display: block;
    inset: 0;
    position: fixed;
    z-index: 10000;
  }

  .cae-learning-shell .cae-curriculum-drawer__backdrop {
    background: rgba(16, 18, 17, 0.64);
    border: 0;
    inset: 0;
    position: absolute;
    width: 100%;
  }

  .cae-learning-shell .cae-curriculum-drawer__panel {
    background: var(--cae-bg);
    height: 100%;
    max-width: 390px;
    overflow: auto;
    position: absolute;
    right: 0;
    width: calc(100% - 32px);
  }

  .cae-learning-shell .cae-curriculum-drawer__panel > header {
    align-items: center;
    background: var(--cae-dark);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px 18px;
  }

  .cae-learning-shell .cae-curriculum-drawer__panel > header h2 {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
  }

  .cae-learning-shell .cae-curriculum-drawer__panel > header button {
    background: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-size: 22px;
    height: 44px;
    width: 44px;
  }

  .cae-learning-shell .cae-curriculum-drawer__content {
    padding: 24px 18px 48px;
  }

  .cae-learning-shell .cae-support-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-return-panel {
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-return-panel__media {
    aspect-ratio: 16 / 5;
    min-height: 210px;
  }

  .cae-learning-shell .cae-compact-course {
    grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
  }

  .cae-learning-shell .cae-compact-course__action {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .cae-learning-shell .cae-learning-bar,
  .cae-learning-shell .cae-learning-bar__inner {
    min-height: 64px;
  }

  .cae-learning-shell .cae-learning-bar__inner {
    padding: 0 16px;
  }

  .cae-learning-shell .cae-learning-bar__brand span {
    display: none;
  }

  .cae-learning-shell .cae-learning-bar__nav {
    gap: 12px;
  }

  .cae-learning-shell .cae-learning-bar__nav > a {
    display: none;
  }

  .cae-learning-shell .cae-learning-bar__nav > .cae-account-login {
    display: inline-flex;
  }

  .cae-learning-shell .cae-shell {
    padding: 30px 16px 56px;
  }

  .cae-learning-shell .cae-shell h1,
  .cae-learning-shell .cae-dashboard h1,
  .cae-learning-shell .cae-lesson-header h1 {
    font-size: 36px;
  }

  .cae-learning-shell .cae-course-overview-header {
    gap: 26px;
    margin-bottom: 24px;
    padding-bottom: 28px;
  }

  .cae-learning-shell .cae-mobile-primary-action {
    align-items: center;
    background: var(--cae-gold);
    border: 1px solid var(--cae-gold);
    border-radius: var(--cae-radius-sm);
    color: var(--cae-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 850;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    min-height: 48px;
    padding: 11px 15px;
    text-decoration: none;
    width: 100%;
  }

  .cae-learning-shell .cae-course-overview-meta {
    gap: 16px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cae-learning-shell .cae-course-overview-meta li,
  .cae-learning-shell .cae-course-overview-meta li:first-child,
  .cae-learning-shell .cae-course-overview-meta li:last-child {
    border-left: 0;
    border-right: 0;
    padding: 0 12px 0 0;
  }

  .cae-learning-shell .cae-course-resume {
    margin-left: -16px;
    margin-right: -16px;
  }

  .cae-learning-shell .cae-course-resume__next,
  .cae-learning-shell .cae-course-resume__progress {
    padding: 28px 20px;
  }

  .cae-learning-shell .cae-course-resume h2 {
    font-size: 28px;
  }

  .cae-learning-shell .cae-course-resume__percent strong {
    font-size: 42px;
  }

  .cae-learning-shell .cae-course-overview-body,
  .cae-learning-shell .cae-course-resume,
  .cae-learning-shell .cae-course-access-band {
    margin-bottom: 42px;
  }

  .cae-learning-shell .cae-course-access-band {
    gap: 26px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 28px 20px;
  }

  .cae-learning-shell .cae-course-access-band h2 {
    font-size: 27px;
  }

  .cae-learning-shell .cae-course-access-band .cae-actions,
  .cae-learning-shell .cae-course-access-band .cae-button {
    align-items: stretch;
    width: 100%;
  }

  .cae-learning-shell .cae-course-path {
    padding-top: 32px;
  }

  .cae-learning-shell .cae-course-path > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .cae-learning-shell .cae-course-path > header h2 {
    font-size: 31px;
  }

  .cae-learning-shell .cae-course-outline--overview .cae-module__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cae-learning-shell .cae-course-outline--overview .cae-module__header > p {
    align-items: flex-start;
  }

  .cae-learning-shell .cae-course-outline--overview .cae-module h3 {
    font-size: 23px;
  }

  .cae-learning-shell .cae-dashboard__header {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .cae-learning-shell .cae-course-card:only-child .cae-course-card__media,
  .cae-learning-shell .cae-course-card__media {
    min-height: 220px;
  }

  .cae-learning-shell .cae-course-cover {
    padding: 26px;
  }

  .cae-learning-shell .cae-course-cover strong {
    font-size: 26px;
  }

  .cae-learning-shell .cae-course-card__body,
  .cae-learning-shell .cae-course-card:only-child .cae-course-card__body {
    padding: 24px 20px;
  }

  .cae-learning-shell .cae-course-card__body h2 {
    font-size: 27px;
  }

  .cae-learning-shell .cae-course-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .cae-learning-shell .cae-course-card__footer .cae-button {
    width: 100%;
  }

  .cae-learning-shell .cae-breadcrumb {
    margin-bottom: 24px;
  }

  .cae-learning-shell .cae-lesson-outcome,
  .cae-learning-shell .cae-practical-task,
  .cae-learning-shell .cae-empty,
  .cae-learning-shell .cae-error-state,
  .cae-learning-shell .cae-access-callout {
    padding: 22px 20px;
  }

  .cae-learning-shell .cae-lesson-meta li + li::before {
    display: none;
  }

  .cae-learning-shell .cae-practical-task {
    padding: 0;
  }

  .cae-learning-shell .cae-player__stage {
    border-radius: var(--cae-radius-sm);
  }

  .cae-learning-shell .cae-section-heading h2 {
    font-size: 25px;
  }

  .cae-learning-shell .cae-example,
  .cae-learning-shell .cae-preview-end,
  .cae-learning-shell .cae-completion-actions {
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 20px;
  }

  .cae-learning-shell .cae-practical-task summary,
  .cae-learning-shell .cae-practical-task__body,
  .cae-learning-shell .cae-mastery fieldset {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cae-learning-shell .cae-mastery__actions,
  .cae-learning-shell .cae-mastery__actions .cae-button,
  .cae-learning-shell .cae-lesson-completion .cae-button,
  .cae-learning-shell .cae-preview-end .cae-button,
  .cae-learning-shell .cae-completion-actions .cae-actions,
  .cae-learning-shell .cae-completion-actions .cae-button {
    width: 100%;
  }

  .cae-learning-shell .cae-lesson-content {
    font-size: 16px;
  }

  .cae-learning-shell .cae-lesson-content ol,
  .cae-learning-shell .cae-lesson-content ul {
    padding-left: 22px;
  }

  .cae-learning-shell .cae-resources li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .cae-learning-shell .cae-lesson-nav {
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-lesson-nav a:last-child {
    text-align: left;
  }

  .cae-learning-shell .cae-lesson-row {
    align-items: start;
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .cae-learning-shell .cae-lesson-row .cae-lesson-status {
    grid-column: 2;
  }

  .cae-learning-shell .cae-return-panel {
    min-height: 0;
  }

  .cae-learning-shell .cae-return-panel__content {
    padding: 28px 22px;
  }

  .cae-learning-shell .cae-return-panel h2 {
    font-size: 31px;
  }

  .cae-learning-shell .cae-return-panel__facts {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cae-learning-shell .cae-return-panel__facts div:last-child {
    grid-column: 1 / -1;
  }

  .cae-learning-shell .cae-return-panel__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cae-learning-shell .cae-return-panel__actions .cae-button {
    width: 100%;
  }

  .cae-learning-shell .cae-return-panel__media {
    display: none;
  }

  .cae-learning-shell .cae-compact-course {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cae-learning-shell .cae-compact-course__action {
    grid-column: auto;
  }

  .cae-learning-shell .cae-dashboard-section,
  .cae-learning-shell .cae-dashboard-completed {
    margin-top: 42px;
  }

  .cae-learning-shell .cae-learning-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
  }
}

@media (max-width: 520px) {
  .cae-learning-shell .cae-lesson-questions__heading {
    display: grid;
  }

  .cae-learning-shell .cae-lesson-questions__privacy {
    justify-self: start;
  }

  .cae-learning-shell .cae-lesson-question-form {
    padding: 16px;
  }

  .cae-learning-shell .cae-lesson-question-message {
    max-width: 100%;
  }

  .cae-learning-shell .cae-course-events > header {
    align-items: stretch;
    flex-direction: column;
  }

  .cae-learning-shell .cae-event-item,
  .cae-learning-shell .cae-event-list.is-compact .cae-event-item {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-community-band__heading,
  .cae-learning-shell .cae-submission > header {
    align-items: stretch;
    flex-direction: column;
  }

  .cae-learning-shell .cae-community-composer,
  .cae-learning-shell .cae-community-composer[open] {
    width: 100%;
  }

  .cae-learning-shell .cae-community-composer > summary,
  .cae-learning-shell .cae-community-composer[open] > summary {
    margin-left: 0;
    width: 100%;
  }

  .cae-learning-shell .cae-discussion,
  .cae-learning-shell .cae-submission,
  .cae-learning-shell .cae-community-composer form {
    padding: 16px;
  }
}

.cae-learning-shell .cae-certificates,
.cae-learning-shell .cae-certificate-award {
  border-top: 1px solid var(--cae-border, #d9d9d4);
  margin-top: 48px;
  padding-top: 32px;
}

.cae-learning-shell .cae-certificates > header h2,
.cae-learning-shell .cae-certificate-award h2 {
  font-size: 28px;
  margin: 5px 0 0;
}

.cae-learning-shell .cae-certificate-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.cae-learning-shell .cae-certificate-card,
.cae-learning-shell .cae-certificate-award {
  align-items: center;
  background: var(--cae-surface, #fff);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.cae-learning-shell .cae-certificate-card {
  border: 1px solid var(--cae-border, #d9d9d4);
  border-left: 4px solid var(--cae-accent, #f04a1d);
  padding: 20px;
}

.cae-learning-shell .cae-certificate-card strong,
.cae-learning-shell .cae-certificate-card span {
  display: block;
}

.cae-learning-shell .cae-certificate-card span {
  color: var(--cae-muted, #64635f);
  font-size: 13px;
  margin-top: 5px;
}

.cae-learning-shell .cae-certificate-card .cae-actions,
.cae-learning-shell .cae-certificate-award .cae-actions {
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cae-learning-shell .cae-certificate-award {
  border-bottom: 1px solid var(--cae-border, #d9d9d4);
  padding: 32px 0;
}

.cae-learning-shell .cae-certificate-award p:not(.cae-block-label) {
  color: var(--cae-muted, #64635f);
  margin: 10px 0 0;
  max-width: 680px;
}

@media (max-width: 720px) {
  .cae-learning-shell .cae-certificate-card,
  .cae-learning-shell .cae-certificate-award {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-certificate-card .cae-actions,
  .cae-learning-shell .cae-certificate-award .cae-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.cae-learning-shell .cae-team-seats {
  border-top: 1px solid var(--cae-line);
  margin-top: 36px;
  padding-top: 32px;
}

.cae-learning-shell .cae-team-seats > header h2,
.cae-learning-shell .cae-team-seats > header p {
  margin-bottom: 0;
}

.cae-learning-shell .cae-team-seats > header > p:not(.cae-block-label) {
  color: var(--cae-muted);
  margin-top: 8px;
}

.cae-learning-shell .cae-team-seats__notice {
  border: 1px solid var(--cae-line);
  border-left: 4px solid var(--cae-success);
  margin-top: 20px;
  padding: 13px 16px;
}

.cae-learning-shell .cae-team-seats__notice--error {
  border-left-color: var(--cae-danger);
}

.cae-learning-shell .cae-team-seats__notice--warning {
  border-left-color: var(--cae-gold);
}

.cae-learning-shell .cae-team-seats__list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.cae-learning-shell .cae-team-seat-pool {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-md);
  padding: 22px;
}

.cae-learning-shell .cae-team-seat-pool__header {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.cae-learning-shell .cae-team-seat-pool__header h3,
.cae-learning-shell .cae-team-seat-pool__header p {
  margin: 0;
}

.cae-learning-shell .cae-team-seat-pool__header h3 {
  font-size: 20px;
}

.cae-learning-shell .cae-team-seat-pool__header p,
.cae-learning-shell .cae-team-seat-pool__message,
.cae-learning-shell .cae-muted {
  color: var(--cae-muted);
}

.cae-learning-shell .cae-team-seat-pool__header p {
  margin-top: 5px;
}

.cae-learning-shell .cae-status-pill {
  border: 1px solid var(--cae-line);
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
}

.cae-learning-shell .cae-status-pill--active {
  border-color: var(--cae-success);
  color: var(--cae-success);
}

.cae-learning-shell .cae-status-pill--suspended,
.cae-learning-shell .cae-status-pill--expired,
.cae-learning-shell .cae-status-pill--revoked {
  color: var(--cae-muted);
}

.cae-learning-shell .cae-team-seat-meter {
  background: var(--cae-surface-soft);
  height: 6px;
  margin-top: 16px;
  overflow: hidden;
}

.cae-learning-shell .cae-team-seat-meter span {
  background: var(--cae-sage);
  display: block;
  height: 100%;
}

.cae-learning-shell .cae-team-seat-invite {
  border-bottom: 1px solid var(--cae-line);
  margin-top: 22px;
  padding-bottom: 20px;
}

.cae-learning-shell .cae-team-seat-invite > label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
}

.cae-learning-shell .cae-team-seat-invite > div {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.cae-learning-shell .cae-team-seat-invite textarea {
  background: var(--cae-surface);
  border: 1px solid var(--cae-line);
  border-radius: var(--cae-radius-sm);
  color: var(--cae-ink);
  font: inherit;
  min-height: 88px;
  min-width: 0;
  padding: 8px 11px;
  resize: vertical;
  width: 100%;
}

.cae-learning-shell .cae-team-seat-invite > small {
  color: var(--cae-muted);
  display: block;
  margin-top: 7px;
}

.cae-learning-shell .cae-team-seat-members {
  margin-top: 10px;
}

.cae-learning-shell .cae-team-seat-member {
  align-items: center;
  border-bottom: 1px solid var(--cae-line);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 0.9fr) auto;
  min-height: 76px;
  padding: 12px 0;
}

.cae-learning-shell .cae-team-seat-member:last-child {
  border-bottom: 0;
}

.cae-learning-shell .cae-team-seat-member__identity strong,
.cae-learning-shell .cae-team-seat-member__identity span,
.cae-learning-shell .cae-team-seat-member__progress strong,
.cae-learning-shell .cae-team-seat-member__progress span {
  display: block;
  overflow-wrap: anywhere;
}

.cae-learning-shell .cae-team-seat-member__identity span,
.cae-learning-shell .cae-team-seat-member__progress span,
.cae-learning-shell .cae-team-seat-member__progress small {
  color: var(--cae-muted);
  font-size: 13px;
  margin-top: 2px;
}

.cae-learning-shell .cae-team-seat-member__progress > div:first-child {
  align-items: baseline;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.cae-learning-shell .cae-team-seat-progress {
  background: var(--cae-surface-soft);
  height: 5px;
  margin-top: 7px;
  overflow: hidden;
}

.cae-learning-shell .cae-team-seat-progress span {
  background: var(--cae-accent, var(--cae-sage));
  height: 100%;
  margin: 0;
}

.cae-learning-shell .cae-team-seat-member__action {
  justify-self: end;
}

.cae-learning-shell .cae-team-seat-pagination {
  align-items: center;
  border-top: 1px solid var(--cae-line);
  display: flex;
  font-size: 13px;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
  padding-top: 14px;
}

.cae-learning-shell .cae-team-seat-pagination--pools {
  border-top: 0;
  margin-top: 16px;
}

.cae-learning-shell .cae-team-seat-pagination span {
  color: var(--cae-muted);
}

.cae-learning-shell .cae-text-button {
  background: transparent;
  border: 0;
  color: var(--cae-danger);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  .cae-learning-shell .cae-team-seat-pool {
    padding: 18px;
  }

  .cae-learning-shell .cae-team-seat-invite > div {
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-team-seat-invite .cae-button {
    justify-content: center;
    width: 100%;
  }

  .cae-learning-shell .cae-team-seat-member {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .cae-learning-shell .cae-team-seat-member__progress {
    width: 100%;
  }

  .cae-learning-shell .cae-team-seat-member__action {
    justify-self: start;
  }

  .cae-learning-shell .cae-team-seat-pagination {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cae-learning-shell *,
  .cae-learning-shell *::before,
  .cae-learning-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .cae-learning-shell .cae-button,
  .cae-learning-shell .cae-task-toggle,
  .cae-learning-shell .cae-curriculum-toggle,
  .cae-learning-shell .cae-mastery fieldset,
  .cae-learning-shell .cae-lesson-row.is-current {
    border: 2px solid ButtonText;
  }

  .cae-learning-shell .cae-progress__track span,
  .cae-learning-shell .cae-return-panel__progress span,
  .cae-learning-shell .cae-save-state__indicator {
    background: Highlight;
  }
}
