/* Shared transparent Wolfpack Labs wordmark for every site header. */
.topbar .brand.brand-with-wordmark {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: clamp(246px, 24vw, 310px);
  min-width: 0;
  max-width: 100%;
  margin-right: auto;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
}

.topbar .brand.brand-with-wordmark .brand-wordmark-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 60%; /* 20% larger than the previous 50% setting. */
  box-sizing: border-box;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.topbar .brand.brand-with-wordmark .brand-wordmark {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 860px) {
  .topbar .brand.brand-with-wordmark {
    flex: 1 1 auto;
    width: min(300px, calc(100% - 62px));
    max-width: calc(100% - 62px);
    margin-right: 0;
  }
}

@media (max-width: 620px) {
  .topbar .brand.brand-with-wordmark {
    width: calc(100% - 58px);
    max-width: calc(100% - 58px);
  }

  .topbar .brand.brand-with-wordmark .brand-wordmark-shell {
    width: min(60%, 190px);
  }
}

