/* ============================================================
   Central de Ajuda — EAD Plataforma
   ============================================================ */

:root {
  --docs-purple: #720781;
  --docs-purple-bright: #9600ff;
  --docs-purple-dark: #240342;
  --docs-lilac: #f5eff8;
  --docs-pink: #fe00fe;
  --docs-green: #1d9b68;
  --docs-content: 760px;
  --docs-topbar-h: 68px;
  --docs-sidebar-w: 278px;
}

body {
  background: #fff;
  padding-top: 0;
}

body:has(.docs-home),
body:has(.docs-list-page),
body:has(.docs-search-page),
body:has(.docs-status-page) {
  background: #fbf9fc;
}

.site-header--minimal {
  position: relative;
  top: auto;
  height: var(--header-h);
  background: #fff;
}

.site-header--minimal .container {
  max-width: 1440px;
}

.site-header--minimal .logo img {
  height: 38px;
}

.site-footer--minimal {
  padding: 24px 0;
  background: var(--docs-purple-dark);
}

.footer-minimal-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.site-footer--minimal .footer-copy {
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .56);
}

/* ---------- Portal topbar ---------- */
.docs-topbar {
  position: sticky;
  top: 0;
  z-index: 45;
  height: var(--docs-topbar-h);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 20px rgba(36, 3, 66, .035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.docs-topbar-inner {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 238px minmax(280px, 570px) 1fr;
  align-items: center;
  gap: 28px;
}

.docs-portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  width: max-content;
}

.docs-portal-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--docs-purple), var(--docs-purple-bright));
  color: #fff;
  box-shadow: 0 8px 18px -9px rgba(124, 3, 142, .8);
}

.docs-portal-brand-icon .lu {
  width: 19px;
  height: 19px;
}

.docs-portal-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.14;
}

.docs-portal-brand strong {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 900;
}

.docs-portal-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.docs-top-search,
.docs-hero-search,
.docs-search-page-form,
.docs-inline-search {
  position: relative;
}

.docs-top-search {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e3d9e9;
  border-radius: 10px;
  background: #faf8fb;
  transition: border-color .18s, box-shadow .18s, background .18s;
}

.docs-top-search:focus-within {
  background: #fff;
  border-color: rgba(124, 3, 142, .52);
  box-shadow: 0 0 0 3px rgba(124, 3, 142, .09);
}

.docs-top-search .lu {
  width: 17px;
  height: 17px;
  color: var(--muted);
  flex: none;
}

.docs-top-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 500 14px var(--f-body);
}

.docs-top-search input::placeholder {
  color: #94859f;
}

.docs-top-search kbd {
  padding: 3px 6px;
  border: 1px solid #ded3e5;
  border-bottom-width: 2px;
  border-radius: 5px;
  background: #fff;
  color: #887695;
  font: 600 10px var(--f-body);
}

.docs-top-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.docs-top-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s, background .18s;
}

.docs-top-links a:hover,
.docs-top-links a.active {
  color: var(--docs-purple);
  background: rgba(124, 3, 142, .065);
}

.docs-top-links .docs-back-site {
  margin-left: 5px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  border-radius: 0 8px 8px 0;
  color: var(--muted);
}

.docs-top-links .lu {
  width: 14px;
  height: 14px;
}

/* ---------- Shared ---------- */
.docs-kicker,
.docs-update-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  border-radius: 999px;
  font-weight: 800;
}

.docs-kicker {
  padding: 7px 12px;
  border: 1px solid rgba(254, 0, 254, .24);
  background: rgba(254, 0, 254, .08);
  color: #f7bef7;
  font-size: 12px;
  letter-spacing: .035em;
}

.docs-kicker .lu,
.docs-update-badge .lu {
  width: 13px;
  height: 13px;
}

.docs-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}

.docs-section-heading > div > span,
.docs-list-hero > div > span,
.docs-page-heading > div > span,
.docs-search-heading > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--docs-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.docs-section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.docs-section-heading > p {
  max-width: 420px;
  padding-bottom: 2px;
  font-size: 15px;
}

.docs-heading-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  color: var(--docs-purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.docs-heading-link .lu {
  width: 16px;
  height: 16px;
  transition: transform .18s;
}

.docs-heading-link:hover .lu {
  transform: translateX(3px);
}

.docs-card-arrow {
  width: 18px;
  height: 18px;
  color: #a895b5;
  flex: none;
  transition: color .18s, transform .18s;
}

/* ---------- Docs home ---------- */
.docs-home-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 50% 118%, rgba(150, 0, 255, .34), transparent 43%),
    linear-gradient(138deg, #1c022f 0%, #31044e 48%, #200338 100%);
  color: #fff;
}

.docs-home-hero::before,
.docs-home-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.docs-home-hero::before {
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
          mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
}

.docs-home-hero::after {
  width: 320px;
  height: 320px;
  top: -190px;
  right: 3%;
  border: 1px solid rgba(254, 0, 254, .18);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(254, 0, 254, .1);
}

.docs-home-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  left: -220px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(150, 0, 255, .2);
  filter: blur(50px);
  pointer-events: none;
}

.docs-home-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.docs-home-hero h1 {
  max-width: 820px;
  margin: 18px auto 15px;
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  text-wrap: balance;
}

.docs-home-hero h1 span {
  color: #efb8ff;
}

.docs-home-hero > .container > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.55;
}

.docs-hero-search {
  display: flex;
  align-items: center;
  width: min(100%, 680px);
  height: 62px;
  margin-top: 30px;
  padding: 5px 5px 5px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 25px 60px -18px rgba(0, 0, 0, .55), 0 0 0 5px rgba(255, 255, 255, .055);
}

.docs-hero-search > .lu {
  width: 20px;
  height: 20px;
  color: #836e91;
  flex: none;
}

.docs-hero-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 13px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: 600 15px var(--f-body);
}

.docs-hero-search input::placeholder {
  color: #93829e;
}

.docs-hero-search button,
.docs-search-page-form button {
  height: 50px;
  padding: 0 23px;
  border: 0;
  border-radius: 11px;
  background: var(--docs-purple);
  color: #fff;
  cursor: pointer;
  font: 800 14px var(--f-body);
  transition: background .18s, transform .18s;
}

.docs-hero-search button:hover,
.docs-search-page-form button:hover {
  background: var(--docs-purple-bright);
}

.docs-home-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  font-weight: 600;
}

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

.docs-home-stats .lu {
  width: 14px;
  height: 14px;
  color: #dca2ee;
}

.docs-categories-section {
  padding: 72px 0 78px;
  background: #fbf9fc;
}

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

.docs-category-card {
  min-width: 0;
  padding: 21px;
  border: 1px solid #ebe3ef;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(36, 3, 66, .035);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.docs-category-card:hover {
  border-color: rgba(124, 3, 142, .26);
  box-shadow: 0 18px 34px -18px rgba(36, 3, 66, .25);
  transform: translateY(-2px);
}

.docs-category-card-head {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 17px;
  color: var(--ink);
  text-decoration: none;
}

.docs-category-icon,
.docs-list-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 3, 142, .11);
  background: linear-gradient(145deg, #f5ecf8, #fbf8fc);
  color: var(--docs-purple);
}

.docs-category-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
}

.docs-category-icon .lu {
  width: 21px;
  height: 21px;
}

.docs-category-card-head > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.docs-category-card-head strong {
  overflow: hidden;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 900;
  text-overflow: ellipsis;
}

.docs-category-card-head small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.docs-category-card:hover .docs-card-arrow {
  color: var(--docs-purple);
  transform: translate(2px, -2px);
}

.docs-category-card ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #f0eaf3;
  list-style: none;
}

.docs-category-card li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 9px 1px;
  border-bottom: 1px solid #f3edf5;
  color: #513e5e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.docs-category-card li a:hover {
  color: var(--docs-purple);
}

.docs-category-card li .lu {
  width: 14px;
  height: 14px;
  flex: none;
  color: #b7a8c0;
}

.docs-category-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--docs-purple);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.docs-category-more .lu {
  width: 14px;
  height: 14px;
  transition: transform .18s;
}

.docs-category-more:hover .lu {
  transform: translateX(3px);
}

.docs-updates-section {
  padding: 72px 0 78px;
  border-top: 1px solid #ede6f1;
  background: #fff;
}

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

.docs-update-card {
  position: relative;
  display: flex;
  min-height: 230px;
  padding: 23px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e9e1ee;
  border-radius: 15px;
  background: linear-gradient(155deg, #fff 35%, #faf6fc);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.docs-update-card::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  right: -46px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(150, 0, 255, .08);
  filter: blur(2px);
}

.docs-update-card:hover {
  border-color: rgba(124, 3, 142, .3);
  box-shadow: 0 18px 38px -22px rgba(36, 3, 66, .38);
  transform: translateY(-2px);
}

.docs-update-badge {
  padding: 5px 9px;
  background: rgba(124, 3, 142, .075);
  color: var(--docs-purple);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.docs-update-card h3 {
  margin: 17px 0 9px;
  font-size: 18px;
  line-height: 1.25;
}

.docs-update-card p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.docs-update-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  color: #93839f;
  font-size: 11px;
  font-weight: 650;
}

.docs-update-meta .lu {
  width: 16px;
  height: 16px;
  color: var(--docs-purple);
}

.docs-help-strip {
  padding: 31px 0;
  background: linear-gradient(135deg, var(--docs-purple-dark), #3a0752);
}

.docs-help-strip .container,
.docs-help-strip .container > div {
  display: flex;
  align-items: center;
}

.docs-help-strip .container {
  justify-content: space-between;
  gap: 28px;
}

.docs-help-strip .container > div {
  gap: 16px;
}

.docs-help-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  background: rgba(255, 255, 255, .075);
  color: #edb6f8;
}

.docs-help-icon .lu {
  width: 22px;
  height: 22px;
}

.docs-help-strip strong {
  display: block;
  color: #fff;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 900;
}

.docs-help-strip p {
  margin-top: 2px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.docs-help-strip .btn {
  height: 47px;
  padding: 0 19px;
  border-color: rgba(255, 255, 255, .8);
  background: #fff;
  color: var(--docs-purple-dark);
  box-shadow: none;
  font-size: 13px;
}

.docs-help-strip .btn:hover {
  border-color: #fff;
  background: #f7dfff;
  color: var(--docs-purple-dark);
}

/* ---------- Article navigation ---------- */
.docs-sidebar {
  position: sticky;
  top: var(--docs-topbar-h);
  z-index: 5;
  width: var(--docs-sidebar-w);
  height: calc(100vh - var(--docs-topbar-h));
  padding: 25px 18px 26px;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: #fcfbfd;
  scrollbar-width: thin;
  scrollbar-color: #d9ccdf transparent;
}

.docs-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 14px;
  color: #9b8ba5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.docs-sidebar-head button {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.docs-sidebar-head button .lu {
  width: 17px;
  height: 17px;
  margin: auto;
}

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

.docs-side-group {
  border-radius: 9px;
}

.docs-side-group summary {
  display: flex;
  min-height: 40px;
  padding: 8px 9px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  color: #4c3859;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
  transition: color .15s, background .15s;
}

.docs-side-group summary::-webkit-details-marker {
  display: none;
}

.docs-side-group summary:hover,
.docs-side-group[open] > summary {
  background: #f3ecf6;
  color: var(--docs-purple);
}

.docs-side-group summary > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.docs-side-group summary > span .lu {
  width: 16px;
  height: 16px;
  flex: none;
  color: #90779d;
}

.docs-side-group[open] summary > span .lu {
  color: var(--docs-purple);
}

.docs-side-chevron {
  width: 14px;
  height: 14px;
  flex: none;
  color: #aa99b5;
  transition: transform .16s;
}

.docs-side-group[open] > summary .docs-side-chevron {
  transform: rotate(180deg);
}

.docs-side-group-body {
  padding: 2px 0 8px 33px;
}

.docs-side-all {
  display: block;
  padding: 6px 8px;
  color: var(--docs-purple);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
}

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

.docs-side-pages .docs-side-pages {
  padding-left: 10px;
  border-left: 1px solid #eadfec;
}

.docs-side-pages a {
  position: relative;
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  color: #725f7e;
  text-decoration: none;
  font-size: 11px;
  font-weight: 620;
  line-height: 1.35;
  transition: color .15s, background .15s;
}

.docs-side-pages a:hover {
  color: var(--docs-purple);
  background: rgba(124, 3, 142, .05);
}

.docs-side-pages a.active {
  background: rgba(124, 3, 142, .09);
  color: var(--docs-purple);
  font-weight: 800;
}

.docs-side-pages a.active::before {
  content: '';
  position: absolute;
  width: 3px;
  inset: 7px auto 7px -4px;
  border-radius: 3px;
  background: var(--docs-purple);
}

.docs-side-changelog {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 5px 0;
  padding: 12px;
  border: 1px solid #eadfee;
  border-radius: 10px;
  background: linear-gradient(145deg, #f6eff8, #fff);
  color: var(--ink);
  text-decoration: none;
}

.docs-side-changelog > .lu {
  width: 18px;
  height: 18px;
  color: var(--docs-purple);
  flex: none;
}

.docs-side-changelog span {
  display: flex;
  flex-direction: column;
}

.docs-side-changelog strong {
  font-size: 11px;
  font-weight: 850;
}

.docs-side-changelog small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.docs-mobile-tools,
.docs-sidebar-backdrop {
  display: none;
}

/* ---------- Guide article ---------- */
.docs-article-layout {
  display: grid;
  grid-template-columns: var(--docs-sidebar-w) minmax(0, 1fr) 220px;
  max-width: 1440px;
  min-height: calc(100vh - var(--docs-topbar-h));
  margin: 0 auto;
}

.docs-article-main {
  min-width: 0;
  padding: 0 clamp(32px, 4vw, 68px) 74px;
}

.docs-article-main > .breadcrumbs,
.docs-list-main > .breadcrumbs {
  margin: 0 calc(-1 * clamp(32px, 4vw, 68px));
  padding-top: 22px;
}

.docs-article-main > .breadcrumbs ol,
.docs-list-main > .breadcrumbs ol {
  max-width: none;
  padding: 0 clamp(32px, 4vw, 68px);
}

.docs-article {
  width: 100%;
  max-width: var(--docs-content);
  margin: 0 auto;
}

.docs-article-header {
  padding: 48px 0 34px;
  border-bottom: 1px solid var(--line);
}

.docs-article-category {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--docs-purple);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.docs-article-header h1 {
  max-width: 760px;
  font-size: clamp(32px, 4.1vw, 46px);
  line-height: 1.06;
  text-wrap: balance;
}

.docs-article-header > p {
  max-width: 700px;
  margin-top: 14px;
  color: #6f5d7a;
  font-size: 17px;
  line-height: 1.55;
}

.docs-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #92829c;
  font-size: 11px;
  font-weight: 650;
}

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

.docs-article-meta .lu {
  width: 13px;
  height: 13px;
}

.docs-article-content {
  padding: 34px 0 20px;
  color: #41324b;
  font-size: 16px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

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

.docs-article-content > :last-child {
  margin-bottom: 0;
}

.docs-article-content h2,
.docs-article-content h3,
.docs-article-content h4 {
  position: relative;
  scroll-margin-top: calc(var(--docs-topbar-h) + 24px);
}

.docs-article-content h2 {
  margin: 42px 0 15px;
  padding-top: 4px;
  font-size: 27px;
  line-height: 1.22;
}

.docs-article-content h3 {
  margin: 31px 0 12px;
  font-size: 21px;
  line-height: 1.3;
}

.docs-article-content h4 {
  margin: 26px 0 10px;
  font-size: 17px;
}

.docs-article-content p {
  margin: 0 0 18px;
  color: #594863;
}

.docs-article-content a {
  color: var(--docs-purple);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.docs-article-content a:hover {
  color: var(--docs-purple-bright);
}

.docs-article-content ul,
.docs-article-content ol {
  margin: 0 0 20px;
  padding-left: 25px;
  color: #594863;
}

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

.docs-article-content li::marker {
  color: var(--docs-purple);
  font-weight: 800;
}

.docs-article-content strong {
  color: #33213d;
  font-weight: 850;
}

.docs-article-content blockquote {
  margin: 25px 0;
  padding: 17px 20px;
  border: 1px solid #e7dceb;
  border-left: 4px solid var(--docs-purple);
  border-radius: 0 11px 11px 0;
  background: #faf7fb;
}

.docs-article-content blockquote p:last-child {
  margin: 0;
}

.docs-article-content code {
  padding: 2px 6px;
  border: 1px solid #e4d9e9;
  border-radius: 5px;
  background: #f6f1f8;
  color: #6d087d;
  font: 600 .86em ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.docs-article-content pre {
  margin: 23px 0;
  padding: 18px 20px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  background: #210332;
  color: #f1e6f5;
}

.docs-article-content pre code {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: 13px;
  line-height: 1.65;
}

.docs-article-content img {
  height: auto;
  margin: 25px auto;
  border: 1px solid #e9e1ed;
  border-radius: 12px;
  box-shadow: 0 15px 36px -22px rgba(36, 3, 66, .34);
}

.docs-article-content figure {
  margin: 26px 0;
}

.docs-article-content figure img {
  margin: 0 auto;
}

.docs-article-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

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

.docs-article-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.docs-article-content th,
.docs-article-content td {
  padding: 11px 13px;
  border: 1px solid #e8dfed;
  text-align: left;
}

.docs-article-content th {
  background: #f7f2f9;
  color: var(--ink);
  font-weight: 800;
}

.docs-article-content iframe,
.docs-article-content video {
  max-width: 100%;
  border-radius: 12px;
}

.docs-article-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: var(--docs-content);
  margin: 45px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.docs-article-pagination a {
  display: flex;
  min-width: 0;
  padding: 16px;
  flex-direction: column;
  border: 1px solid #e8dfed;
  border-radius: 11px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .18s, background .18s;
}

.docs-article-pagination a:hover {
  border-color: rgba(124, 3, 142, .35);
  background: #fcf9fd;
}

.docs-article-pagination a.next {
  align-items: flex-end;
  text-align: right;
}

.docs-article-pagination a > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.docs-article-pagination .lu {
  width: 12px;
  height: 12px;
}

.docs-article-pagination strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-toc {
  position: sticky;
  top: var(--docs-topbar-h);
  height: calc(100vh - var(--docs-topbar-h));
  padding: 42px 24px 28px 0;
  overflow-y: auto;
}

.docs-toc > strong {
  display: block;
  margin-bottom: 13px;
  color: #917f9b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.docs-toc nav {
  display: flex;
  padding-left: 12px;
  flex-direction: column;
  border-left: 1px solid #e6dce9;
}

.docs-toc nav a {
  position: relative;
  padding: 5px 0;
  color: #85758f;
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  transition: color .15s;
}

.docs-toc nav a.level-3,
.docs-toc nav a.level-4 {
  padding-left: 10px;
}

.docs-toc nav a:hover,
.docs-toc nav a.active {
  color: var(--docs-purple);
}

.docs-toc nav a.active::before {
  content: '';
  position: absolute;
  width: 2px;
  inset: 5px auto 5px -13px;
  border-radius: 2px;
  background: var(--docs-purple);
}

.docs-toc-help {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--docs-purple);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
}

.docs-toc-help .lu {
  width: 14px;
  height: 14px;
}

/* ---------- Category ---------- */
.docs-category-layout {
  display: grid;
  grid-template-columns: var(--docs-sidebar-w) minmax(0, 1fr);
  max-width: 1440px;
  min-height: calc(100vh - var(--docs-topbar-h));
  margin: 0 auto;
}

.docs-list-main {
  min-width: 0;
  max-width: 980px;
  padding: 0 clamp(32px, 5vw, 72px) 80px;
}

.docs-list-hero,
.docs-page-heading,
.docs-search-heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.docs-list-hero {
  padding: 52px 0 31px;
  border-bottom: 1px solid var(--line);
}

.docs-list-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  flex: none;
}

.docs-list-icon .lu {
  width: 25px;
  height: 25px;
}

.docs-list-hero h1,
.docs-page-heading h1,
.docs-search-heading h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
}

.docs-list-hero p,
.docs-page-heading p,
.docs-search-heading p {
  max-width: 680px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.docs-guide-list {
  display: flex;
  margin-top: 25px;
  flex-direction: column;
}

.docs-guide-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 73px;
  margin-left: calc(var(--docs-depth, 0) * 20px);
  padding: 13px 15px;
  border-bottom: 1px solid #ede6f1;
  border-radius: 9px;
  color: var(--ink);
  text-decoration: none;
  transition: background .16s, color .16s;
}

.docs-guide-row:hover {
  background: #f8f3fa;
  color: var(--docs-purple);
}

.docs-guide-row-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #eadfec;
  border-radius: 9px;
  background: #fff;
  color: #92799e;
}

.docs-guide-row-icon .lu {
  width: 16px;
  height: 16px;
}

.docs-guide-row > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.docs-guide-row strong {
  font-size: 14px;
  font-weight: 800;
}

.docs-guide-row small {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.docs-guide-row > .lu {
  width: 16px;
  height: 16px;
  color: #b5a4bd;
}

/* ---------- Changelog ---------- */
.docs-list-page,
.docs-search-page,
.docs-status-page,
.docs-update-article-page {
  min-height: calc(100vh - var(--docs-topbar-h));
  padding-bottom: 80px;
  background: #fbf9fc;
}

.docs-list-container,
.docs-search-container,
.docs-update-article-container {
  max-width: 960px;
}

.docs-list-page .breadcrumbs,
.docs-search-page .breadcrumbs,
.docs-update-article-page .breadcrumbs,
.docs-status-page .breadcrumbs {
  background: transparent;
  padding-top: 22px;
}

.docs-list-page .breadcrumbs ol,
.docs-search-page .breadcrumbs ol,
.docs-update-article-page .breadcrumbs ol,
.docs-status-page .breadcrumbs ol {
  max-width: none;
  padding: 0;
}

.docs-page-heading,
.docs-search-heading {
  padding: 48px 0 32px;
}

.docs-page-heading--updates .docs-list-icon {
  border-color: rgba(150, 0, 255, .14);
  background: linear-gradient(145deg, #efe2f5, #fff);
}

.docs-changelog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.docs-changelog-row {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 142px;
  padding: 20px 23px;
  border: 1px solid #e9e1ed;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 4px 13px rgba(36, 3, 66, .025);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}

.docs-changelog-row:hover {
  border-color: rgba(124, 3, 142, .3);
  box-shadow: 0 16px 32px -22px rgba(36, 3, 66, .36);
  transform: translateY(-1px);
}

.docs-changelog-row:hover .docs-card-arrow {
  color: var(--docs-purple);
  transform: translate(2px, -2px);
}

.docs-changelog-row time {
  display: flex;
  height: 83px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #eadfed;
  border-radius: 11px;
  background: #faf6fb;
  line-height: 1;
}

.docs-changelog-row time span {
  color: var(--docs-purple);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.docs-changelog-row time strong {
  margin: 5px 0 4px;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 900;
}

.docs-changelog-row time small {
  color: #9b8da4;
  font-size: 9px;
}

.docs-changelog-copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
}

.docs-changelog-copy > strong {
  margin-top: 9px;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.docs-changelog-copy > small {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.docs-changelog-copy > em {
  display: none;
  margin-top: 7px;
  color: #9c8da5;
  font-size: 10px;
  font-style: normal;
}

.docs-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 28px;
  font-size: 12px;
}

.docs-pagination > span {
  color: var(--muted);
}

.docs-pagination a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--docs-purple);
  text-decoration: none;
  font-weight: 800;
}

.docs-pagination a:last-child {
  justify-self: end;
}

.docs-pagination .lu {
  width: 14px;
  height: 14px;
}

/* ---------- Changelog article ---------- */
.docs-update-article-page {
  background: #fff;
}

.docs-update-article-container {
  max-width: 890px;
}

.docs-article--update .docs-article-header {
  padding-top: 50px;
  text-align: center;
}

.docs-article--update .docs-update-badge {
  margin: 0 auto 17px;
  text-decoration: none;
}

.docs-article--update .docs-article-header h1 {
  margin: 0 auto;
}

.docs-article--update .docs-article-header > p {
  margin-right: auto;
  margin-left: auto;
}

.docs-article--update .docs-article-meta {
  justify-content: center;
}

.docs-back-updates {
  max-width: var(--docs-content);
  margin: 35px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.docs-back-updates a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--docs-purple);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.docs-back-updates .lu {
  width: 15px;
  height: 15px;
}

/* ---------- Search ---------- */
.docs-search-container {
  max-width: 900px;
}

.docs-search-page-form {
  display: flex;
  align-items: center;
  height: 58px;
  margin-bottom: 28px;
  padding: 4px 4px 4px 16px;
  border: 1px solid #e2d8e7;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 9px 25px -18px rgba(36, 3, 66, .32);
}

.docs-search-page-form:focus-within {
  border-color: rgba(124, 3, 142, .48);
  box-shadow: 0 0 0 3px rgba(124, 3, 142, .08);
}

.docs-search-page-form > .lu {
  width: 19px;
  height: 19px;
  flex: none;
  color: #897693;
}

.docs-search-page-form input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 600 15px var(--f-body);
}

.docs-search-page-form button {
  height: 48px;
}

.docs-search-results {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.docs-search-result {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 112px;
  padding: 17px 19px;
  border: 1px solid #e9e1ed;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s;
}

.docs-search-result:hover {
  border-color: rgba(124, 3, 142, .3);
  box-shadow: 0 12px 27px -22px rgba(36, 3, 66, .35);
}

.docs-search-result:hover .docs-card-arrow {
  color: var(--docs-purple);
  transform: translate(2px, -2px);
}

.docs-search-result-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f5eff8;
  color: var(--docs-purple);
}

.docs-search-result-icon .lu {
  width: 19px;
  height: 19px;
}

.docs-search-result-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.docs-search-result-copy small {
  color: var(--docs-purple);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.docs-search-result-copy strong {
  margin-top: 4px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 900;
}

.docs-search-result-copy p {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ---------- Empty / error ---------- */
.docs-status-page {
  padding-top: 0;
}

.docs-status-page > .container {
  max-width: 900px;
}

.docs-empty-state {
  display: flex;
  max-width: 620px;
  margin: 55px auto 0;
  padding: 44px 28px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.docs-empty-state > span {
  width: 62px;
  height: 62px;
  display: grid;
  margin-bottom: 17px;
  place-items: center;
  border: 1px solid #e5daea;
  border-radius: 18px;
  background: #f6f0f8;
  color: var(--docs-purple);
}

.docs-empty-state > span .lu {
  width: 27px;
  height: 27px;
}

.docs-empty-state > small {
  margin-bottom: 7px;
  color: var(--docs-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.docs-empty-state h1,
.docs-empty-state h2 {
  font-size: clamp(27px, 4vw, 39px);
}

.docs-empty-state p {
  max-width: 480px;
  margin-top: 11px;
  font-size: 15px;
}

.docs-empty-state .btn {
  height: 47px;
  margin-top: 23px;
  padding: 0 19px;
  font-size: 13px;
}

.docs-empty-state--error > span {
  background: #fff2f4;
  border-color: #f2d8dc;
  color: #9b2440;
}

.docs-inline-search {
  display: flex;
  width: min(100%, 390px);
  height: 47px;
  margin-top: 22px;
  border: 1px solid #dfd5e5;
  border-radius: 10px;
  background: #fff;
}

.docs-inline-search input {
  min-width: 0;
  flex: 1;
  padding: 0 13px;
  border: 0;
  outline: 0;
  border-radius: inherit;
  font: 600 13px var(--f-body);
}

.docs-inline-search button {
  width: 45px;
  border: 0;
  background: transparent;
  color: var(--docs-purple);
  cursor: pointer;
}

.docs-inline-search .lu {
  width: 18px;
  height: 18px;
  margin: auto;
}

/* ---------- Focus and accessibility ---------- */
.docs-topbar a:focus-visible,
.docs-home a:focus-visible,
.docs-article-layout a:focus-visible,
.docs-category-layout a:focus-visible,
.docs-list-page a:focus-visible,
.docs-search-page a:focus-visible,
.docs-update-article-page a:focus-visible,
.docs-status-page a:focus-visible,
.docs-topbar button:focus-visible,
.docs-home button:focus-visible,
.docs-article-layout button:focus-visible,
.docs-category-layout button:focus-visible {
  outline: 3px solid rgba(150, 0, 255, .32);
  outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .docs-topbar-inner {
    grid-template-columns: 215px minmax(250px, 1fr) auto;
    gap: 18px;
  }

  .docs-article-layout {
    grid-template-columns: var(--docs-sidebar-w) minmax(0, 1fr);
  }

  .docs-toc {
    display: none;
  }
}

@media (max-width: 1020px) {
  .docs-topbar-inner {
    grid-template-columns: 205px minmax(220px, 1fr) auto;
  }

  .docs-top-links > a:not(.docs-back-site) {
    display: none;
  }

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

@media (max-width: 860px) {
  :root {
    --docs-topbar-h: 62px;
  }

  .docs-topbar-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .docs-top-search,
  .docs-top-links > a:not(.docs-back-site) {
    display: none;
  }

  .docs-top-links .docs-back-site {
    margin: 0;
    padding: 8px 0 8px 12px;
    font-size: 12px;
  }

  .docs-mobile-tools {
    position: sticky;
    top: var(--docs-topbar-h);
    z-index: 38;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 46px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .docs-mobile-tools button,
  .docs-mobile-tools a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--ink-2);
    text-decoration: none;
    font: 800 12px var(--f-body);
  }

  .docs-mobile-tools button {
    border-right: 1px solid var(--line);
  }

  .docs-mobile-tools .lu {
    width: 15px;
    height: 15px;
    color: var(--docs-purple);
  }

  .docs-sidebar {
    position: fixed;
    width: min(86vw, 320px);
    height: 100dvh;
    inset: 0 auto 0 0;
    z-index: 80;
    padding-top: 18px;
    border-right: 0;
    box-shadow: 16px 0 48px rgba(36, 3, 66, .2);
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

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

  .docs-sidebar-head {
    min-height: 42px;
    padding-bottom: 16px;
  }

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

  .docs-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 75;
    display: block;
    background: rgba(25, 3, 38, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  }

  .docs-sidebar-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

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

  .docs-article-layout,
  .docs-category-layout {
    display: block;
  }

  .docs-article-main,
  .docs-list-main {
    max-width: none;
    padding-right: 28px;
    padding-left: 28px;
  }

  .docs-article-main > .breadcrumbs,
  .docs-list-main > .breadcrumbs {
    margin-right: -28px;
    margin-left: -28px;
  }

  .docs-article-main > .breadcrumbs ol,
  .docs-list-main > .breadcrumbs ol {
    padding-right: 28px;
    padding-left: 28px;
  }

  .docs-home-hero {
    padding: 66px 0 61px;
  }
}

@media (max-width: 700px) {
  .docs-section-heading {
    display: block;
  }

  .docs-section-heading > p {
    margin-top: 11px;
  }

  .docs-section-heading .docs-heading-link {
    margin-top: 15px;
  }

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

  .docs-category-card,
  .docs-update-card {
    padding: 19px;
  }

  .docs-update-card {
    min-height: 205px;
  }

  .docs-help-strip .container {
    align-items: stretch;
    flex-direction: column;
  }

  .docs-help-strip .btn {
    width: 100%;
  }

  .docs-changelog-row {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 130px;
    padding: 18px;
  }

  .docs-changelog-row time {
    display: none;
  }

  .docs-changelog-copy > em {
    display: block;
  }
}

@media (max-width: 540px) {
  .site-header--minimal .logo img {
    height: 34px;
  }

  .docs-topbar-inner {
    padding: 0 16px;
  }

  .docs-portal-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .docs-portal-brand strong {
    font-size: 14px;
  }

  .docs-portal-brand small {
    font-size: 10px;
  }

  .docs-top-links .docs-back-site {
    font-size: 0;
  }

  .docs-top-links .docs-back-site .lu {
    width: 18px;
    height: 18px;
  }

  .docs-home-hero {
    padding: 50px 0 52px;
  }

  .docs-home-hero h1 {
    margin-top: 16px;
    font-size: 34px;
    line-height: 1.08;
  }

  .docs-home-hero > .container > p {
    font-size: 15px;
  }

  .docs-hero-search {
    height: 57px;
    padding-left: 15px;
    border-radius: 13px;
  }

  .docs-hero-search input {
    padding: 0 10px;
    font-size: 13px;
  }

  .docs-hero-search button {
    width: 48px;
    padding: 0;
    font-size: 0;
  }

  .docs-hero-search button::before {
    content: '→';
    font-size: 18px;
  }

  .docs-home-stats {
    gap: 10px 17px;
    font-size: 10px;
  }

  .docs-home-stats span:last-child {
    display: none;
  }

  .docs-categories-section,
  .docs-updates-section {
    padding: 54px 0 58px;
  }

  .docs-category-card-head {
    grid-template-columns: 42px 1fr auto;
  }

  .docs-category-icon {
    width: 42px;
    height: 42px;
  }

  .docs-help-strip {
    padding: 27px 0;
  }

  .docs-help-strip .container > div {
    align-items: flex-start;
  }

  .docs-help-icon {
    width: 42px;
    height: 42px;
  }

  .docs-help-strip strong {
    font-size: 16px;
  }

  .docs-article-main,
  .docs-list-main {
    padding-right: 20px;
    padding-left: 20px;
  }

  .docs-article-main > .breadcrumbs,
  .docs-list-main > .breadcrumbs {
    margin-right: -20px;
    margin-left: -20px;
  }

  .docs-article-main > .breadcrumbs ol,
  .docs-list-main > .breadcrumbs ol {
    padding-right: 20px;
    padding-left: 20px;
  }

  .docs-article-main > .breadcrumbs,
  .docs-list-main > .breadcrumbs,
  .docs-list-page .breadcrumbs,
  .docs-search-page .breadcrumbs,
  .docs-update-article-page .breadcrumbs,
  .docs-status-page .breadcrumbs {
    overflow: hidden;
    white-space: nowrap;
  }

  .docs-article-main > .breadcrumbs ol,
  .docs-list-main > .breadcrumbs ol,
  .docs-list-page .breadcrumbs ol,
  .docs-search-page .breadcrumbs ol,
  .docs-update-article-page .breadcrumbs ol,
  .docs-status-page .breadcrumbs ol {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .docs-article-main > .breadcrumbs li,
  .docs-list-main > .breadcrumbs li,
  .docs-list-page .breadcrumbs li,
  .docs-search-page .breadcrumbs li,
  .docs-update-article-page .breadcrumbs li,
  .docs-status-page .breadcrumbs li {
    flex: none;
  }

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

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

  .docs-article-header > p {
    font-size: 15px;
  }

  .docs-article-meta {
    gap: 10px 15px;
  }

  .docs-article-content {
    padding-top: 27px;
    font-size: 15px;
    line-height: 1.68;
  }

  .docs-article-content h2 {
    margin-top: 35px;
    font-size: 24px;
  }

  .docs-article-content h3 {
    font-size: 20px;
  }

  .docs-article-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .docs-article-pagination > span:empty {
    display: none;
  }

  .docs-list-hero,
  .docs-page-heading,
  .docs-search-heading {
    gap: 14px;
  }

  .docs-list-hero {
    padding-top: 38px;
  }

  .docs-list-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
  }

  .docs-list-icon .lu {
    width: 21px;
    height: 21px;
  }

  .docs-list-hero h1,
  .docs-page-heading h1,
  .docs-search-heading h1 {
    font-size: 29px;
  }

  .docs-guide-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    margin-left: calc(var(--docs-depth, 0) * 10px);
    padding-right: 9px;
    padding-left: 9px;
  }

  .docs-guide-row-icon {
    width: 34px;
    height: 34px;
  }

  .docs-list-page,
  .docs-search-page,
  .docs-status-page,
  .docs-update-article-page {
    padding-bottom: 60px;
  }

  .docs-page-heading,
  .docs-search-heading {
    padding: 38px 0 27px;
  }

  .docs-changelog-row {
    padding: 16px;
  }

  .docs-changelog-copy > strong {
    font-size: 16px;
  }

  .docs-pagination {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .docs-pagination > span {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .docs-search-page-form {
    height: 54px;
  }

  .docs-search-page-form button {
    width: 48px;
    padding: 0;
    font-size: 0;
  }

  .docs-search-page-form button::before {
    content: '→';
    font-size: 17px;
  }

  .docs-search-result {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 15px;
  }

  .docs-search-result-icon {
    width: 38px;
    height: 38px;
  }

  .docs-search-result > .docs-card-arrow {
    display: none;
  }

  .docs-empty-state {
    margin-top: 30px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .docs-sidebar,
  .docs-sidebar-backdrop,
  .docs-category-card,
  .docs-update-card,
  .docs-changelog-row {
    transition: none;
  }
}
