/* Shared stylesheet for the static CrisA legal pages.
   Matches the landing's warm-paper look (hsl(34 32% 96%) background,
   Schibsted Grotesk / system font stack, dark slate text). */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #F8F5F1;
  color: #262B33;
  font-family: "Schibsted Grotesk", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: #262B33;
  text-decoration: none;
}

.brand:hover { text-decoration: underline; text-underline-offset: 3px; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid #E6DFD3;
  border-radius: 999px;
  overflow: hidden;
  background: #FFFFFF;
}

.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 14px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5A6270;
  cursor: pointer;
}

.lang-toggle button[aria-pressed="true"] {
  background: #262B33;
  color: #FFFFFF;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 24px 48px;
}

h1 {
  font-size: 1.85rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.last-updated {
  color: #5A6270;
  font-size: 0.9rem;
  margin: 0 0 28px;
}

h2 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 32px 0 8px;
}

p { margin: 0 0 14px; }

ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 6px; }

a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: #000000; }

.notice {
  border: 1px solid #E6DFD3;
  background: #FFFDF8;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.form-box {
  border: 1px solid #E6DFD3;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0;
}

.form-box .form-heading { font-weight: 600; margin-bottom: 8px; }

.form-box .form-template {
  white-space: pre-line;
  color: #5A6270;
  font-size: 0.95rem;
  margin: 0;
}

.site-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid #E6DFD3;
  color: #5A6270;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 10px;
}

.site-footer a { color: #5A6270; }

[hidden] { display: none !important; }
