/* soma-utility-bar v1 — top utility bar with phone CTA, applies site-wide.
   Injected on every page by scripts/inject_utility_bar.py. */

.top-utility-bar {
  background: #012b5f;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  text-align: right;
  position: relative;
  z-index: 1001;
  line-height: 1.4;
}
.top-utility-bar a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}
.top-utility-bar a:hover { color: #078dff; }
.top-utility-bar .arrow {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.15s ease;
}
.top-utility-bar a:hover .arrow { transform: translateX(2px); }
@media (max-width: 767px) {
  .top-utility-bar { text-align: center; font-size: 0.8125rem; padding: 0.5rem 0.75rem; }
}

/* Hide the squashed in-nav phone widget — replaced by the top utility bar */
.remote-sup-box.hide-mobile { display: none !important; }

/* Push the fixed nav down by the utility bar's height (36px) so the bar is visible. */
.nav_component.w-nav { top: 36px !important; }
