.wealth-only {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(49, 95, 74, .045), transparent 220px),
    var(--paper);
}

.wealth-only-shell {
  min-height: 100vh;
}

.wealth-only-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(37, 57, 47, .97);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 28px rgba(32, 45, 38, .12);
  backdrop-filter: blur(12px);
}

.wealth-only-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.wealth-only-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  color: #f3c85e;
  font: 800 16px Manrope, sans-serif;
}

.wealth-only-brand strong,
.wealth-only-brand small {
  display: block;
}

.wealth-only-brand strong {
  font: 700 15px Manrope, sans-serif;
}

.wealth-only-brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
}

.wealth-only-account {
  min-height: 40px;
  padding: 0 13px 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.wealth-only-account:hover {
  background: rgba(255, 255, 255, .12);
}

.wealth-only-account > span:first-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  font-size: 9px;
  font-weight: 800;
}

.wealth-only main {
  width: 100%;
  max-width: 1500px;
  padding-top: 38px;
}

.wealth-only .wealth-head h1 {
  max-width: 780px;
}

@media (max-width: 760px) {
  .wealth-only-topbar {
    min-height: 62px;
    padding: 0 16px;
  }

  .wealth-only-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 14px;
  }

  .wealth-only-brand strong {
    font-size: 13px;
  }

  .wealth-only-brand small,
  .account-label {
    display: none;
  }

  .wealth-only-account {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .wealth-only-account > span:first-child {
    width: 34px;
    height: 34px;
  }

  .wealth-only main {
    padding: 26px 16px 48px;
  }
}

@media (max-width: 400px) {
  .wealth-only-brand strong {
    font-size: 12px;
  }
}
