.jawpis-stack { pointer-events: auto; }
.jawpis-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  will-change: transform;
  overflow: visible;
}
.jawpis-item svg {
  width: 56%;
  height: 56%;
}
.jawpis-item:hover {
  transform: translateY(-2px);
}
.jawpis-tip {
  position: absolute;
  right: 105%;
  white-space: nowrap;
  background: rgba(17,24,39,.92);
  color: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.jawpis-item:hover .jawpis-tip {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .jawpis-item, .jawpis-tip { transition: none; }
}
