/* The supplied artwork is a complete wordmark, so it is shown without a tile or duplicate text. */
.nav-wrap {
  height: 78px;
}

.brand {
  width: 176px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 0;
}

.brand > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo-fallback {
  display: none;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.logo-fallback.is-visible {
  display: block;
}

@media (max-width: 600px) {
  .nav-wrap {
    height: 76px;
    padding-inline: 18px;
  }

  .brand {
    width: 188px;
    height: 62px;
  }
}
