/**
 * Header nav polish to match the package nav: "Start free →" as a gradient
 * pill button, "Log in" slightly muted. Loaded site-wide (the header is global).
 * Scoped to the assigned Primary Nav menu items via their menu-item classes.
 */
/* the menu link stretches to full header-row height; center it so the pill is
   compact instead of a tall oval */
.dip-nav-cta {
  display: flex !important;
  align-items: center;
}
.dip-nav-cta > a,
.dip-nav-cta > .ct-menu-link {
  color: #fff !important;
  /* Blocksy's header menu font is 20px/33px which makes this button oversized;
     shrink it to a compact CTA pill. */
  font-size: 14.5px !important;
  line-height: 1 !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px !important;
  height: auto !important;
  min-height: 0 !important;
  align-self: center;
  background: #3b82f6;
  box-shadow: 0 6px 18px rgba(59, 130, 246, .32);
  transition: filter .15s;
}
.dip-nav-cta > a:hover,
.dip-nav-cta > .ct-menu-link:hover {
  filter: brightness(1.08);
  background: #3b82f6;
}
