/* Static About / Privacy pages (also used by generate-legal-pages.mjs) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

:root {
  --trust-bg: #e0f2fe;
  --trust-text: #1f2937;
  --trust-muted: #64748b;
  --trust-accent: #0f766e;
}

body.trust-page {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--trust-text);
  background: linear-gradient(165deg, #e0f2fe 0%, #f0f9ff 42%, #e8f4fc 100%);
}

.trust-page__wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.trust-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.trust-page__brand {
  font-weight: 700;
  color: var(--trust-accent);
  text-decoration: none;
}

.trust-page__back {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--trust-muted);
  text-decoration: none;
}

.trust-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  margin: 0 0 0.75rem;
}

.trust-page__lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--trust-accent);
}

.trust-page__tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--trust-muted);
  border-bottom: 1px solid rgba(15, 118, 110, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.trust-page section {
  margin-bottom: 1.75rem;
}

.trust-page h2 {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
}

.trust-page p,
.trust-page li {
  color: #334155;
}

.trust-page ul {
  padding-left: 1.25rem;
}

.trust-page a {
  color: var(--trust-accent);
  font-weight: 600;
}

.trust-page__footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 118, 110, 0.12);
  font-size: 0.85rem;
  text-align: center;
  color: var(--trust-muted);
}

.trust-page__footer a {
  margin: 0 0.35rem;
}
