:root {
  --info-shell-blue: #2f6fed;
  --info-shell-blue-light: #5a8cff;
}

.infoHeader {
  position: sticky;
  top: 0;
  z-index: 120;
  width: 100%;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--info-shell-blue), var(--info-shell-blue-light));
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.14);
}

.infoHeader .headerIn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 14px;
}

.infoHeader .headerLeftGroup,
.infoHeader .headerRightGroup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.infoHeader .brand {
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.infoHeader .accountMenuWrap {
  position: relative;
  z-index: 130;
}

.infoHeader .headerHamburgerBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  cursor: pointer;
}

.infoHeader .headerHamburgerIcon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.infoHeader .headerHamburgerIcon span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.infoHeader .accountDropdown[hidden] {
  display: none;
}

.infoHeaderHome {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.infoHeaderHome:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 560px) {
  .infoHeader {
    padding: 10px 12px;
  }

  .infoHeader .brand {
    font-size: 15px;
  }

  .infoHeaderHome {
    width: 40px;
    min-width: 40px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .infoHeaderHome::before {
    content: "⌂";
    font-size: 19px;
    line-height: 1;
  }
}
