* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

.docs-body {
  --docs-border: var(--bink-fg);
  --docs-border-strong: var(--bink-fg);
  --docs-muted: color-mix(in srgb, var(--bink-fg) 72%, transparent);
  --docs-faint: color-mix(in srgb, var(--bink-fg) 4%, var(--bink-bg));
  --docs-hover: var(--bink-fg);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: var(--bink-bg);
  color: var(--bink-fg);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.docs-body .topnav,
.docs-body .manbar.bottom,
.docs-body code,
.docs-body pre,
.docs-body kbd,
.docs-body button,
.docs-eyebrow,
.docs-section-heading,
.docs-callout-label,
.docs-architecture-label {
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.docs-layout * {
  border-color: var(--docs-border) !important;
}

.docs-layout a:hover,
.docs-layout a:focus-visible {
  background: transparent !important;
  color: var(--bink-fg) !important;
}

.docs-crumb {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 37px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-right: 1px solid var(--bink-fg);
  border-bottom: 1px solid var(--bink-fg);
  border-left: 1px solid var(--bink-fg);
  padding: 9px 24px;
  background: var(--bink-bg);
  font: 600 11px/1.4 "IBM Plex Mono", "Courier New", monospace;
  letter-spacing: 0.04em;
}

.docs-crumb a {
  color: inherit;
  text-decoration: none;
}

.docs-crumb a:hover,
.docs-crumb a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 9px 12px;
  background: var(--bink-fg);
  color: var(--bink-bg);
  font: 600 12px/1 "IBM Plex Mono", monospace;
  transform: translateY(-150%);
}

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

.docs-layout {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  width: min(100%, 1200px);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  align-items: stretch;
  gap: 0;
  border-right: 1px solid var(--bink-fg);
  border-left: 1px solid var(--bink-fg);
  padding: 0;
  background: var(--bink-bg);
}

.docs-sidebar {
  position: sticky;
  top: 65px;
  max-height: calc(100vh - 80px);
  padding: 25px 17px 42px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--docs-border-strong) transparent;
}

.docs-sidebar-head {
  margin-bottom: 24px;
}

.docs-wordmark {
  display: flex;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid;
  color: inherit;
  text-decoration: none;
}

.docs-wordmark svg {
  display: block;
  width: 54px;
  height: auto;
  fill: currentColor;
}

.docs-search-label {
  display: block;
  margin: 17px 0 7px;
  color: var(--docs-muted);
  font: 500 10px/1.3 "IBM Plex Mono", monospace;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.docs-search-wrap {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid;
  border-radius: var(--bink-radius-sm);
  padding: 0 10px;
  background: transparent;
}

.docs-search-wrap:focus-within {
  border-color: var(--bink-fg) !important;
  outline: 2px solid color-mix(in srgb, var(--bink-fg) 16%, transparent);
  outline-offset: 2px;
}

.docs-search-wrap svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  opacity: 0.58;
}

.docs-search-wrap input {
  width: 100%;
  min-width: 0;
  border: 0 !important;
  outline: 0;
  padding: 9px 0;
  background: transparent;
  color: inherit;
  font: 400 12px/1.2 "IBM Plex Mono", "Courier New", monospace;
}

.docs-search-wrap input::placeholder {
  color: var(--docs-muted);
}

.docs-search-wrap kbd {
  min-width: 18px;
  border: 1px solid;
  border-radius: 4px;
  padding: 3px 5px;
  color: var(--docs-muted);
  font-size: 9px;
  line-height: 1;
  text-align: center;
}

.docs-nav-toggle {
  display: none;
}

.docs-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.docs-nav-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.docs-nav-group p {
  margin: 0 0 7px;
  color: var(--docs-muted);
  font: 600 10px/1.3 "IBM Plex Mono", monospace;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.docs-nav-group a {
  border-radius: 0;
  padding: 4px 7px;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 120ms ease, background-color 120ms ease;
}

.docs-nav-group a:hover,
.docs-nav-group a:focus-visible,
.docs-nav-group a[aria-current="location"] {
  background: var(--bink-fg) !important;
  color: var(--bink-bg) !important;
}

.docs-nav-group a:focus-visible {
  outline: 1px solid var(--docs-border-strong);
  outline-offset: 1px;
}

.docs-nav-empty {
  margin: 0;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-main {
  min-width: 0;
  border-right: 1px solid;
  border-left: 1px solid;
  background: var(--bink-bg);
}

.docs-article {
  min-width: 0;
  padding: 0 0 72px;
}

.docs-hero {
  padding: 46px 32px 30px;
  border-bottom: 1px solid;
}

.docs-eyebrow {
  margin: 0 0 16px;
  color: var(--docs-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.docs-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.docs-lead {
  max-width: 750px;
  margin: 24px 0 0;
  color: var(--docs-muted);
  font-size: 14px;
  line-height: 1.65;
}

.docs-hero-actions {
  display: flex;
  align-items: center;
  gap: 8px 25px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.docs-hero-actions a,
.docs-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.docs-hero-actions a:hover,
.docs-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.docs-hero-actions .docs-primary-link {
  border: 1px solid !important;
  border-radius: var(--bink-radius-sm);
  padding: 9px 13px;
  background: var(--bink-fg);
  color: var(--bink-bg);
}

.docs-hero-actions .docs-primary-link:hover,
.docs-hero-actions .docs-primary-link:focus-visible {
  background: var(--bink-fg) !important;
  color: var(--bink-bg) !important;
  text-decoration: none;
  filter: brightness(0.92);
}

.docs-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border: 1px solid;
  border-radius: 0;
  overflow: hidden;
}

.docs-facts > div {
  min-width: 0;
  padding: 13px 14px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  background: transparent;
}

.docs-facts > div:nth-child(3n) {
  border-right: 0 !important;
}

.docs-facts > div:nth-last-child(-n + 3) {
  border-bottom: 0 !important;
}

.docs-facts span,
.docs-network-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--docs-muted);
  font: 500 9px/1.2 "IBM Plex Mono", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.docs-facts strong,
.docs-network-summary strong {
  display: block;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-section {
  padding: 48px 32px 4px;
}

.docs-section-heading {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid;
  text-align: left;
}

.docs-section-heading p {
  margin: 0 0 5px;
  color: var(--docs-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.docs-section-heading h2 {
  margin: 0;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.docs-section > h3 {
  margin: 32px 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.3;
}

.docs-section > p,
.docs-section > ul,
.docs-section > ol {
  max-width: 760px;
}

.docs-section p {
  margin: 0 0 20px;
}

.docs-section ul {
  margin: 18px 0 24px;
  padding-left: 21px;
}

.docs-section li {
  margin: 8px 0;
  padding-left: 5px;
}

.docs-section li::marker {
  color: var(--docs-muted);
}

.docs-section code,
.docs-callout code,
.docs-glossary code {
  border: 1px solid;
  border-radius: 5px;
  padding: 0.12em 0.34em;
  background: var(--docs-faint);
  font-size: 0.86em;
  overflow-wrap: anywhere;
}

.docs-callout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  margin: 32px 0 4px;
  border: 1px solid;
  border-left: 3px solid var(--bink-fg) !important;
  border-radius: 0;
  padding: 16px 18px;
  background: transparent;
  color: var(--docs-muted);
  font-size: 13px;
  line-height: 1.65;
}

.docs-hero + .docs-callout {
  margin: 24px 32px 0;
}

.docs-callout strong {
  color: var(--bink-fg);
}

.docs-callout-label {
  color: var(--bink-fg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.45;
  text-transform: uppercase;
}

.docs-callout-important {
  border-left-width: 4px !important;
}

.docs-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 29px 0 5px;
  border: 1px solid;
  border-radius: 0;
  overflow: hidden;
  background: var(--docs-border);
}

.docs-principles article {
  min-height: 142px;
  padding: 18px;
  background: var(--bink-bg);
}

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

.docs-principles h3,
.docs-security-list h3,
.docs-contract-list h3 {
  margin: 0 0 9px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.docs-principles p,
.docs-security-list p,
.docs-contract-list p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.65;
}

.docs-lifecycle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 31px 0 0 !important;
  padding: 0 !important;
  border-top: 1px solid;
  list-style: none;
}

.docs-lifecycle li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding: 21px 0;
  border-bottom: 1px solid;
}

.docs-lifecycle li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid;
  border-radius: var(--bink-radius-sm);
  color: var(--docs-muted);
  font: 600 10px/1 "IBM Plex Mono", monospace;
}

.docs-lifecycle h3 {
  margin: 1px 0 5px;
  font-size: 14px;
  font-weight: 650;
}

.docs-lifecycle p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 13px;
}

.docs-checklist {
  padding: 0 !important;
  list-style: none;
}

.docs-checklist li {
  position: relative;
  margin: 10px 0;
  padding-left: 29px;
}

.docs-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--docs-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.docs-table-wrap {
  max-width: 100%;
  margin: 24px 0 30px;
  border: 1px solid;
  border-radius: 0;
  overflow-x: auto;
  background: var(--bink-bg);
}

.docs-table-wrap table {
  width: 100%;
  min-width: 640px;
  border: 0 !important;
  border-radius: 0;
  border-collapse: collapse !important;
  font-size: 12px;
  line-height: 1.5;
}

.docs-table-wrap th,
.docs-table-wrap td {
  padding: 13px 15px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  text-align: left;
  vertical-align: top;
}

.docs-table-wrap th:last-child,
.docs-table-wrap td:last-child {
  border-right: 0 !important;
}

.docs-table-wrap tbody tr:last-child td {
  border-bottom: 0 !important;
}

.docs-table-wrap th {
  border-bottom-width: 2px;
  background: var(--bink-fg);
  color: var(--bink-bg);
  font: 600 9px/1.35 "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.docs-table-wrap td {
  color: var(--docs-muted);
}

.docs-table-wrap td strong,
.docs-table-wrap td code {
  color: var(--bink-fg);
}

.docs-definition-list {
  margin: 25px 0 32px;
  border-top: 1px solid;
}

.docs-definition-list > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  padding: 15px 0;
  border-bottom: 1px solid;
}

.docs-definition-list dt {
  font-size: 12px;
  font-weight: 650;
}

.docs-definition-list dd {
  margin: 0;
  color: var(--docs-muted);
  font-size: 13px;
}

.docs-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
  border: 1px solid;
  border-radius: 0;
  padding: 22px;
  background: transparent;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-align: center;
}

.docs-formula strong {
  font-size: 18px;
}

.docs-formula-stacked {
  flex-direction: column;
  gap: 7px;
}

.docs-formula-stacked strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.docs-formula-stacked small {
  color: var(--docs-muted);
  font-size: 10px;
}

.docs-architecture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1.15fr) 24px minmax(0, 1.2fr);
  gap: 12px;
  align-items: center;
  margin: 29px 0 31px;
  border: 1px solid;
  border-radius: 0;
  padding: 18px;
  background: transparent;
}

.docs-architecture-column {
  display: grid;
  gap: 7px;
}

.docs-architecture-column > div {
  border: 1px solid;
  border-radius: 0;
  padding: 9px 10px;
  background: var(--bink-bg);
  font: 500 10px/1.35 "IBM Plex Mono", monospace;
  text-align: center;
}

.docs-architecture-core > div {
  border-color: var(--docs-border-strong) !important;
}

.docs-architecture-label {
  margin-bottom: 3px;
  color: var(--docs-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.docs-architecture-arrow {
  color: var(--docs-muted);
  font-family: "IBM Plex Mono", monospace;
  text-align: center;
}

.docs-network-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 25px 0;
  border: 1px solid;
  border-radius: 0;
  overflow: hidden;
  background: var(--docs-border);
}

.docs-network-summary > div {
  padding: 15px;
  background: var(--bink-bg);
}

.docs-address-table table {
  min-width: 720px;
}

.docs-address-table td:last-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.docs-address-table a {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.docs-address-table code {
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-address-table tr[data-available="false"] code {
  color: var(--docs-muted);
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.docs-address-table button,
.docs-code-head button {
  border: 1px solid !important;
  border-radius: 5px;
  padding: 5px 8px;
  background: transparent;
  color: var(--docs-muted);
  font-size: 9px;
  line-height: 1;
  cursor: pointer;
}

.docs-address-table button:hover,
.docs-address-table button:focus-visible,
.docs-code-head button:hover,
.docs-code-head button:focus-visible {
  background: var(--docs-hover) !important;
  color: var(--bink-fg) !important;
}

.docs-address-table button:disabled {
  cursor: default;
  opacity: 0.4;
}

.docs-code-head button {
  border-color: var(--bink-bg) !important;
  color: var(--bink-bg);
}

.docs-code-head button:hover,
.docs-code-head button:focus-visible {
  background: var(--bink-bg) !important;
  color: var(--bink-fg) !important;
}

.docs-code-block {
  margin: 24px 0 30px;
  border: 1px solid;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.docs-code-head {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid;
  padding: 7px 10px 7px 14px;
  background: var(--bink-fg);
  color: var(--bink-bg);
  font: 500 9px/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.docs-code-block pre {
  margin: 0;
  padding: 18px;
  overflow: auto;
  color: var(--bink-fg);
  font-size: 11px;
  line-height: 1.75;
  tab-size: 2;
}

.docs-code-block pre code {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.docs-security-list,
.docs-contract-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin-top: 8px;
  border-top: 1px solid;
}

.docs-security-list article,
.docs-contract-list article {
  min-height: 132px;
  padding: 20px 0;
  border-bottom: 1px solid;
}

.docs-glossary {
  margin: 0;
  border-top: 1px solid;
}

.docs-glossary > div {
  display: grid;
  grid-template-columns: minmax(135px, 0.25fr) minmax(0, 1fr);
  gap: 26px;
  padding: 16px 0;
  border-bottom: 1px solid;
}

.docs-glossary dt {
  font-size: 12px;
  font-weight: 650;
}

.docs-glossary dd {
  margin: 0;
  color: var(--docs-muted);
  font-size: 13px;
}

.docs-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 64px 32px 0;
  border-top: 1px solid;
  padding-top: 24px;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-article-footer p {
  margin: 0;
}

.docs-article-footer a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.docs-body .manbar.bottom {
  position: relative;
  z-index: 2;
}

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

  .docs-main {
    border-right: 0;
  }

}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 132px;
  }

  .docs-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  .docs-sidebar {
    position: relative;
    top: auto;
    z-index: 3;
    max-height: none;
    border-bottom: 1px solid;
    padding: 14px;
    overflow: visible;
  }

  .docs-wordmark,
  .docs-search-label,
  .docs-search-wrap {
    display: none;
  }

  .docs-sidebar-head {
    margin: 0;
  }

  .docs-nav-toggle {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid !important;
    border-radius: var(--bink-radius-sm);
    padding: 0 13px;
    background: transparent;
    color: inherit;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
  }

  .docs-sidebar[data-open="false"] .docs-nav {
    display: none;
  }

  .docs-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
    margin-top: 10px;
    border: 1px solid;
    border-radius: 0;
    padding: 20px;
    background: var(--bink-bg);
  }

  .docs-nav-empty {
    grid-column: 1 / -1;
  }

  .docs-article {
    padding-top: 0;
  }

  .docs-main {
    border: 0;
  }

  .docs-hero {
    padding: 36px 24px 28px;
  }

  .docs-hero + .docs-callout {
    margin-right: 24px;
    margin-left: 24px;
  }

  .docs-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .docs-article-footer {
    margin-right: 24px;
    margin-left: 24px;
  }
}

@media (max-width: 680px) {
  .docs-crumb {
    min-height: 34px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 9px;
  }

  .docs-nav {
    grid-template-columns: 1fr;
  }

  .docs-hero h1 {
    font-size: 39px;
    letter-spacing: -0.043em;
  }

  .docs-lead {
    font-size: 14px;
  }

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

  .docs-facts > div:nth-child(3n) {
    border-right: 1px solid !important;
  }

  .docs-facts > div:nth-child(2n) {
    border-right: 0 !important;
  }

  .docs-facts > div:nth-last-child(-n + 3) {
    border-bottom: 1px solid !important;
  }

  .docs-facts > div:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }

  .docs-section {
    padding-top: 44px;
  }

  .docs-callout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .docs-principles,
  .docs-principles-three,
  .docs-security-list,
  .docs-contract-list {
    grid-template-columns: 1fr;
  }

  .docs-principles article {
    min-height: 0;
  }

  .docs-definition-list > div,
  .docs-glossary > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .docs-formula {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .docs-architecture {
    grid-template-columns: 1fr;
  }

  .docs-architecture-arrow {
    transform: rotate(90deg);
  }

  .docs-network-summary {
    grid-template-columns: 1fr;
  }

  .docs-article-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media print {
  .topnav,
  .docs-sidebar,
  .docs-body > .manbar.bottom,
  .docs-hero-actions,
  .docs-address-table button,
  .docs-code-head button {
    display: none !important;
  }

  .docs-layout {
    display: block;
    width: auto;
    padding: 0;
  }

  .docs-article {
    padding: 0;
  }

  .docs-section,
  .docs-callout,
  .docs-table-wrap,
  .docs-code-block {
    break-inside: avoid;
  }
}
