* { box-sizing: border-box; }
:root {
  --ink: #243040;
  --muted: #627083;
  --line: #d8e0ea;
  --accent: #286ffc;
  --bg: #f7f9fc;
  --panel: #ffffff;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent); }
img { max-width: 100%; height: auto; }
.wrap { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.site-header { background: #182333; color: #fff; border-bottom: 4px solid var(--accent); }
.header-wrap { padding: 20px 0 16px; }
.brand { display: inline-flex; gap: 12px; align-items: center; color: #fff; text-decoration: none; font-size: 24px; font-weight: 700; }
.brand img { max-height: 52px; width: auto; background: #fff; padding: 4px; border-radius: 4px; }
.tagline { margin: 6px 0 0; color: #cdd7e2; }
.site-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.site-nav a { color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,.28); padding: 7px 12px; border-radius: 4px; }
.site-nav a:hover, .site-nav a.active { background: #fff; color: #182333; }
.content { background: var(--panel); margin-top: 24px; margin-bottom: 24px; padding: 28px; border: 1px solid var(--line); border-radius: 6px; }
.content h1, .content h2, .content h3 { line-height: 1.25; color: #1b2635; }
.content h1 { font-size: 34px; margin-top: 0; }
.content h2 { font-size: 26px; margin-top: 28px; }
.content h3 { font-size: 21px; margin-top: 24px; }
.content h4 { font-size: 18px; margin: 22px 0 6px; color: #2d3b4d; }
.wp-icon { display: inline-grid; place-items: center; min-width: 1.6em; height: 1.6em; margin-right: .35em; color: var(--accent); font-weight: 700; }
.static-contact { border: 1px dashed var(--line); background: #f9fbfe; padding: 16px; border-radius: 4px; }
.site-footer { color: var(--muted); font-size: 14px; padding: 20px 0 32px; }
code { background: #eef2f7; padding: 1px 4px; border-radius: 3px; }
@media (max-width: 640px) {
  .content { padding: 20px; }
  .brand { font-size: 20px; }
  .site-nav a { flex: 1 1 auto; text-align: center; }
}
