/* Shared styles for the legal / policy pages (privacy, terms, accessibility, cookies). */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0a2540; background: #fff; min-height: 100vh;
  display: flex; flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
a { color: #0e6ba8; text-decoration: none; }
a:hover { color: #0a2540; }
a:focus-visible { outline: 2px solid #0e6ba8; outline-offset: 2px; border-radius: 2px; }

.hdr {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 14px clamp(16px,5vw,64px); background: #fff; border-bottom: 1px solid #e3e9f0;
}
.hdr .mark { font-weight: 800; font-size: 20px; color: #0a2540; text-decoration: none;
             transition: opacity .2s ease; }
.hdr .mark:hover { color: #0a2540; opacity: .72; }
.hdr .mark span { color: #0e6ba8; }
.hdr .back { font-size: 14.5px; font-weight: 600; }

main {
  flex: 1; width: 100%; max-width: 820px; margin: 0 auto;
  padding: clamp(36px,5vw,64px) clamp(16px,5vw,32px);
  display: flex; flex-direction: column; gap: 22px;
}
main h1 {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: clamp(28px,4vw,40px); margin: 0; font-weight: 900; line-height: 1.2;
}
main h2 { font-size: 20px; margin: 8px 0 0; font-weight: 700; }
main p { margin: 0; font-size: 16px; line-height: 1.8; color: #44546a; }
main p.updated { font-size: 14px; color: #8b9bad; }
main strong { color: #0a2540; }

footer {
  border-top: 1px solid #e3e9f0; padding: 20px clamp(16px,5vw,64px);
  display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; background: #f5f8fb;
}
