/* =========================================================
   ORBIT HEADER LOGO SIZE
   Keeps the uploaded logo file sharp, but limits how large
   it is displayed in the website header.

   Desktop: max height 64px
   Mobile:  max height 48px
   Width stays proportional automatically.
   ========================================================= */

.site-header .site-branding img,
#masthead .site-logo img,
.logo img {
  max-height: 64px;
  width: auto;
}

@media (max-width: 780px) {
  .site-header .site-branding img,
  #masthead .site-logo img,
  .logo img {
    max-height: 48px;
    width: auto;
  }
}