/*
 * The static privacy and terms pages are served without JavaScript.  Keep
 * their styles external: the site's CSP intentionally permits only same-origin
 * stylesheets and blocks inline <style> elements.
 */
:root {
  color: #17171c;
  background: #f4f6f8;
  font-family: Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  line-height: 1.8;
}

.page {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
  padding: 40px 0 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #17171c;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

article {
  margin-top: 28px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid #dfe4e8;
  background: #fff;
  box-shadow: 0 10px 32px rgba(23, 23, 28, .08);
}

.eyebrow {
  margin: 0 0 10px;
  color: #087b88;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.3;
}

h2 {
  margin: 34px 0 8px;
  font-size: 1.1rem;
  line-height: 1.5;
}

p { margin: 0; }

.lead {
  margin-top: 14px;
  color: #4a5057;
}

.date {
  margin-top: 10px;
  color: #69737d;
  font-size: .9rem;
}

section p { color: #3b4249; }

section .section-link { margin-top: 12px; }

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid #dfe4e8;
}

a {
  color: #087b88;
  font-weight: 700;
}

footer {
  margin-top: 24px;
  color: #69737d;
  font-size: .82rem;
}
