.nav-parent {
  min-height: 42px;
  padding: 11px;
  color: #c5d3e3;
}

.nav-parent:hover {
  background: #10233d;
  color: #fff;
}

.nav-parent.active {
  color: #ffd376;
  background: linear-gradient(90deg, rgba(244,183,64,.2), rgba(244,183,64,.04));
  border-left: 2px solid var(--amber);
}

.nav-parent.active .nav-icon { color: var(--amber); }
.active-mark { margin-left: auto; color: var(--amber); font-size: 18px; line-height: 1; }
.nav-children { display: none; }

.subtabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--line);
  margin: -2px 0 14px;
  padding: 0 2px;
}

.subtab {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #8fa7c3;
  padding: 11px 14px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.subtab:hover { color: #dce8f7; }
.subtab.active { color: #ffd376; }
.subtab.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -1px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
}

@media (max-width: 760px) {
  .subtabs { margin-left: -2px; margin-right: -2px; }
  .subtab { padding-left: 11px; padding-right: 11px; }
}
