.anka-term-link {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  cursor: help;
}

.anka-term-tooltip {
  position: absolute;
  z-index: 999999;
  width: min(320px, calc(100vw - 32px));
  background: #fff;
  color: #1f2937;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.18);
  padding: 14px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  pointer-events: none;
  font-size: 14px;
  line-height: 1.5;
}

.anka-term-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.anka-term-tooltip__title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 6px;
}

.anka-term-tooltip__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 8px;
}

.anka-term-tooltip__excerpt {
  margin: 0 0 8px;
}

.anka-term-tooltip__link {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
