/* 法务页共用样式:与 index.html 同一套色板 */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --frame: #33372f;
  --paper: #fbfaf7;
  --ink: #2b2b26;
  --accent: #4c5c4a;
  --red: #c03a35;
}
html { background: var(--frame); }
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: #f0efe9;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(14px, 3vw, 40px) clamp(14px, 4vw, 24px) 0;
}
.col { width: 100%; max-width: 720px; display: flex; flex-direction: column; flex: 1; }

.topbar { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 0; }
.brand { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 600; letter-spacing: 4px; color: inherit; text-decoration: none; }
.reddot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.backpill {
  font-size: 11px; color: rgba(240,239,233,.7); border: 1px solid rgba(240,239,233,.28);
  padding: 5px 12px; border-radius: 999px; letter-spacing: 2px; text-decoration: none;
}
.backpill:hover { color: #f0efe9; border-color: rgba(240,239,233,.5); }
.backpill:focus-visible, .brand:focus-visible { outline: 2px solid #b9c8b4; outline-offset: 2px; }

.panel {
  margin-top: 16px; background: var(--paper); border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  color: var(--ink); padding: clamp(26px, 5vw, 44px) clamp(20px, 4vw, 40px);
}
.panel h1 { font-size: clamp(21px, 4.4vw, 26px); font-weight: 700; letter-spacing: 1px; color: #232320; text-wrap: balance; }
.meta { margin-top: 10px; font-size: 12px; color: #8f8f84; letter-spacing: 1px; }
.rule { height: 1px; background: rgba(50,50,40,.12); margin: 22px 0 4px; }
.panel h2 {
  font-size: clamp(14px, 3vw, 16px); font-weight: 700; color: #232320;
  letter-spacing: 1px; margin: 28px 0 10px;
}
.panel p, .panel li { font-size: 13.5px; line-height: 1.95; color: #4e4e46; letter-spacing: .3px; }
.panel p { margin-bottom: 10px; max-width: 68ch; }
.panel ol, .panel ul { margin: 0 0 10px 1.25em; max-width: 68ch; }
.panel li { margin-bottom: 8px; }
.panel strong { color: #232320; font-weight: 700; }
.panel a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(76,92,74,.4); }
.panel a:hover { border-bottom-color: var(--accent); }
.tailnote { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(50,50,40,.12); font-size: 12px; color: #8f8f84; line-height: 1.9; }

footer {
  margin-top: auto; padding: 26px 6px 22px; font-size: 10.5px; letter-spacing: 1px;
  color: rgba(240,239,233,.45); text-align: center; line-height: 2;
}
footer .sep { margin: 0 6px; opacity: .5; }
footer a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(240,239,233,.22); padding-bottom: 1px; }
footer a:hover { color: rgba(240,239,233,.75); }
footer a:focus-visible { outline: 2px solid #b9c8b4; outline-offset: 2px; }
