/*
 * Legal Pages (Privacy Policy, Terms of Service)
 * Rooted Financial Wellness
 */

/* ============================================
   LEGAL SECTION
   ============================================ */

.legal-section {
  background-color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-2xl);
}

/* Constrained readable width, centered */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-charcoal);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: var(--text-base);
  color: rgba(58, 58, 58, 0.8);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  font-size: var(--text-base);
  color: rgba(58, 58, 58, 0.8);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--color-sage);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-charcoal);
}

/* ============================================
   PLACEHOLDER STATE (privacy.html before embed)
   ============================================ */

.legal-placeholder {
  background-color: var(--color-cream);
  border: 1px solid rgba(58, 58, 58, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
}

.legal-placeholder p {
  margin-bottom: var(--space-sm);
}

.legal-placeholder p:last-child {
  margin-bottom: 0;
}
