.mobile-app-header {
  display: none;
}

.mobile-launcher {
  display: none;
}

.shell {
  grid-template-columns: 272px 1fr;
}

.sidebar {
  width: 272px;
  padding: 28px 18px 22px;
}

.sidebar .brand {
  margin: 0 10px 34px;
}

.sidebar nav {
  gap: 7px;
}

.nav-section-label {
  margin: 0 12px 7px;
  color: #7694aa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  transition: background .18s, border-color .18s, transform .18s;
}

.nav-item .nav-icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  font-size: 18px;
}

.nav-item .nav-copy {
  display: block;
  width: auto;
  min-width: 0;
  font-size: inherit;
}

.nav-copy b,
.nav-copy small {
  display: block;
}

.nav-copy b {
  font-size: 13px;
  color: inherit;
}

.nav-copy small {
  margin-top: 3px;
  color: #7f9aae;
  font-size: 9px;
  font-weight: 500;
}

.nav-item:hover {
  transform: translateX(2px);
}

.nav-item.active {
  background: rgba(84,158,215,.17);
  border-color: rgba(125,190,239,.2);
  box-shadow: none;
}

.nav-item.active .nav-icon {
  background: #357fbd;
  box-shadow: 0 7px 18px rgba(10,35,55,.25);
}

.nav-item.active .nav-copy small {
  color: #bdd8eb;
}

.sidebar + main {
  grid-column: 2;
}
