/* ====================================================
   Shared site chrome: header + footer
   Injected by js/chrome.js on every page.
   This is the single source of truth for the nav and
   footer — edit here, changes apply site-wide.
   Class names are prefixed sx- so they never collide
   with style.css or per-page inline styles.
   ==================================================== */

.sx-nav,
.sx-footer {
  font-family: "Google Sans Flex", "Google Sans", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header */
.sx-nav {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(232, 234, 237, 0.8);
}
.sx-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.sx-brand img {
  display: block;
  width: 142px;
  height: auto;
}
.sx-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 560;
}
.sx-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}
.sx-links a:hover,
.sx-links a.active {
  color: #0b0f14;
}
.sx-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  color: #0b0f14;
  border: 1px solid #e8eaed;
  transition: 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: none;
}
.sx-btn:hover {
  border-color: #cfd4da;
  transform: translateY(-1px);
}

/* Footer */
.sx-footer {
  background: #0b0f14;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 56px 0;
}
.sx-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.sx-footer-logo img {
  display: block;
  height: 20px;
}
.sx-footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.sx-footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sx-footer-links a:hover,
.sx-footer-links a.active {
  color: #fff;
}
.sx-footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

@media (max-width: 900px) {
  .sx-links {
    display: none;
  }
  .sx-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
