/* Shared light legal layout. */
body.legal {
  margin: 0;
  background: #fff;
  color: #111;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
}
.legal-wrap {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 5rem;
}
.legal-wrap h1 { font-size: 1.5rem; }
.legal-wrap h2 { font-size: 1.08rem; margin-top: 1.6rem; }
.legal-wrap p, .legal-wrap li { color: #222; }
.legal-wrap ol { padding-left: 1.25rem; }
.legal-wrap li { margin: 0 0 0.55rem; }
.legal-nav { font-size: 0.92rem; margin-bottom: 1.2rem; }
.legal-nav a { color: #0052cc; margin-right: 0.8rem; }
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  background: #111;
  color: #f4f5f7;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; color: #c8cdd6; font-size: 14px; }
.cookie-banner a { color: #fff; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 650;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary { background: #fff; color: #111; }
.btn.ghost { background: transparent; color: #fff; border-color: #444; }
@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
}
