.project-list {
  max-height: 190px;
  overflow: auto;
}

.project-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 2px 0;
  padding: 9px 10px 9px 13px;
  overflow: hidden;
  border-color: transparent;
  background: transparent;
  color: #5f6d66;
  font-size: 12px;
  text-align: left;
  text-overflow: ellipsis;
}

.project-item::before {
  position: absolute;
  inset: 10px auto 10px 2px;
  width: 2px;
  background: transparent;
  content: "";
}

.project-item:hover,
.project-item.active {
  border-color: transparent;
  background: #f2f6f3;
}

.project-item.active {
  color: var(--green);
  font-weight: 650;
}

.project-item.active::before {
  background: var(--green);
}

#workflow-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.intent-view {
  height: calc(100vh - 100px);
  min-height: 650px;
  overflow: hidden;
  background: #eef2ef;
}

.intent-shell {
  display: grid;
  grid-template-columns: 248px minmax(420px, 1fr) 370px;
  height: 100%;
  min-width: 0;
  background: #fff;
}

.intent-assets,
.intent-chat,
.intent-canvas {
  min-width: 0;
  min-height: 0;
}

.intent-assets,
.intent-chat {
  display: flex;
  flex-direction: column;
  background: #fbfcfb;
}

.intent-assets {
  border-right: 1px solid var(--line);
}

.intent-chat {
  border-left: 1px solid var(--line);
}

.intent-panel-heading,
.intent-canvas-header,
.graph-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.intent-panel-heading {
  min-height: 76px;
  padding: 17px 17px 15px;
  border-bottom: 1px solid var(--line);
}

.panel-kicker {
  display: block;
  margin-bottom: 5px;
  color: #88928d;
  font-family: "Avenir Next", "PingFang SC", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.intent-panel-heading h2 {
  font-size: 14px;
}

.asset-upload-actions,
.graph-toolbar > div,
.graph-state {
  display: flex;
  align-items: center;
  gap: 5px;
}

.asset-picker {
  display: grid;
  gap: 7px;
  padding: 12px 13px 10px;
}

.asset-picker-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 5px;
}

.asset-kind-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #65736c;
  font-size: 10px;
  font-weight: 600;
}

.asset-kind-label svg {
  width: 14px;
  height: 14px;
}

.asset-picker select {
  height: 32px;
  margin: 0;
  padding: 5px 8px;
  font-size: 10px;
}

.intent-assets-list {
  flex: 1;
  min-height: 0;
  padding: 2px 13px 16px;
  overflow: auto;
}

.intent-asset {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 25px;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 9px 5px 9px 0;
  border-bottom: 1px solid #e7ebe8;
}

.intent-asset-media {
  width: 54px;
  height: 50px;
  overflow: hidden;
  border: 1px solid #d9dfdb;
  border-radius: 5px;
  background: #edf1ee;
}

.intent-asset-media img,
.intent-asset-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intent-asset-media span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #708078;
}

.intent-asset-copy {
  min-width: 0;
}

.intent-asset-copy strong,
.intent-asset-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intent-asset-copy strong {
  color: #28352f;
  font-size: 11px;
  font-weight: 600;
}

.intent-asset-copy small {
  margin-top: 6px;
  color: #7b8781;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.intent-asset .remove-asset {
  width: 25px;
  height: 25px;
  opacity: 0;
}

.intent-asset:hover .remove-asset,
.intent-asset:focus-within .remove-asset {
  opacity: 1;
}

.intent-empty-assets,
.intent-empty-chat {
  display: grid;
  min-height: 160px;
  padding: 24px 12px;
  place-items: center;
  color: #86918b;
  font-size: 11px;
  line-height: 1.8;
  text-align: center;
}

.intent-empty-assets svg,
.intent-empty-chat svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  stroke-width: 1.2;
}

.input-boundary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  color: #748079;
  font-size: 9px;
  line-height: 1.5;
}

.input-boundary svg {
  width: 14px;
  height: 14px;
  color: #b0603d;
}

.intent-canvas {
  position: relative;
  display: grid;
  grid-template-rows: 76px 43px auto minmax(300px, 1fr) auto;
  overflow: auto;
  background: #f3f7f4;
}

.intent-canvas-header {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intent-name-label {
  min-width: 0;
  flex: 1;
}

.intent-name-label span {
  display: block;
  margin-bottom: 3px;
  color: #8a948f;
  font-size: 9px;
}

.intent-name-label input {
  height: 29px;
  margin: 0;
  padding: 3px 5px;
  border-color: transparent;
  background: transparent;
  color: #213028;
  font-size: 16px;
  font-weight: 650;
}

.intent-name-label input:hover,
.intent-name-label input:focus {
  border-color: var(--line);
  background: #fff;
}

.graph-state {
  color: #7a8680;
  font-family: "Avenir Next", monospace;
  font-size: 9px;
}

.graph-toolbar {
  padding: 5px 12px 5px 18px;
  border-bottom: 1px solid #dfe5e1;
  background: #f9fbfa;
  color: #68756e;
  font-size: 9px;
}

.graph-toolbar .icon {
  width: 28px;
  height: 28px;
}

.graph-toolbar svg {
  width: 14px;
  height: 14px;
}

.graph-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1b7a55;
  box-shadow: 0 0 0 3px #dceee5;
}

.intent-graph-host {
  min-height: 300px;
  border: 0;
  border-radius: 0;
}

.intent-node-detail {
  position: absolute;
  right: 18px;
  top: 132px;
  z-index: 5;
  width: min(390px, calc(100% - 36px));
  max-height: 44%;
  padding: 16px 18px;
  overflow: auto;
  border: 1px solid #cdd8d1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 50px #1b30251f;
}

.intent-node-detail header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.intent-node-detail h3 {
  font-size: 13px;
}

.intent-node-detail p,
.intent-node-detail pre {
  margin: 0;
  color: #5f6d65;
  font-size: 11px;
  line-height: 1.75;
}

.intent-node-detail pre {
  max-height: none;
  padding: 0;
  background: transparent;
  color: #35443c;
  font-family: inherit;
}

.intent-messages {
  flex: 1;
  min-height: 130px;
  padding: 16px 17px;
  overflow: auto;
  background: #fff;
}

.intent-message {
  margin: 0 0 18px;
}

.intent-message-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: #7b8680;
  font-size: 9px;
}

.intent-message-head svg {
  width: 13px;
  height: 13px;
}

.intent-message p {
  margin: 0;
  color: #39463f;
  font-size: 12px;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.intent-message.user {
  margin-left: 34px;
  padding: 11px 12px;
  border-radius: 6px;
  background: #eef4f0;
}

.intent-message.user .intent-message-head {
  color: #47715d;
}

.intent-message-questions {
  margin: 9px 0 0;
  padding-left: 18px;
  color: #9b5b3c;
  font-size: 11px;
  line-height: 1.7;
}

.intent-thinking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4f6d5e;
  font-size: 11px;
}

.intent-thinking::before {
  width: 8px;
  height: 8px;
  border: 1px solid #73a68c;
  border-top-color: transparent;
  border-radius: 50%;
  content: "";
  animation: intent-spin 700ms linear infinite;
}

.intent-run-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-left: 2px solid #b0603d;
  background: #fbf1eb;
  color: #8e5135;
  font-size: 11px;
  line-height: 1.7;
}

.retry-intent-run {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 5px 9px;
  border-color: #d7b6a5;
  background: #fff;
  color: #8e5135;
  font-size: 10px;
}

.retry-intent-run svg {
  width: 13px;
  height: 13px;
}

@keyframes intent-spin {
  to { transform: rotate(360deg); }
}

.intent-handoff {
  max-height: 48vh;
  padding: 13px 17px;
  overflow: auto;
  border-top: 1px solid var(--line);
  background: #f8faf8;
}

#intent-prompt-editor {
  display: block;
  width: 100%;
  height: clamp(130px, 21vh, 220px);
  min-height: 100px;
  margin: 0;
  padding: 12px 14px;
  resize: vertical;
  border: 1px solid #cddbd2;
  background: #fff;
  color: #283c30;
  font: 12px/1.85 "PingFang SC", sans-serif;
}

.prompt-editor-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 9px 0;
}
.prompt-editor-tools > span { margin-right: auto; color: #7b8781; font-size: 10px; }
.prompt-editor-tools button { padding: 6px 8px; font-size: 11px; }
#prompt-save-state { color: #6b7e71; font-size: 10px; }
.prompt-input-summary { margin: 10px 0; color: #627769; font-size: 10px; }

.intent-handoff header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.intent-handoff h3 {
  font-size: 11px;
}

.intent-handoff pre {
  max-height: 102px;
  margin: 0 0 10px;
  padding: 10px;
  border: 1px solid #e0e5e2;
  background: #fff;
  color: #4c5a52;
  font-family: inherit;
  font-size: 10px;
  line-height: 1.6;
}

.intent-transfer-note {
  margin: 0 0 10px;
  color: #8e5135;
  font-size: 10px;
  line-height: 1.6;
}

.intent-handoff-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.intent-handoff-actions button {
  padding: 7px 9px;
  font-size: 10px;
}

.intent-compile-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 52px;
  padding: 8px 14px;
  border-top: 1px solid var(--line);
  background: #f8faf8;
}

.intent-compile-bar > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #66756d;
  font-size: 10px;
}

.intent-compile-bar > span.pending {
  color: #9b5b3c;
}

.intent-compile-bar svg {
  width: 14px;
  height: 14px;
}

#compile-intent {
  min-height: 34px;
  padding: 7px 10px;
  white-space: normal;
  text-align: left;
  font-size: 10px;
}

.intent-composer {
  padding: 13px 14px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.intent-composer textarea {
  min-height: 74px;
  max-height: 160px;
  margin: 0;
  resize: none;
  font-size: 12px;
}

.intent-composer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
}

#intent-char-count {
  color: #8b9690;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

#send-intent {
  min-width: 80px;
  height: 34px;
  padding: 7px 12px;
}

#send-intent svg {
  width: 15px;
  height: 15px;
}

.intent-batch-shape {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 10px 0 2px;
}

.intent-batch-shape span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  border: 1px solid #dfe6e2;
  border-radius: 4px;
  background: #f7f9f8;
  color: #64716b;
  font-size: 9px;
  white-space: nowrap;
}

.intent-batch-shape svg {
  width: 13px;
  height: 13px;
  color: var(--green);
}

.intent-batch-shape strong {
  margin-left: auto;
  color: #26362f;
  font-variant-numeric: tabular-nums;
}

.intent-batch-state {
  margin: 8px 0 0;
  color: #5c7167;
  font-size: 9px;
}

.intent-handoff-actions .primary {
  margin-left: auto;
}

.scene-templates{display:flex;gap:8px;align-items:center;flex-wrap:wrap;padding:12px 16px;background:#f4f8f5;border-bottom:1px solid #dce5df;font-size:12px}.scene-templates button{border:1px solid #ccdcd1;border-radius:6px;padding:8px 12px;background:white;cursor:pointer}.intent-node-detail label{display:block;margin:12px 0;font-size:13px}.intent-node-detail textarea,.intent-node-detail select,.intent-node-detail input{display:block;width:100%;margin-top:6px;box-sizing:border-box}.intent-node-detail p{font-size:12px;color:#607567}.intent-node-detail>button{margin:6px 8px 0 0}

.scene-asset-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:12px 0}.scene-asset-card{display:flex;flex-direction:column;gap:6px;padding:6px;border:2px solid #e2e9e5;border-radius:8px;background:#fff;cursor:pointer;text-align:left;min-width:0}.scene-asset-card img{width:100%;height:125px;object-fit:contain;background:#f5f6f5;border-radius:4px}.scene-asset-card span{font-size:12px;overflow-wrap:anywhere}.scene-asset-card[aria-pressed="true"]{border-color:#26764e;background:#edf8f0}.intent-node-detail{max-height:calc(100% - 154px)}

/* Match the visible viewport to its grid track so fit uses the actual canvas size. */
.intent-graph-host .workflow-graph__viewport{min-height:0;min-width:0}
#open-scene-example{color:#145d3c;background:#e2f3e9;border-color:#8bb49d;font-weight:600}

.scene-templates{align-items:flex-end}.scene-templates label{font-size:12px;min-width:130px}.scene-templates select{display:block;margin:5px 0 0;max-width:260px}.template-import input{display:block;width:160px;font-size:11px}#template-manager{width:min(780px,90vw);max-height:85vh;border:1px solid #ccd8d0;border-radius:12px;padding:24px;overflow:auto}#template-manager::backdrop{background:#15281d66}.template-list article{padding:14px 0;border-bottom:1px solid #e3e8e4}.template-list small{margin-left:12px;color:#68796e}.template-list button{margin:8px 6px 0 0}.template-list select{max-width:300px}.template-list>article>div{display:flex;flex-wrap:wrap;align-items:center}.intent-node-detail input[type=checkbox]{display:inline;width:auto}

#intent-generation-options{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:12px 0;border-top:1px solid #e1e8e3}#intent-generation-options[hidden]{display:none}#intent-generation-options label{font-size:12px;min-width:0}#intent-generation-options input,#intent-generation-options select{width:100%;box-sizing:border-box}#intent-generation-options audio,#intent-generation-options small{grid-column:1/-1;max-width:100%}#intent-generation-options small{color:#617568;font-size:11px}

/* Shared theme bridge for the planning workspace. */
.intent-view { background: var(--ui-surface-subtle); }
.intent-shell,
.intent-assets,
.intent-chat,
.intent-canvas-header,
.intent-messages,
.intent-composer { background: var(--ui-surface); }
.intent-canvas,
.intent-handoff { background: var(--ui-surface-subtle); }
.project-item:hover,
.project-item.active { background: var(--ui-accent-soft); }
.project-item.active { color: var(--ui-accent-strong); }
.project-item.active::before { background-color: var(--ui-accent); }

.intent-batch-shape svg { color: var(--ui-accent); }
.graph-live-dot { background: var(--ui-accent); box-shadow: 0 0 0 3px var(--ui-accent-soft); }
.intent-message.user { background: var(--ui-accent-soft); color: var(--ui-accent-strong); }
.intent-thinking { color: var(--ui-accent); }
.scene-asset-card[aria-pressed="true"] { border-color: var(--ui-accent-strong); background: var(--ui-accent-soft); }
#open-scene-example { color: var(--ui-accent-strong); background: var(--ui-accent-soft); border-color: #b7a9e9; }

/* Intent workspace semantic surfaces. Geometry stays in the existing layout rules. */
.intent-assets,
.intent-chat { background: var(--studio-surface, #fff); }
.intent-assets,
.intent-chat,
.intent-canvas-header,
.graph-toolbar,
.studio-template-shelf,
.studio-canvas-hint { border-color: var(--line-soft); }
.intent-panel-heading h2,
.intent-canvas-header h2 { color: var(--ink-strong); }
.panel-kicker,
.intent-message-head,
.intent-canvas-hint,
.input-boundary { color: var(--ink-soft); }
.asset-picker,
.studio-template-shelf,
.studio-canvas-hint { background: var(--surface-subtle); }
.intent-asset {
  border-color: var(--line-soft) !important;
  box-shadow: 0 3px 12px rgb(36 32 80 / 5%);
}
.intent-asset:hover,
.intent-asset:focus-within {
  border-color: #b9b0eb !important;
  box-shadow: 0 5px 16px rgb(84 72 177 / 10%);
}
.intent-asset-copy strong { color: var(--ink-strong); }
.intent-asset-copy small { color: var(--ink-soft); }
.intent-message.user {
  background: var(--accent-violet-soft);
  border-color: #e3defb;
  color: #514775;
}
.intent-message.assistant { color: var(--ink-strong); }
.intent-thinking { color: var(--accent-violet); }
.intent-composer textarea {
  background: #fbfaff;
  border-color: var(--line-soft);
}
.intent-composer textarea:focus {
  border-color: var(--accent-violet);
  box-shadow: 0 0 0 3px rgb(101 88 217 / 14%);
}
.intent-compile-bar button,
.intent-node-detail > button {
  color: var(--accent-violet-strong);
  background: var(--accent-violet-soft);
  border-color: var(--ui-line-strong);
}

/* Planning workspace additions use semantic tokens for brand states. */
.intent-asset:hover,
.intent-asset:focus-within { border-color: var(--ui-line-strong) !important; }
.intent-message.user { border-color: var(--ui-line); color: var(--ui-accent-strong); }
.intent-composer textarea { background: var(--ui-surface-raised); }
.intent-composer textarea:focus { box-shadow: var(--ui-shadow-focus); }
#open-scene-example { border-color: var(--ui-line-strong); }

/* Planning surface: calm panels, readable hierarchy, and token-only colour. */
html,body{overflow-x:hidden}
.intent-view{background:var(--ui-bg);color:var(--ui-ink)}
.intent-shell{background:var(--ui-surface);border:1px solid var(--ui-line);border-radius:var(--ui-radius-md);box-shadow:var(--ui-shadow-card);overflow:hidden}
.intent-assets,.intent-chat{background:var(--ui-surface);border-color:var(--ui-line)}
.intent-chat{background:var(--ui-surface-subtle)}
.intent-panel-heading,.intent-canvas-header{background:var(--ui-surface);border-color:var(--ui-line);padding:var(--ui-space-6)}
.panel-kicker{color:var(--ui-muted);letter-spacing:.08em}
.project-list{padding:0 var(--ui-space-3)}
.project-item{color:var(--ui-muted);border-radius:var(--ui-radius-sm);min-height:var(--ui-touch-target);padding-inline:var(--ui-space-4)}
.project-item:hover,.project-item.active{background:var(--ui-accent-soft);color:var(--ui-accent-strong)}
.project-item.active::before{background:var(--ui-accent)}
.asset-picker{padding:var(--ui-space-4);background:var(--ui-surface-subtle);border-color:var(--ui-line)}
.asset-kind-label{color:var(--ui-muted)}
.intent-assets-list{padding:var(--ui-space-4);scrollbar-width:thin}
.intent-asset{min-height:76px;padding:var(--ui-space-3) var(--ui-space-2);border:1px solid var(--ui-line)!important;border-radius:var(--ui-radius-sm)!important;background:var(--ui-surface)!important;box-shadow:none}
.intent-asset:hover,.intent-asset:focus-within{border-color:var(--ui-focus)!important;box-shadow:var(--ui-shadow-focus)}
.intent-asset-media{border-color:var(--ui-line);border-radius:var(--ui-radius-xs);background:var(--ui-surface-subtle)}
.intent-asset-copy strong{color:var(--ui-ink-strong)}
.intent-asset-copy small{color:var(--ui-muted)}
.intent-empty-assets,.intent-empty-chat{color:var(--ui-muted)}
.input-boundary{border-color:var(--ui-line);color:var(--ui-muted);background:var(--ui-surface-subtle)}
.intent-canvas{background:var(--ui-bg)}
.graph-toolbar{background:var(--ui-surface);border-color:var(--ui-line);color:var(--ui-muted)}
.graph-live-dot{background:var(--ui-accent);box-shadow:0 0 0 3px var(--ui-accent-soft)}
.intent-node-detail{border-color:var(--ui-line-strong);border-radius:var(--ui-radius-md);background:var(--ui-surface);box-shadow:var(--ui-shadow-float)}
.intent-messages{background:var(--ui-surface);padding:var(--ui-space-6) var(--ui-space-5)}
.intent-message-head{color:var(--ui-muted)}
.intent-message p{color:var(--ui-ink);line-height:1.75}
.intent-message.user{background:var(--ui-accent-soft);color:var(--ui-accent-strong);border:1px solid var(--ui-line);border-radius:var(--ui-radius-sm)}
.intent-thinking{color:var(--ui-accent)}
.intent-run-notice{border-color:var(--ui-warning);background:var(--ui-warning-soft);color:var(--ui-warning);border-radius:var(--ui-radius-sm)}
.retry-intent-run{border-color:var(--ui-line-strong);color:var(--ui-warning)}
.intent-handoff,.intent-compile-bar{border-color:var(--ui-line);background:var(--ui-surface-subtle)}
#intent-prompt-editor,.intent-composer textarea{border-color:var(--ui-line);background:var(--ui-surface);color:var(--ui-ink);border-radius:var(--ui-radius-sm)}
#intent-prompt-editor:focus,.intent-composer textarea:focus{border-color:var(--ui-focus);box-shadow:var(--ui-shadow-focus)}
.intent-composer{background:var(--ui-surface);border-color:var(--ui-line);padding:var(--ui-space-4)}
.intent-batch-shape span{border-color:var(--ui-line);background:var(--ui-surface);color:var(--ui-muted);border-radius:var(--ui-radius-xs)}
.intent-batch-shape svg{color:var(--ui-accent)}
.intent-compile-bar button,.intent-node-detail>button{border-color:var(--ui-line-strong);background:var(--ui-accent-soft);color:var(--ui-accent-strong)}
.scene-templates{background:var(--ui-surface-subtle);border-color:var(--ui-line)}
.scene-templates button{border-color:var(--ui-line);background:var(--ui-surface);border-radius:var(--ui-radius-sm)}
.scene-templates button:hover{background:var(--ui-accent-soft);border-color:var(--ui-line-strong)}
.scene-asset-card{border-color:var(--ui-line);border-radius:var(--ui-radius-sm);background:var(--ui-surface)}
.scene-asset-card[aria-pressed="true"]{border-color:var(--ui-accent);background:var(--ui-accent-soft);box-shadow:var(--ui-shadow-focus)}
@media(max-width:900px){.intent-shell{border-radius:0;border-left:0;border-right:0;box-shadow:none}.intent-panel-heading,.intent-canvas-header{padding:var(--ui-space-5)}.intent-assets,.intent-chat{box-shadow:var(--ui-shadow-float)}}
@media(max-width:560px){.intent-view{width:100%;min-width:0}.intent-panel-heading{min-height:64px;padding:var(--ui-space-4)}.intent-messages{padding:var(--ui-space-5) var(--ui-space-4)}.intent-message.user{margin-left:var(--ui-space-4)}.intent-composer{padding:var(--ui-space-3)}.intent-batch-shape{grid-template-columns:1fr}.scene-asset-gallery{grid-template-columns:1fr}}
