/* The two pages that are not the door: the privacy policy and how to delete an account.
 *
 * They share the door's sky, its face and its palette, so a venue that arrives from the app is
 * clearly still in the same place - and then they undo the one thing the door insists on, which is
 * that the page is exactly one screen and never scrolls. These are documents; they scroll.
 *
 * A store reviewer opens them as often as a customer does, which is why both languages are on the
 * page rather than behind a toggle, and why nothing here needs JavaScript to be readable.
 */

body.doc-body {
  display: block;
  overflow: auto;
  font-weight: 400;
}

.doc {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  padding: 5vh 1.4rem 6rem;
  line-height: 1.62;
  font-size: 15.5px;
  color: var(--ink);
}

.doc-back {
  display: inline-block;
  margin-bottom: 2.4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
}
.doc-back:hover { color: var(--ink); }

.doc h1 {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 750;
  letter-spacing: -.01em;
  margin: 0 0 .4rem;
}

.doc h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.4rem 0 .6rem;
}

.doc p, .doc ul { margin: 0 0 1rem; }
.doc ul { padding-left: 1.1rem; }
.doc li { margin: .35rem 0; }
.doc b { font-weight: 700; }

.doc a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.doc a:hover { color: var(--accent); }

.doc-date { color: var(--muted); font-size: 13px; margin-bottom: 2rem; }
.doc-note { color: var(--muted); font-size: 14px; }

/* between the French and the English, and it has to read as a break rather than as a rule under a
   heading - the two halves are the same document twice */
.doc-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 4rem 0 3rem;
}

.doc-foot {
  margin-top: 4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
}
