.big-rig-docs-app {
  --br-toolbar-height: 38px;
  --br-bg: #14162d;
  --br-bg-alt: #1d2142;
  --br-panel: rgba(255, 255, 255, 0.04);
  --br-panel-strong: #f4f0e7;
  --br-border: rgba(255, 255, 255, 0.1);
  --br-border-soft: rgba(255, 255, 255, 0.06);
  --br-text: #eef1ff;
  --br-text-muted: rgba(238, 241, 255, 0.64);
  --br-text-strong: #202433;
  --br-link: #3c63d8;
  --br-accent: #3147b8;
  --br-accent-soft: rgba(49, 71, 184, 0.18);
  --br-shadow: 0 18px 50px rgba(8, 11, 28, 0.24);
  font-family: "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  color: var(--br-text);
}

.big-rig-docs-app * {
  box-sizing: border-box;
}

.big-rig-docs-app .br-docs-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #171a34 0%, #12152c 100%);
  box-shadow: var(--br-shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] {
  --br-bg: #e8edf8;
  --br-bg-alt: #dde5f5;
  --br-panel: rgba(255, 255, 255, 0.75);
  --br-panel-strong: #fbf8f1;
  --br-border: rgba(28, 35, 66, 0.12);
  --br-border-soft: rgba(28, 35, 66, 0.08);
  --br-text: #232847;
  --br-text-muted: rgba(35, 40, 71, 0.64);
  --br-text-strong: #202433;
  --br-link: #345ccf;
  --br-accent: #3450c3;
  --br-accent-soft: rgba(52, 80, 195, 0.1);
  background:
    linear-gradient(180deg, #e9eef8 0%, #dfe7f5 100%);
}

.big-rig-docs-app .br-docs-shell.is-sidebar-collapsed {
  grid-template-columns: 88px minmax(0, 1fr);
}

.big-rig-docs-app .br-docs-sidebar {
  min-width: 0;
  padding: 18px 18px 24px;
  border-right: 1px solid var(--br-border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
}

.big-rig-docs-app .br-docs-overlay {
  display: none;
}

.big-rig-docs-app .br-docs-branding {
  position: sticky;
  top: 14px;
}

.big-rig-docs-app .br-docs-collections {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.big-rig-docs-app .br-docs-collection-select-wrap {
  display: block;
  margin-bottom: 24px;
}

.big-rig-docs-app .br-docs-collection-select-label {
  display: block;
  margin-bottom: 8px;
  color: var(--br-text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.big-rig-docs-app .br-docs-collection-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--br-border);
  border-radius: 12px;
  background: rgba(58, 79, 186, 0.22);
  color: var(--br-text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  outline: none;
  cursor: pointer;
}

.big-rig-docs-app .br-docs-collection-trigger-label {
  flex: 1 1 auto;
  text-align: left;
}

.big-rig-docs-app .br-docs-collection-trigger-indicator {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
}

.big-rig-docs-app .br-docs-collection-menu {
  display: none;
  position: relative;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--br-border);
  border-radius: 12px;
  background: rgba(20, 24, 52, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.big-rig-docs-app .br-docs-collection-picker.is-open .br-docs-collection-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.big-rig-docs-app .br-docs-collection-picker.is-open .br-docs-collection-trigger-indicator {
  transform: rotate(225deg) translateY(-1px);
}

.big-rig-docs-app .br-docs-collection-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--br-text);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.big-rig-docs-app .br-docs-collection-option:hover,
.big-rig-docs-app .br-docs-collection-option.is-active {
  background: rgba(58, 79, 186, 0.24);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-collection-trigger {
  background: rgba(52, 80, 195, 0.1);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-collection-menu {
  background: rgba(245, 247, 252, 0.98);
}

.big-rig-docs-app .br-docs-collection-chip {
  --br-chip-accent: rgba(77, 103, 214, 0.42);
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--br-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--br-text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
  white-space: normal;
  word-break: normal;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.big-rig-docs-app .br-docs-collection-chip:hover,
.big-rig-docs-app .br-docs-collection-chip.is-active {
  background: rgba(58, 79, 186, 0.26);
  border-color: var(--br-chip-accent);
}

.big-rig-docs-app .br-docs-tree {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100vh - 170px);
  overflow: auto;
  padding-right: 4px;
  padding-top: 6px;
}

.big-rig-docs-app .br-docs-tree-node {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.big-rig-docs-app .br-docs-tree-children {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding-left: 10px;
  margin-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.big-rig-docs-app .br-docs-tree-node.is-expanded > .br-docs-tree-children {
  display: flex;
}

.big-rig-docs-app .br-docs-tree-link,
.big-rig-docs-app .br-docs-crumbs button,
.big-rig-docs-app .br-docs-search-hit,
.big-rig-docs-app .br-docs-menu-toggle {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
}

.big-rig-docs-app .br-docs-tree-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--br-text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: normal;
  word-break: normal;
  transition: background 180ms ease, color 180ms ease;
}

.big-rig-docs-app .br-docs-tree-link:hover,
.big-rig-docs-app .br-docs-tree-link.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.big-rig-docs-app .br-docs-tree-link.is-in-path:not(.is-active) {
  background: rgba(255, 255, 255, 0.03);
}

.big-rig-docs-app .br-docs-tree-node.has-children > .br-docs-tree-link {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 255, 255, 0.04);
}

.big-rig-docs-app .br-docs-tree-node.has-children.is-expanded > .br-docs-tree-link {
  background: rgba(255, 255, 255, 0.08);
}

.big-rig-docs-app .br-docs-tree-children .br-docs-tree-link {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(238, 241, 255, 0.88);
  background: transparent;
}

.big-rig-docs-app .br-docs-tree-children .br-docs-tree-link:hover,
.big-rig-docs-app .br-docs-tree-children .br-docs-tree-link.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-children {
  border-left-color: rgba(28, 35, 66, 0.12);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-children .br-docs-tree-link {
  color: rgba(35, 40, 71, 0.82);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-link:hover,
.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-link.is-active {
  background: rgba(52, 80, 195, 0.1);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-link.is-in-path:not(.is-active) {
  background: rgba(52, 80, 195, 0.06);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-node.has-children > .br-docs-tree-link {
  background: rgba(28, 35, 66, 0.04);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-node.has-children.is-expanded > .br-docs-tree-link {
  background: rgba(52, 80, 195, 0.1);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-children .br-docs-tree-link:hover,
.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-tree-children .br-docs-tree-link.is-active {
  background: rgba(52, 80, 195, 0.08);
}

.big-rig-docs-app .br-docs-tree-link-label {
  flex: 1 1 auto;
  display: block;
}

.big-rig-docs-app .br-docs-tree-link-indicator {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
  opacity: 0.78;
}

.big-rig-docs-app .br-docs-tree-link-toggle.is-open .br-docs-tree-link-indicator {
  transform: rotate(45deg);
}

.big-rig-docs-app .br-docs-main {
  min-width: 0;
  position: relative;
  padding: 24px 28px 34px;
}

.big-rig-docs-app .br-docs-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.big-rig-docs-app .br-docs-menu-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--br-toolbar-height);
  padding: 0 14px;
  border: 1px solid var(--br-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--br-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.big-rig-docs-app .br-docs-search {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.big-rig-docs-app .br-docs-search input {
  width: 100%;
  height: var(--br-toolbar-height);
  padding: 9px 38px 9px 34px;
  border: 1px solid var(--br-border);
  border-radius: 8px;
  background: rgba(49, 71, 184, 0.28);
  color: var(--br-text);
  font-size: 0.88rem;
  line-height: 1.2;
  outline: none;
}

.big-rig-docs-app .br-docs-search input::placeholder {
  color: var(--br-text-muted);
}

.big-rig-docs-app .br-docs-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--br-text-muted);
  font-size: 0.82rem;
}

.big-rig-docs-app .br-docs-search-clear {
  position: absolute;
  right: 7px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--br-text-muted);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.big-rig-docs-app .br-docs-search-clear:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--br-text);
}

.big-rig-docs-app .br-docs-theme-toggle {
  flex: 0 0 auto;
  width: var(--br-toolbar-height);
  height: var(--br-toolbar-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--br-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--br-text);
  font-size: 0.86rem;
  cursor: pointer;
}

.big-rig-docs-app .br-docs-search-results {
  position: absolute;
  top: 46px;
  left: 72px;
  right: 52px;
  z-index: 20;
}

.big-rig-docs-app .br-docs-search-results-card {
  max-width: 620px;
  max-height: min(46vh, 420px);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--br-border);
  border-radius: 10px;
  background: rgba(19, 25, 58, 0.98);
  box-shadow: 0 18px 42px rgba(6, 9, 30, 0.22);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-search-results-card {
  background: rgba(247, 249, 254, 0.98);
}

.big-rig-docs-app .br-docs-search-hit {
  display: block;
  width: 100%;
  padding: 9px 10px 10px;
  border-radius: 8px;
  text-align: left;
  color: var(--br-text);
}

.big-rig-docs-app .br-docs-search-hit + .br-docs-search-hit {
  margin-top: 2px;
}

.big-rig-docs-app .br-docs-search-hit:hover {
  background: var(--br-accent-soft);
}

.big-rig-docs-app .br-docs-search-hit-title,
.big-rig-docs-app .br-docs-search-hit-meta,
.big-rig-docs-app .br-docs-search-hit-summary {
  display: block;
}

.big-rig-docs-app .br-docs-search-hit-title {
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.big-rig-docs-app .br-docs-search-hit-meta,
.big-rig-docs-app .br-docs-search-hit-summary,
.big-rig-docs-app .br-docs-search-empty {
  color: var(--br-text-muted);
}

.big-rig-docs-app .br-docs-search-hit-meta {
  margin-top: 3px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.big-rig-docs-app .br-docs-search-hit-summary {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  font-size: 0.73rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.big-rig-docs-app .br-docs-search-empty {
  padding: 14px;
  font-size: 0.85rem;
}

.big-rig-docs-app .br-docs-search-results-card::-webkit-scrollbar {
  width: 10px;
}

.big-rig-docs-app .br-docs-search-results-card::-webkit-scrollbar-track {
  background: transparent;
}

.big-rig-docs-app .br-docs-search-results-card::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  background-clip: padding-box;
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-search-results-card::-webkit-scrollbar-thumb {
  background: rgba(32, 36, 51, 0.18);
  background-clip: padding-box;
}

.big-rig-docs-app .br-docs-breadcrumbs {
  margin-bottom: 10px;
  padding: 0;
  border: 1px solid rgba(32, 36, 51, 0.08);
  border-radius: 0;
  background: rgba(244, 240, 231, 0.98);
  color: var(--br-text-strong);
}

.big-rig-docs-app .br-docs-shell[data-theme="light"] .br-docs-breadcrumbs {
  background: rgba(251, 248, 241, 0.96);
}

.big-rig-docs-app .br-docs-crumbs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  min-height: 56px;
  padding: 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.big-rig-docs-app .br-docs-crumbs button {
  flex: 0 0 auto;
  padding: 0;
  color: var(--br-link);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.015em;
  line-height: 1;
}

.big-rig-docs-app .br-docs-crumb-separator {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  color: rgba(32, 36, 51, 0.28);
  font-weight: 700;
  font-size: 0.72rem;
}

.big-rig-docs-app .br-docs-article {
  min-height: 420px;
  padding: 34px 40px;
  border-radius: 0;
  background: var(--br-panel-strong);
  color: var(--br-text-strong);
  box-shadow: none;
}

.big-rig-docs-app .br-docs-article-header h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.big-rig-docs-app .br-docs-hero {
  margin: 0 0 22px;
}

.big-rig-docs-app .br-docs-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.big-rig-docs-app .br-docs-quote {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 3px solid rgba(49, 71, 184, 0.28);
  background: rgba(49, 71, 184, 0.05);
}

.big-rig-docs-app .br-docs-quote blockquote {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.58;
}

.big-rig-docs-app .br-docs-quote cite {
  display: block;
  margin-top: 10px;
  color: rgba(32, 36, 51, 0.62);
  font-style: normal;
  font-weight: 700;
}

.big-rig-docs-app .br-docs-layout-hero .br-docs-article-header h1,
.big-rig-docs-app .br-docs-layout-landing .br-docs-article-header h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.big-rig-docs-app .br-docs-layout-minimal .br-docs-hero,
.big-rig-docs-app .br-docs-layout-minimal .br-docs-quote {
  display: none;
}

.big-rig-docs-app .br-docs-article-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(32, 36, 51, 0.54);
}

.big-rig-docs-app .br-docs-article-summary {
  margin: 0 0 26px;
  max-width: 64ch;
  font-size: 1.02rem;
  line-height: 1.66;
  color: rgba(32, 36, 51, 0.72);
}

.big-rig-docs-app .br-docs-article-content {
  font-size: 1.04rem;
  line-height: 1.76;
}

.big-rig-docs-app .br-docs-article-content h2,
.big-rig-docs-app .br-docs-article-content h3,
.big-rig-docs-app .br-docs-article-content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.55em;
  line-height: 1.12;
}

.big-rig-docs-app .br-docs-article-content a {
  color: var(--br-link);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.big-rig-docs-app .br-docs-article-content ul,
.big-rig-docs-app .br-docs-article-content ol {
  padding-left: 1.4em;
}

.big-rig-docs-app .br-docs-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.big-rig-docs-app .br-docs-keywords span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(49, 71, 184, 0.1);
  color: rgba(32, 36, 51, 0.72);
  font-size: 0.86rem;
}

.big-rig-docs-app .br-docs-state {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px dashed rgba(32, 36, 51, 0.15);
  color: rgba(32, 36, 51, 0.68);
  font-size: 1rem;
}

.big-rig-docs-app .br-docs-empty {
  padding: 24px;
  background: #f6f7fb;
}

.big-rig-docs-app .br-docs-shell.is-sidebar-collapsed .br-docs-sidebar {
  padding-left: 12px;
  padding-right: 12px;
}

.big-rig-docs-app .br-docs-shell.is-sidebar-collapsed .br-docs-tree,
.big-rig-docs-app .br-docs-shell.is-sidebar-collapsed .br-docs-branding {
  display: none;
}

.big-rig-docs-app .br-docs-shell.is-sidebar-collapsed .br-docs-collection-select-label {
  display: none;
}

.big-rig-docs-app .br-docs-shell.is-sidebar-collapsed .br-docs-collection-trigger {
  padding: 10px 8px;
  font-size: 0.8rem;
}

@media (max-width: 1120px) {
  .big-rig-docs-app .br-docs-shell,
  .big-rig-docs-app .br-docs-shell.is-sidebar-collapsed {
    grid-template-columns: 1fr;
    position: relative;
  }

  .big-rig-docs-app .br-docs-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 60;
    width: min(380px, 92vw);
    max-width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    overflow: auto;
    border-right: 1px solid var(--br-border-soft);
    border-bottom: 0;
    padding: 16px 18px 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(14, 18, 40, 0.98) 100%);
    box-shadow: 0 22px 48px rgba(6, 9, 30, 0.36);
  }

  .big-rig-docs-app .br-docs-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 50;
    border: 0;
    background: rgba(9, 12, 28, 0.48);
    opacity: 1;
    transition: opacity 180ms ease;
  }

  .big-rig-docs-app .br-docs-main {
    position: relative;
    z-index: 10;
  }

  .big-rig-docs-app .br-docs-tree {
    max-height: none;
    padding-right: 0;
  }

  .big-rig-docs-app .br-docs-search-results {
    left: 0;
    right: 60px;
    top: 44px;
  }

  .big-rig-docs-app .br-docs-search-results-card {
    max-width: none;
    max-height: min(42vh, 360px);
  }

  .big-rig-docs-app .br-docs-shell.is-sidebar-collapsed .br-docs-overlay {
    opacity: 0;
    pointer-events: none;
  }

  .big-rig-docs-app .br-docs-shell.is-sidebar-collapsed .br-docs-sidebar {
    display: none;
  }

  .big-rig-docs-app .br-docs-breadcrumbs {
    overflow-x: auto;
  }

  .big-rig-docs-app .br-docs-crumbs {
    min-width: max-content;
  }
}

@media (max-width: 720px) {
  .big-rig-docs-app .br-docs-main {
    padding: 14px;
  }

  .big-rig-docs-app .br-docs-toolbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
  }

  .big-rig-docs-app .br-docs-menu-toggle {
    width: auto;
    min-width: 0;
    min-height: var(--br-toolbar-height);
    text-align: center;
    font-size: 0.68rem;
    padding: 0 11px;
  }

  .big-rig-docs-app .br-docs-sidebar {
    width: 100vw;
    padding: 14px 16px 20px;
  }

  .big-rig-docs-app .br-docs-collection-select-label {
    font-size: 0.66rem;
  }

  .big-rig-docs-app .br-docs-collection-trigger {
    font-size: 0.9rem;
    min-height: 44px;
    padding: 10px 12px;
  }

  .big-rig-docs-app .br-docs-collection-option {
    font-size: 0.86rem;
  }

  .big-rig-docs-app .br-docs-tree {
    gap: 10px;
  }

  .big-rig-docs-app .br-docs-tree-link {
    font-size: 0.82rem;
    padding: 8px 8px;
  }

  .big-rig-docs-app .br-docs-tree-children {
    padding-left: 8px;
    margin-left: 6px;
  }

  .big-rig-docs-app .br-docs-tree-children .br-docs-tree-link {
    font-size: 0.78rem;
    padding: 6px 8px;
  }

  .big-rig-docs-app .br-docs-search-results {
    right: 0;
    left: 0;
    top: 44px;
  }

  .big-rig-docs-app .br-docs-search-results-card {
    max-height: min(38vh, 300px);
    padding: 6px;
  }

  .big-rig-docs-app .br-docs-search-hit {
    padding: 9px 10px 10px;
  }

  .big-rig-docs-app .br-docs-search-hit-title {
    font-size: 0.82rem;
  }

  .big-rig-docs-app .br-docs-search-hit-summary {
    font-size: 0.74rem;
  }

  .big-rig-docs-app .br-docs-breadcrumbs {
    padding: 0;
  }

  .big-rig-docs-app .br-docs-crumbs button {
    font-size: 0.72rem;
  }

  .big-rig-docs-app .br-docs-crumbs {
    min-height: 48px;
    padding: 0 12px;
  }

  .big-rig-docs-app .br-docs-crumb-separator {
    width: 22px;
  }

  .big-rig-docs-app .br-docs-article {
    padding: 24px 20px;
  }

  .big-rig-docs-app .br-docs-article-header h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }
}
