.brand-logo {
  position: relative;
  flex: 0 0 auto;
  width: 220px;
  height: 135px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 22px;
  box-shadow: 0 12px 35px #173b3415;
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #173b3414;
  border-radius: inherit;
  pointer-events: none;
}

.brand-logo img {
  position: absolute;
  top: -102px;
  left: 50%;
  width: 600px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.public-nav {
  margin-bottom: 24px;
}

html[data-theme="dark"] .brand-logo {
  background: #09241b;
  box-shadow: 0 12px 35px #0008;
}

html[data-theme="dark"] .brand-logo img {
  filter: invert(1) sepia(.45) saturate(1.7) hue-rotate(92deg) brightness(.62) contrast(1.16);
}

html[data-theme="dark"] .brand-logo::after {
  border-color: #8bd8ae30;
}

@media (max-width: 700px) {
  .brand-logo {
    width: 170px;
    height: 105px;
    border-radius: 17px;
  }

  .brand-logo img {
    top: -80px;
    width: 470px;
  }

  .private-nav .brand-logo {
    align-self: center;
  }
}

@media (max-width: 500px) {
  .public-nav {
    margin-bottom: 22px;
  }
}
