/* legal.css — shared layout for Privacy Policy, Cookie Policy, Terms of Service */

.legal-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.legal-hero h1 {
  font-family: 'Inter', sans-serif;
  margin-top: 0.75rem;
}

.legal-updated {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: var(--teal, #00C9A7);
  margin-top: 0.5rem;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
}

.legal-container h2 {
  font-family: 'Inter', sans-serif;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-container h3 {
  font-family: 'Inter', sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.legal-container p,
.legal-container li {
  color: var(--slate, #1E2D45);
}

.legal-container ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-contact-list {
  list-style: none;
  padding-left: 0;
}

.legal-contact-list li {
  margin-bottom: 0.4rem;
}

.legal-container a {
  color: var(--teal, #00C9A7);
  text-decoration: underline;
}

/* --- add to legal.css for cookie table --- */

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(30, 45, 69, 0.15); /* slate at low opacity */
}

.legal-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy, #0A1628);
}

.legal-table code {
  background: rgba(0, 201, 167, 0.1); /* teal at low opacity */
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
}