/* DXPR's mobile header layout (below the header_mobile_breakpoint) never
 * constrains the logo image's size the way its desktop layout does
 * (.wrap-branding .logo gets height:100% tied to the header bar height
 * on desktop, but nothing on mobile), so a custom raster logo renders at
 * its full natural size instead of the small wordmark size. Match the
 * desktop-rendered height (35px) so it stays small at every width. */
.body--dxpr-theme-nav-mobile .wrap-branding img {
  height: 35px !important;
  width: auto !important;
}