/*
 * Shared by /datenschutz and /impressum.
 *
 * Both are plain HTML on purpose: Google Play and any authority checking the
 * Impressum have to reach them without an account and without JavaScript, so
 * they must not depend on the app bundle. That rules out the app's own
 * stylesheet too — hence this small one.
 */
:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #16161a;
  --muted: #5a5a66;
  --line: #e4e4e9;
  --accent: #3b5bdb;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0f;
    --fg: #ececf1;
    --muted: #9a9aa8;
    --line: #26262e;
    --accent: #8aa1ff;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 2.5rem 1.25rem 3rem;
  background: var(--bg);
  color: var(--fg);
  font:
    16px/1.65 system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
}
main {
  max-width: 46rem;
  margin: 0 auto;
}
h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0 0 0.25rem;
}
h2 {
  font-size: 1.15rem;
  margin: 2.5rem 0 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.35rem;
}
.lead,
.meta {
  color: var(--muted);
}
.meta {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
ul {
  padding-left: 1.25rem;
}
li {
  margin: 0.3rem 0;
}
a {
  color: var(--accent);
}
address {
  font-style: normal;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  font-size: 0.9375rem;
}
th,
td {
  text-align: left;
  vertical-align: top;
  padding: 0.5rem 0.75rem 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  white-space: nowrap;
}
footer.legal {
  max-width: 46rem;
  margin: 3rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
}
footer.legal a {
  color: var(--muted);
}
footer.legal nav {
  margin-top: 0.35rem;
}
footer.legal nav a + a::before {
  content: '·';
  margin: 0 0.5rem;
  color: var(--line);
}
