/* Legal document pages (Privacy Policy, Terms of Use, Account Deletion) —
   reuses the landing page's fonts/colors, styled as a readable article. */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 100px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 12px;
}
.legal-logo { font-size: 22px; text-decoration: none; color: #171515; }
.legal-back {
  font-size: 13px;
  color: rgba(23,21,21,0.55);
  text-decoration: none;
}
.legal-back:hover { color: #171515; }

.legal-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(23,21,21,0.08);
}

.legal-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-content h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(23,21,21,0.85);
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 22px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(23,21,21,0.85);
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: #171515; }
.legal-content a { color: #171515; }
.legal-content hr {
  border: none;
  border-top: 1px solid rgba(23,21,21,0.08);
  margin: 32px 0;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 14px;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(23,21,21,0.1);
  vertical-align: top;
}
.legal-content th {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: rgba(23,21,21,0.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 640px) {
  .legal-content table, .legal-content thead, .legal-content tbody, .legal-content th, .legal-content td, .legal-content tr {
    display: block;
  }
  .legal-content thead { display: none; }
  .legal-content tr { margin-bottom: 16px; border-bottom: 1px solid rgba(23,21,21,0.1); padding-bottom: 8px; }
  .legal-content td { border: none; padding: 4px 0; }
}
