.siteHeader {
  background-color: var(--primaryTrans);
  backdrop-filter: blur(4px);
  color: var(----grey);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  height: 75px;
  box-shadow: var(--box-shadow);
}

.siteHeader__logo-mobile {
  width: auto;
  max-height: 48px;
}

@media (min-width: 768px) {
  .siteHeader__logo-mobile {
    display: none;
  }
}

.siteHeader__logo-desktop {
  width: auto;
  max-height: 54px;
  display: none;
}

@media (min-width: 768px) {
  .siteHeader__logo-desktop {
    display: block;
  }
}

.siteHeader__partyInfo {
  display: flex;
  flex-direction: row;
}

.siteHeader__partyInfoText {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  border-right: 1px solid var(--grey03);
  padding-right: 1rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .siteHeader__partyInfoText {
    flex-direction: row;
  }
}

.siteHeader__slug {
  font-weight: bold;
}
