.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.docs-copy-buffer {
  position: fixed;
  top: 0;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.docs-page {
  background: #f5f9f7;
}

.docs-page [hidden] {
  display: none !important;
}

.docs-page .site-nav a.is-current,
.docs-page .site-nav a[aria-current="page"] {
  color: var(--green-900);
  font-weight: 650;
}

.docs-page .site-nav a.is-current::after,
.docs-page .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.docs-main {
  min-height: 78vh;
  padding-top: var(--header-height);
}

.docs-intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 63, 58, 0.08);
  background:
    radial-gradient(circle at 78% 25%, rgba(75, 220, 161, 0.16), transparent 24%),
    linear-gradient(112deg, #f0faf5 0%, #f8fcfa 48%, #eef8f4 100%);
}

.docs-intro::before {
  content: "";
  position: absolute;
  top: -120px;
  right: 8%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(37, 134, 106, 0.09);
  border-radius: 50%;
}

.docs-intro-shape {
  position: absolute;
  right: -75px;
  bottom: -130px;
  width: 360px;
  height: 260px;
  border-radius: 54% 46% 0 0;
  background: rgba(131, 226, 186, 0.13);
  transform: rotate(-12deg);
}

.docs-intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 230px;
  padding-block: 42px;
}

.docs-intro .eyebrow {
  margin: 0 0 13px;
}

.docs-intro h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.docs-intro-inner>div:first-child>p:last-child {
  margin: 16px 0 0;
  color: #5d6d67;
  font-size: 15px;
}

.docs-intro-mark {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-right: 7%;
  border: 1px solid rgba(28, 113, 93, 0.15);
  border-radius: 26px;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 55px rgba(16, 63, 58, 0.11);
  transform: rotate(3deg);
}

.docs-intro-mark svg {
  width: 47px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.docs-mobile-bar {
  display: none;
}

.docs-layout {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  align-items: start;
  gap: 42px;
  padding-top: 38px;
  padding-bottom: 92px;
}

.docs-sidebar {
  position: sticky;
  z-index: 20;
  top: calc(var(--header-height) + 22px);
  min-width: 0;
  max-height: calc(100vh - var(--header-height) - 44px);
}

.docs-sidebar-card {
  display: flex;
  flex-direction: column;
  max-height: inherit;
  padding: 20px 14px 14px;
  border: 1px solid #dce7e2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(16, 63, 58, 0.07);
}

@supports (backdrop-filter: blur(12px)) {
  .docs-sidebar-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(125%);
  }
}

.docs-sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px 16px;
}

.docs-sidebar-heading>div {
  display: grid;
  gap: 3px;
}

.docs-sidebar-heading span {
  color: #8a9892;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.docs-sidebar-heading strong {
  color: var(--green-950);
  font-size: 17px;
  font-weight: 700;
}

.docs-sidebar-heading button {
  display: none;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #ffffff;
  cursor: pointer;
}

.docs-sidebar-heading button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.docs-search {
  position: relative;
  display: block;
  margin: 0 1px 17px;
}

.docs-search svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 13px;
  width: 16px;
  color: #778680;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  transform: translateY(-50%);
  pointer-events: none;
}

.docs-search input {
  width: 100%;
  height: 42px;
  padding: 0 13px 0 39px;
  border: 1px solid #dce6e1;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #f7faf8;
  font-size: 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.docs-search input::placeholder {
  color: #94a19c;
}

.docs-search input:focus {
  border-color: rgba(28, 113, 93, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(75, 220, 161, 0.13);
}

.docs-search input:disabled {
  opacity: 0.65;
}

.docs-catalog {
  min-height: 80px;
  padding-right: 3px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c9d8d1 transparent;
}

.docs-catalog::-webkit-scrollbar {
  width: 5px;
}

.docs-catalog::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #c9d8d1;
}

.docs-category+.docs-category {
  margin-top: 20px;
}

.docs-category-title {
  display: block;
  margin: 0 8px 7px;
  color: #8b9893;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-category-links {
  display: grid;
  gap: 3px;
}

.docs-catalog-link {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 9px 11px 9px 13px;
  border-radius: 9px;
  color: #56655f;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.docs-catalog-link::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  width: 3px;
  border-radius: 5px;
  background: var(--green-600);
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.docs-catalog-link strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 580;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-catalog-link small {
  display: none;
  overflow: hidden;
  color: #84918c;
  font-size: 10px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-catalog-link:hover {
  color: var(--green-900);
  background: #f0f7f3;
  transform: translateX(2px);
}

.docs-catalog-link.is-active {
  color: var(--green-900);
  background: var(--surface-mint);
}

.docs-catalog-link.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.docs-catalog-link.is-active strong {
  font-weight: 680;
}

.docs-catalog-status,
.docs-catalog-error,
.docs-catalog-empty {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.docs-catalog-status>span {
  display: block;
  margin-top: 12px;
}

.catalog-skeleton {
  display: grid;
  gap: 9px;
  padding: 5px 5px 0;
}

.catalog-skeleton i,
.reader-skeleton-title,
.reader-skeleton-lead,
.reader-skeleton-line,
.reader-skeleton-block {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #eaf0ed;
}

.catalog-skeleton i::after,
.reader-skeleton-title::after,
.reader-skeleton-lead::after,
.reader-skeleton-line::after,
.reader-skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.72) 48%, transparent 76%);
  transform: translateX(-100%);
  animation: docs-shimmer 1.35s ease-in-out infinite;
}

.catalog-skeleton i {
  display: block;
  height: 34px;
}

.catalog-skeleton i:nth-child(2),
.catalog-skeleton i:nth-child(5) {
  width: 82%;
}

.docs-catalog-empty {
  padding: 26px 10px;
}

.docs-catalog-error {
  padding: 18px 9px 10px;
}

.docs-catalog-error svg {
  width: 28px;
  margin: 0 auto 10px;
  color: #b36b23;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.docs-catalog-error strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.docs-catalog-error p {
  margin: 6px 0 12px;
  line-height: 1.6;
}

.docs-catalog-error button,
.docs-retry-button {
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid #cddbd5;
  border-radius: 9px;
  color: var(--green-900);
  background: #ffffff;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.docs-catalog-error button:hover,
.docs-retry-button:hover {
  border-color: #a9c5b9;
  background: #f2faf6;
  transform: translateY(-1px);
}

.docs-sidebar-backdrop {
  display: none;
}

.docs-reader {
  min-width: 0;
  min-height: 580px;
  padding: clamp(32px, 5vw, 58px) clamp(26px, 6vw, 72px) 62px;
  border: 1px solid #dce7e2;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 62px rgba(16, 63, 58, 0.075);
}

.docs-reader-loading {
  width: min(100%, 760px);
  margin: 10px auto;
}

.reader-skeleton-title {
  width: 58%;
  height: 42px;
}

.reader-skeleton-lead {
  width: 75%;
  height: 18px;
  margin-top: 22px;
}

.reader-skeleton-line {
  width: 82%;
  height: 13px;
  margin-top: 16px;
}

.reader-skeleton-line.wide {
  width: 100%;
  margin-top: 55px;
}

.reader-skeleton-line.short {
  width: 66%;
}

.reader-skeleton-block {
  height: 150px;
  margin-top: 35px;
}

.docs-reader-loading>span {
  display: block;
  margin-top: 24px;
  color: #899690;
  font-size: 12px;
  text-align: center;
}

.docs-reader-error,
.docs-reader-empty {
  display: grid;
  justify-items: center;
  max-width: 470px;
  margin: 86px auto;
  text-align: center;
}

.reader-state-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--green-700);
  background: var(--surface-mint);
}

.reader-state-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.docs-reader-error h2,
.docs-reader-empty h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.docs-reader-error p,
.docs-reader-empty p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.docs-reader-empty a {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 650;
}

.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #86938e;
  font-size: 11px;
}

.docs-breadcrumb a:hover {
  color: var(--green-700);
}

.docs-breadcrumb strong {
  overflow: hidden;
  color: #68766f;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-article-header {
  padding-bottom: 35px;
  border-bottom: 1px solid #e2eae6;
}

.docs-article-header>p:first-child {
  margin: 0 0 11px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.docs-article-header h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 760;
  letter-spacing: -0.046em;
  line-height: 1.16;
}

.docs-article-header>p[data-doc-summary] {
  max-width: 720px;
  margin: 17px 0 0;
  color: #5f6d68;
  font-size: 15px;
  line-height: 1.8;
}

.docs-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #7c8a84;
  font-size: 11px;
}

.docs-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.docs-article-meta svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.markdown-body {
  padding-top: 36px;
  color: #293630;
  font-size: 15px;
  line-height: 1.86;
  overflow-wrap: anywhere;
}

.markdown-body>:first-child {
  margin-top: 0 !important;
}

.markdown-body>:last-child {
  margin-bottom: 0 !important;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  position: relative;
  color: var(--green-950);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.42;
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.markdown-body h1 {
  margin: 54px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4ece8;
  font-size: 30px;
}

.markdown-body h2 {
  margin: 48px 0 17px;
  padding-bottom: 9px;
  border-bottom: 1px solid #e7eeeb;
  font-size: 25px;
}

.markdown-body h3 {
  margin: 36px 0 13px;
  font-size: 20px;
}

.markdown-body h4 {
  margin: 29px 0 11px;
  font-size: 17px;
}

.markdown-body .heading-anchor {
  position: absolute;
  right: 100%;
  width: 28px;
  margin-right: 4px;
  color: #9bb1a8;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.markdown-body h1:hover .heading-anchor,
.markdown-body h2:hover .heading-anchor,
.markdown-body h3:hover .heading-anchor,
.markdown-body h4:hover .heading-anchor,
.markdown-body .heading-anchor:focus-visible {
  opacity: 1;
}

.markdown-body p {
  margin: 0 0 19px;
}

.markdown-body strong {
  color: #13221c;
  font-weight: 700;
}

.markdown-body a {
  color: #1473b8;
  text-decoration: underline;
  text-decoration-color: rgba(20, 115, 184, 0.28);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.markdown-body a:hover {
  color: #0c5e98;
  text-decoration-color: currentColor;
}

.markdown-body ul,
.markdown-body ol {
  margin: 15px 0 22px;
  padding-left: 25px;
}

.markdown-body li {
  margin: 6px 0;
  padding-left: 3px;
}

.markdown-body li::marker {
  color: var(--green-600);
}

.markdown-body blockquote {
  margin: 27px 0;
  padding: 16px 19px;
  border: 0;
  border-left: 4px solid var(--mint-bright);
  border-radius: 0 11px 11px 0;
  color: #4e6159;
  background: #eff9f4;
}

.markdown-body blockquote p:last-child {
  margin-bottom: 0;
}

.markdown-body hr {
  height: 1px;
  margin: 40px 0;
  border: 0;
  background: #dfe8e4;
}

.markdown-body code,
.markdown-body kbd {
  border: 1px solid #dce7e2;
  border-radius: 6px;
  color: #165d4e;
  background: #f1f7f4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
}

.markdown-body :not(pre)>code {
  padding: 2px 6px;
}

.markdown-body kbd {
  padding: 2px 7px;
  box-shadow: inset 0 -1px 0 #cbdad3;
}

.code-block {
  position: relative;
  margin: 27px 0;
}

.markdown-body pre {
  margin: 0;
  padding: 20px;
  border: 1px solid #183d34;
  border-radius: 13px;
  overflow: auto;
  color: #dff7ed;
  background: #0e2822;
  box-shadow: 0 13px 30px rgba(8, 32, 28, 0.13);
  tab-size: 4;
}

.markdown-body pre code {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 12.5px;
  line-height: 1.72;
}

.code-copy-button {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 9px;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(223, 247, 237, 0.18);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.code-copy-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.markdown-body img {
  max-height: 620px;
  margin: 28px auto;
  border: 1px solid #d9e4df;
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(16, 63, 58, 0.1);
}

.table-scroll {
  max-width: 100%;
  margin: 26px 0;
  overflow-x: auto;
  border: 1px solid #dce6e1;
  border-radius: 12px;
}

.markdown-body table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 13px;
}

.markdown-body th,
.markdown-body td {
  padding: 11px 14px;
  border-bottom: 1px solid #e2eae6;
  text-align: left;
  vertical-align: top;
}

.markdown-body th {
  color: #33433d;
  background: #f3f7f5;
  font-weight: 680;
}

.markdown-body tr:last-child td {
  border-bottom: 0;
}

.markdown-body details {
  margin: 20px 0;
  padding: 13px 16px;
  border: 1px solid #dce6e1;
  border-radius: 11px;
  background: #fbfdfc;
}

.markdown-body summary {
  color: var(--green-900);
  font-weight: 650;
  cursor: pointer;
}

.docs-page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid #e0e9e5;
}

.docs-page-nav a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 15px 17px;
  border: 1px solid #dbe6e1;
  border-radius: 12px;
  background: #fbfdfc;
  transition: border-color 0.17s ease, background 0.17s ease, transform 0.17s ease;
}

.docs-page-nav a:hover {
  border-color: #b9d2c7;
  background: #f1faf6;
  transform: translateY(-2px);
}

.docs-page-nav a:last-child {
  grid-column: 2;
  text-align: right;
}

.docs-page-nav small {
  color: #85928d;
  font-size: 10px;
}

.docs-page-nav strong {
  overflow: hidden;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-footer {
  margin-top: 0;
}

@keyframes docs-shimmer {
  to {
    transform: translateX(100%);
  }
}

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

  .docs-reader {
    padding-inline: 38px;
  }
}

@media (max-width: 880px) {
  .docs-page .site-nav a.is-current::after,
  .docs-page .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .docs-intro-inner {
    min-height: 200px;
  }

  .docs-intro-mark {
    margin-right: 3%;
  }

  .docs-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
  }

  .docs-mobile-bar>span {
    overflow: hidden;
    color: #718079;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .docs-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 39px;
    padding: 0 13px;
    border: 1px solid #d4e1db;
    border-radius: 10px;
    color: var(--green-900);
    background: #ffffff;
    font-size: 12px;
    font-weight: 650;
    box-shadow: 0 8px 22px rgba(16, 63, 58, 0.07);
    cursor: pointer;
  }

  .docs-sidebar-toggle svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }

  .docs-layout {
    display: block;
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .docs-sidebar {
    position: fixed;
    z-index: 1300;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(330px, calc(100vw - 48px));
    max-height: none;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-104%);
    transition: visibility 0.22s, opacity 0.22s ease, transform 0.22s ease;
  }

  .docs-sidebar-card {
    height: 100%;
    max-height: none;
    padding-top: 17px;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 25px 80px rgba(7, 28, 24, 0.3);
  }

  .docs-sidebar-heading button {
    display: grid;
  }

  .docs-page.docs-sidebar-open {
    overflow: hidden;
  }

  .docs-sidebar-open .docs-sidebar {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .docs-sidebar-backdrop {
    position: fixed;
    z-index: 1250;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 27, 23, 0.42);
    backdrop-filter: blur(2px);
    transition: visibility 0.22s, opacity 0.22s ease;
  }

  .docs-sidebar-open .docs-sidebar-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .docs-reader {
    min-height: 520px;
    padding: 36px 42px 50px;
    border-radius: 20px;
  }

  .docs-breadcrumb {
    margin-bottom: 28px;
  }
}

@media (max-width: 600px) {
  .docs-main {
    padding-top: 62px;
  }

  .docs-intro-inner {
    min-height: 176px;
    padding-block: 31px;
  }

  .docs-intro h1 {
    font-size: 39px;
  }

  .docs-intro-inner>div:first-child>p:last-child {
    max-width: 270px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.7;
  }

  .docs-intro-mark {
    width: 66px;
    height: 66px;
    margin-right: 0;
    border-radius: 19px;
  }

  .docs-intro-mark svg {
    width: 34px;
  }

  .docs-mobile-bar {
    padding-top: 15px;
  }

  .docs-layout {
    padding-top: 14px;
    padding-bottom: 44px;
  }

  .docs-reader {
    min-height: 470px;
    padding: 28px 20px 38px;
    border-radius: 16px;
  }

  .docs-breadcrumb {
    gap: 7px;
    margin-bottom: 23px;
    font-size: 10px;
  }

  .docs-article-header {
    padding-bottom: 27px;
  }

  .docs-article-header h1 {
    font-size: 32px;
  }

  .docs-article-header>p[data-doc-summary] {
    margin-top: 13px;
    font-size: 13px;
  }

  .docs-article-meta {
    margin-top: 19px;
  }

  .markdown-body {
    padding-top: 28px;
    font-size: 14px;
    line-height: 1.82;
  }

  .markdown-body h1 {
    margin-top: 42px;
    font-size: 25px;
  }

  .markdown-body h2 {
    margin-top: 38px;
    font-size: 22px;
  }

  .markdown-body h3 {
    font-size: 18px;
  }

  .markdown-body .heading-anchor {
    display: none;
  }

  .markdown-body pre {
    padding: 17px 14px;
    border-radius: 10px;
  }

  .code-copy-button {
    position: static;
    width: 100%;
    margin-bottom: 5px;
    border-color: #d5e1dc;
    color: var(--green-900);
    background: #f1f7f4;
  }

  .docs-page-nav {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .docs-page-nav a:last-child {
    grid-column: 1;
    text-align: left;
  }

  .docs-reader-error,
  .docs-reader-empty {
    margin-block: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-skeleton i::after,
  .reader-skeleton-title::after,
  .reader-skeleton-lead::after,
  .reader-skeleton-line::after,
  .reader-skeleton-block::after {
    animation: none;
  }

  .docs-sidebar,
  .docs-sidebar-backdrop,
  .docs-catalog-link,
  .docs-page-nav a {
    transition: none;
  }
}
