* {
    box-sizing: border-box;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    margin: 0;
    background: #f6f6f6;
    color: #111;
}

/* ================= FOOTER ================= */

.site-footer {
  margin-top: 7rem;
  margin-bottom: 2rem;
  padding: 2rem 1.25rem env(safe-area-inset-bottom);
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

.site-footer p {
  margin: 0;
}

.footer-muted {
  color: #999;
}

/* ================= GLOSSAR ================= */

.glossar-term {
  border-bottom: 1px dotted #999;
  cursor: help;
}

.glossar-popover {
  position: absolute;
  max-width: 280px;
  background: #ffffff;
  color: #111;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  z-index: 2000;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease;
}

.glossar-popover.visible {
  opacity: 1;
  transform: translateY(0);
}

.glossar-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* ================= Beispiele ================= */

.beispiel {
  background: #eeeeeedc;
  padding:1rem;
  color: #6d6c6c;
  font-size: 0.7 !important;
  border-radius: 0.6rem;
}
.beispiel::before {
  content: "📌 ";
}
