/*
 * KG Channel Intelligence OS V11.2 R10.1 — Layout Recovery
 *
 * Emergency presentation-only guard loaded after R10. It restores the
 * dimensional sidebar token that R10 accidentally rebound to a color.
 */

html[data-kg-theme] {
  --kgx-sidebar: 264px;
}

@media (max-width: 1380px) {
  html[data-kg-theme] {
    --kgx-sidebar: 240px;
  }
}

@media (min-width: 851px) {
  html[data-kg-theme] .shell {
    display: grid !important;
    grid-template-columns: var(--kgx-sidebar) minmax(0, 1fr) !important;
  }

  html[data-kg-theme] .sidebar {
    width: auto !important;
    min-width: 0 !important;
  }

  html[data-kg-theme] .mainContent {
    min-width: 0 !important;
  }
}
