/**
 * Floating hover hints ([data-shai-hint]) — body-mounted, positioned via placeNear() in home-hover-hints.js
 */
.shai-hover-hint {
  position: fixed;
  z-index: 10050;
  max-width: min(340px, calc(100vw - 24px));
  max-height: min(50vh, 280px);
  overflow-y: auto;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e0e0e8;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.14);
  font-size: 13px;
  line-height: 1.5;
  color: #1f2937;
  pointer-events: none;
}
