@import "./styles/00-tokens.css?v=178";
@import "./styles/10-base.css?v=178";
@import "./styles/20-shell.css?v=188";
@import "./styles/30-controls.css?v=178";
@import "./styles/40-lesson-surfaces.css?v=188&scriptActionModal=1";
@import "./styles/50-workshop.css?v=178";
@import "./styles/60-boards.css?v=188";
@import "./styles/70-public-frame.css?v=181";
@import "./styles/80-focus.css?v=178";
@import "./styles/90-responsive.css?v=179";
/* Master-derived progressive board runtime. Mirrors styles/60-boards.css for deployed app bundle. */
.board--progressive-state-reveal {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--board-bg), #ffffff 30%), var(--board-bg));
}

.board--progressive-state-reveal-main,
.board--progressive-state-reveal-detail {
  height: 100%;
  min-height: 0;
}

.board--progressive-state-reveal-detail {
  grid-template-rows: minmax(0, 1fr) auto;
}

.boardProgressive {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.boardProgressive__root {
  justify-self: center;
  width: min(640px, 88%);
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  border: 2px solid color-mix(in srgb, var(--board-line), #ffffff 16%);
  border-radius: 7px;
  background: color-mix(in srgb, var(--board-header), #ffffff 12%);
  color: var(--board-header-ink);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
  text-align: center;
}

.boardProgressive__root span {
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.boardProgressive__connector {
  position: relative;
  height: 18px;
  pointer-events: none;
}

.boardProgressive__connectorLine {
  position: absolute;
  inset: 8px 8% auto;
  display: block;
  border-top: 4px solid var(--board-line);
}

.boardProgressive__states {
  display: grid;
  grid-template-columns: repeat(var(--board-progressive-count), minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.boardProgressive__state {
  position: relative;
  min-width: 0;
  min-height: 112px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 7px;
  align-content: start;
  padding: 12px;
  border: 2px solid color-mix(in srgb, var(--board-line), #ffffff 40%);
  border-radius: 7px;
  background: var(--surface);
  color: var(--board-panel-ink);
  text-align: left;
  font: inherit;
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.08);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.boardProgressive__state:hover,
.boardProgressive__state:focus-visible {
  border-color: var(--board-line);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.13);
  transform: translateY(-1px);
}

.boardProgressive__state:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--board-line), #ffffff 18%);
  outline-offset: 3px;
}

.boardProgressive__state.is-revealed {
  border-color: color-mix(in srgb, var(--board-line), #ffffff 14%);
}

.boardProgressive__state.is-active {
  background: color-mix(in srgb, var(--board-header), #ffffff 8%);
  border-color: var(--board-header);
  color: var(--board-header-ink);
  box-shadow: 0 18px 34px rgba(8, 127, 156, 0.22);
  transform: translateY(-2px);
}

.boardProgressive__state.is-revealed:not(.is-active)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--board-line);
}

.boardProgressive__index {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--board-line), #ffffff 20%);
  color: var(--board-header-ink);
  font-size: 0.9rem;
  font-weight: 950;
}

.boardProgressive__label {
  display: block;
  font-size: 1.14rem;
  font-weight: 950;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.boardProgressive__state small {
  color: color-mix(in srgb, currentColor, transparent 18%);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.boardProgressive__detailSpace {
  min-height: 240px;
  display: grid;
  margin: 0;
  overflow: hidden;
}

.boardProgressive__placeholder,
.boardProgressive__panel {
  min-height: 240px;
  padding: 24px 28px;
  border: 0;
  background: color-mix(in srgb, var(--surface), var(--board-muted) 10%);
  overflow: auto;
}

.boardProgressive__placeholder {
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--muted), transparent 12%);
  font-size: 1.35rem;
  font-weight: 950;
}

.boardProgressive__panel {
  align-content: start;
  gap: 12px;
}

.boardProgressive__panel.is-active {
  display: grid;
}

.boardProgressive__panel > .board__kicker {
  color: var(--board-line);
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.1;
}

.boardProgressive__panel > strong {
  color: var(--ink);
  font-size: 1.72rem;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.boardProgressive__panel > p {
  max-width: 70ch;
  margin: 0;
  color: color-mix(in srgb, var(--ink), transparent 8%);
  font-size: 1.2rem;
  line-height: 1.32;
}

.boardProgressive__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.08rem;
  line-height: 1.3;
}

.boardProgressive__list li {
  position: relative;
  padding-left: 20px;
  overflow-wrap: anywhere;
}

.boardProgressive__list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--board-line);
  transform: translateY(-50%);
}

.boardProgressive__nodeList {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.boardProgressive__nodeChip {
  min-width: min(180px, 100%);
  display: grid;
  gap: 2px;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--board-line), #ffffff 40%);
  border-radius: 7px;
  background: var(--surface);
}

.boardProgressive__nodeChip strong,
.boardProgressive__nodeChip small {
  overflow-wrap: anywhere;
}

.boardProgressive__nodeChip small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.boardProgressive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.boardProgressive__meta span {
  display: inline-grid;
  gap: 2px;
  min-width: min(190px, 100%);
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--board-line), #ffffff 48%);
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface), var(--board-muted) 14%);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.boardProgressive__meta b {
  color: var(--board-line);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.boardProgressive__layerGrid,
.boardProgressive__coachGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.boardProgressive__layer,
.boardProgressive__coachGrid section {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 11px 12px;
  border: 1px solid color-mix(in srgb, var(--board-line), #ffffff 42%);
  border-radius: 7px;
  background: var(--surface);
}

.boardProgressive__layer > span,
.boardProgressive__coachGrid section > span {
  color: var(--board-line);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.boardProgressive__miniList,
.boardProgressive__warningList {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.93rem;
  line-height: 1.28;
}

.boardProgressive__miniList li,
.boardProgressive__warningList li {
  position: relative;
  padding-left: 16px;
  overflow-wrap: anywhere;
}

.boardProgressive__miniList li::before,
.boardProgressive__warningList li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--board-line);
  transform: translateY(-50%);
}

.boardProgressive__warningList {
  padding: 10px 12px;
  border-left: 5px solid color-mix(in srgb, var(--board-line), #f97316 45%);
  border-radius: 6px;
  background: color-mix(in srgb, var(--board-muted), #ffffff 22%);
  font-weight: 840;
}

.boardProgressive__relations {
  display: grid;
  gap: 7px;
}

.boardProgressive__relation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--board-line), #ffffff 52%);
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface), var(--board-muted) 8%);
  font-size: 0.94rem;
  line-height: 1.22;
}

.boardProgressive__relation span {
  overflow-wrap: anywhere;
}

.boardProgressive__relation b {
  color: var(--board-line);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.boardProgressive__coachGrid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.boardProgressive__takeaway {
  margin-top: 2px;
  padding: 12px 14px;
  border-left: 5px solid var(--board-line);
  border-radius: 6px;
  background: color-mix(in srgb, var(--board-muted), #ffffff 34%);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive {
  padding: 0 0 10px;
}

.board[data-board-figure-preset="flow-structure"].board--progressive-state-reveal-detail,
.board[data-board-figure-preset="flow-structure"].board--progressive-state-reveal-main {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.board[data-board-figure-preset="flow-structure"].board--progressive-state-reveal-detail {
  grid-template-rows: auto auto;
  align-content: start;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive {
  align-content: start;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__state {
  width: auto;
  min-width: min(190px, 30%);
  height: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface), var(--board-muted) 34%);
  text-align: center;
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.06);
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__state.is-active {
  background: color-mix(in srgb, var(--board-header), #ffffff 5%);
  border-color: var(--board-header);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(8, 127, 156, 0.18);
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__index {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  background: color-mix(in srgb, var(--board-line), #ffffff 10%);
  color: #ffffff;
  font-size: 0.82rem;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__label {
  display: block;
  color: inherit;
  font-size: clamp(0.82rem, 0.98vw, 0.95rem);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__state.is-active .boardProgressive__index {
  background: color-mix(in srgb, #ffffff, transparent 78%);
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__state small,
.board[data-board-figure-preset="flow-structure"] .boardProgressive__state.is-revealed:not(.is-active)::after {
  display: none;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__placeholder {
  display: none;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__detailSpace {
  min-height: 0;
  overflow: visible;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__panel {
  min-height: 0;
  padding: 0;
  gap: 0;
  background: transparent;
  overflow: visible;
}

.board[data-board-figure-preset="flow-structure"] .boardProgressive__meta,
.board[data-board-figure-preset="flow-structure"] .boardProgressive__list,
.board[data-board-figure-preset="flow-structure"] .boardProgressive__nodeList,
.board[data-board-figure-preset="flow-structure"] .boardProgressive__layerGrid,
.board[data-board-figure-preset="flow-structure"] .boardProgressive__relations,
.board[data-board-figure-preset="flow-structure"] .boardProgressive__coachGrid {
  display: none;
}

.board--image {
  width: 100%;
  height: 100%;
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.boardImage {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.slideCanvas[data-slide-template="board-reveal"]:has(.board--imageHotspots) .slideSlot--mainGraphic {
  z-index: 8;
}

.slideCanvas[data-slide-template="board-reveal"]:has(.board--imageHotspots) .boardImage {
  overflow: visible;
}

.boardImage__asset {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.boardImage__hotspots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.boardImage__hotspot {
  position: absolute;
  left: calc(var(--board-image-hotspot-x) * 1%);
  top: calc(var(--board-image-hotspot-y) * 1%);
  width: calc(var(--board-image-hotspot-width) * 1%);
  height: calc(var(--board-image-hotspot-height) * 1%);
  border: 3px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease;
}

.boardImage__hotspot:not(.is-visible),
.boardImage__hotspot:disabled {
  cursor: default;
  pointer-events: none;
}

.boardImage__hotspot:hover,
.boardImage__hotspot:focus-visible {
  border-color: rgba(8, 127, 156, 0.64);
  background: rgba(8, 127, 156, 0.08);
  box-shadow: 0 0 0 4px rgba(8, 127, 156, 0.08);
  outline: none;
}

.boardImage__hotspot.is-active {
  border-color: rgba(221, 133, 20, 0.95);
  background: rgba(255, 210, 96, 0.16);
  box-shadow: 0 0 0 5px rgba(221, 133, 20, 0.13);
}

.boardImage__hotspot.is-revealed:not(.is-active) {
  border-color: rgba(8, 127, 156, 0.22);
}

.boardImageInfo {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(28px, 4vw, 48px);
  z-index: 2;
  width: min(1440px, calc(100vw - 64px));
  max-height: min(620px, 68vh);
  overflow: auto;
  padding: 38px 48px 40px;
  border: 4px solid #0b7f9f;
  border-radius: 8px;
  background: #fffdf4;
  color: #13202f;
  box-shadow: 0 24px 58px rgba(12, 61, 75, 0.3);
  transform: translateX(-50%);
}

.boardImageInfo[hidden] {
  display: none;
}

.boardImageInfo__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 127, 159, 0.36);
  border-radius: 999px;
  background: #ffffff;
  color: #0b7f9f;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.boardImageInfo__card {
  display: grid;
  gap: 15px;
  padding-right: 48px;
}

.boardImageInfo__card[hidden] {
  display: none;
}

.boardImageInfo__eyebrow {
  margin: 0;
  color: #0b7f9f;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.boardImageInfo h5 {
  margin: 0;
  color: #13202f;
  font-size: clamp(2.65rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.boardImageInfo__body,
.boardImageInfo__examples {
  display: grid;
  gap: 12px;
}

.boardImageInfo p,
.boardImageInfo li {
  margin: 0;
  font-size: clamp(2rem, 2.35vw, 2.4rem);
  line-height: 1.16;
}

.boardImageInfo__examples strong {
  color: #0b7f9f;
  font-size: 1.2rem;
}

.boardImageInfo ul {
  margin: 0;
  padding-left: 1.1rem;
}

.boardImageInfo small {
  margin: 0;
  color: #5b6472;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.boardImage--missing {
  gap: 8px;
  align-content: center;
  justify-items: center;
  border: 2px dashed var(--board-line);
  border-radius: 10px;
  color: var(--board-muted);
  background: var(--board-surface);
}

.boardImage__detailSlot {
  display: none;
}

.slideCanvas[data-slide-template="board-reveal"]:has(.board--image) .slideSlot--mainGraphic {
  top: 72px;
  height: 740px;
}

.slideCanvas[data-slide-template="board-reveal"]:has(.board--image) .slideSlot--detail {
  display: none;
}

.slideCanvas[data-slide-template="board-reveal"]:has(.board--image) .slideBody--mainGraphic,
.slideCanvas[data-slide-template="board-reveal"]:has(.board--image) .boardReference {
  height: 100%;
}

.slideCanvas[data-slide-template="board-reveal"]:has(.board--image) .boardReference {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  align-self: stretch;
}

.slideCanvas .slideBody:has(.nativeContentBlock) {
  align-content: start;
  grid-auto-rows: min-content;
}

.nativeContentBlock {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 22px 26px;
  border: 2px solid color-mix(in srgb, var(--institution-accent), #ffffff 50%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--paper), var(--institution-surface) 22%);
  color: var(--ink);
}

.nativeContentBlock__eyebrow {
  margin: 0;
  color: var(--institution-accent-strong);
  font-size: 0.92rem;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nativeContentBlock h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.52rem;
  line-height: 1.16;
}

.nativeContentBlock__body {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.nativeContentBlock__body p,
.nativeContentBlock li {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.28;
}

.nativeContentBlock ul {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 10px;
}

.nativeContentBlock--paragraph .nativeContentBlock__body p {
  font-weight: 760;
}

.nativeContentBlock--memorize,
.nativeContentBlock--definition {
  border-color: color-mix(in srgb, var(--semantic-warning), #ffffff 28%);
  background: color-mix(in srgb, var(--semantic-warning-soft), #ffffff 36%);
}

.nativeContentBlock--conceptCard {
  border-color: color-mix(in srgb, var(--institution-accent-strong), #ffffff 36%);
  background: color-mix(in srgb, var(--institution-accent-soft), #ffffff 38%);
}

.nativeContentBlock--personaCallout {
  grid-template-columns: minmax(0, 1fr);
  border-color: color-mix(in srgb, var(--semantic-info), #ffffff 30%);
  background: color-mix(in srgb, var(--semantic-info-soft), #ffffff 36%);
}

.nativeContentBlock__question {
  width: fit-content;
  max-width: 100%;
  margin: 4px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.nativeContentBlock--scriptAction {
  display: inline-grid;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 16px 20px;
  border-color: color-mix(in srgb, var(--semantic-success), #ffffff 28%);
  background: color-mix(in srgb, var(--semantic-success-soft), #ffffff 30%);
  cursor: pointer;
}

.nativeContentBlock--scriptAction:focus-visible {
  outline: 4px solid color-mix(in srgb, var(--institution-accent-strong), transparent 68%);
  outline-offset: 4px;
}

.nativeContentBlock__actionCue {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--institution-accent-strong);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
}

.teacherScriptActionModalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(15, 23, 42, 0.46);
}

.teacherScriptActionModal {
  width: min(1080px, calc(100vw - 72px));
  max-height: calc(100vh - 72px);
  display: grid;
  gap: 24px;
  overflow: auto;
  padding: 30px;
  border: 2px solid color-mix(in srgb, var(--institution-accent), #ffffff 44%);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.28);
}

.teacherScriptActionModal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.teacherScriptActionModal__header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.06;
}

.teacherScriptActionModal__body,
.teacherScriptActionQuestion {
  display: grid;
  gap: 18px;
}

.teacherScriptActionQuestion {
  padding: 22px;
  border: 2px solid color-mix(in srgb, var(--institution-accent), #ffffff 54%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--institution-surface), #ffffff 44%);
}

.teacherScriptActionQuestion > strong {
  color: var(--ink);
  font-size: 1.58rem;
  line-height: 1.16;
}

.teacherScriptActionQuestion__hint {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  font-weight: 760;
  line-height: 1.24;
}

.teacherScriptActionOptions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.teacherScriptActionOption {
  min-height: 72px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 830;
  line-height: 1.2;
  text-align: left;
}

.teacherScriptActionOption[data-answer-state="correct"],
.teacherScriptActionOption[data-answer-state="solution"] {
  border-color: var(--semantic-success);
  background: var(--semantic-success-soft);
}

.teacherScriptActionOption[data-answer-state="wrong"] {
  border-color: var(--danger);
  background: var(--semantic-danger-soft);
}

.teacherScriptActionFeedback {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.28;
}

.teacherScriptActionFeedback[data-answer-state="correct"] {
  color: var(--semantic-success);
}

.teacherScriptActionFeedback[data-answer-state="wrong"] {
  color: var(--danger);
}

.teacherScriptActionMissing {
  margin: 0;
  color: var(--danger);
  font-size: 1.24rem;
  font-weight: 850;
}

@media (max-width: 760px) {
  .teacherScriptActionModalBackdrop {
    padding: 18px;
  }

  .teacherScriptActionModal {
    width: calc(100vw - 36px);
    max-height: calc(100vh - 36px);
    padding: 22px;
  }

  .teacherScriptActionModal__header {
    display: grid;
  }

  .teacherScriptActionOptions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .boardProgressive {
    padding: 12px;
  }

  .boardProgressive__root {
    width: 100%;
  }

  .boardProgressive__connector {
    display: none;
  }

  .boardProgressive__states {
    grid-template-columns: 1fr;
  }

  .boardProgressive__state {
    min-height: 84px;
  }

  .boardProgressive__placeholder,
  .boardProgressive__panel {
    min-height: 220px;
    padding: 18px;
  }
}

.sessionStartSlide {
  position: relative;
}

.sessionStartSlide__brandLogo {
  position: absolute;
  z-index: 4;
  display: block;
  min-width: 64px;
  min-height: 22px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 1;
  pointer-events: none;
}
