/* Editor Module — 视频剪辑器 iframe 宿主
 *
 * 与其余模块不同：剪辑模块不走 #moduleContainer 的 innerHTML 渲染流程，
 * 而是常驻挂在 .main-panel 下的一个绝对定位宿主里，切走只隐藏（display:none）
 * 不销毁，保证编辑会话（撤销栈/未保存状态）在模块跳转间存活。
 */

.editor-module-host {
  position: absolute;
  inset: 0;
  display: none;
  height: 100%;
  background: var(--color-surface);
}

.editor-module-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
