/* 助手消息 — 小蜜蜂打字机 */

.msg-assistant__bee {
  width: 32px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.msg-assistant__body.is-typewriting {
  min-height: 1.5em;
}

.msg-typewriter {
  position: relative;
  display: block;
}

.msg-typewriter__content {
  display: block;
}

.msg-typewriter__content p {
  margin: 0;
}

.msg-bee-cursor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.06s linear;
}

/* 外层负责跟随光标；内层仅翻转朝向，不做上下飞动 */
.msg-bee-cursor__fly {
  display: block;
  transform-origin: left center;
  transform: scaleX(-1);
}

.msg-bee-cursor__fly img {
  display: block;
  width: 32px;
  height: 26px;
  object-fit: contain;
  object-position: center 42%;
  filter: drop-shadow(0 2px 6px rgba(124, 58, 237, 0.22));
}

.msg-bee-cursor.is-finished {
  opacity: 0;
  transition: opacity 0.2s ease;
}
