/* Shared shell for the legal pages (accessibility statement, privacy, terms).
   These are documents, not landing pages: one column, generous line height,
   and a measure that stays near 65 characters so long Hebrew paragraphs stay
   readable. Tokens match the marketing page and the app. */
:root {
  color-scheme: light;
  --bg: #f3f5fb;
  --card: #ffffff;
  --ink: #252a41;
  --ink2: #3d4668;
  --mut: #54596f;
  --line: #e7eaf6;
  --acc: #2a56c6;
  --f: "Rubik", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f);
  line-height: 1.75;
  direction: rtl;
}
.skiplink {
  position: absolute; right: -9999px; top: 0; z-index: 120;
  background: var(--acc); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skiplink:focus { right: 0; }
.topbar { background: var(--card); border-bottom: 1px solid var(--line); }
.topbar .in {
  max-width: 760px; margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; gap: 10px;
}
.topbar a { display: flex; align-items: center; gap: 9px; color: inherit; text-decoration: none; font-weight: 700; }
.topbar img { width: 22px; height: 22px; object-fit: contain; }
main { max-width: 760px; margin: 0 auto; padding: 34px 22px 60px; }
h1 { font-size: clamp(1.7rem, 4.4vw, 2.15rem); line-height: 1.2; margin: 0 0 6px; letter-spacing: -.02em; text-wrap: balance; }
.updated { margin: 0 0 26px; font-size: 13px; color: var(--mut); }
/* Page titles and their subtitles are centered site-wide (Ben, 15.8).
   Scoped to main's direct children so the running headings inside the
   document body keep their natural RTL alignment. */
main > h1, main > .updated, main > .lead { text-align: center; }
main > .lead { margin-inline: auto; }
main > .meta { justify-content: center; }
h2 { font-size: 1.12rem; margin: 30px 0 10px; letter-spacing: -.01em; }
h3 { font-size: 1rem; margin: 20px 0 6px; }
p, li { font-size: 15.5px; color: var(--ink2); }
p { margin: 0 0 13px; }
ul, ol { margin: 0 0 13px; padding-inline-start: 22px; }
li { margin-bottom: 6px; }
a { color: var(--acc); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; margin: 18px 0;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
dl { margin: 0; }
dt { font-weight: 600; margin-top: 12px; }
dd { margin: 0 0 4px; color: var(--ink2); }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.scroller { overflow-x: auto; margin: 0 0 13px; }
th, td { text-align: right; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 600; color: var(--ink); }
footer.legal {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 18px;
  font-size: 13px; color: var(--mut);
}
footer.legal a { color: var(--mut); }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
