/* Route-scoped docs styles */
.theme-doc-markdown .protocol-flow {
  margin: 1.2rem 0 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.9), rgba(255, 255, 255, 0.97));
}

.theme-doc-markdown .protocol-flow--compact {
  padding: 0.9rem;
}

.theme-doc-markdown .protocol-flow__eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a3412;
}

.theme-doc-markdown .protocol-flow__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.theme-doc-markdown .protocol-flow__row:first-of-type {
  margin-top: 0;
}

.theme-doc-markdown .protocol-flow__branch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.theme-doc-markdown .protocol-flow__step {
  flex: 1 1 11rem;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.8rem;
  background: #ffffff;
  padding: 0.72rem 0.78rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.theme-doc-markdown .protocol-flow__step strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #111827;
  line-height: 1.35;
}

.theme-doc-markdown .protocol-flow__step span {
  display: block;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.45;
}

.theme-doc-markdown .protocol-flow__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 1.75rem;
  color: #f97316;
  font-size: 1rem;
  font-weight: 800;
}

.theme-doc-markdown .protocol-flow__step--success {
  border-color: rgba(34, 197, 94, 0.28);
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.96), rgba(255, 255, 255, 0.98));
}

.theme-doc-markdown .protocol-flow__step--warning {
  border-color: rgba(249, 115, 22, 0.28);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.92), rgba(255, 255, 255, 0.98));
}

.theme-doc-markdown .protocol-flow__step--decision {
  border-style: dashed;
  background: linear-gradient(180deg, rgba(255, 237, 213, 0.82), rgba(255, 255, 255, 0.98));
}

.theme-doc-markdown .clue-role-card {
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 0.85rem;
  padding: 0.15rem 0.9rem 0.8rem;
  margin: 0.75rem 0;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.82), rgba(255, 255, 255, 0.96));
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-doc-markdown .clue-role-card > summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  line-height: 1.45;
  color: #7c2d12;
  padding: 0.75rem 0;
}

.theme-doc-markdown .clue-role-card > summary strong {
  color: #c2410c;
}

.theme-doc-markdown .clue-role-card > summary::-webkit-details-marker {
  display: none;
}

.theme-doc-markdown .clue-role-card > summary::after {
  content: '▾';
  float: right;
  color: #f97316;
  font-size: 0.95rem;
  transform: translateY(0.1rem);
}

.theme-doc-markdown .clue-role-card[open] > summary::after {
  content: '▴';
}

.theme-doc-markdown .clue-role-card[open] {
  border-color: rgba(234, 88, 12, 0.52);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.16);
}

.theme-doc-markdown .clue-role-cards > details.alert.alert--info {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.7), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-left-width: 1px;
  border-radius: 0.85rem;
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.12);
  color: #7c2d12;
  --ifm-alert-background-color: rgba(255, 247, 237, 0.7);
  --ifm-alert-border-color: rgba(249, 115, 22, 0.25);
  --docusaurus-details-decoration-color: #f97316;
}

.theme-doc-markdown .clue-role-cards > details.alert.alert--info > summary {
  color: #000000;
}

.theme-doc-markdown .clue-role-cards > details.alert.alert--info > summary strong {
  color: #000000;
}

.theme-doc-markdown .clue-role-cards > details.alert.alert--info > summary::before {
  border-left-color: #f97316;
}

.theme-doc-markdown .clue-role-cards > details.alert.alert--info[open] {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.17);
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow {
  border-color: #374151;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(31, 41, 55, 0.92));
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow__eyebrow {
  color: #fdba74;
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow__step {
  border-color: #374151;
  background: #111827;
  box-shadow: none;
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow__step strong {
  color: #f3f4f6;
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow__step span {
  color: #d1d5db;
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow__arrow {
  color: #fb923c;
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow__step--success {
  border-color: rgba(74, 222, 128, 0.35);
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.35), rgba(17, 24, 39, 0.94));
}

[data-theme="dark"] .theme-doc-markdown .protocol-flow__step--warning,
[data-theme="dark"] .theme-doc-markdown .protocol-flow__step--decision {
  border-color: rgba(251, 146, 60, 0.45);
  background: linear-gradient(180deg, rgba(88, 49, 20, 0.3), rgba(17, 24, 39, 0.94));
}

[data-theme="dark"] .theme-doc-markdown .clue-role-card {
  border-color: rgba(251, 146, 60, 0.45);
  background: linear-gradient(180deg, rgba(88, 49, 20, 0.3), rgba(17, 24, 39, 0.94));
  box-shadow: none;
}

[data-theme="dark"] .theme-doc-markdown .clue-role-card > summary {
  color: #ffedd5;
}

[data-theme="dark"] .theme-doc-markdown .clue-role-card > summary strong {
  color: #fdba74;
}

[data-theme="dark"] .theme-doc-markdown .clue-role-card[open] {
  border-color: rgba(251, 146, 60, 0.7);
}

[data-theme="dark"] .theme-doc-markdown .clue-role-cards > details.alert.alert--info {
  background: linear-gradient(180deg, rgba(55, 65, 81, 0.45), rgba(17, 24, 39, 0.86));
  border: 1px solid rgba(251, 146, 60, 0.45);
  color: #ffffff;
  box-shadow: none;
  --ifm-alert-background-color: rgba(55, 65, 81, 0.45);
  --ifm-alert-border-color: rgba(251, 146, 60, 0.45);
  --docusaurus-details-decoration-color: #f97316;
}

[data-theme="dark"] .theme-doc-markdown .clue-role-cards > details.alert.alert--info > summary {
  color: #ffffff;
}

[data-theme="dark"] .theme-doc-markdown .clue-role-cards > details.alert.alert--info > summary strong {
  color: #ffffff;
}

[data-theme="dark"] .theme-doc-markdown .clue-role-cards > details.alert.alert--info[open] {
  border-color: rgba(251, 146, 60, 0.45);
}

.theme-doc-markdown .flywheel-wheel {
  position: relative;
  --flywheel-radius: 13.2rem;
  --flywheel-step: 51.428571deg;
  width: min(100%, 42rem);
  aspect-ratio: 1 / 1;
  margin: 1.1rem auto 1.4rem;
}

.theme-doc-markdown .flywheel-wheel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px dashed rgba(249, 115, 22, 0.45);
  border-radius: 50%;
}

.theme-doc-markdown .flywheel-wheel__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 9999px;
  width: 8.4rem;
  height: 8.4rem;
  display: grid;
  place-items: center;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.theme-doc-markdown .flywheel-wheel__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * var(--flywheel-step))) translateY(calc(-1 * var(--flywheel-radius))) rotate(calc(var(--i) * -1 * var(--flywheel-step)));
  width: 8.5rem;
  min-height: 3.5rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  text-align: center;
  padding: 0.52rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.28;
  color: #111827;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.theme-doc-markdown .flywheel-wheel__item--1 { --i: 0; }
.theme-doc-markdown .flywheel-wheel__item--2 { --i: 1; }
.theme-doc-markdown .flywheel-wheel__item--3 { --i: 2; }
.theme-doc-markdown .flywheel-wheel__item--4 { --i: 3; }
.theme-doc-markdown .flywheel-wheel__item--5 { --i: 4; }
.theme-doc-markdown .flywheel-wheel__item--6 { --i: 5; }
.theme-doc-markdown .flywheel-wheel__item--7 { --i: 6; }

[data-theme="dark"] .theme-doc-markdown .flywheel-wheel::before {
  border-color: rgba(251, 146, 60, 0.55);
}

[data-theme="dark"] .theme-doc-markdown .flywheel-wheel__center {
  color: #f9fafb;
  background: linear-gradient(180deg, #1f2937, #111827);
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: none;
}

[data-theme="dark"] .theme-doc-markdown .flywheel-wheel__item {
  color: #f3f4f6;
  background: #111827;
  border-color: #374151;
  box-shadow: none;
}

html[class*="docs-doc-id-"] .theme-doc-markdown > header h1 {
  font-size: clamp(2rem, 2vw + 1.45rem, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

html[class*="docs-doc-id-"] .theme-doc-markdown h2 {
  margin-top: 2.2rem;
  padding-bottom: 0.42rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

html[class*="docs-doc-id-"] .theme-doc-markdown p,
html[class*="docs-doc-id-"] .theme-doc-markdown li {
  line-height: 1.7;
}

html[class*="docs-doc-id-"] .theme-doc-markdown blockquote {
  border-left: 3px solid rgba(249, 115, 22, 0.5);
  background: rgba(255, 247, 237, 0.55);
  border-radius: 0.5rem;
  margin: 1rem 0;
  padding: 0.65rem 0.9rem;
}

html[class*="docs-doc-id-"] .theme-doc-markdown hr {
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  margin: 1.4rem 0;
}

html[class*="docs-doc-id-"] .protocol-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0.7rem;
}

html[class*="docs-doc-id-"] .protocol-kpi-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  padding: 0.8rem 0.9rem;
  background: #ffffff;
  font-size: 0.95rem;
  line-height: 1.45;
}

html[class*="docs-doc-id-"] .protocol-kpi-card strong {
  color: #111827;
}

html[class*="docs-doc-id-"] .protocol-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.45rem 0 1.25rem;
}

html[class*="docs-doc-id-"] .protocol-quick-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 9999px;
  padding: 0.38rem 0.78rem;
  background: #ffffff;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

html[class*="docs-doc-id-"] .protocol-quick-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.45);
  color: #ea580c;
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown h2 {
  border-bottom-color: #374151;
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown blockquote {
  border-left-color: rgba(251, 146, 60, 0.6);
  background: rgba(55, 65, 81, 0.35);
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown hr {
  border-top-color: #374151;
}

html[data-theme="dark"][class*="docs-doc-id-"] .protocol-kpi-card {
  border-color: #374151;
  background: #111827;
}

html[data-theme="dark"][class*="docs-doc-id-"] .protocol-kpi-card strong {
  color: #f9fafb;
}

html[data-theme="dark"][class*="docs-doc-id-"] .protocol-quick-links a {
  border-color: #374151;
  background: #111827;
  color: #e5e7eb;
}

html[data-theme="dark"][class*="docs-doc-id-"] .protocol-quick-links a:hover {
  border-color: rgba(251, 146, 60, 0.55);
  color: #fdba74;
}

html[class*="docs-doc-id-protocol/"] .economy-hero {
  margin: 1rem 0 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1rem;
  padding: 1rem 1rem 0.75rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(249, 115, 22, 0.14), transparent 45%),
    radial-gradient(circle at 90% 95%, rgba(234, 88, 12, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.66), rgba(255, 255, 255, 0.98));
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
}

html[class*="docs-doc-id-protocol/"] .economy-hero__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #9a3412;
  background: rgba(255, 237, 213, 0.8);
}

html[class*="docs-doc-id-protocol/"] .economy-hero__lead {
  margin: 0.75rem 0 0.9rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #111827;
}

html[class*="docs-doc-id-protocol/"] .economy-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

html[class*="docs-doc-id-protocol/"] .economy-kpi-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.72rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 4.4rem;
}

html[class*="docs-doc-id-protocol/"] .economy-kpi-card strong {
  font-size: 1.04rem;
  color: #c2410c;
}

html[class*="docs-doc-id-protocol/"] .economy-kpi-card span {
  font-size: 0.83rem;
  line-height: 1.3;
  color: #374151;
}

html[class*="docs-doc-id-protocol/"] .economy-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.15rem;
}

html[class*="docs-doc-id-protocol/"] .economy-split-card {
  margin: 0;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.7), rgba(255, 255, 255, 0.96));
  padding: 0.75rem 0.85rem;
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.11);
}

html[class*="docs-doc-id-protocol/"] .economy-split-card h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #7c2d12;
}

html[class*="docs-doc-id-protocol/"] .economy-split-card p {
  margin: 0.4rem 0 0.15rem;
}

html[class*="docs-doc-id-protocol/"] .economy-split-card small {
  color: #4b5563;
}

html[class*="docs-doc-id-protocol/"] .economy-footer-note {
  margin-top: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-left: 4px solid #f97316;
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: #fff;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-hero {
  border-color: #374151;
  background:
    radial-gradient(circle at 15% 10%, rgba(249, 115, 22, 0.2), transparent 45%),
    radial-gradient(circle at 90% 95%, rgba(251, 146, 60, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.95));
  box-shadow: none;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-hero__badge {
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(124, 45, 18, 0.35);
  color: #fed7aa;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-hero__lead {
  color: #f3f4f6;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-kpi-card {
  border-color: #374151;
  background: rgba(17, 24, 39, 0.94);
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-kpi-card strong {
  color: #fdba74;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-kpi-card span {
  color: #d1d5db;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-split-card {
  border-color: rgba(251, 146, 60, 0.45);
  background: linear-gradient(180deg, rgba(88, 49, 20, 0.3), rgba(17, 24, 39, 0.94));
  box-shadow: none;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-split-card h3 {
  color: #fdba74;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-split-card small {
  color: #d1d5db;
}

html[data-theme="dark"][class*="docs-doc-id-protocol/"] .economy-footer-note {
  border-color: #374151;
  background: #111827;
}

html[class*="docs-doc-id-"] .theme-doc-markdown :not(pre) > code {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, rgba(248, 250, 252, 1), rgba(255, 255, 255, 1));
  border-radius: 0.48rem;
  padding: 0.14rem 0.42rem;
  font-size: 0.92em;
  font-weight: 600;
  color: #0f172a;
}

html[class*="docs-doc-id-"] .theme-doc-markdown table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-radius: 0;
  overflow: visible;
}

html[class*="docs-doc-id-"] .theme-doc-markdown table thead tr {
  background: rgba(249, 115, 22, 0.1);
}

html[class*="docs-doc-id-"] .theme-doc-markdown table th,
html[class*="docs-doc-id-"] .theme-doc-markdown table td {
  border-color: rgba(15, 23, 42, 0.08);
  padding: 0.55rem 0.7rem;
}

html[class*="docs-doc-id-"] .theme-doc-markdown table tbody tr:nth-child(2n) {
  background: rgba(248, 250, 252, 0.7);
}

.theme-doc-markdown .tokenomics-chart,
html[class*="docs-doc-id-protocol/tokenomics"] .theme-doc-markdown .tokenomics-chart {
  width: 100%;
  height: 420px;
  margin: 1rem 0 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.45), rgba(255, 255, 255, 0.95));
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  padding: 0.35rem;
}

.theme-doc-markdown .tokenomics-chart--lg,
html[class*="docs-doc-id-protocol/tokenomics"] .theme-doc-markdown .tokenomics-chart--lg {
  height: 460px;
}

html[class*="docs-doc-id-protocol/tokenomics"] .theme-doc-markdown #token-pools.tokenomics-chart {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown :not(pre) > code {
  border-color: #4b5563;
  background: #111827;
  color: #f3f4f6;
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown table {
  border: none;
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown table thead tr {
  background: rgba(251, 146, 60, 0.14);
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown table th,
html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown table td {
  border-color: #374151;
}

html[data-theme="dark"][class*="docs-doc-id-"] .theme-doc-markdown table tbody tr:nth-child(2n) {
  background: rgba(17, 24, 39, 0.55);
}

html[data-theme="dark"] .theme-doc-markdown .tokenomics-chart,
html[data-theme="dark"][class*="docs-doc-id-protocol/tokenomics"] .theme-doc-markdown .tokenomics-chart {
  border-color: #374151;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
  box-shadow: none;
}

html[data-theme="dark"] .theme-doc-markdown #token-pools.tokenomics-chart,
html[data-theme="dark"][class*="docs-doc-id-protocol/tokenomics"] .theme-doc-markdown #token-pools.tokenomics-chart {
  border: none;
  background: transparent;
}

.theme-doc-markdown p a,
.theme-doc-markdown li a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

html.docs-doc-page main[class*="docMainContainer"] {
  padding-bottom: 2rem;
}

html.docs-doc-page main[class*="docMainContainer"] > .container.padding-top--md.padding-bottom--lg,
html.docs-doc-page main[class*="docMainContainer"] .padding-bottom--lg {
  padding-bottom: 4rem !important;
}

@media screen and (max-width: 996px) {
  .theme-doc-markdown .protocol-flow__row {
    flex-direction: column;
  }

  .theme-doc-markdown .protocol-flow__branch {
    grid-template-columns: 1fr;
  }

  .theme-doc-markdown .protocol-flow__arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .theme-doc-markdown .flywheel-wheel {
    --flywheel-radius: 10.7rem;
    width: min(100%, 34rem);
  }

  .theme-doc-markdown .flywheel-wheel__item {
    width: 7.2rem;
    min-height: 3.1rem;
    font-size: 0.72rem;
  }

  .theme-doc-markdown .flywheel-wheel__center {
    width: 7.2rem;
    height: 7.2rem;
    font-size: 0.9rem;
  }

  html[class*="docs-doc-id-"] .protocol-kpi-grid {
    grid-template-columns: 1fr;
  }

  html[class*="docs-doc-id-"] .economy-kpi-grid,
  html[class*="docs-doc-id-"] .economy-split-grid {
    grid-template-columns: 1fr;
  }
}
