.place-info-trigger {
  position: relative;
  cursor: help;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.place-info-trigger:hover,
.place-info-trigger:focus-visible {
  border-color: color-mix(in srgb, var(--level-main) 52%, #d8d0c5);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(31, 39, 46, 0.08);
}

.place-info-tooltip {
  position: fixed;
  z-index: 2000;
  width: min(270px, calc(100vw - 24px));
  padding: 11px 13px;
  border: 1px solid #ddd5ca;
  border-radius: 12px;
  background: #fff;
  color: #303a44;
  box-shadow: 0 12px 28px rgba(27, 34, 40, 0.16);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.45;
  pointer-events: none;
}

.place-info-tooltip[hidden] {
  display: none;
}
