.note-pulse {
  position: relative;
  display: inline-block;
  margin-left: 1px;
  font-size: 0.8em;
  font-weight: 700;
  color: var(--note-color, #A2603C);
  vertical-align: super;
  cursor: help;
  user-select: none;
  transition: transform .15s ease, opacity .15s ease;
}
.note-pulse:hover {
  transform: scale(1.1);
}

/* 툴팁 */
.note-pulse::after {
  content: attr(data-note);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%) scale(0.98);
  background: var(--note-bg, #FFF8EE);
  color: #3A2A1E;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  font-size: 12.5px;
  line-height: 1.45;
  padding: 5px 7px;
  max-width: 260px;
  width: max-content;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 99;
  white-space: normal;
}

.note-pulse::before {
  content: '';
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--note-bg, #FFF8EE);
  opacity: 0;
  transition: opacity .18s ease;
}

.note-pulse:hover::after,
.note-pulse:hover::before {
  opacity: 1;
  transform: translate(-50%, -2px);
}
