/* Modern & Compact Legal Pages Styling */

.legal-container {
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.85);
  font-size: 0.9375rem; /* Slightly smaller for document feel */
}

.legal-container h1 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .legal-container h1 {
    font-size: 1.75rem;
  }
}

.legal-container h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.legal-container h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.9);
}

.legal-container h4 {
  margin-top: 1rem;
  margin-bottom: 0.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.8);
}

.legal-container p {
  margin-bottom: 0.5rem;
}

.legal-container ul {
  list-style-type: none; /* Modern disc alternative */
  padding-left: 0;
  margin-bottom: 1rem;
}

.legal-container ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.375rem;
  color: hsl(var(--foreground) / 0.75);
}

.legal-container ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.4);
}

.legal-container a {
  color: hsl(var(--primary));
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.legal-container a:hover {
  border-bottom-color: hsl(var(--primary));
  opacity: 0.8;
}

.legal-container hr {
  border: 0;
  border-top: 1px solid hsl(var(--border) / 0.3);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Specific styling for the source links to be less prominent */
.legal-container p a[href*="e-recht24.de"] {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}
