/* ==========================================================================
   Grounding-Pages (Faktenseiten) — Kronenberg-Standard Layout
   ========================================================================== */

.grounding-page {
  max-width: 50rem;
}

.grounding-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.grounding-summary {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* ── Definition-List (Fakten-Tabelle) ────────────────────────────────────── */

.grounding-facts {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) 1fr;
  gap: 0.75rem 2rem;
  margin: 0 0 2.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.grounding-facts dt {
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-bg-light);
}

.grounding-facts dd {
  margin: 0;
  padding: 0.625rem 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-bg-light);
}

.grounding-facts dd a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.grounding-facts dd a:hover {
  color: var(--color-primary-dark);
}

/* ── Liste (Hub-Seite) ──────────────────────────────────────────────────── */

.grounding-page h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.grounding-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.grounding-list li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-bg-light);
}

.grounding-list li:last-child {
  border-bottom: none;
}

.grounding-list a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.grounding-list a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ── Meta-Footer (Stand, Status) ────────────────────────────────────────── */

.grounding-meta {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .grounding-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .grounding-facts dt {
    padding-bottom: 0;
    border-bottom: none;
  }
  .grounding-facts dd {
    padding-top: 0.25rem;
    margin-bottom: 0.75rem;
  }
}
