/* Header logo sizing is intentionally isolated from the rest of the layout. */
.site-header .brand {
  width: 420px;
  height: 92px;
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.site-header .brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2.8);
}

@media (max-width: 670px) {
  .site-header .brand {
    width: 250px;
    height: 60px;
    flex-basis: 250px;
  }

  .site-header .brand img {
    transform: scale(2.4);
  }
}
