.glossary-link {
  text-decoration: underline dotted;
  text-underline-offset: 2px;
}

.glossary-popover {
  position: fixed;
  z-index: 1000;
  width: max-content;
  max-width: 320px;
  padding: 16px;
  background: #fff;
  color: #222;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Tooltip-Pfeil: zeigt auf das Keyword; Position kommt als --glossary-arrow-left aus dem JS */
.glossary-popover::after {
  content: '';
  position: absolute;
  left: var(--glossary-arrow-left, 50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid #d0d0d0;
  transform: translateX(-50%) rotate(45deg);
}

.glossary-popover[data-placement="top"]::after {
  bottom: -7px;
  border-top: none;
  border-left: none;
}

.glossary-popover[data-placement="bottom"]::after {
  top: -7px;
  border-bottom: none;
  border-right: none;
}

.glossary-popover__title {
  margin: 0 0 8px;
  font-weight: 700;
}

.glossary-popover__teaser {
  margin: 0 0 8px;
}

.glossary-popover__image img {
  max-width: 100%;
  height: auto;
}
