/* Legal pages (Privacy, Terms, Data Deletion) — shared styling.
   Inherits theme.css variables (--bg, --text, --accent-gradient, etc.). */

.legal-page {
  padding: 160px 0 100px;
  min-height: 70vh;
}

.legal-page .container {
  max-width: 880px;
}

.legal-article {
  font-size: 1.02rem;
  color: var(--text);
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0 0 12px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-article h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  margin: 40px 0 14px;
}

.legal-article p {
  margin: 0 0 18px;
  color: #D8D8D8;
}

.legal-article ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-article li {
  margin: 0 0 10px;
  color: #D8D8D8;
}

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

.legal-article a {
  color: var(--accent-1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.legal-article a:hover {
  border-bottom-color: var(--accent-1);
}

/* Mongolian text uses Manrope for readability */
html.mongolian .legal-article,
html.mongolian .legal-title {
  font-family: 'Manrope', sans-serif;
}
