/* =============================================
   BOURN MEDIA — Legal Pages (Privacy / Terms)
   ============================================= */

.legal-page {
  max-width: 760px;
  margin: 140px auto 80px;
  padding: 0 24px;
}

.legal-section {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-top: 8px;
}

.legal-section p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section ul {
  color: var(--text-dim);
  line-height: 1.75;
  padding-left: 1.4rem;
}

.legal-section a {
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}

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

.legal-updated {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  text-align: center;
}

.legal-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: var(--amber);
}

@media (max-width: 768px) {
  .legal-page {
    margin: 110px auto 60px;
    padding: 0 20px;
  }
}
