:root {
  --cws-blue: #0b63ce;
  --cws-text: #222;
  --cws-muted: #666;
  --cws-bg: #f5f5f5;
  --cws-surface: #fff;
  --cws-border: #e7e7e7;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  background: #fafafa;
  border: 1px solid var(--cws-border);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 22px;
}

.site-nav a {
  color: var(--cws-blue);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a {
  margin-right: 14px;
}

@media (max-width: 768px) {
  .site-nav {
    padding: 10px 12px;
  }

  .site-nav a {
    font-size: 14px;
  }
}
