:root {
  --suite-header-bg: rgba(255, 253, 248, .9);
  --suite-header-line: rgba(31, 41, 39, .11);
  --suite-header-ink: #1f2927;
  --suite-header-muted: #63716e;
}

.suite-topbar {
  position: relative;
  top: auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 0 18px;
  border-bottom: 1px solid var(--suite-header-line);
  background: var(--suite-header-bg);
  backdrop-filter: blur(18px);
  color: var(--suite-header-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: visible;
}

.suite-brand-cluster,
.suite-app-brand,
.suite-topbar-actions {
  display: inline-flex;
  align-items: center;
}

.suite-brand-cluster {
  gap: 10px;
  min-width: 0;
}

.suite-ao-home,
.suite-app-brand {
  text-decoration: none;
}

.suite-ao-home {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.suite-ao-home img {
  display: block;
  width: 44px;
  height: 44px;
}

.suite-app-brand {
  gap: 9px;
  min-width: 0;
  color: var(--suite-header-ink);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: lowercase;
}

.suite-app-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(31, 41, 39, .11));
}

.suite-app-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.22;
  padding-bottom: 2px;
  margin-bottom: -2px;
}

.suite-topbar-actions {
  gap: 8px;
  overflow-x: auto;
}

.suite-topbar-actions > a,
.suite-topbar-actions > button,
.suite-topbar-actions > label,
.suite-topbar-actions > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 41, 39, .14);
  border-radius: 8px;
  background: rgba(255, 253, 248, .82);
  color: var(--suite-header-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.suite-topbar-actions input {
  display: none;
}

@media (max-width: 640px) {
  .suite-topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 10px;
    min-height: 58px;
    padding: 8px 12px;
  }

  .suite-brand-cluster {
    flex: 1 1 100%;
  }

  .suite-topbar-actions {
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 6px;
  }

  .suite-ao-home {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .suite-ao-home img {
    width: 42px;
    height: 42px;
  }

  .suite-app-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .suite-app-brand {
    font-size: 16px;
  }

  .suite-app-name {
    max-width: min(62vw, 240px);
  }
}
