/* Keep the complete header logo visible on narrow/mobile screens. */
@media (max-width: 900px) {
  .header {
    height: 82px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  body.menu-open .nav {
    inset: 82px 0 0;
  }

  .hero {
    margin-top: 82px;
  }

  .site-logo {
    justify-content: center;
    overflow: visible;
  }
}

@media (max-width: 600px) {
  .site-logo {
    height: 66px;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .site-logo .service-name {
    line-height: 1.35;
    flex: 0 0 auto;
  }

  .site-logo img {
    height: 44px;
    object-position: center 55%;
    flex: 0 0 auto;
  }
}

/* The supplied logo image already contains the service name. */
.header .site-logo .service-name {
  display: none;
}

.header .site-logo img {
  height: 60px;
  object-fit: cover;
  object-position: center 55%;
}

@media (max-width: 600px) {
  .header .site-logo img {
    height: 58px;
  }
}
