:root {
  --bg: #111315;
  --bg-soft: #161a1e;
  --sidebar: #0f1215;
  --panel: #171b20;
  --panel-strong: #1d2228;
  --panel-muted: #14181c;
  --line: #2b3138;
  --text: #f4f6f8;
  --muted: #99a2ad;
  --accent: #4b8dff;
  --accent-soft: rgba(75, 141, 255, 0.16);
  --violet: #9254ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  --sidebar-width: 286px;
  --toc-width: 248px;
}

body.light {
  --bg: #f4f6f9;
  --bg-soft: #ffffff;
  --sidebar: #f8fafc;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --panel-muted: #eef2f6;
  --line: #d9e0e7;
  --text: #13181e;
  --muted: #617080;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --violet: #6d28d9;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Noto Sans", "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

code,
kbd {
  font-family: "IBM Plex Mono", "Noto Sans Mono", "Consolas", monospace;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--sidebar);
  border-right: 1px solid var(--line);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(153, 162, 173, 0.3) transparent;
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

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

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(153, 162, 173, 0.28);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(153, 162, 173, 0.45);
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(96, 191, 251, 0.45), rgba(19, 120, 255, 0.45));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(96, 191, 251, 0.6), rgba(19, 120, 255, 0.6));
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

.sidebar-top {
  padding: 16px 14px 10px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    url("logo/logo.png") center/contain no-repeat,
    linear-gradient(135deg, rgba(124, 77, 255, 0.16) 0%, rgba(63, 140, 255, 0.12) 100%);
  background-size: 78% 78%, auto;
  color: transparent;
  font-size: 0;
  font-weight: 700;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.brand strong {
  display: block;
  font-size: 0.98rem;
}

.brand span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.tree-nav {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px 10px 10px;
}

.tree-link-top,
.nav-link,
.tree-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  border-radius: 8px;
}

.tree-link-top {
  display: block;
  padding: 10px 12px;
  margin-bottom: 10px;
  color: var(--muted);
}

.tree-group,
.tree-section {
  margin-bottom: 6px;
}

.tree-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  cursor: pointer;
  color: var(--text);
}

.tree-trigger span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.tree-trigger-section span {
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.tree-trigger-sub {
  margin-top: 4px;
}

.tree-trigger-sub span {
  font-size: 0.86rem;
  color: var(--muted);
}

.tree-trigger i {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.is-open > .tree-trigger i {
  transform: rotate(225deg);
  margin-top: 4px;
}

.tree-content {
  display: block;
  padding-left: 8px;
}

.tree-section .tree-content {
  padding-left: 14px;
}

.tree-section:not(.is-open) > .tree-content,
.tree-group:not(.is-open) > .tree-content {
  display: none;
}

.nav-link {
  display: block;
  padding: 8px 12px;
  margin: 2px 0;
  font-size: 0.88rem;
  color: var(--muted);
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-link-sub {
  padding-left: 20px;
  font-size: 0.84rem;
}

.nav-link:hover,
.nav-link.active,
.toc-link:hover,
.toc-link.active {
  background: var(--accent-soft);
  color: var(--text);
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 18px;
}

.powered {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-muted);
  font-size: 0.82rem;
  color: var(--muted);
}

.main-shell {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(17, 19, 21, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

body.light .topbar {
  background: rgba(255, 255, 255, 0.88);
}

body.light .sidebar {
  scrollbar-color: rgba(97, 112, 128, 0.3) transparent;
}

body.light .sidebar::-webkit-scrollbar-thumb {
  background: rgba(97, 112, 128, 0.24);
  border: 2px solid transparent;
  background-clip: padding-box;
}

body.light .sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(97, 112, 128, 0.4);
  border: 2px solid transparent;
  background-clip: padding-box;
}

body.light *::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.06);
}

body.light *::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.34), rgba(96, 165, 250, 0.34));
  border: 2px solid transparent;
  background-clip: padding-box;
}

body.light *::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.5), rgba(96, 165, 250, 0.5));
  border: 2px solid transparent;
  background-clip: padding-box;
}

.topbar-left,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-button,
.icon-button,
.page-button {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.searchbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(460px, 48vw);
  padding: 0 14px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-muted);
}

.searchbar svg {
  width: 16px;
  height: 16px;
  fill: var(--muted);
  flex: 0 0 auto;
}

.searchbar input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
}

.searchbar kbd {
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 7px;
  padding: 3px 6px;
  font-size: 0.73rem;
  color: var(--muted);
}

.top-link,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
}

.top-link {
  border: 1px solid transparent;
  color: var(--muted);
}

.top-link:hover {
  color: var(--text);
}

.top-link-pill {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  gap: 8px;
}

.top-link-pill:hover {
  background: var(--panel-muted);
}

.top-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.top-link-icon-image {
  object-fit: contain;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  max-height: min(420px, 60vh);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.search-results[hidden] {
  display: none !important;
}

.search-result-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.search-result-item:hover {
  background: var(--panel-muted);
  border-color: var(--line);
}

.search-result-category,
.search-result-summary,
.search-empty {
  color: var(--muted);
}

.search-result-category {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-item strong {
  font-size: 0.96rem;
}

.search-result-summary,
.search-empty {
  font-size: 0.84rem;
  line-height: 1.6;
}

.search-highlight {
  padding: 0 0.12em;
  border-radius: 0.28em;
  background: rgba(75, 141, 255, 0.18);
  color: var(--text);
  box-shadow: inset 0 -1px 0 rgba(96, 191, 251, 0.35);
}

.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--toc-width);
  gap: 28px;
  padding: 28px 24px 40px;
  max-width: 1440px;
}

.content {
  min-width: 0;
}

.doc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.doc-breadcrumbs a {
  color: #8fb8ff;
}

.doc-page {
  max-width: 860px;
}

.welcome-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.welcome-layout {
  grid-template-columns: minmax(0, 1fr);
}

.plugin-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.plugin-card h2 {
  margin: 8px 0 10px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.plugin-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.plugin-card span {
  display: inline-flex;
  margin-top: 16px;
  color: #9dc0ff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.page-actions {
  display: flex;
  gap: 10px;
}

.page-button {
  padding: 9px 14px;
  border-radius: 10px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  margin: 26px 0 34px;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(110, 41, 255, 0.32) 0%, rgba(21, 65, 145, 0.3) 50%, rgba(255, 132, 58, 0.24) 100%),
    linear-gradient(180deg, #171c32 0%, #121822 100%);
}

.banner-glow {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(146, 84, 255, 0.45), transparent 64%);
  filter: blur(28px);
}

.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 28px 30px;
}

.banner-content span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.banner-content strong {
  margin: 8px 0 6px;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.banner-content small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.doc-section {
  margin-bottom: 34px;
  scroll-margin-top: 90px;
}

.doc-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.doc-section p,
.feature-bullets,
.dependency-card p,
.updated {
  color: var(--muted);
  line-height: 1.8;
}

.feature-bullets {
  margin: 0;
  padding-left: 18px;
}

.feature-bullets li {
  margin-bottom: 8px;
}

.dependency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.dependency-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: #9dc0ff;
}

.dependency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dependency-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dependency-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.dependency-card a {
  color: #9dc0ff;
}

.section-intro {
  margin-bottom: 16px;
}

.doc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scrollbar-width: thin;
  scrollbar-color: rgba(96, 191, 251, 0.42) rgba(255, 255, 255, 0.04);
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.doc-table th,
.doc-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.doc-table th {
  color: var(--text);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.doc-table td {
  color: var(--muted);
  line-height: 1.7;
}

.doc-table tr:last-child td {
  border-bottom: 0;
}

.syntax-panel,
.info-note,
.file-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.syntax-panel {
  padding: 18px;
}

.syntax-panel h3,
.file-card h3,
.example-block h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.info-note {
  padding: 14px 16px;
  margin-top: 16px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(75, 141, 255, 0.08), rgba(75, 141, 255, 0.03));
}

.file-grid,
.example-grid {
  display: grid;
  gap: 16px;
}

.file-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.file-card {
  padding: 18px;
}

.file-card p,
.example-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.example-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.example-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.example-block .code-block {
  margin-top: 14px;
}

.example-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.example-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-muted);
  color: var(--muted);
  font-size: 0.82rem;
}

.section-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.section-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.example-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-muted);
  color: var(--muted);
  font-size: 0.82rem;
}

.kv-list {
  display: grid;
  gap: 12px;
}

.kv-item {
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

.kv-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.config-preview {
  margin-top: 16px;
}

.config-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: var(--panel-muted);
  color: #b8d0ff;
  font-size: 0.9rem;
}

.config-preview .code-block {
  margin-top: 0;
  border-top-left-radius: 0;
}

.code-block {
  position: relative;
  margin: 16px 0 0;
  padding: 48px 18px 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
  border-left: 2px solid var(--accent);
  scrollbar-width: thin;
  scrollbar-color: rgba(96, 191, 251, 0.42) rgba(255, 255, 255, 0.04);
}

.code-block code {
  display: block;
  color: #d7deea;
  font-size: 0.88rem;
  line-height: 1.75;
  white-space: pre;
}

body.light .code-block code {
  color: #243142;
}

.copy-button {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-muted);
  color: var(--text);
  cursor: pointer;
}

.copy-button:hover {
  background: var(--panel-strong);
}

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

.pager-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.pager-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.updated {
  margin-top: 18px;
  font-size: 0.88rem;
}

.doc-last-updated {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.related-pages {
  margin-top: 38px;
}

.related-pages h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.related-card strong {
  font-size: 1rem;
}

.related-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.88rem;
}

.related-category {
  color: #9dc0ff !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-target-match {
  animation: searchTargetPulse 2.4s ease;
}

@keyframes searchTargetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 141, 255, 0.34);
    background: rgba(75, 141, 255, 0.1);
  }

  40% {
    box-shadow: 0 0 0 10px rgba(75, 141, 255, 0);
    background: rgba(75, 141, 255, 0.14);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(75, 141, 255, 0);
    background: transparent;
  }
}

.toc {
  position: sticky;
  top: 74px;
  height: fit-content;
}

.toc-card {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-muted);
}

.toc-link {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hidden-by-search {
  display: none !important;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
}

.sidebar-backdrop.visible {
  display: block;
}

@media (max-width: 1160px) {
  .layout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .toc {
    display: none;
  }
}

@media (max-width: 920px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    width: min(86vw, 320px);
    transform: translateX(-100%);
    transition: transform 0.24s ease;
  }

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

  .menu-button {
    display: inline-block;
  }

  .searchbar {
    width: min(100%, 420px);
  }

  .layout-grid {
    padding: 20px 16px 30px;
  }

  .topbar {
    align-items: flex-start;
  }

  .topbar-left,
  .topbar-actions {
    width: 100%;
  }

  .topbar-actions {
    justify-content: flex-start;
  }
}

@media (pointer: coarse) {
  .sidebar {
    scrollbar-width: none;
  }

  .sidebar::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

@media (max-width: 700px) {
  .page-header {
    flex-direction: column;
  }

  .file-grid,
  .example-grid,
  .dependency-grid,
  .section-grid,
  .pager,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .searchbar kbd {
    display: none;
  }

  .searchbar {
    width: 100%;
  }

  .top-link,
  .icon-button {
    min-height: 42px;
  }

  .code-block {
    padding-top: 54px;
  }
}
