/* ============================================================
   Политика обработки персональных данных — оформление.
   Палитра и шрифты те же, что на главной (css/site.css),
   но набор спокойнее: это документ, а не лендинг.
   ============================================================ */

:root {
  --ink: #0e0e0e;
  --paper: #f5f1ea;
  --accent: #c8410a;
  --accent2: #1a3a5c;
  --muted: #6e6559;
  --rule: #d4cfc6;
  --card-bg: #ffffff;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Martian Mono', monospace;
  font-size: 13px;
  line-height: 1.85;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 32px 72px;
}

.back {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  margin-bottom: 40px;
  transition: color 0.2s, border-color 0.2s;
}
.back:hover { color: var(--accent); border-bottom-color: var(--accent); }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 40px 0 14px;
  padding-top: 8px;
}
h2:first-of-type { margin-top: 0; }

p { margin-bottom: 14px; }

ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
}
li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--accent);
}

b, strong { font-weight: 500; color: var(--ink); }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { color: var(--accent2); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 20px 0 24px;
}
.card p { margin-bottom: 6px; font-size: 12px; }
.card p:last-child { margin-bottom: 0; }

.note {
  background: rgba(200,65,10,0.05);
  border-left: 2px solid var(--accent);
  padding: 14px 18px;
  margin: 18px 0 24px;
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
}

footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  color: var(--muted);
  line-height: 2;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 600px) {
  .wrap { padding: 28px 20px 56px; }
  body { font-size: 12px; }
}
