/* ============================================================
   FREIRAUM DAVID – Legal Pages (Impressum / Datenschutz)
   ============================================================ */

.legal-page {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 6rem;
  min-height: 80vh;
}

.legal-hero {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clr-border);
}

.legal-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .5rem;
}

.legal-hero__sub {
  color: var(--clr-text-muted);
  font-size: .92rem;
}

.legal-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: .75rem;
  letter-spacing: .02em;
}

.legal-section p,
.legal-section li {
  font-size: .95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.legal-section p + p { margin-top: .75rem; }

.legal-section ul {
  list-style: none;
  margin: .75rem 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.legal-section ul li {
  padding-left: 1.25rem;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--clr-accent);
  opacity: .7;
}

.legal-section a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.legal-section a:hover { color: var(--clr-text); }

.legal-section strong { color: var(--clr-text); font-weight: 600; }
