/* File: /assets/css/privacy-policy.css */
/* Typography & layout */
:root{
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#ffffff;
  --card:#f9fafb;
  --border:#e5e7eb;
  --info:#e8f2ff;
  --warn:#fff7ed;
  --shadow: 0 6px 20px rgba(0,0,0,.06);
}

html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height:1.65;
  font-size:16px;
}

.container{
  width:min(100%, 1100px);
  margin-inline:auto;
  padding:24px 16px 64px;
}

.breadcrumbs{
  font-size:.9rem;
  color:var(--muted);
  margin:8px 0 12px;
}
.breadcrumbs ol{
  list-style:none;
  padding:0; margin:0;
  display:flex; gap:8px; flex-wrap:wrap;
}
.breadcrumbs a{ color:inherit; text-decoration:none }
.breadcrumbs li+li::before{ content:"›"; margin:0 6px; color:var(--muted) }

.policy-hero{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  box-shadow: var(--shadow);
}
.policy-hero h1{
  margin:6px 0 6px;
  letter-spacing:.2px;
  font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.2rem);
}
.updated{
  color:var(--muted);
  margin:0 0 12px;
  font-size:.95rem;
}
.lede{ margin-top:4px }

.toc{
  margin:22px 0;
  padding:18px 18px 6px;
  border:1px dashed var(--border);
  border-radius:14px;
  background:#fff;
}
.toc h2{ margin-top:0; font-size:1.1rem }
.toc ul{ columns: 2; gap: 24px; padding-left:18px; }
.toc a{ text-decoration:none }
@media (max-width: 720px){
  .toc ul{ columns: 1 }
}

.policy-section{
  margin:28px 0;
  padding:22px 20px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  box-shadow: var(--shadow);
}
.policy-section h2{
  margin-top:0;
  font-size: clamp(1.1rem, 1rem + .6vw, 1.5rem);
}
.policy-section p{ margin:10px 0 }
.policy-section .bullet{
  margin:10px 0 0 0;
  padding-left: 1.1rem;
}
.policy-section .bullet li{
  margin:6px 0;
}

.smallprint{
  font-size:.92rem;
  color:var(--muted);
}

/* Callouts */
.callout{
  padding:14px 16px;
  border-radius:12px;
  border:1px solid var(--border);
}
.callout.info{ background: var(--info) }
.callout.warn{ background: var(--warn) }

/* Links */
a{ color:#0a57ff }
a:hover{ text-decoration:none }

/* Accessibility helpers */
[role="main"] :focus-visible{
  outline: 3px solid #0a57ff66;
  border-radius: 8px;
}

/* Print styles */
@media print{
  .breadcrumbs, .toc{ display:none !important }
  .policy-section, .policy-hero{
    box-shadow:none; border-color:#ddd
  }
  a::after{ content:" (" attr(href) ")"; font-size:.8em }
}
