:root {
    --docs-bg: #091019;
    --docs-bg-2: #0d1520;
    --docs-bg-3: #111b27;
    --docs-surface: #121d2a;
    --docs-surface-2: #162230;
    --docs-surface-3: #1a2736;
    --docs-line: #233244;
    --docs-line-strong: #31465f;
    --docs-text: #edf4fd;
    --docs-text-soft: #b8c6d9;
    --docs-text-muted: #7a8ea8;
    --docs-accent: #67d5ff;
    --docs-accent-strong: #a3ebff;
    --docs-accent-soft: rgba(103, 213, 255, 0.12);
    --docs-success: #38cf95;
    --docs-warning: #ffb657;
    --docs-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    --docs-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --docs-code: "Cascadia Code", Consolas, monospace;
    --docs-content-width: 74ch;
    --docs-page-shell-width: 1200px;
    --docs-sidebar-width: 292px;
    --docs-layout-gap: 1rem;
    --docs-shell-padding: 1.5rem;
    --docs-toc-width: 236px;
    --docs-article-body-gap: 1rem;
    --docs-main-sidebar-clearance: 140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--docs-font);
    color: var(--docs-text);
    background:
        radial-gradient(circle at top left, rgba(103, 213, 255, 0.08), transparent 26rem),
        linear-gradient(180deg, #091019 0%, #09111a 28%, #0a121c 100%);
}

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

a:hover {
    color: var(--docs-accent-strong);
}

img {
    max-width: 100%;
    height: auto;
}

pre,
code {
    font-family: var(--docs-code);
}

pre {
    white-space: pre;
}

.docs-announcement-bar {
    padding: 0.7rem 1rem;
    text-align: center;
    color: #ddf5ff;
    background: #0d1826;
    border-bottom: 1px solid var(--docs-line);
}

.docs-site-shell {
    min-height: 100vh;
}

.docs-site-header,
.docs-site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.5rem;
    background: rgba(8, 13, 20, 0.92);
    border-bottom: 1px solid var(--docs-line);
    backdrop-filter: blur(12px);
}

.docs-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-bar .docs-site-header {
    top: 32px;
}

.admin-bar .docs-layout__sidebar {
    top: var(--docs-sticky-offset, 5.9rem);
}

.admin-bar .docs-sidebar {
    height: auto;
}

.docs-site-footer {
    margin-top: 4rem;
    border-top: 1px solid var(--docs-line);
    border-bottom: 0;
}

.docs-site-footer:empty {
    display: none;
    margin-top: 0;
    padding: 0;
    border: 0;
}

.docs-site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.docs-site-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: #ebfbff;
    border: 1px solid #2c5b73;
    background: linear-gradient(135deg, #0e2534, #1a93c3);
}

.docs-site-topnav__menu,
.docs-site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-site-topnav__menu a,
.docs-site-footer__menu a {
    color: var(--docs-text-soft);
    font-size: 0.94rem;
}

.docs-site-search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    min-width: 250px;
    min-height: 40px;
    padding: 0.5rem 0.72rem;
    color: var(--docs-text-soft);
    background: rgba(12, 18, 27, 0.82);
    border: 1px solid rgba(49, 70, 95, 0.55);
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
    cursor: pointer;
}

.docs-site-search-trigger__icon {
    color: var(--docs-text-muted);
    font-size: 0.9rem;
    line-height: 1;
}

.docs-site-search-trigger__text {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    color: var(--docs-text-soft);
    font-size: 0.92rem;
}

.docs-site-search-trigger kbd {
    padding: 0.12rem 0.38rem;
    color: var(--docs-text-muted);
    border: 1px solid rgba(49, 70, 95, 0.55);
    background: rgba(8, 13, 20, 0.88);
    font: inherit;
    font-size: 0.78rem;
}

.docs-page {
    display: grid;
    gap: 2rem;
    width: min(var(--docs-page-shell-width), calc(100% - 3rem));
    margin: 2rem auto;
}

.single-doc_article .docs-page {
    width: 100%;
    margin: 0;
    gap: 0;
}

.single-doc_article .docs-layout {
    padding-bottom: 0;
}

.docs-page-section,
.docs-panel,
.docs-home-subsection,
.docs-entry-card,
.docs-product-card,
.docs-update-row,
.docs-value-card,
.docs-release-row,
.docs-release-selector-panel,
.docs-feedback-strip,
.docs-pager-card,
.docs-search-result,
.docs-empty-state {
    background: linear-gradient(180deg, rgba(18, 29, 42, 0.94), rgba(13, 21, 31, 0.94));
    border: 1px solid var(--docs-line);
}

.docs-page-section,
.docs-panel,
.docs-empty-state {
    padding: 1.4rem;
}

.docs-eyebrow,
.docs-home__eyebrow,
.docs-breadcrumbs,
.docs-section-heading p,
.docs-product-card__eyebrow,
.docs-entry-card__eyebrow,
.docs-search-result__meta,
.docs-update-row__meta,
.docs-toc__eyebrow,
.docs-sidebar__brand-label,
.docs-sidebar__section-label {
    color: var(--docs-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
}

.docs-section-heading {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 0;
}

.docs-section-heading h2,
.docs-page-section h2 {
    margin: 0;
    font-size: clamp(1.08rem, 1.7vw, 1.38rem);
    line-height: 1.15;
}

.docs-home-subsection .docs-section-heading h2 {
    color: var(--docs-text-soft);
    font-weight: 600;
}

.docs-section-heading--inline {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: end;
    gap: 1.25rem;
}

.docs-section-heading--inline > p,
.docs-section-heading--inline > div + p {
    margin: 0;
    color: var(--docs-text-soft);
    line-height: 1.7;
}

.docs-button,
.docs-button--secondary,
.docs-button--ghost,
.docs-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
    color: var(--docs-text);
    cursor: pointer;
    border: 1px solid var(--docs-line-strong);
    background: var(--docs-surface-2);
    transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.docs-product-card__actions .docs-button,
.docs-product-card__actions .docs-button--secondary,
.docs-product-card__actions .docs-button--ghost {
    width: 100%;
}

.docs-button__icon {
    display: inline-block;
    margin-right: 0.45rem;
    color: var(--docs-text-muted);
    font-size: 0.86em;
    line-height: 1;
}

.docs-button:hover,
.docs-button--secondary:hover,
.docs-button--ghost:hover,
.docs-search button:hover {
    color: var(--docs-accent-strong);
    border-color: var(--docs-accent);
    background: var(--docs-surface-3);
}

.docs-button {
    background: rgba(18, 29, 42, 0.96);
}

.docs-button--secondary {
    background: var(--docs-surface-2);
}

.docs-button--ghost {
    background: transparent;
}

.docs-badge,
.docs-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    align-self: flex-start;
    width: auto;
    max-width: max-content;
    min-height: 30px;
    padding: 0.34rem 0.6rem;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    border: 1px solid var(--docs-line-strong);
    color: var(--docs-text-soft);
    background: rgba(15, 21, 31, 0.92);
}

.docs-badge--accent {
    color: #e5faff;
    border-color: rgba(103, 213, 255, 0.45);
    background: var(--docs-accent-soft);
}

.docs-chip {
    color: var(--docs-text);
    background: rgba(13, 22, 33, 0.88);
}

.docs-context-row,
.docs-hero-actions,
.docs-release-row__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: flex-start;
}

.docs-product-card__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0.6rem;
}

.docs-home {
    display: grid;
    gap: 1.5rem;
    width: min(var(--docs-page-shell-width), calc(100% - 3rem));
    margin: 1.5rem auto;
}

#docs-products,
#docs-updates,
#docs-search {
    scroll-margin-top: 5.5rem;
}

.docs-home-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: space-between;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(103, 213, 255, 0.08), transparent 45%),
        linear-gradient(180deg, rgba(18, 29, 42, 0.96), rgba(11, 18, 27, 0.96));
    border: 1px solid var(--docs-line);
    box-shadow: var(--docs-shadow);
}

.docs-home-hero__copy {
    flex: 1 1 42rem;
    min-width: 0;
    max-width: none;
}

.docs-home-hero h1 {
    margin: 0.4rem 0 1rem;
    font-size: clamp(2.2rem, 4.2vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: none;
}

.docs-home-hero__summary {
    margin: 0;
    color: var(--docs-text-soft);
    font-size: 0.98rem;
    line-height: 1.72;
    max-width: none;
}

.docs-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1.35rem;
}

.docs-home-hero__aside {
    flex: 0 1 22rem;
    width: auto;
    min-width: min(100%, 18rem);
    max-width: 24rem;
    display: grid;
    gap: 1rem;
    align-content: start;
    justify-items: end;
}

.docs-info-stack span,
.docs-release-row__title span {
    color: var(--docs-text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
}

.docs-home-hero__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.docs-hero-metric {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    padding: 0.38rem 0.62rem;
    border: 1px solid rgba(49, 70, 95, 0.55);
    background: rgba(10, 16, 25, 0.74);
}

.docs-hero-metric strong {
    font-size: 1rem;
    line-height: 1;
    color: var(--docs-text);
}

.docs-hero-metric em {
    font-style: normal;
    color: var(--docs-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.docs-search-launcher {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.1rem;
    color: var(--docs-text-soft);
    text-align: left;
    background: rgba(11, 17, 25, 0.78);
    border: 1px solid rgba(49, 70, 95, 0.55);
    cursor: pointer;
}

.docs-search-launcher--hero {
    flex: 1 1 100%;
    min-height: 3rem;
    margin-top: 0.1rem;
    background: rgba(10, 16, 25, 0.74);
}

.docs-search-launcher__prompt {
    font-size: 1rem;
    color: var(--docs-text-muted);
}

.docs-search-launcher__hint {
    color: var(--docs-text-muted);
    font-size: 0.84rem;
    letter-spacing: 0.08em;
}

.docs-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.docs-search input,
.docs-sidebar__field select,
.docs-inline-field select {
    width: 100%;
    padding: 0.82rem 0.9rem;
    color: var(--docs-text);
    border: 1px solid var(--docs-line);
    background: #0e1621;
}

.docs-search--hero input {
    min-height: 3.4rem;
    font-size: 1rem;
}

.docs-search--hero button {
    min-width: 8.5rem;
}

.docs-search-results {
    display: grid;
    gap: 0.85rem;
}

.docs-search-result {
    padding: 1rem 1.05rem;
}

.docs-search-result h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
}

.docs-search-result p {
    margin: 0;
    color: var(--docs-text-soft);
    line-height: 1.7;
}

.docs-home-section,
.docs-home-discovery,
.docs-home-values {
    display: grid;
    gap: 1.1rem;
}

.docs-product-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.docs-product-card-grid > :only-child {
    grid-column: 1 / -1;
}

.docs-product-card-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.docs-product-card {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 1.15rem;
    height: 100%;
    overflow: hidden;
}

.docs-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 140ms ease;
}

.docs-product-card.has-product-image::before {
    opacity: 0.15;
    background:
        radial-gradient(circle at top right, rgba(0, 0, 0, 0.9), rgba(14, 14, 15, 0.32) 24%, rgba(14, 14, 15, 0) 44%),
        linear-gradient(180deg, rgba(12, 32, 62, 0.24) 0%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(95deg, rgba(7, 12, 19, 0.9) 0%, rgba(35, 64, 104, 0.58) 32%, rgba(72, 105, 151, 0.34) 60%, rgba(41, 72, 115, 0.46) 100%),
        linear-gradient(90deg, rgba(7, 12, 19, 0) 56%, rgba(7, 68, 88, 0.42) 100%),
        var(--product-card-image) center center / cover no-repeat;
    filter: blur(2px) contrast(1.04) brightness(0.92);
}

.docs-product-card > * {
    position: relative;
    z-index: 1;
}

.docs-product-card__head {
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(49, 70, 95, 0.55);
}

.docs-product-card__topline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.docs-product-card__head h3,
.docs-entry-card h3,
.docs-update-row__body h3,
.docs-value-card h3,
.docs-release-row__title h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.docs-product-card__head h3 {
    margin-top: 0.1rem;
}

.docs-product-card__summary,
.docs-entry-card p,
.docs-update-row__body p,
.docs-value-card p,
.docs-release-row__summary p,
.docs-product-hero__summary,
.docs-release-header__summary,
.docs-feedback-strip p,
.docs-inline-field span + select,
.docs-info-stack strong {
    color: var(--docs-text-soft);
}

.docs-product-card__summary,
.docs-entry-card p,
.docs-update-row__body p,
.docs-value-card p,
.docs-release-row__summary p,
.docs-product-hero__summary,
.docs-release-header__summary,
.docs-feedback-strip p {
    margin: 0;
    line-height: 1.72;
}

.docs-release-header__summary {
    margin-bottom: 0.625rem;
}

.docs-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-left: auto;
}

.docs-product-card__meta span,
.docs-quick-link-card__meta,
.docs-update-row__meta span {
    color: var(--docs-text-muted);
    font-size: 0.73rem;
    letter-spacing: 0.08em;
}

.docs-info-stack strong {
    display: block;
    margin-top: 0.24rem;
    font-size: 0.95rem;
}

.docs-info-stack--inline strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    margin-top: 0;
}

.docs-info-stack--inline strong a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    line-height: inherit;
}

.docs-inline-link-list,
.docs-entry-children {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-inline-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
}

.docs-inline-link-list a,
.docs-entry-children a {
    color: var(--docs-text-soft);
}

.docs-home-discovery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.docs-home-subsection {
    height: 100%;
}

.docs-entry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.docs-entry-grid--release {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.docs-entry-card {
    display: grid;
    gap: 0.7rem;
    padding: 1.05rem;
    background: rgba(13, 20, 30, 0.74);
    border-top: 1px solid rgba(103, 213, 255, 0.2);
}

.docs-quick-groups {
    display: grid;
    gap: 0.8rem;
}

.docs-quick-group {
    border: 1px solid rgba(49, 70, 95, 0.45);
    background: rgba(11, 18, 27, 0.44);
}

.docs-quick-group__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
}

.docs-quick-group__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.docs-quick-group__items {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(49, 70, 95, 0.32);
}

.docs-quick-row {
    padding: 0.9rem 0.95rem;
    border-top: 1px solid rgba(49, 70, 95, 0.18);
}

.docs-quick-row:first-child {
    border-top: 0;
}

.docs-quick-row__body {
    display: grid;
    gap: 0.28rem;
}

.docs-quick-row__body h3,
.docs-quick-row__body p {
    margin: 0;
}

.docs-quick-row__body h3 {
    font-size: 1rem;
}

.docs-quick-row__body p {
    color: var(--docs-text-soft);
    line-height: 1.5;
    font-size: 0.9rem;
}

.docs-entry-children {
    display: grid;
    gap: 0.4rem;
    padding-top: 0.65rem;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(49, 70, 95, 0.45);
}

.docs-update-list {
    display: grid;
    gap: 0.8rem;
}

.docs-changelog-card {
    border: 1px solid rgba(49, 70, 95, 0.45);
    background: rgba(11, 18, 27, 0.44);
}

.docs-changelog-card--grouped {
    padding: 0.8rem 0.9rem;
}

.docs-changelog-groups {
    display: grid;
    gap: 0.7rem;
}

.docs-changelog-group {
    display: grid;
    gap: 0.45rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(49, 70, 95, 0.22);
}

.docs-changelog-group:first-child {
    padding-top: 0;
    border-top: 0;
}

.docs-changelog-group__body {
    display: grid;
    gap: 0.32rem;
}

.docs-changelog-entry {
    position: relative;
    padding-left: 0.9rem;
    color: var(--docs-text);
}

.docs-changelog-entry::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border: 1px solid rgba(103, 213, 255, 0.45);
    background: rgba(103, 213, 255, 0.14);
}

.docs-changelog-entry > :first-child {
    margin-top: 0;
}

.docs-changelog-entry > :last-child {
    margin-bottom: 0;
}

.docs-changelog-entry p,
.docs-changelog-entry ul,
.docs-changelog-entry ol {
    color: var(--docs-text-soft);
    line-height: 1.45;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 0;
}

.docs-changelog-entry ul,
.docs-changelog-entry ol {
    padding-left: 1rem;
}

.docs-changelog-list,
.docs-changelog-item {
    display: grid;
}

.docs-changelog-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.25rem;
    padding: 0.32rem 0.62rem;
    border: 1px solid rgba(49, 70, 95, 0.6);
    background: rgba(11, 18, 27, 0.78);
    color: var(--docs-text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.docs-changelog-badge--added {
    border-color: rgba(61, 191, 123, 0.55);
    color: #9ae4bd;
    background: rgba(18, 54, 36, 0.55);
}

.docs-changelog-badge--changed {
    border-color: rgba(91, 151, 255, 0.55);
    color: #9fc2ff;
    background: rgba(20, 37, 66, 0.58);
}

.docs-changelog-badge--improved {
    border-color: rgba(80, 194, 216, 0.55);
    color: #9be2ee;
    background: rgba(15, 49, 58, 0.56);
}

.docs-changelog-badge--fixed {
    border-color: rgba(214, 177, 79, 0.55);
    color: #f0d590;
    background: rgba(60, 45, 16, 0.58);
}

.docs-changelog-badge--removed {
    border-color: rgba(219, 104, 104, 0.55);
    color: #f2adad;
    background: rgba(63, 23, 23, 0.6);
}

.docs-changelog-badge--deprecated {
    border-color: rgba(181, 121, 221, 0.55);
    color: #d8b1f0;
    background: rgba(49, 26, 66, 0.58);
}

.docs-update-groups {
    display: grid;
    gap: 0.8rem;
}

.docs-update-group {
    border: 1px solid rgba(49, 70, 95, 0.45);
    background: rgba(11, 18, 27, 0.44);
}

.docs-update-group__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
    cursor: pointer;
    list-style: none;
}

.docs-update-group__summary::-webkit-details-marker {
    display: none;
}

.docs-update-group__title {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--docs-text);
}

.docs-update-group__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    min-height: 1.75rem;
    padding: 0.2rem 0.45rem;
    color: var(--docs-text-muted);
    border: 1px solid rgba(49, 70, 95, 0.55);
    background: rgba(11, 18, 27, 0.72);
    font-size: 0.8rem;
}

.docs-update-group .docs-update-list {
    gap: 0;
    padding: 0;
    border-top: 1px solid rgba(49, 70, 95, 0.32);
}

.docs-update-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    padding: 0.8rem 0.95rem;
    align-items: center;
    border-top: 1px solid rgba(49, 70, 95, 0.18);
}

.docs-update-group .docs-update-row:first-child {
    border-top: 0;
}

.docs-update-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-end;
}

.docs-update-row__meta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.docs-update-row__meta span {
    padding: 0.28rem 0.48rem;
    border: 1px solid rgba(49, 70, 95, 0.55);
    background: rgba(11, 18, 27, 0.72);
}

.docs-update-row__date {
    margin-left: auto;
}

.docs-update-row__body {
    display: flex;
    align-items: center;
    min-width: 0;
}

.docs-update-row__body h3,
.docs-update-row__body p {
    margin: 0;
}

.docs-update-row__body h3 {
    min-width: 0;
    font-size: 0.92rem;
}

.docs-update-row__body h3 a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.docs-update-row__body p {
    display: none;
}

.docs-home-values {
    padding: 1.2rem 0 0;
    border-top: 1px solid rgba(49, 70, 95, 0.5);
}

.docs-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.docs-value-card {
    padding: 1rem 1.05rem;
}

.docs-product-hero,
.docs-release-header {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
    gap: 1.4rem;
    padding: 1.8rem 2.1rem 2rem;
    background:
        linear-gradient(180deg, rgba(103, 213, 255, 0.06), transparent 8rem),
        linear-gradient(180deg, rgba(18, 29, 42, 0.95), rgba(11, 18, 27, 0.95));
    border: 1px solid var(--docs-line);
    box-shadow: var(--docs-shadow);
}

.docs-product-page {
    gap: 1.35rem;
}

.docs-release-page {
    gap: 1.35rem;
}

.docs-release-page > .docs-product-banner + .docs-release-header {
    margin-top: -1.35rem;
}

.docs-product-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.docs-product-hero-stack {
    display: grid;
    gap: 0;
}

.docs-product-banner {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    border: 1px solid var(--docs-line);
    background: linear-gradient(180deg, rgba(18, 29, 42, 0.95), rgba(11, 18, 27, 0.95));
    box-shadow: var(--docs-shadow);
}

.docs-product-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(5, 8, 12, 0.8), rgba(5, 8, 12, 0.1) 28%, rgba(5, 8, 12, 0) 52%),
        linear-gradient(180deg, rgba(5, 8, 12, 0.18) 0%, rgba(5, 8, 12, 0.34) 38%, rgba(5, 8, 12, 0.78) 100%),
        linear-gradient(90deg, rgba(6, 11, 18, 0.72) 0%, rgba(10, 18, 28, 0.4) 36%, rgba(10, 18, 28, 0.08) 68%, rgba(6, 11, 18, 0.3) 100%);
}

.docs-product-banner img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 270px;
    max-height: 310px;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.08) brightness(0.78);
}

.docs-product-banner--video {
    display: block;
    min-height: 0;
    padding: 0;
    background: #05080c;
    box-shadow: 0 16px 34px rgba(4, 8, 14, 0.34);
}

.docs-product-banner--video::after {
    display: none;
}

.docs-product-banner__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #05080c;
}

.docs-product-banner__video iframe,
.docs-product-banner__video video,
.docs-product-banner__video embed,
.docs-product-banner__video object {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.docs-product-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
    text-align: center;
}

.docs-product-banner__inner {
    width: min(100%, 62rem);
}

.docs-product-banner__content h1 {
    margin: 0;
    font-size: clamp(2.3rem, 4.6vw, 4.25rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.docs-product-banner__meta {
    margin-top: 1rem;
    margin-bottom: 0;
    justify-content: center;
}

.docs-product-hero h1,
.docs-release-header h1,
.docs-article__header h1 {
    margin: 0.35rem 0 0.95rem;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.docs-product-page__grid,
.docs-release-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.95fr);
    gap: 1.25rem;
}

.docs-product-page__content--full {
    grid-column: 1 / -1;
}

.docs-technical-overview .docs-section-heading {
    margin-bottom: 1rem;
}

.docs-technical-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.docs-technical-card {
    display: grid;
    grid-column: span 2;
    gap: 0.7rem;
    padding: 1rem 1.05rem;
    background: rgba(13, 20, 30, 0.74);
    border: 1px solid rgba(49, 70, 95, 0.45);
    border-top: 1px solid rgba(103, 213, 255, 0.2);
}

.docs-technical-card:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
}

.docs-technical-card:nth-last-child(2):nth-child(3n + 1),
.docs-technical-card:last-child:nth-child(3n + 2) {
    grid-column: span 3;
}

.docs-technical-card h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.25;
}

.docs-technical-card__body {
    color: var(--docs-text-soft);
    font-size: 0.93rem;
    line-height: 1.68;
}

.docs-technical-card__body > *:first-child {
    margin-top: 0;
}

.docs-technical-card__body > *:last-child {
    margin-bottom: 0;
}

.docs-technical-card__body ul,
.docs-technical-card__body ol {
    padding-left: 1.1rem;
}

.docs-technical-card__body li + li {
    margin-top: 0.28rem;
}

.docs-info-stack,
.docs-release-selector-panel {
    display: grid;
    gap: 0.9rem;
    height: fit-content;
}

.docs-product-hero__details {
    display: grid;
    gap: 1rem;
}

.docs-context-row--hero {
    margin-bottom: 1rem;
}

.docs-product-hero {
    border-top: 0;
    box-shadow: none;
    background:
        linear-gradient(180deg, rgba(16, 26, 38, 0.98), rgba(11, 18, 27, 0.98));
}

.docs-product-hero--standalone {
    border-top: 1px solid var(--docs-line);
    box-shadow: var(--docs-shadow);
}

.docs-product-hero__main {
    padding-right: 0;
}

.docs-product-hero__summary {
    line-height: 1.62;
}

.docs-product-hero__aside--inline {
    padding-bottom: 0;
    border-bottom: 1px solid rgba(49, 70, 95, 0.45);
}

.docs-info-stack--inline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.docs-info-stack > div,
.docs-sidebar__meta-item {
    display: grid;
    gap: 0.28rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(49, 70, 95, 0.45);
}

.docs-info-stack--inline > div {
    padding: 0 1rem 0.5rem 0;
    grid-template-rows: auto 2rem;
    align-content: start;
    border-bottom: 0;
    border-right: 1px solid rgba(49, 70, 95, 0.45);
    justify-items: center;
    text-align: center;
}

.docs-info-stack--inline > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.docs-info-stack > div:last-child,
.docs-sidebar__meta-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.docs-release-index {
    display: grid;
    gap: 0.9rem;
}

.docs-release-row {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(180px, 0.9fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
}

.docs-release-index--table {
    gap: 0;
    border: 1px solid var(--docs-line);
    background: rgba(13, 21, 31, 0.78);
}

.docs-release-row--compact {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    align-items: center;
    padding: 0.9rem;
    border-bottom: 1px solid rgba(49, 70, 95, 0.32);
    background: transparent;
}

.docs-release-row--compact:last-child {
    border-bottom: 0;
}

.docs-release-row__main {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.docs-release-row__content {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.docs-release-row__title {
    display: block;
    min-width: 0;
}

.docs-release-row__meta-line {
    margin: 0;
    color: var(--docs-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.01em;
    line-height: 1.45;
}

.docs-release-row__title .docs-release-row__meta-line,
.docs-release-row__meta-line-clean {
    display: none;
}

.docs-release-row__badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.32rem;
    align-items: center;
}

.docs-release-row__summary {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    min-width: 0;
    align-items: flex-start;
}

.docs-release-row--compact .docs-release-row__summary p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--docs-text-soft);
}

.docs-release-row__date {
    margin: 0;
    flex: 0 0 auto;
    color: var(--docs-text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.docs-release-row__title h3 {
    margin: 0;
}

.docs-release-row__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    align-self: center;
    margin-left: auto;
}

.docs-release-row__badges .docs-badge,
.docs-release-row__badges .docs-chip {
    justify-content: center;
    text-align: center;
}

@media (max-width: 900px) {
    .docs-release-row--compact {
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
    }

    .docs-release-row__main,
    .docs-release-row__content {
        gap: 0.55rem;
    }

    .docs-release-row__badges {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        align-items: center;
    }

    .docs-release-row__main {
        flex-basis: 100%;
    }

    .docs-release-row__actions {
        margin-left: 0;
    }

    .docs-release-row__actions {
        align-self: start;
    }
}

.docs-inline-field {
    display: grid;
    gap: 0.5rem;
}

.docs-release-header__aside {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.docs-release-header__aside .docs-release-selector-panel {
    min-width: 13rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.docs-release-switcher-select {
    width: auto;
    min-width: 13rem;
    max-width: 100%;
    padding: 0.72rem 2.4rem 0.72rem 0.9rem;
    color: var(--docs-text);
    border: 1px solid rgba(49, 70, 95, 0.55);
    background-color: rgba(13, 20, 30, 0.84);
    background-image:
        linear-gradient(180deg, rgba(103, 213, 255, 0.05), rgba(103, 213, 255, 0)),
        linear-gradient(45deg, transparent 50%, var(--docs-text-muted) 50%),
        linear-gradient(135deg, var(--docs-text-muted) 50%, transparent 50%);
    background-position:
        0 0,
        calc(100% - 1.05rem) calc(50% - 0.12rem),
        calc(100% - 0.7rem) calc(50% - 0.12rem);
    background-size:
        auto,
        0.38rem 0.38rem,
        0.38rem 0.38rem;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
    font-size: 0.9rem;
    line-height: 1.2;
    transition: border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.docs-release-switcher-select:hover,
.docs-release-switcher-select:focus {
    border-color: rgba(103, 213, 255, 0.42);
    background-color: rgba(16, 25, 37, 0.92);
    outline: none;
}

.docs-sidebar .docs-release-switcher-select {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0.82rem 2.5rem 0.82rem 0.9rem;
    color: var(--docs-text);
    -webkit-text-fill-color: var(--docs-text);
    background-color: #0e1621;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--docs-text-muted) 50%),
        linear-gradient(135deg, var(--docs-text-muted) 50%, transparent 50%);
    background-position:
        calc(100% - 1.05rem) calc(50% - 0.12rem),
        calc(100% - 0.7rem) calc(50% - 0.12rem);
    background-size:
        0.38rem 0.38rem,
        0.38rem 0.38rem;
    background-repeat: no-repeat;
    border: 1px solid var(--docs-line);
    box-shadow: none;
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.2;
}

.docs-sidebar .docs-release-switcher-select option {
    color: #e6eef8;
    background: #0e1621;
}

.docs-layout {
    display: grid;
    grid-template-columns: var(--docs-sidebar-width) minmax(0, 1fr);
    gap: var(--docs-layout-gap);
    align-items: start;
    padding: 0 var(--docs-shell-padding) var(--docs-shell-padding) 0;
}

.single-doc_article .docs-layout {
    min-height: calc(100vh - 3.9rem);
}

.docs-layout__sidebar {
    position: sticky;
    top: var(--docs-sticky-offset, 3.9rem);
    align-self: stretch;
}

.docs-sidebar,
.docs-toc {
    background: linear-gradient(180deg, rgba(18, 29, 42, 0.98), rgba(11, 18, 27, 0.98));
    border: 1px solid var(--docs-line);
}

.docs-sidebar {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    border-left: 0;
}

.docs-sidebar-mobile-trigger,
.docs-sidebar__backdrop,
.docs-sidebar__close {
    display: none;
}

html.docs-sidebar-overlay-open,
html.docs-sidebar-overlay-open body {
    overflow: hidden;
}

.single-doc_article .docs-layout__sidebar {
    top: var(--docs-sticky-offset, 3.9rem);
    height: calc(100vh - var(--docs-sticky-offset, 3.9rem));
    align-self: start;
}

.single-doc_article .docs-layout__sidebar .docs-sidebar {
    height: calc(100vh - var(--docs-sticky-offset, 3.9rem));
    min-height: calc(100vh - var(--docs-sticky-offset, 3.9rem));
}

.admin-bar.single-doc_article .docs-layout__sidebar {
    top: var(--docs-sticky-offset, 5.9rem);
    height: calc(100vh - var(--docs-sticky-offset, 5.9rem));
}

.admin-bar.single-doc_article .docs-layout__sidebar .docs-sidebar {
    height: calc(100vh - var(--docs-sticky-offset, 5.9rem));
    min-height: calc(100vh - var(--docs-sticky-offset, 5.9rem));
}

.docs-sidebar__brand {
    position: relative;
    padding: 1rem 1rem 0.95rem;
    border-bottom: 1px solid var(--docs-line);
    background: linear-gradient(180deg, rgba(103, 213, 255, 0.08), rgba(103, 213, 255, 0));
}

.docs-sidebar__brand-title {
    display: block;
    margin-top: 0.24rem;
    font-size: 1.02rem;
}

.docs-sidebar__brand-subtitle {
    margin: 0.4rem 0 0;
    color: var(--docs-text-soft);
    font-size: 0.9rem;
}

.docs-sidebar__section {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--docs-line);
}

.docs-sidebar__field {
    display: grid;
    gap: 0.42rem;
}

.docs-sidebar__field + .docs-sidebar__field {
    margin-top: 0.85rem;
}

.docs-nav-tree {
    padding: 0.95rem 1rem 1rem;
}

.docs-nav-tree__label {
    margin-bottom: 0.85rem;
    color: var(--docs-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
}

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

.docs-nav-tree__list--nested {
    margin-left: 0.7rem;
    padding-left: 0.85rem;
    border-left: 1px solid rgba(49, 70, 95, 0.42);
}

.docs-nav-tree__item > a,
.docs-toc__list a {
    display: block;
    padding: 0.45rem 0;
    color: var(--docs-text-soft);
    line-height: 1.45;
    font-size: 0.93rem;
    border-left: 2px solid transparent;
    padding-left: 0.7rem;
}

.docs-nav-tree__item > a:hover,
.docs-toc__list a:hover {
    color: var(--docs-text) !important;
}

.docs-nav-tree__item.is-active > a {
    color: var(--docs-accent-strong);
    font-weight: 700;
}

.docs-nav-tree__item.is-active > a::before {
    content: "";
    display: inline-block;
    width: 0.7rem;
    height: 1px;
    margin-right: 0.45rem;
    vertical-align: middle;
    background: var(--docs-accent);
}

.docs-explorer-tree {
    padding: 0.35rem 0;
}

.docs-explorer-tree__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.docs-explorer-tree__list--nested {
    position: relative;
    margin-left: 0.45rem;
    padding-left: 1.1rem;
}

.docs-explorer-tree__list--nested::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0.95rem;
    left: 0.34rem;
    width: 1px;
    background: rgba(72, 102, 138, 0.5);
}

.docs-explorer-tree__list--nested.docs-explorer-tree__list--single-child::before {
    top: 0;
    bottom: auto;
    height: 1.1rem;
}

.docs-explorer-tree__item {
    margin: 0;
}

.docs-explorer-tree__row {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 2rem;
}

.docs-explorer-tree__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 1.35rem;
}

.docs-explorer-tree__toggle {
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
    color: var(--docs-text-muted);
    cursor: pointer;
    transition: color 120ms ease;
}

.docs-explorer-tree__toggle:hover,
.docs-explorer-tree__toggle:focus {
    color: var(--docs-text);
    outline: none;
}

.docs-explorer-tree__chevron {
    width: 0.42rem;
    height: 0.42rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 140ms ease;
}

.docs-explorer-tree__item.is-expanded > .docs-explorer-tree__row .docs-explorer-tree__chevron {
    transform: rotate(45deg);
}

.docs-explorer-tree__item.has-children:not(.is-expanded) > .docs-explorer-tree__row .docs-explorer-tree__chevron {
    transform: rotate(-45deg);
}

.docs-explorer-tree__link {
    position: relative;
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.42rem 0.6rem 0.42rem 0.3rem;
    color: var(--docs-text-soft);
    line-height: 1.35;
    font-size: 0.92rem;
    transition: color 120ms ease, background 120ms ease, border-color 120ms ease;
    border: 1px solid transparent;
}

.docs-explorer-tree__row:hover .docs-explorer-tree__link {
    color: var(--docs-text);
    background: rgba(13, 20, 30, 0.68);
    border-color: rgba(49, 70, 95, 0.38);
}

.docs-explorer-tree__row:hover .docs-explorer-tree__toggle {
    color: var(--docs-text);
}

.docs-explorer-tree__link:hover {
    color: var(--docs-text);
    background: rgba(13, 20, 30, 0.68);
    border-color: rgba(49, 70, 95, 0.38);
}

.docs-explorer-tree__list--nested > .docs-explorer-tree__item > .docs-explorer-tree__row .docs-explorer-tree__link {
    font-size: 0.88rem;
    padding-top: 0.34rem;
    padding-bottom: 0.34rem;
}

.docs-explorer-tree__list--nested > .docs-explorer-tree__item > .docs-explorer-tree__row {
    position: relative;
}

.docs-explorer-tree__list--nested > .docs-explorer-tree__item > .docs-explorer-tree__row::before {
    content: "";
    position: absolute;
    left: -0.76rem;
    top: 50%;
    width: 0.72rem;
    height: 1px;
    background: rgba(72, 102, 138, 0.5);
    transform: translateY(-50%);
}

.docs-explorer-tree__item.has-children > .docs-explorer-tree__row .docs-explorer-tree__link {
    font-weight: 600;
}

.docs-explorer-tree > .docs-explorer-tree__list > .docs-explorer-tree__item:not(.has-children) > .docs-explorer-tree__row .docs-explorer-tree__link {
    margin-left: 1.35rem;
}

.docs-explorer-tree__item.is-expanded > .docs-explorer-tree__row .docs-explorer-tree__link {
    color: var(--docs-text);
}

.docs-explorer-tree__item.has-children:not(.is-expanded) > .docs-explorer-tree__list--nested {
    display: none;
}

.docs-layout__content {
    min-width: 0;
    width: min(100%, var(--docs-page-shell-width));
    margin: 0 auto;
    transform: translateX(calc(-1 * var(--docs-main-applied-shift, 0px)));
    padding-top: var(--docs-shell-padding);
}

.docs-article {
    padding: 0 0 1rem;
}

.docs-article__header {
    padding: 0 0 1.4rem;
    border-bottom: 1px solid rgba(49, 70, 95, 0.45);
}

.docs-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: 1rem;
}

.docs-breadcrumbs a {
    color: var(--docs-text-soft);
}

.docs-article__summary {
    max-width: 60ch;
    margin: 0;
    font-size: clamp(0.92rem, 0.86rem + 0.24vw, 1rem);
    color: var(--docs-text-soft);
    line-height: 1.7;
}

.docs-context-row--article {
    margin-top: 1.05rem;
}

.docs-article__notice {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(12, 18, 27, 0.88);
    border-left: 3px solid #d6a54a;
    border-top: 1px solid var(--docs-line);
    border-right: 1px solid var(--docs-line);
    border-bottom: 1px solid var(--docs-line);
}

.docs-article__notice p {
    margin: 0;
    color: var(--docs-text-soft);
    line-height: 1.68;
    font-size: 0.93rem;
}

.docs-article__content {
    min-width: 0;
    padding-top: 1.6rem;
}

.docs-article__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--docs-toc-width);
    gap: var(--docs-article-body-gap);
    align-items: start;
}

.docs-article__toc {
    position: sticky;
    top: 6.5rem;
    align-self: start;
    padding-top: 1.6rem;
}

.entry-content {
    max-width: none;
}

.docs-product-page__content .entry-content {
    max-width: none;
}

.docs-product-page .docs-section-heading {
    margin-bottom: 0;
}

.docs-product-page__content .entry-content > *:first-child,
.docs-product-page__content .entry-content > p:first-child {
    margin-top: 0;
}

.entry-content > * + * {
    margin-top: 1.05rem;
}

.entry-content p,
.entry-content li,
.entry-content blockquote {
    color: #d8e3f0;
    font-size: clamp(0.96rem, 0.9rem + 0.22vw, 1.05rem);
    line-height: 1.82;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2.2rem;
    margin-bottom: 0.78rem;
    line-height: 1.16;
    scroll-margin-top: calc(var(--docs-sticky-offset, 3.9rem) + 1rem);
}

.entry-content h2 {
    font-size: clamp(1.28rem, 1.12rem + 0.7vw, 1.5rem);
}

.entry-content h3 {
    font-size: clamp(1.08rem, 1rem + 0.4vw, 1.18rem);
}

.entry-content h4 {
    font-size: clamp(0.98rem, 0.94rem + 0.2vw, 1.04rem);
}

.entry-content a {
    color: var(--docs-accent-strong);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.entry-content hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid var(--docs-line);
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.2rem;
}

.entry-content blockquote {
    margin: 1.5rem 0;
    padding: 0.95rem 1.05rem;
    background: rgba(12, 18, 27, 0.85);
    border-left: 3px solid var(--docs-accent);
}

@media (max-width: 1100px) {
    .entry-content p,
    .entry-content li,
    .entry-content blockquote {
        line-height: 1.76;
    }

    .entry-content h2,
    .entry-content h3,
    .entry-content h4 {
        margin-top: 2rem;
    }
}

@media (max-width: 820px) {
    .docs-article__summary {
        font-size: 0.94rem;
    }

    .entry-content p,
    .entry-content li,
    .entry-content blockquote {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .entry-content h2 {
        font-size: 1.22rem;
    }

    .entry-content h3 {
        font-size: 1.05rem;
    }

    .entry-content h4 {
        font-size: 0.96rem;
    }
}

.entry-content pre {
    overflow-x: auto;
    padding: 1rem 1.05rem;
    background: #07111b;
    border: 1px solid #1c2d41;
}

.entry-content pre.wp-block-code.docs-code-block__native {
    display: none;
}

.docs-code-block {
    margin: 1.6rem 0;
    border: 1px solid #2a3b53;
    background: #181c22;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.docs-code-block__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 3.15rem;
    padding: 0.7rem 0.85rem;
    background:
        linear-gradient(180deg, rgba(103, 213, 255, 0.06) 0%, rgba(103, 213, 255, 0) 100%),
        linear-gradient(180deg, #1f2b3b 0%, #182230 100%);
    border-bottom: 1px solid rgba(49, 70, 95, 0.55);
}

.docs-code-block__dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.docs-code-block__dots span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
}

.docs-code-block__dots span:nth-child(1) {
    background: #ff7b60;
}

.docs-code-block__dots span:nth-child(2) {
    background: #f5c451;
}

.docs-code-block__dots span:nth-child(3) {
    background: #62d26f;
}

.docs-code-block__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: auto;
}

.docs-code-block__language {
    padding: 0.18rem 0.5rem;
    color: var(--docs-text-soft);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    border: 1px solid rgba(49, 70, 95, 0.7);
    background: rgba(10, 16, 25, 0.42);
}

.docs-code-block__copy {
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    color: var(--docs-text);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(49, 70, 95, 0.7);
    background: rgba(10, 16, 25, 0.58);
    cursor: pointer;
    transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.docs-code-block__copy:hover,
.docs-code-block__copy:focus {
    color: var(--docs-accent-strong);
    border-color: rgba(103, 213, 255, 0.45);
    background: rgba(15, 25, 36, 0.82);
    outline: none;
}

.docs-code-block__content {
    padding: 0.8rem 0;
    max-height: 32rem;
    overflow-y: auto;
    overflow-x: auto;
    background: #181c22;
}

.docs-code-line {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: start;
    font-family: var(--docs-code);
    font-size: 0.98rem;
    line-height: 1.8;
    white-space: pre;
}

.docs-code-line__number {
    padding: 0 0.85rem 0 0.9rem;
    text-align: right;
    color: #7f8aa1;
    border-right: 1px solid rgba(127, 138, 161, 0.18);
    user-select: none;
    font-size: 13px;
}

.docs-code-line__code {
    display: block;
    padding: 0 1rem 0 0.85rem;
    color: #e6edf78c;
    font-size: 13px;
}

.docs-code-token--keyword {
    color: #b79cff;
}

.docs-code-token--type {
    color: #9a7bff;
}

.docs-code-token--function {
    color: #2eb697;
}

.docs-code-token--string {
    color: #f4b183;
}

.docs-code-token--number {
    color: #c3df79;
}

.docs-code-token--comment {
    color: #7edb76;
    font-style: italic;
}

.docs-code-token--macro {
    color: #69a8ff;
}

.docs-code-token--member {
    color: #66d5ff;
}

.entry-content :not(pre) > code {
    padding: 0.12rem 0.35rem;
    color: #d9f3ff;
    background: #141414;
    border: 1px solid #2f2f2f;
    font-size: 13px;
    font-weight: 400;
}

.entry-content table {
    width: 100%;
    margin: 1.6rem 0;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    padding: 0.82rem 0.86rem;
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--docs-line);
}

.entry-content th {
    background: #0f1722;
}

.entry-content figure {
    margin: 1.8rem 0;
}

.entry-content figcaption {
    margin-top: 0.6rem;
    color: var(--docs-text-muted);
    font-size: 0.9rem;
}

.entry-content .wp-block-image img,
.entry-content figure img {
    width: 100%;
    border: 1px solid var(--docs-line);
}

.entry-content .wp-block-talae-callout,
.entry-content .wp-block-talae-api-note,
.entry-content .wp-block-talae-warning-note,
.entry-content .docs-callout {
    margin: 1.5rem 0;
    padding: 1rem 1.1rem;
    background: rgba(12, 18, 27, 0.88);
    border-left: 3px solid var(--docs-accent);
    border-top: 1px solid var(--docs-line);
    border-right: 1px solid var(--docs-line);
    border-bottom: 1px solid var(--docs-line);
}

.entry-content .wp-block-talae-warning-note {
    border-left-color: var(--docs-warning);
}

.entry-content .wp-block-talae-api-note {
    border-left-color: var(--docs-accent);
}

.entry-content .wp-block-talae-steps ol {
    counter-reset: talae-steps;
    list-style: none;
    padding-left: 0;
}

.entry-content .wp-block-talae-steps li {
    position: relative;
    padding-left: 2.3rem;
}

.entry-content .wp-block-talae-steps li::before {
    counter-increment: talae-steps;
    content: counter(talae-steps);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.45rem;
    height: 1.45rem;
    display: inline-grid;
    place-items: center;
    color: var(--docs-accent-strong);
    background: rgba(13, 20, 30, 0.9);
    border: 1px solid var(--docs-line-strong);
    font-size: 0.78rem;
    font-weight: 700;
}

.docs-feedback-strip {
    margin-top: 2rem;
    padding: 0.95rem 1rem;
}

.docs-article__pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.docs-pager-card {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
}

.docs-pager-card span {
    color: var(--docs-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.docs-pager-card a {
    font-size: 1rem;
}

.docs-pager-card--next {
    text-align: right;
}

.docs-article__toc[hidden] {
    display: none;
}

.docs-toc {
    padding: 1rem 0;
    margin-top: 0;
}

.docs-toc__eyebrow {
    margin: 0 0 0.9rem;
    padding-left: 1rem;
}

.docs-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.docs-toc__list li + li {
    margin-top: 0.14rem;
}

.docs-toc__list a {
    padding-top: 0.16rem;
    padding-bottom: 0.16rem;
}

.docs-toc__list a.is-active {
    color: var(--docs-accent-strong) !important;
    font-weight: 400;
    border-left-color: var(--docs-accent-strong);
}

.docs-toc__list a.is-depth-3 {
    padding-left: 1.35rem;
    color: var(--docs-text-muted);
    font-size: 0.86rem;
}

.docs-layout__sidebar.is-collapsed {
    width: 86px;
    overflow: hidden;
}

.docs-layout__sidebar.is-collapsed .docs-sidebar__brand-title,
.docs-layout__sidebar.is-collapsed .docs-sidebar__brand-subtitle,
.docs-layout__sidebar.is-collapsed .docs-sidebar__section,
.docs-layout__sidebar.is-collapsed .docs-nav-tree {
    display: none;
}

.docs-layout__sidebar.is-collapsed .docs-sidebar__brand {
    border-bottom: 0;
}

.docs-search-overlay[hidden] {
    display: none;
}

.docs-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.docs-search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 12, 0.76);
    backdrop-filter: blur(6px);
}

.docs-search-overlay__panel {
    position: relative;
    width: min(840px, calc(100% - 2rem));
    margin: 4rem auto 0;
    background: rgba(8, 12, 18, 0.98);
    border: 1px solid rgba(49, 70, 95, 0.55);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.docs-search-overlay__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem 0.6rem;
}

.docs-search-overlay__tabs {
    display: flex;
    gap: 0.45rem;
}

.docs-search-overlay__tab {
    padding: 0.18rem 0.45rem;
    color: var(--docs-text-muted);
    background: rgba(18, 29, 42, 0.92);
    border: 1px solid rgba(49, 70, 95, 0.5);
    font-size: 0.76rem;
}

.docs-search-overlay__tab.is-active {
    color: #ecf8ff;
    background: rgba(103, 213, 255, 0.14);
    border-color: rgba(103, 213, 255, 0.35);
}

.docs-search-overlay__esc {
    padding: 0.18rem 0.46rem;
    color: var(--docs-text-soft);
    background: transparent;
    border: 1px solid rgba(49, 70, 95, 0.55);
    cursor: pointer;
}

.docs-search-overlay__field {
    padding: 0 1rem 0.9rem;
    border-bottom: 1px solid rgba(49, 70, 95, 0.42);
}

.docs-search-overlay__field input {
    width: 100%;
    padding: 0.75rem 0;
    color: var(--docs-text);
    font-size: 1rem;
    line-height: 1.1;
    background: transparent;
    border: 0;
    outline: 0;
}

.docs-search-overlay__results {
    max-height: min(60vh, 620px);
    overflow: auto;
}

.docs-search-overlay__list {
    display: grid;
}

.docs-search-hit {
    border-top: 1px solid rgba(49, 70, 95, 0.28);
}

.docs-search-hit__link {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0.85rem 1rem;
}

.docs-search-hit__rail {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    gap: 0.4rem;
}

.docs-search-hit__icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: var(--docs-text-muted);
    font-size: 0.72rem;
    line-height: 1;
}

.docs-search-hit__line {
    width: 1px;
    height: 100%;
    background: rgba(49, 70, 95, 0.45);
}

.docs-search-hit__body {
    display: grid;
    gap: 0.28rem;
}

.docs-search-hit__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
    align-items: center;
}

.docs-search-hit__body h3 {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.3;
}

.docs-search-hit__meta {
    margin: 0;
    color: var(--docs-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.docs-search-hit__path {
    margin: 0;
    color: var(--docs-text-soft);
    font-size: 0.78rem;
    line-height: 1.4;
}

.docs-search-hit__excerpt {
    margin: 0;
    color: var(--docs-text-soft);
    line-height: 1.45;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.has-docs-search-open {
    overflow: hidden;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 1380px) {
    .docs-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: var(--docs-shell-padding);
    }

    .docs-layout__sidebar,
    .docs-article__toc {
        position: static;
    }

    .docs-layout__sidebar {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1202;
        height: 100dvh;
        min-height: 100dvh;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(0.75rem);
        transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
        overflow: hidden;
        background: #0b121b;
    }

    .docs-sidebar-mobile-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        position: sticky;
        top: var(--docs-sticky-offset, 3.9rem);
        z-index: 26;
        padding: 0.9rem 1rem;
        color: var(--docs-text);
        background: linear-gradient(180deg, rgba(18, 29, 42, 0.98), rgba(11, 18, 27, 0.98));
        border-top: 1px solid var(--docs-line);
        border-bottom: 1px solid var(--docs-line);
        border-left: 0;
        border-right: 0;
        text-align: left;
        cursor: pointer;
    }

    html.docs-sidebar-overlay-open .docs-sidebar-mobile-trigger {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .docs-sidebar-mobile-trigger__copy {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        min-width: 0;
    }

    .docs-sidebar-mobile-trigger__title {
        font-size: 0.98rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .docs-sidebar-mobile-trigger__meta {
        flex-shrink: 0;
    }

    .docs-sidebar-mobile-trigger__icon {
        width: 0.7rem;
        height: 0.7rem;
        border-right: 1.5px solid var(--docs-text-soft);
        border-bottom: 1.5px solid var(--docs-text-soft);
        transform: rotate(45deg);
        transition: transform 160ms ease;
        flex-shrink: 0;
        margin-right: 0.2rem;
    }

    html.docs-sidebar-overlay-open .docs-sidebar-mobile-trigger__icon {
        transform: rotate(-135deg);
    }

    .docs-sidebar__backdrop {
        display: none !important;
    }

    .docs-layout__sidebar .docs-sidebar {
        position: relative;
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        overflow-y: auto;
        overflow-x: hidden;
        border: 0;
        box-shadow: none;
        padding-top: 0.85rem;
        background: transparent;
    }

    .docs-layout__sidebar.is-mobile-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .docs-sidebar__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0.9rem;
        right: 0.9rem;
        width: 2rem;
        height: 2rem;
        padding: 0;
        color: var(--docs-text-soft);
        background: transparent;
        border: 0;
        font-size: 1.25rem;
        line-height: 1;
        cursor: pointer;
    }

    .docs-toc {
        margin-top: 1rem;
    }

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

    .docs-article__toc {
        display: none;
        padding-top: 0;
    }

    .docs-layout__content {
        width: 100%;
        margin: 0;
        transform: none;
        padding-top: 0;
    }

    .docs-product-page__grid,
    .docs-release-page__grid,
    .docs-home-discovery,
    .docs-product-hero,
    .docs-release-header,
    .docs-section-heading--inline {
        grid-template-columns: 1fr;
    }

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

    .docs-technical-card,
    .docs-technical-card:last-child:nth-child(3n + 1),
    .docs-technical-card:nth-last-child(2):nth-child(3n + 1),
    .docs-technical-card:last-child:nth-child(3n + 2) {
        grid-column: span 1;
    }

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

    .docs-update-row,
    .docs-release-row {
        grid-template-columns: 1fr;
    }

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

    .docs-changelog-badge {
        min-width: 0;
        justify-self: start;
    }

    .docs-pager-card--next {
        text-align: left;
    }
}

@media (max-width: 1180px) {
    .docs-home-hero__copy {
        text-align: center;
    }

    .docs-home-hero__actions {
        justify-content: center;
    }

    .docs-home-hero__aside {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        max-width: none;
        justify-items: center;
    }
}

@media (max-width: 820px) {
    .docs-sidebar-mobile-trigger {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 820px) {
    .docs-site-header,
    .docs-site-footer,
    .docs-layout,
    .docs-page,
    .docs-home {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .admin-bar .docs-site-header {
        top: 46px;
    }

    .docs-page,
    .docs-home {
        width: 100%;
    }

    #docs-products,
    #docs-updates,
    #docs-search {
        scroll-margin-top: 6.5rem;
    }

    .docs-home-hero,
    .docs-product-hero,
    .docs-release-header {
        padding: 1.4rem;
    }

    .docs-info-stack--inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem 1rem;
    }

    .docs-product-hero__aside--inline {
        padding-bottom: 0;
    }

    .docs-info-stack--inline > div {
        padding: 0 0 0.85rem;
        border-right: 0;
        border-bottom: 1px solid rgba(49, 70, 95, 0.45);
    }

    .docs-info-stack--inline > div:nth-last-child(-n+2) {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .docs-product-banner {
        min-height: 190px;
    }

    .docs-product-banner img {
        min-height: 190px;
        max-height: 220px;
    }

    .docs-product-banner__video {
        aspect-ratio: 16 / 9;
    }

    .docs-product-banner__content {
        padding: 1.4rem;
    }

    .docs-product-banner__content h1 {
        font-size: clamp(1.9rem, 9vw, 3rem);
    }

    .docs-home-hero__copy {
        min-width: 100%;
        max-width: none;
    }

    .docs-home-hero__aside {
        min-width: 100%;
        max-width: none;
        justify-items: center;
    }

    .docs-home-hero__metrics {
        justify-content: center;
    }

    .docs-home-hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.9rem);
        max-width: none;
    }

    .docs-home-hero__actions {
        justify-content: center;
    }

    .docs-info-stack--inline {
        grid-template-columns: 1fr;
    }

    .docs-info-stack--inline > div {
        padding: 0 0 0.8rem;
        border-bottom: 1px solid rgba(49, 70, 95, 0.45);
    }

    .docs-info-stack--inline > div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

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

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

    .docs-technical-card,
    .docs-technical-card:last-child:nth-child(3n + 1),
    .docs-technical-card:nth-last-child(2):nth-child(3n + 1),
    .docs-technical-card:last-child:nth-child(3n + 2) {
        grid-column: auto;
    }

    .docs-search-overlay__panel {
        width: calc(100% - 1rem);
        margin-top: 1rem;
    }

    .docs-search-overlay__field input {
        font-size: 1rem;
    }

    .docs-site-search-trigger {
        min-width: 0;
        width: auto;
        max-width: 100%;
    }

    .docs-site-search-trigger kbd {
        display: none;
    }

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