@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0957f5;
  --blue-dark: #0745c4;
  --navy: #101c4a;
  --muted: #69728a;
  --border: #e1e8f3;
  --page: #f8faff;
  --surface: #ffffff;
  --blue-surface: #edf5ff;
  --yellow-surface: #fff6d8;
  --red: #ce3349;
  --success: #177a43;
  --code-bg: #111a3d;
  --header-height: 64px;
  --left-width: 260px;
  --right-width: 220px;
  --article-width: 720px;
  --shadow: 0 14px 32px rgba(16, 28, 74, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--page);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-dark);
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.docs-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: var(--left-width) minmax(280px, 520px) 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.docs-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--blue) 0 67%,
    #f6cf32 67% 84%,
    var(--red) 84% 100%
  );
  opacity: 0.34;
}

.docs-header-brand,
.brand-link,
.header-actions,
.search-shell {
  display: flex;
  align-items: center;
}

.brand-link {
  width: fit-content;
  color: var(--navy);
  text-decoration: none;
}

.brand-link img {
  width: auto;
  height: 31px;
}

.brand-link span {
  margin-left: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-shell {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 11px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-shell:focus-within {
  border-color: rgba(9, 87, 245, 0.6);
  box-shadow: 0 0 0 4px rgba(9, 87, 245, 0.1);
}

.search-shell svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-shell input {
  min-width: 0;
  flex: 1;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-shell input::placeholder {
  color: #8992a8;
}

.search-shell kbd {
  padding: 1px 7px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 11px;
  box-shadow: 0 1px 0 var(--border);
}

.search-results {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  max-height: min(560px, calc(100vh - 96px));
  padding: 8px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.search-results a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 12px;
  color: var(--navy);
  text-decoration: none;
  border-radius: 9px;
}

.search-results a:hover {
  background: var(--blue-surface);
}

.search-results strong {
  color: var(--navy);
  font-size: 13px;
}

.search-results span,
.search-results p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.header-actions {
  justify-content: flex-end;
  gap: 22px;
}

.header-actions a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
}

.header-actions a:hover {
  color: var(--blue);
}

.github-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-nav-toggle,
.mobile-search-row {
  display: none;
}

.docs-shell {
  display: grid;
  grid-template-columns: var(--left-width) minmax(0, 1fr) var(--right-width);
  min-height: 100vh;
  padding-top: var(--header-height);
}

.docs-sidebar {
  position: fixed;
  z-index: 70;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: var(--left-width);
  overflow-y: auto;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.docs-sidebar-inner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px 16px 18px;
}

.sidebar-context {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 5px 26px;
  padding: 9px 10px;
  color: var(--muted);
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #f6cf32;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(246, 207, 50, 0.17);
}

.docs-nav-section {
  margin-bottom: 26px;
}

.docs-nav-section h2 {
  margin: 0 8px 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.docs-nav-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.docs-nav-parent-title {
  display: block;
  padding: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.docs-nav-parent ul {
  margin-left: 9px;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

.docs-nav-link {
  display: block;
  margin: 1px 0;
  padding: 7px 9px;
  color: var(--navy);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 140ms ease, background 140ms ease;
}

.docs-nav-link:hover {
  color: var(--blue);
  background: var(--page);
}

.docs-nav-link.is-active {
  position: relative;
  color: var(--blue);
  background: var(--blue-surface);
  font-weight: 650;
}

.docs-nav-link.is-active::after {
  position: absolute;
  top: 6px;
  right: -1px;
  bottom: 6px;
  width: 2px;
  content: "";
  background: var(--blue);
  border-radius: 2px;
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding: 18px 8px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 10px;
}

.docs-main {
  grid-column: 2;
  min-width: 0;
  background: var(--surface);
}

.article-container {
  width: min(var(--article-width), calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 64px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.docs-content > h1:first-child {
  margin-top: 0;
}

.docs-content h1,
.docs-content h2,
.docs-content h3,
.docs-content h4 {
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.docs-content h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 750;
}

.docs-content h2 {
  margin: 52px 0 16px;
  padding-top: 2px;
  font-size: 24px;
  font-weight: 720;
}

.docs-content h3 {
  margin: 34px 0 12px;
  font-size: 18px;
  font-weight: 680;
}

.docs-content h4 {
  margin: 24px 0 10px;
  font-size: 15px;
}

.docs-content h1 .headerlink,
.docs-content h2 .headerlink,
.docs-content h3 .headerlink,
.docs-content h4 .headerlink {
  margin-left: 7px;
  color: var(--border);
  font-size: 0.72em;
  text-decoration: none;
  opacity: 0;
}

.docs-content h1:hover .headerlink,
.docs-content h2:hover .headerlink,
.docs-content h3:hover .headerlink,
.docs-content h4:hover .headerlink,
.headerlink:focus {
  color: var(--blue);
  opacity: 1;
}

.docs-content > p:first-of-type {
  margin-top: -4px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.6;
}

.docs-content p {
  margin: 0 0 18px;
}

.docs-content ul,
.docs-content ol {
  padding-left: 24px;
  margin: 12px 0 22px;
}

.docs-content li {
  margin: 7px 0;
  padding-left: 4px;
}

.docs-content li::marker {
  color: var(--blue);
}

.docs-content strong {
  font-weight: 680;
}

.docs-content hr {
  height: 1px;
  margin: 40px 0;
  background: var(--border);
  border: 0;
}

.docs-content blockquote {
  margin: 26px 0;
  padding: 16px 20px;
  color: var(--muted);
  background: var(--page);
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
}

.docs-content code {
  padding: 2px 6px;
  color: #0745c4;
  background: var(--blue-surface);
  border: 1px solid #d7e7ff;
  border-radius: 6px;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.88em;
}

.docs-content p code,
.docs-content li code,
.docs-content td code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.docs-content pre {
  position: relative;
  margin: 24px 0;
  padding: 22px;
  overflow: auto;
  color: #eaf0ff;
  background: var(--code-bg);
  border: 1px solid #26315c;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 28, 74, 0.12);
}

.docs-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  line-height: 1.72;
}

.code-copy {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  color: #b7c4ef;
  background: #1d2853;
  border: 1px solid #33406c;
  border-radius: 7px;
  cursor: pointer;
  font-size: 10px;
}

.code-copy:hover {
  color: white;
  border-color: #6c7bb1;
}

.docs-content table {
  width: 100%;
  margin: 24px 0 30px;
  overflow: hidden;
  border-collapse: separate;
  border: 1px solid var(--border);
  border-spacing: 0;
  border-radius: 12px;
  font-size: 12px;
}

.docs-content th,
.docs-content td {
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.docs-content th:last-child,
.docs-content td:last-child {
  border-right: 0;
}

.docs-content tr:last-child td {
  border-bottom: 0;
}

.docs-content th {
  color: var(--navy);
  background: var(--page);
  font-weight: 680;
}

.docs-content td {
  color: #425071;
}

.admonition {
  position: relative;
  margin: 26px 0;
  padding: 18px 20px;
  overflow: hidden;
  background: var(--blue-surface);
  border: 1px solid #d7e7ff;
  border-radius: 14px;
}

.admonition::after {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 80px;
  height: 80px;
  content: "";
  background: radial-gradient(circle, rgba(9, 87, 245, 0.12), transparent 66%);
}

.admonition-title {
  margin: 0 0 6px !important;
  color: var(--navy) !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admonition p:last-child {
  margin-bottom: 0;
}

.admonition.warning,
.admonition.caution {
  background: var(--yellow-surface);
  border-color: #f1df9d;
  border-left: 4px solid #e2ad10;
}

.admonition.danger,
.admonition.error {
  background: #fff0f2;
  border-color: #f1c9cf;
  border-left: 4px solid var(--red);
}

.admonition.success,
.admonition.tip {
  background: #effaf3;
  border-color: #cdebd8;
  border-left: 4px solid var(--success);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 34px;
}

.docs-card {
  display: block;
  min-height: 132px;
  padding: 19px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.docs-card:hover {
  color: var(--navy);
  border-color: rgba(9, 87, 245, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.docs-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.docs-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero {
  position: relative;
  padding: 34px;
  margin-bottom: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(246, 207, 50, 0.33), transparent 22%),
    radial-gradient(circle at 92% 32%, rgba(206, 51, 73, 0.12), transparent 22%),
    linear-gradient(145deg, #edf5ff, #ffffff 60%);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.hero::after {
  position: absolute;
  right: -60px;
  bottom: -75px;
  width: 220px;
  height: 160px;
  content: "";
  border: 16px solid rgba(9, 87, 245, 0.07);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 5px 9px;
  color: var(--blue);
  background: white;
  border: 1px solid #d7e7ff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 540px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 50px);
}

.hero p {
  max-width: 560px;
  margin: 0 0 24px !important;
  color: var(--muted);
  font-size: 16px !important;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-primary,
.button-secondary {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(9, 87, 245, 0.2);
}

.button-primary:hover {
  color: white;
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
}

.button-secondary:hover {
  color: var(--blue);
  border-color: rgba(9, 87, 245, 0.42);
}

.architecture-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0;
}

.architecture-flow > div {
  position: relative;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.architecture-flow > div:not(:last-child)::after {
  position: absolute;
  bottom: -13px;
  left: 30px;
  z-index: 1;
  content: "↓";
  color: var(--blue);
  font-weight: 700;
}

.architecture-flow strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.architecture-flow span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.page-actions {
  display: flex;
  gap: 10px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.page-actions a,
.page-actions button {
  padding: 8px 11px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  font-size: 11px;
  text-decoration: none;
}

.page-actions a:hover,
.page-actions button:hover {
  color: var(--blue);
  border-color: rgba(9, 87, 245, 0.4);
}

.page-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.pagination-card {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  color: var(--navy);
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 13px;
  text-decoration: none;
}

.pagination-card:hover {
  color: var(--blue);
  border-color: rgba(9, 87, 245, 0.4);
}

.pagination-card span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.pagination-card strong {
  margin-top: 5px;
  font-size: 12px;
}

.pagination-card.next {
  text-align: right;
}

.docs-footer {
  padding-top: 36px;
  color: var(--muted);
  font-size: 10px;
}

.page-toc {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: var(--right-width);
  overflow-y: auto;
  background: var(--surface);
}

.page-toc-inner {
  padding: 42px 24px 24px;
}

.page-toc h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-toc ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-toc > .page-toc-inner > ul {
  border-left: 1px solid var(--border);
}

.page-toc li {
  margin: 0;
}

.page-toc a {
  display: block;
  margin-left: -1px;
  padding: 6px 0 6px 14px;
  color: var(--muted);
  border-left: 2px solid transparent;
  font-size: 10px;
  line-height: 1.45;
  text-decoration: none;
}

.page-toc a:hover,
.page-toc a.is-active {
  color: var(--blue);
  border-left-color: var(--blue);
}

.page-toc .toc-level-1 a {
  padding-left: 24px;
  font-size: 9px;
}

.toc-reference {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 30px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 9px;
}

.toc-reference code {
  width: fit-content;
  padding: 4px 7px;
  color: var(--blue);
  background: var(--blue-surface);
  border-radius: 6px;
  font-family: "Cascadia Code", Consolas, monospace;
}

.toc-mobile-toggle {
  display: none;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ced7e6;
  border-radius: 999px;
}

@media (max-width: 1180px) {
  :root {
    --right-width: 0px;
  }

  .docs-header {
    grid-template-columns: var(--left-width) minmax(280px, 520px) 1fr;
  }

  .page-toc {
    z-index: 60;
    right: -260px;
    width: 260px;
    transform: none;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: right 180ms ease;
  }

  .toc-open .page-toc {
    right: 0;
  }

  .toc-mobile-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 61;
    display: block;
    padding: 9px 12px;
    color: var(--blue);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-size: 10px;
  }
}

@media (max-width: 860px) {
  :root {
    --left-width: 0px;
  }

  .docs-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 0 16px;
  }

  .docs-header-brand {
    min-width: 0;
  }

  .brand-link img {
    height: 28px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
    padding: 10px;
    margin-right: 6px;
    background: transparent;
    border: 0;
  }

  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
  }

  .search-shell {
    display: none;
  }

  .search-open .search-shell {
    position: fixed;
    z-index: 80;
    top: calc(var(--header-height) + 8px);
    right: 14px;
    left: 14px;
    display: flex;
    width: auto;
    max-width: none;
    background: var(--page);
    box-shadow: var(--shadow);
  }

  .search-open .mobile-search-button {
    visibility: hidden;
  }

  .header-actions a:first-child {
    display: none;
  }

  .docs-sidebar {
    width: min(300px, 88vw);
    transform: translateX(-102%);
    box-shadow: var(--shadow);
    transition: transform 180ms ease;
  }

  .nav-open {
    overflow: hidden;
  }

  .nav-open .docs-sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    position: fixed;
    z-index: 65;
    inset: var(--header-height) 0 0;
    display: none;
    background: rgba(16, 28, 74, 0.24);
    backdrop-filter: blur(2px);
  }

  .nav-open .sidebar-backdrop {
    display: block;
  }

  .mobile-search-row {
    position: fixed;
    z-index: 50;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: block;
    padding: 8px 14px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  .mobile-search-button {
    display: flex;
    width: 100%;
    height: 36px;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    color: var(--muted);
    background: var(--page);
    border: 1px solid var(--border);
    border-radius: 9px;
    font-size: 11px;
  }

  .mobile-search-button span {
    font-size: 9px;
  }

  .docs-shell {
    padding-top: calc(var(--header-height) + 53px);
  }

  .article-container {
    width: min(var(--article-width), calc(100% - 40px));
    padding-top: 30px;
  }
}

@media (max-width: 600px) {
  .github-link span,
  .brand-link span {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .article-container {
    width: calc(100% - 30px);
  }

  .docs-content h1 {
    font-size: 30px;
  }

  .docs-content > p:first-of-type {
    font-size: 16px;
  }

  .docs-grid,
  .page-pagination {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px;
  }

  .docs-content table {
    display: block;
    overflow-x: auto;
  }

  .page-actions {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  .docs-header,
  .docs-sidebar,
  .page-toc,
  .mobile-search-row,
  .toc-mobile-toggle,
  .page-actions {
    display: none !important;
  }

  .docs-shell {
    display: block;
    padding: 0;
  }

  .article-container {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}
