:root {
  color-scheme: light;
  --paper: rgba(255, 253, 248, 0.25);
  --paper-strong: rgba(255, 253, 248, 0.35);
  --ink: #1e2a2d;
  --muted: #5d6b70;
  --rule: rgba(75, 96, 101, 0.22);
  --link: #1d6b78;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100svh;
  background:
    linear-gradient(rgba(225, 238, 240, 0.18), rgba(225, 238, 240, 0.18)),
    url("assets/ocean-whale-colored-pencil.jpg") center / cover fixed no-repeat;
  color: var(--ink);
  cursor: pointer;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

.policy {
  width: min(100% - 32px, 920px);
  margin: 48px auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  background: var(--paper);
  backdrop-filter: blur(24px) saturate(1.16);
  box-shadow: 0 24px 80px rgba(14, 34, 39, 0.22);
  cursor: auto;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 500;
}

h2 {
  margin: 44px 0 12px;
  font-size: 1.45rem;
}

h3 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
}

p,
ul {
  margin: 0 0 18px;
}

ul {
  padding-left: 1.35rem;
}

li + li {
  margin-top: 6px;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 26px 0;
}

strong {
  font-weight: 750;
}

.table-wrap {
  width: 100%;
  margin: 18px 0 26px;
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper-strong);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
  }

  .policy {
    width: min(100% - 24px, 920px);
    margin: 12px auto;
    padding: 24px 18px 34px;
    border-radius: 14px;
  }

  h2 {
    margin-top: 34px;
  }
}
