/* Canonical blog article header. Keep in sync with scripts/sync-blog-headers.mjs. */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 54, 93, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links > .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-links > .nav-link:hover {
  color: white;
  text-decoration: none;
}

.nav-links > .nav-cta {
  background: white;
  color: #1a365d;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links > .nav-cta:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links > .nav-link {
    display: none;
  }
}
