/*
 * Lesson Launch authoring interface — station-colour editor treatment.
 *
 * Orange is a whole-class introduction. Rotating stations receive one tab for
 * every active group in the selected subject profile. Only the currently open
 * editor pair is initialised by lesson-launch.js.
 */

.r2t-station-authoring {
  --r2t-authoring-border: #d9e2ec;
  --r2t-authoring-ink: #17324d;
  --r2t-authoring-muted: #5f7285;
  --r2t-authoring-panel: #f8fbfd;
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

.r2t-station-authoring-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--r2t-authoring-border);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  box-shadow: 0 10px 28px rgba(23, 50, 77, 0.07);
}

.r2t-station-authoring-header h3,
.r2t-station-authoring-header p,
.r2t-group-panel-heading h4,
.r2t-group-panel-heading p {
  margin-top: 0;
}

.r2t-station-authoring-header h3 {
  margin-bottom: 5px;
  color: var(--r2t-authoring-ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.r2t-station-authoring-header p {
  margin-bottom: 0;
  color: var(--r2t-authoring-muted);
}

.r2t-profile-summary {
  flex: 0 0 auto;
  min-width: 210px;
  padding: 11px 14px;
  border: 1px solid #cfe0eb;
  border-radius: 12px;
  background: #fff;
  color: var(--r2t-authoring-ink);
  text-align: right;
}

.r2t-profile-summary strong,
.r2t-profile-summary span {
  display: block;
}

.r2t-profile-summary span {
  margin-top: 2px;
  color: var(--r2t-authoring-muted);
  font-size: 0.88rem;
}

.r2t-authoring-checks {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e1e9;
  border-radius: 12px;
  background: #fff;
  color: #38536a;
}

.r2t-authoring-checks summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.r2t-authoring-checks summary::-webkit-details-marker { display: none; }

.r2t-authoring-check-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  background: #eef3f7;
  color: #38536a;
  font-size: .82rem;
}

.r2t-authoring-check-list {
  padding: 0 14px 12px;
  border-top: 1px solid #e7edf2;
}

.r2t-authoring-check-list p {
  margin: 10px 0 0;
  line-height: 1.45;
}

.r2t-authoring-card {
  overflow: hidden;
  border: 1px solid var(--r2t-authoring-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 50, 77, 0.055);
}

.r2t-authoring-card-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 14px 18px;
  border: 0;
  background: #fff;
  color: var(--r2t-authoring-ink);
  text-align: left;
  cursor: pointer;
}

.r2t-authoring-card-toggle:hover,
.r2t-authoring-card-toggle:focus-visible {
  background: #f7fafc;
}

.r2t-authoring-card-toggle:focus-visible,
.r2t-group-tab:focus-visible,
.r2t-inheritance-actions button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: -3px;
}

.r2t-authoring-title-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.r2t-authoring-title-copy > span:last-child {
  min-width: 0;
}

.r2t-authoring-title-copy strong,
.r2t-authoring-title-copy small {
  display: block;
}

.r2t-authoring-title-copy strong {
  font-size: 1.04rem;
}

.r2t-authoring-title-copy small {
  margin-top: 2px;
  color: var(--r2t-authoring-muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.r2t-authoring-toggle-icon {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.r2t-authoring-card-toggle[aria-expanded="true"] .r2t-authoring-toggle-icon {
  transform: rotate(180deg);
}

.r2t-authoring-colour-dot {
  display: inline-block;
  flex: 0 0 auto;
  border: 2px solid rgba(23, 50, 77, 0.12);
  border-radius: 999px;
  background: #d9e2ec;
}

.r2t-authoring-colour-dot {
  width: 30px;
  height: 30px;
}

.r2t-authoring-colour-dot.station-orange { background: #f6a623; }
.r2t-authoring-colour-dot.station-blue { background: #3487d7; }
.r2t-authoring-colour-dot.station-green { background: #49a56b; }
.r2t-authoring-colour-dot.station-yellow { background: #efd24b; }
.r2t-authoring-colour-dot.station-purple { background: #8c65c8; }
.r2t-authoring-colour-dot.station-teal { background: #2ea6a2; }
.r2t-authoring-colour-dot.station-red { background: #d85b5b; }
.r2t-authoring-colour-dot.station-white { background: #fff; }

/*
 * Station/activity colour system.
 *
 * The strong accent is reserved for the card edge and the student-facing
 * editor's left rail. The tint and label tint keep the editor recognisably
 * connected to its station without reducing readability inside the editor.
 */
.r2t-authoring-card {
  --r2t-station-accent: #3487d7;
  --r2t-station-tint: #f2f8fe;
  --r2t-station-soft-border: #a8cce9;
  --r2t-station-label-tint: #dceeff;
  --r2t-station-label-ink: #174f7f;
}

.r2t-authoring-card.station-orange {
  --r2t-station-accent: #f6a623;
  --r2t-station-tint: #fff8ee;
  --r2t-station-soft-border: #f0c77e;
  --r2t-station-label-tint: #ffebc8;
  --r2t-station-label-ink: #744700;
  border-top: 5px solid var(--r2t-station-accent);
}

.r2t-authoring-card.station-blue {
  --r2t-station-accent: #3487d7;
  --r2t-station-tint: #f2f8fe;
  --r2t-station-soft-border: #a8cce9;
  --r2t-station-label-tint: #dceeff;
  --r2t-station-label-ink: #174f7f;
  border-top: 5px solid var(--r2t-station-accent);
}

.r2t-authoring-card.station-green {
  --r2t-station-accent: #49a56b;
  --r2t-station-tint: #f1faf4;
  --r2t-station-soft-border: #a9d8b9;
  --r2t-station-label-tint: #d9f1e1;
  --r2t-station-label-ink: #225d38;
  border-top: 5px solid var(--r2t-station-accent);
}

.r2t-authoring-card.station-yellow {
  --r2t-station-accent: #efd24b;
  --r2t-station-tint: #fffdf2;
  --r2t-station-soft-border: #eadb7c;
  --r2t-station-label-tint: #fff2b8;
  --r2t-station-label-ink: #685500;
  border-top: 5px solid var(--r2t-station-accent);
}

.r2t-authoring-card.station-purple {
  --r2t-station-accent: #8c65c8;
  --r2t-station-tint: #f7f3fc;
  --r2t-station-soft-border: #cbb9e7;
  --r2t-station-label-tint: #e9def7;
  --r2t-station-label-ink: #54387e;
  border-top: 5px solid var(--r2t-station-accent);
}

.r2t-authoring-card.station-teal {
  --r2t-station-accent: #2ea6a2;
  --r2t-station-tint: #effafa;
  --r2t-station-soft-border: #9fdad7;
  --r2t-station-label-tint: #d6f2f0;
  --r2t-station-label-ink: #1f6260;
  border-top: 5px solid var(--r2t-station-accent);
}

.r2t-authoring-card.station-red {
  --r2t-station-accent: #d85b5b;
  --r2t-station-tint: #fff5f5;
  --r2t-station-soft-border: #e9b0b0;
  --r2t-station-label-tint: #f9dede;
  --r2t-station-label-ink: #7a3030;
  border-top: 5px solid var(--r2t-station-accent);
}

.r2t-authoring-card.station-white {
  --r2t-station-accent: #9aa8b5;
  --r2t-station-tint: #fbfcfd;
  --r2t-station-soft-border: #d6dde4;
  --r2t-station-label-tint: #eef2f5;
  --r2t-station-label-ink: #425466;
  border-top: 5px solid #c7d1db;
}

.r2t-authoring-card-body {
  padding: 18px;
  border-top: 1px solid var(--r2t-authoring-border);
  background: var(--r2t-authoring-panel);
}

.r2t-authoring-card-body[hidden],
.r2t-group-panel[hidden] {
  display: none !important;
}

.r2t-authoring-station-list {
  display: grid;
  gap: 14px;
}

.r2t-group-tablist {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  padding: 3px 2px 10px;
  scroll-snap-type: inline proximity;
}

.r2t-group-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  min-width: 118px;
  max-width: 220px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid #cbd9e4;
  border-radius: 999px;
  background: #fff;
  color: #2c4962;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  scroll-snap-align: start;
}

.r2t-group-tab:hover {
  border-color: #8db3cf;
  background: #f1f7fb;
}

.r2t-group-tab.is-active,
.r2t-group-tab[aria-selected="true"] {
  border-color: var(--r2t-station-accent, #2563eb);
  background: #f1f6fb;
  color: #17324d;
  box-shadow: inset 0 0 0 2px var(--r2t-station-accent, #2563eb);
}

.r2t-group-panels {
  margin-top: 4px;
}

.r2t-group-panel {
  padding: clamp(14px, 2.4vw, 22px);
  border: 1px solid #d5e2eb;
  border-radius: 14px;
  background: #fff;
}

.r2t-group-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.r2t-group-panel-heading h4 {
  margin-bottom: 3px;
  color: var(--r2t-authoring-ink);
  font-size: 1.08rem;
}

.r2t-group-panel-heading p {
  margin-bottom: 0;
  color: var(--r2t-authoring-muted);
}

.r2t-inheritance-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.r2t-inheritance-badge.is-inherited {
  background: #eaf5ee;
  color: #25633b;
}

.r2t-inheritance-badge.is-custom {
  background: #eee9fb;
  color: #5b3d93;
}

.r2t-inheritance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.r2t-inheritance-actions button {
  min-height: 36px;
}

.r2t-reset-override {
  border: 0;
  padding: 0;
  background: transparent;
  color: #516a7d;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}

.r2t-reset-override:hover,
.r2t-reset-override:focus-visible { color:#17324d; }

.r2t-authoring-editor-stack {
  display: grid;
  gap: 18px;
}

.r2t-authoring-editor-stack > .r2t-edit-field {
  margin: 0;
  padding: 16px;
  border: 1px solid #d9e3eb;
  border-radius: 12px;
  background: #fff;
}

/* Student-facing content follows its enclosing station/activity colour. */
.r2t-authoring-student-editor {
  border-top-color: var(--r2t-station-soft-border, #a8cce9) !important;
  border-right-color: var(--r2t-station-soft-border, #a8cce9) !important;
  border-bottom-color: var(--r2t-station-soft-border, #a8cce9) !important;
  border-left: 6px solid var(--r2t-station-accent, #3487d7) !important;
  background: var(--r2t-station-tint, #f2f8fe) !important;
}

/* Teacher Notes remain deliberately neutral and visually private. */
.r2t-authoring-teacher-editor {
  border: 1px solid #d7dce5 !important;
  border-left: 6px solid #758195 !important;
  background: #f7f8fb !important;
}

.r2t-authoring-editor-stack label,
.r2t-orange-editors label {
  display: block;
  margin-bottom: 8px;
  color: var(--r2t-authoring-ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.r2t-authoring-editor-stack textarea[data-r2t-rich-editor],
.r2t-orange-editors textarea[data-r2t-rich-editor] {
  width: 100%;
  min-height: 240px;
}

.r2t-rich-editor-purpose,
.r2t-private-note {
  margin: 8px 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.r2t-rich-editor-purpose {
  color: var(--r2t-authoring-muted);
}

.r2t-private-note {
  color: #604889;
  font-weight: 650;
}

.r2t-orange-editors {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.r2t-authoring-empty {
  margin: 0;
  padding: 16px;
  border: 1px dashed #bdcbd6;
  border-radius: 10px;
  color: var(--r2t-authoring-muted);
  background: #fff;
}

.r2t-authoring-draft-status {
  margin: 0;
  padding: 10px 13px;
  border-radius: 10px;
  background: #edf4f8;
  color: #4b6478;
  font-size: 0.84rem;
}

.r2t-authoring-draft-status.is-saving {
  background: #fff5d8;
  color: #714c00;
}

.r2t-authoring-draft-status.is-saved {
  background: #eaf5ee;
  color: #25633b;
}

.r2t-authoring-draft-status.is-error {
  background: #fdecec;
  color: #8a2f2f;
}

.r2t-authoring-card.is-editor-open {
  box-shadow: 0 12px 34px rgba(23, 50, 77, 0.1);
}

.r2t-authoring-card.is-editor-open > .r2t-authoring-card-toggle {
  background: #f8fbfd;
}

.r2t-authoring-card [data-r2t-lazy-rich-editor][data-r2t-editor-state="idle"] {
  min-height: 240px;
  border: 1px solid #bfcdd8;
  border-radius: 6px;
  background: #fff;
}

@media (min-width: 1100px) {
  .r2t-authoring-editor-stack {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    align-items: start;
  }

  .r2t-authoring-editor-stack .wp-editor-wrap,
  .r2t-orange-editors .wp-editor-wrap {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .r2t-station-authoring-header,
  .r2t-group-panel-heading {
    display: grid;
  }

  .r2t-profile-summary {
    min-width: 0;
    text-align: left;
  }

  .r2t-orange-editors {
    grid-template-columns: 1fr;
  }

  .r2t-inheritance-badge {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .r2t-station-authoring {
    gap: 12px;
  }

  .r2t-authoring-card-body,
  .r2t-group-panel {
    padding: 12px;
  }

  .r2t-authoring-card-toggle {
    min-height: 62px;
    padding: 12px 14px;
  }

  .r2t-authoring-colour-dot {
    width: 24px;
    height: 24px;
  }

  .r2t-group-tab {
    min-width: 108px;
  }

  .r2t-inheritance-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .r2t-inheritance-actions button {
    width: 100%;
  }
}

.r2t-authoring-timing {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 13px 16px;
  border: 1px solid #d4e1ea;
  border-radius: 12px;
  background: #fff;
  color: #38536a;
  font-weight: 700;
}

.r2t-authoring-timing label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.r2t-authoring-timing input,
.r2t-authoring-duration-row input {
  width: 76px;
  min-height: 38px;
  padding: 6px 8px;
  border: 1px solid #b9cbd8;
  border-radius: 8px;
  background: #fff;
}

.r2t-authoring-duration-row {
  margin-bottom: 14px;
  color: #38536a;
  font-weight: 700;
}

/* Priority 4: permanent lesson-instance saving. */
.r2t-authoring-save-button {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

.r2t-authoring-save-button[aria-busy="true"] {
  cursor: progress;
  opacity: 0.72;
}

.r2t-embedded-media {
  position: relative;
  width: 100%;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 12px;
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

.r2t-embedded-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Priority 5: independent Whole-Class and Stations live channels. */
.r2t-tm-channel-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin:18px 0}
.r2t-tm-channel-card{display:grid;grid-template-columns:minmax(130px,180px) minmax(0,1fr);gap:20px;align-items:start}
.r2t-tm-channel-content{min-width:0}
.r2t-tm-global-controls{margin-top:18px}
.r2t-tm-global-controls .r2t-tm-control-grid{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}
.r2t-tm-channel-card[hidden]{display:none!important}
@media (max-width:1050px){.r2t-tm-channel-grid{grid-template-columns:1fr}.r2t-tm-channel-card{grid-template-columns:150px minmax(0,1fr)}}
@media (max-width:640px){.r2t-tm-channel-card{grid-template-columns:1fr}.r2t-tm-channel-card .r2t-teacher-timer-ring{margin-inline:auto}.r2t-tm-control-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}


/* 1.18.1 editor-source protection and recovery feedback. */
.r2t-rich-edit-field.is-editor-initialising {
  position: relative;
  min-height: 290px;
}

.r2t-rich-edit-field.is-editor-initialising::after {
  content: 'Loading visual editor…';
  position: absolute;
  inset: 42px 0 0;
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 1px solid #c9d6e0;
  border-radius: 8px;
  background: #f8fbfd;
  color: #526b7e;
  font-weight: 700;
  pointer-events: none;
}

.r2t-rich-edit-field textarea.r2t-rich-editor-source-hidden,
.r2t-rich-edit-field textarea[data-r2t-editor-state='initialising'] {
  visibility: hidden !important;
  pointer-events: none !important;
}

.r2t-rich-edit-field.has-editor-fallback {
  border-color: #d7dce5;
  background: #f7f8fb;
}

.r2t-rich-edit-field.has-editor-fallback::before {
  content: 'Visual editor';
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eceff4;
  color: #425466;
  font-size: 0.78rem;
  font-weight: 800;
}

/* The fallback editor inherits the same colour language as its station. */
.r2t-authoring-student-editor.has-editor-fallback {
  border-top-color: var(--r2t-station-soft-border, #a8cce9) !important;
  border-right-color: var(--r2t-station-soft-border, #a8cce9) !important;
  border-bottom-color: var(--r2t-station-soft-border, #a8cce9) !important;
  border-left-color: var(--r2t-station-accent, #3487d7) !important;
  background: var(--r2t-station-tint, #f2f8fe) !important;
}

.r2t-authoring-student-editor.has-editor-fallback::before {
  background: var(--r2t-station-label-tint, #dceeff) !important;
  color: var(--r2t-station-label-ink, #174f7f) !important;
}

.r2t-authoring-teacher-editor.has-editor-fallback {
  border-color: #d7dce5 !important;
  border-left-color: #758195 !important;
  background: #f7f8fb !important;
}

.r2t-authoring-teacher-editor.has-editor-fallback::before {
  background: #eceff4 !important;
  color: #425466 !important;
}

/*
 * Tint the editor chrome, but keep the editable canvas white for contrast.
 * These selectors intentionally outrank the legacy inline editor CSS.
 */
.r2t-authoring-student-editor .r2t-compat-rich-editor {
  border-color: var(--r2t-station-soft-border, #a8cce9) !important;
}

.r2t-authoring-student-editor .r2t-compat-rich-toolbar {
  border-bottom-color: var(--r2t-station-soft-border, #a8cce9) !important;
  background: var(--r2t-station-tint, #f2f8fe) !important;
}

.r2t-authoring-student-editor .r2t-compat-rich-surface {
  background: #fff !important;
}

.r2t-authoring-teacher-editor .r2t-compat-rich-editor {
  border-color: #d7dce5 !important;
}

.r2t-authoring-teacher-editor .r2t-compat-rich-toolbar {
  border-bottom-color: #d7dce5 !important;
  background: #f2f4f7 !important;
}

.r2t-compat-rich-editor.is-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000000 !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100vw !important;
  height: 100dvh !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f4f7fa !important;
}

.r2t-compat-rich-editor.is-fullscreen .r2t-compat-rich-toolbar {
  max-height: 42dvh;
  overflow: auto;
}

.r2t-compat-rich-editor.is-fullscreen .r2t-compat-rich-surface {
  min-height: 0 !important;
  height: 100% !important;
  overflow: auto;
}

html.r2t-rich-editor-fullscreen-open,
body.r2t-rich-editor-fullscreen-open { overflow:hidden !important; }

/* Priority 7 Classroom Display status inside Lesson Launch. */
.r2t-open-display-view-summary{display:flex;flex-wrap:wrap;gap:8px 16px;align-items:center;margin-top:14px;padding:12px 14px;border:1px solid #dbe4ef;border-radius:16px;background:#f8fafc;color:#526174;font-weight:800}
.r2t-open-display-view-summary strong{color:#102033}.r2t-open-display-view-summary small{font-size:.85rem;line-height:1.35}

/* 1.20.0: structured Blank and Whole-Class authoring */
.r2t-structured-authoring[hidden],
[data-r2t-blank-map][hidden],
[data-r2t-whole-class-map][hidden],
[data-r2t-station-map][hidden] {
    display: none !important;
}
.r2t-structured-authoring {
    display: grid;
    gap: 18px;
    min-width: 0;
}
.r2t-blank-authoring .r2t-authoring-card-body {
    padding-top: 20px;
}
.r2t-whole-class-activity-list {
    display: grid;
    gap: 14px;
}
.r2t-authoring-card-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
}
.r2t-authoring-card-heading-row .r2t-authoring-card-toggle {
    width: 100%;
    min-width: 0;
    border-radius: 16px;
}
.r2t-activity-include-toggle {
    align-self: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    color: #7f1d1d;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}
.r2t-activity-include-toggle:hover,
.r2t-activity-include-toggle:focus-visible {
    border-color: #ef4444;
    background: #fff1f2;
    outline: 3px solid rgba(239, 68, 68, .16);
}
.r2t-activity-include-toggle.is-restore {
    color: #166534;
    border-color: #86efac;
    background: #f0fdf4;
}
.r2t-whole-class-activity.is-disabled {
    border-style: dashed;
    opacity: .82;
    background: #f8fafc;
}
.r2t-whole-class-activity.is-disabled .r2t-authoring-colour-dot {
    filter: grayscale(1);
    opacity: .55;
}
.r2t-whole-class-activity.is-disabled [data-r2t-activity-state-label] {
    color: #9f1239;
    font-weight: 800;
}
.r2t-whole-class-activity .r2t-authoring-card-body {
    border-top: 1px solid rgba(148, 163, 184, .22);
}
.r2t-whole-class-activity .r2t-authoring-duration-row {
    margin-bottom: 16px;
}
.r2t-structured-authoring .r2t-authoring-editor-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}
.r2t-structured-authoring .r2t-rich-edit-field {
    min-width: 0;
}
.r2t-structured-authoring .r2t-authoring-student-editor {
    border-top-color: var(--r2t-station-soft-border, #a8cce9) !important;
    border-right-color: var(--r2t-station-soft-border, #a8cce9) !important;
    border-bottom-color: var(--r2t-station-soft-border, #a8cce9) !important;
    border-left-color: var(--r2t-station-accent, #3487d7) !important;
    background: var(--r2t-station-tint, #f2f8fe) !important;
}
.r2t-structured-authoring .r2t-authoring-teacher-editor {
    border-color: #d7dce5 !important;
    border-left-color: #758195 !important;
    background: #f7f8fb !important;
}
.r2t-structured-authoring .r2t-authoring-draft-status {
    margin-top: 0;
}
@media (max-width: 760px) {
    .r2t-authoring-card-heading-row {
        grid-template-columns: 1fr;
    }
    .r2t-activity-include-toggle {
        width: 100%;
        justify-self: stretch;
    }
}
