/* Shared styling for the standalone legal pages (served at /legal/*). */
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('/fonts/Cinzel-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #fcfcfd;
  --surface: #f4f5f7;
  --border: #e3e6eb;
  --text: #1a1d24;
  --muted: #868d99;
  --accent: #14706b;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: linear-gradient(160deg, #eaf0f1 0%, #f4ede2 50%, #e9f1ee 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}
header.site {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
header.site img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
header.site a {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 30px;
  margin: 0 0 4px;
}
.updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 26px;
}
.card {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(28, 40, 60, 0.08);
  padding: 8px 24px 24px;
}
h2 {
  font-size: 19px;
  margin: 26px 0 8px;
}
p,
li {
  font-size: 16px;
}
a {
  color: var(--accent);
  font-weight: 700;
}
.lead {
  font-size: 17px;
}
strong {
  font-weight: 800;
}
footer.legal {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
footer.legal nav {
  margin-bottom: 8px;
}
footer.legal a {
  margin: 0 8px;
}
