/* Shared styles for the standalone, crawlable SEO content pages
   (served directly by nginx at clean URLs, independent of the React app). */
:root {
  --blue: #1E88E6;
  --blue-dark: #1663b3;
  --ink: #15171C;
  --muted: #565B6B;
  --line: #e5e7ec;
  --bg: #ffffff;
  --tint: #f5f8fd;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(8px); z-index: 10;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.btn {
  display: inline-block; background: var(--blue); color: #fff; font-weight: 600;
  font-size: 14px; padding: 9px 18px; border-radius: 10px; box-shadow: 0 6px 16px rgba(30,136,230,.25);
}
.btn:hover { background: var(--blue-dark); text-decoration: none; }
.btn-lg { font-size: 15px; padding: 13px 26px; }

/* Content */
main { padding: 46px 0 24px; }
.eyebrow { color: var(--blue); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 12px; }
h1 { font-size: 42px; line-height: 1.12; font-weight: 800; letter-spacing: -.03em; margin: 0 0 18px; }
h2 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin: 40px 0 12px; }
h3 { font-size: 18px; font-weight: 700; margin: 24px 0 6px; }
.lede { font-size: 19px; color: var(--muted); margin: 0 0 26px; }
p { color: #33384a; margin: 0 0 14px; }
ul, ol { color: #33384a; padding-left: 22px; margin: 0 0 16px; }
li { margin-bottom: 8px; }
.cta-row { margin: 26px 0 8px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.breadcrumb a { color: var(--muted); }

/* Callout / card grid */
.card { border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; background: var(--tint); margin: 16px 0; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.grid .card { margin: 0; background: #fff; }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } h1 { font-size: 32px; } }

/* FAQ */
.faq h3 { margin-top: 18px; }
.faq p { margin-top: 0; }

/* Related links + footer */
.related { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }
.related a { display: inline-block; margin-right: 18px; font-weight: 600; }
.site-footer { border-top: 1px solid var(--line); margin-top: 48px; padding: 28px 0; color: var(--muted); font-size: 13px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.site-footer a { color: var(--muted); }
