/* legal.css — Page "Politique de confidentialité" (texte long, structuré). */

.legal-content {
  max-width: 78ch;
  margin-inline: auto;
  padding: clamp(2.6rem, 8vh, 4.5rem) clamp(1.2rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin-bottom: 2.2rem;
}

.legal-section + .legal-section {
  margin-top: 2.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

.legal-section p {
  margin-top: 0.9rem;
}

.legal-section p:first-of-type {
  margin-top: 0.7rem;
}

.legal-list {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-list li {
  position: relative;
  padding-left: 1.3rem;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  clip-path: var(--hex);
  background: var(--gold);
}

.legal-table-wrap {
  margin-top: 0.9rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-raised);
  border-bottom: 1px solid var(--line);
}

.legal-table td {
  color: var(--ink-dim);
}

.legal-table tbody tr + tr td {
  border-top: 1px solid var(--line);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.legal-actions .axis-cta {
  margin-top: 0;
  cursor: pointer;
  background-color: transparent;
}

@media print {
  nav, footer, .legal-actions { display: none; }
  .legal-content { border-top: none; padding: 0; }
}
