/* ============================================
   ZALTARI — Legal Pages Stylesheet
   css/legal.css
   ============================================ */

/* ── Layout ─────────────────────────────────── */
.legal-page {
  padding: 120px 20px 80px;
  background: var(--white);
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Title ──────────────────────────────────── */
.legal-page h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

/* ── Sections ───────────────────────────────── */
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}
.legal-section h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
}
.legal-section p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 12px;
}
.legal-section ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}
.legal-section ul li {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 6px;
}
.legal-section a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.legal-section a:hover {
  color: var(--red-alt);
}

/* ── Cookie table ───────────────────────────── */
.cookie-table-wrapper {
  overflow-x: auto;
  margin: 16px 0 20px;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  color: var(--gray);
}
.cookie-table th {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  color: var(--black);
  background: var(--light);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cookie-table code {
  font-size: .85rem;
  background: var(--light);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 16px 60px;
  }
  .legal-page h1 {
    font-size: 1.8rem;
  }
  .legal-section h2 {
    font-size: 1.15rem;
  }
}