/* Solvea Ashby job board — shrink the header logo
   Paste this into Ashby's Job Board custom CSS field
   (Admin > Job Board > Branding/Theme > Custom CSS, or similar). */

/* Target by attribute instead of the hashed class name, since Ashby's
   generated class suffixes (e.g. "_5bhg5_104") can change between deploys. */

a[class*="_navLogoLink_"] img[class*="_navLogoWordmarkImage_"],
img[alt="Solvea"] {
  height: 32px !important;   /* adjust to taste, e.g. 28px–40px */
  width: auto !important;
  max-width: none !important;
}

/* Keep the logo centered in its nav column — flex needs justify-content
   set explicitly, otherwise it defaults to left-aligned. */
a[class*="_navLogoLink_"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
