/* Hard size limits prevent the SVG artboard from taking over mobile layouts. */
.site-header .brand-logo {
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  flex: 0 0 34px !important;
  object-fit: contain;
}

.hero-art .hero-logo {
  display: block;
  width: min(31vw, 420px);
  height: auto;
  max-width: 420px;
  max-height: 62vh;
  object-fit: contain;
}

@media (max-width: 850px) {
  .site-header .brand-logo {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex-basis: 28px !important;
  }

  .hero-art .hero-logo {
    width: min(42vw, 190px) !important;
    height: auto !important;
    max-width: 190px !important;
    max-height: 190px !important;
  }
}
