/* Little Dreamer AI Study 화면 스타일을 정의하는 파일 */
:root {
  --ink: #172333;
  --muted: #5f6d7e;
  --line: #dbe5ef;
  --page: #f7fbff;
  --surface: #ffffff;
  --teal: #2ca79a;
  --teal-dark: #17766f;
  --coral: #ed7356;
  --indigo: #5e63c7;
  --amber: #f3b33d;
  --mint: #dff5ee;
  --blue-soft: #e7f0ff;
  --coral-soft: #fff0eb;
  --shadow: 0 18px 50px rgba(34, 55, 86, 0.12);
  color-scheme: light;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(44, 167, 154, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(94, 99, 199, 0.07) 1px, transparent 1px),
    var(--page);
  background-size: 48px 48px;
}

button,
input {
  font: inherit;
}

button {
  min-height: 44px;
  border: 0;
  cursor: pointer;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(44, 167, 154, 0.35);
  outline-offset: 3px;
}

.app-shell {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 3vw, 36px);
  border-bottom: 1px solid rgba(219, 229, 239, 0.9);
  background: rgba(247, 251, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid #172333;
  border-radius: 8px;
  background: #fff8df;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.role-tabs,
.subject-tabs,
.segmented,
.emotion-grid,
.reflection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-tab,
.subject-tab,
.segment,
.emotion,
.reflection,
.ghost-button,
.primary-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.role-tab,
.subject-tab,
.segment,
.emotion,
.reflection {
  padding: 10px 14px;
}

.role-tab:hover,
.subject-tab:hover,
.segment:hover,
.emotion:hover,
.reflection:hover,
.ghost-button:hover,
.primary-button:hover {
  transform: translateY(-1px);
}

.is-active.role-tab,
.is-active.subject-tab,
.is-active.segment,
.is-active.emotion,
.is-active.reflection {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.workspace {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 3vw, 36px);
}

.control-panel,
.mission-board,
.coach-panel,
.metacognition,
.teacher-view,
.parent-view {
  border: 1px solid rgba(219, 229, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.control-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  padding: clamp(18px, 3vw, 30px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 32px);
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.intro,
.emotion-check p,
.coach-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.learner-strip,
.emotion-check {
  display: grid;
  gap: 14px;
  align-content: start;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}

fieldset.segmented {
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset.segmented legend {
  width: 100%;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.emotion-check {
  padding: 16px;
  border: 1px solid #f0d8ce;
  border-radius: 8px;
  background: var(--coral-soft);
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.child-view {
  display: none;
}

.child-view.is-active {
  display: grid;
  gap: 18px;
}

.classroom-toolbar,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.classroom-toolbar {
  padding: 4px 0;
}

.ghost-button,
.primary-button {
  padding: 10px 14px;
}

.ghost-button {
  background: #fff;
}

.primary-button {
  border-color: transparent;
  background: var(--teal);
  color: #fff;
}

.learning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
}

.learning-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid rgba(219, 229, 239, 0.9);
  border-radius: 8px;
  padding: clamp(14px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mission-board,
.coach-panel,
.metacognition,
.mission-ribbon,
.daily-mission,
.project-panel,
.skill-map-panel,
.home-mission,
.week-panel,
.observation-panel,
.admin-panel,
.privacy-panel,
.teacher-view,
.parent-view {
  padding: clamp(16px, 2.4vw, 26px);
}

.mission-ribbon,
.daily-mission,
.project-panel,
.skill-map-panel,
.home-mission,
.week-panel,
.observation-panel,
.admin-panel,
.privacy-panel {
  border: 1px solid rgba(219, 229, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mission-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-color: rgba(44, 167, 154, 0.28);
  background: #eef8f5;
}

.mission-ribbon strong {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
}

.mission-ribbon p {
  margin: 0;
  color: var(--teal-dark);
  line-height: 1.55;
}

.mission-ribbon button {
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.daily-mission {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-color: rgba(243, 179, 61, 0.42);
  background: #fff8df;
}

.daily-mission strong {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
}

.daily-mission p {
  margin: 0;
  color: #6a5018;
  line-height: 1.55;
}

.project-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 14px;
  margin-top: 16px;
}

.project-card,
.sequence-card,
.observation-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.project-card p,
.sequence-card p,
.observation-card p {
  color: var(--muted);
  line-height: 1.55;
}

.project-steps {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.project-card button {
  width: 100%;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
}

.sequence-list,
.observation-grid {
  display: grid;
  gap: 10px;
}

.sequence-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sequence-chip {
  border-radius: 8px;
  padding: 10px;
  background: var(--blue-soft);
  color: #315175;
  font-size: 13px;
  font-weight: 900;
}

.observation-panel {
  margin-top: 18px;
  box-shadow: none;
}

.observation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 14px;
}

.observation-card strong {
  display: block;
  margin-bottom: 6px;
}

.observation-card span {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.commercial-panel,
.learner-note-panel,
.yearly-panel,
.smoke-panel {
  margin-top: 18px;
  border: 1px solid rgba(219, 229, 239, 0.9);
  border-radius: 8px;
  padding: clamp(16px, 2.4vw, 26px);
  background: rgba(255, 255, 255, 0.92);
}

.yearly-mission,
.smoke-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.commercial-planner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.plan-card,
.yearly-card,
.smoke-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.plan-card span,
.yearly-card span,
.smoke-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.plan-card strong,
.yearly-card strong,
.smoke-card strong {
  display: block;
  margin-bottom: 6px;
}

.plan-card p,
.yearly-card p,
.smoke-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.week-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.week-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.week-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.week-card strong {
  display: block;
  margin-bottom: 8px;
}

.week-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-badge {
  display: inline-grid;
  min-height: 36px;
  place-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.activity-card {
  display: grid;
  gap: 12px;
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.activity-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.activity-card h3 {
  margin-bottom: 4px;
}

.activity-card p {
  color: var(--muted);
  line-height: 1.55;
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.activity-meta span {
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--blue-soft);
  color: #315175;
  font-size: 12px;
  font-weight: 800;
}

.activity-card button {
  width: 100%;
  border-radius: 8px;
  background: var(--indigo);
  color: #fff;
  font-weight: 900;
}

.coach-character {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef8f5;
}

.coach-character svg {
  display: block;
  width: 100%;
  height: auto;
}

.micro-routine {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.micro-routine span {
  display: grid;
  min-height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: #315175;
  font-weight: 900;
}

.activity-stage {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.stage-empty,
.stage-card {
  border-radius: 8px;
  padding: 16px;
  background: #fff8df;
  color: #5f4a1a;
  line-height: 1.6;
  font-weight: 800;
}

.stage-card {
  display: grid;
  gap: 12px;
}

.stage-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.choice-grid button {
  display: grid;
  min-height: 64px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.choice-grid button.is-picked {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.stage-card svg {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  background: #fff;
}

.stage-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.stage-actions button {
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
}

.stage-actions button:last-child {
  background: var(--teal);
}

.completion-card {
  border-color: rgba(44, 167, 154, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f2fbf8 100%);
}

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

.growth-tags span {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--blue-soft);
  color: #315175;
  font-size: 13px;
  font-weight: 900;
}

.movement-break {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.movement-break strong {
  display: block;
  margin-bottom: 6px;
}

.movement-break p {
  margin: 0;
}

.metacognition {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 0.8fr) minmax(260px, 1fr) minmax(220px, 0.8fr);
  gap: 14px;
  align-items: center;
}

.after-emotion-panel,
.meta-summary,
.d1-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.after-emotion-panel > span,
.meta-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.emotion-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.next-try {
  min-height: 44px;
}

.meta-summary p {
  margin: 4px 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.d1-panel {
  margin-top: 14px;
}

.skill-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.skill-node {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.skill-node span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.skill-node strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.teacher-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 260px));
  gap: 12px;
  margin-top: 16px;
}

.teacher-note {
  margin-top: 14px;
}

.teacher-note textarea {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.import-button {
  position: relative;
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.import-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.reflection-field {
  min-width: 0;
}

.teacher-view,
.parent-view {
  min-height: 420px;
}

.stat-grid,
.parent-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stat-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.stat-card strong,
.summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.stat-card span,
.summary-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f3f7fb;
  color: #34465d;
  font-size: 13px;
}

td {
  color: var(--muted);
}

.report-box {
  margin-top: 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 14px;
  background: #eef8f5;
  color: var(--teal-dark);
  line-height: 1.7;
  font-weight: 800;
}

.report-output {
  min-height: 90px;
  margin: 16px 0 0;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f3f7fb;
  color: #34465d;
  font-family: inherit;
  line-height: 1.65;
}

.home-mission {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.home-mission ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-panel,
.recommend-panel,
.roster-panel,
.consent-panel,
.privacy-panel {
  margin-top: 18px;
}

.recommend-panel,
.roster-panel,
.consent-panel {
  border: 1px solid rgba(219, 229, 239, 0.9);
  border-radius: 8px;
  padding: clamp(16px, 2.4vw, 26px);
  background: rgba(255, 255, 255, 0.92);
}

.recommend-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.teacher-guide-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.guide-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.guide-card strong {
  display: block;
  margin-bottom: 6px;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.roster-tools {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(120px, 180px) auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.learner-profile-tools,
.custom-activity-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.learner-roster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.learner-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  text-align: left;
}

.learner-card.is-active {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.learner-card span {
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.78;
}

.learner-card strong {
  font-size: 20px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
}

.check-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--teal);
}

.consent-status {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.content-status {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--blue-soft);
  color: #315175;
  font-size: 12px;
  font-weight: 900;
}

.content-status.is-hidden {
  background: var(--coral-soft);
  color: #8a3727;
}

.row-button {
  min-height: 36px;
  border-radius: 8px;
  padding: 7px 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.row-button.danger {
  background: #b94632;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

@media print {
  body {
    background: #fff;
  }

  .topbar,
  .child-view,
  .parent-view,
  .teacher-filters,
  .teacher-note,
  .portfolio-actions,
  .roster-panel,
  .admin-panel {
    display: none !important;
  }

  .teacher-view {
    display: block !important;
    box-shadow: none;
    border: 0;
  }

  .report-output {
    border: 0;
    background: #fff;
    color: #111;
  }
}

@media (max-width: 1050px) {
  .control-panel,
  .learning-grid,
  .metacognition,
  .mission-ribbon,
  .daily-mission,
  .learning-tools {
    grid-template-columns: 1fr;
  }

  .activity-list,
  .stat-grid,
  .parent-summary,
  .skill-map,
  .week-plan,
  .project-studio,
  .observation-grid,
  .commercial-planner,
  .yearly-mission,
  .smoke-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roster-tools,
  .learner-profile-tools,
  .custom-activity-tools,
  .learner-roster,
  .recommend-tools,
  .teacher-guide-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar,
  .classroom-toolbar,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .role-tabs,
  .subject-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .activity-list,
  .stat-grid,
  .parent-summary,
  .skill-map,
  .week-plan,
  .project-studio,
  .sequence-list,
  .observation-grid,
  .commercial-planner,
  .yearly-mission,
  .smoke-checklist,
  .teacher-filters,
  .roster-tools,
  .learner-profile-tools,
  .custom-activity-tools,
  .learner-roster,
  .recommend-tools,
  .teacher-guide-cards,
  .choice-grid,
  .stage-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
