:root {
  color-scheme: light;
  --bg: #fbfbfd;
  --surface: #ffffff;
  --text: #12131a;
  --muted: #5a6170;
  --border: #e4e7ef;
  --shadow: 0 18px 46px rgba(16, 24, 40, .10);
  --accent: #c03a24;
  --accent2: #e8a33f;
  --accent3: #1d2d52;
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1100px 420px at 20% -10%, rgba(232, 163, 63, .18), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(192, 58, 36, .12), transparent 55%),
    var(--bg);
  color: var(--text);
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://superburningwins.com/pics/bg_webp.webp");
  background-repeat: repeat;
  background-size: 520px auto;
  opacity: .12;
  filter: saturate(.9) contrast(.95);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 640px) {
  body::before {
    background-size: 460px auto;
    opacity: .10;
  }
}


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

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

a:hover {
  text-decoration: underline
}

button {
  font-family: inherit
}

.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width:768px) {
  .container {
    padding-left: 22px;
    padding-right: 22px
  }
}

@media (min-width:1280px) {
  .container {
    padding-left: 28px;
    padding-right: 28px
  }
}

@media (min-width:1920px) {
  .container {
    max-width: 1320px
  }
}

.topnote {
  background: rgba(232, 163, 63, .14);
  border-bottom: 1px solid rgba(232, 163, 63, .30);
  color: #432006;
  font-size: 13px;
  line-height: 1.35;
}

.topnote .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.topnote a {
  text-decoration: underline
}

.topnote a:hover {
  text-decoration: none
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(16, 24, 40, .10);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  max-width: 52vw;
  color: var(--accent3);
}

.brand span {
  min-width: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 21px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 6px rgb(16 24 40 / 29%);
}

.brand img {
  width: 75px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
  box-sizing: content-box;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 12px;
  background: rgb(13 9 2 / 85%);
  box-shadow: 0 10px 22px rgb(16 24 40 / 56%);
}

@media (max-width: 600px) and (orientation: portrait) {
  .brand span {
    display: none
  }
}


.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 14px;
  padding-right: 14px;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(.98)
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 26px rgba(192, 58, 36, .20);
}

.btn-soft {
  background: rgba(29, 45, 82, .06);
  border-color: rgba(29, 45, 82, .12);
  color: var(--accent3);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(29, 45, 82, .16);
  color: var(--accent3);
}

.icon-btn {
  width: 42px;
  height: 42px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.lang {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  height: 42px;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.lang-btn .caret {
  width: 10px;
  height: 10px;
}

.lang-menu {
  display: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 52px;
  width: 260px;
  max-height: 70vh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding-top: 8px;
  padding-bottom: 8px;
}

.lang-menu.open {
  display: block;
  pointer-events: auto;
}

.lang-opt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 0;
  background: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
}

.lang-opt:hover {
  background: rgba(29, 45, 82, .06);
}

.lang-opt[aria-selected="true"] {
  background: rgba(232, 163, 63, .14);
}

.lang-opt img {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.lang-opt .code {
  font-weight: 800;
  width: 44px;
}

.lang-opt .name {
  color: var(--muted);
  font-weight: 650;
}

.menu-btn {
  height: 42px;
}

.hero {
  padding-top: 22px;
  padding-bottom: 26px;
}

.hero-grid {
  display: grid;
  gap: 18px;
}

@media (min-width:1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
    gap: 22px;
  }
}

.hero-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 24, 40, .08);
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
}

@media (min-width:768px) {
  .hero-card {
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  font-size: 12px;
  color: var(--accent3);
  background: rgba(29, 45, 82, .08);
  border: 1px solid rgba(29, 45, 82, .12);
  border-radius: 999px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 10px;
  padding-right: 10px;
}

.pill strong {
  color: var(--text)
}

.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.2px;
  text-wrap: balance;
}

@media (min-width:768px) {
  h1 {
    font-size: 34px
  }
}

@media (min-width:1280px) {
  h1 {
    font-size: 38px
  }
}

.subtitle {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}

.lead {
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.6;
  color: rgba(18, 19, 26, .92);
}

.meta-line {
  margin-top: 10px;
  color: rgba(29, 45, 82, .78);
  font-size: 13px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.note-card {
  margin-top: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 16px;
  border: 1px solid rgba(232, 163, 63, .28);
  background: rgba(232, 163, 63, .12);
  color: #422005;
}

.disclosure-card {
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 16px;
  border: 1px solid rgba(232, 163, 63, .32);
  background: rgba(232, 163, 63, .10);
  color: #432006;
  font-size: 13px;
  line-height: 1.45;
}

.disclosure-card strong {
  font-weight: 850
}

.note-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
}

.note-card p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.45;
}

.demo-wrap {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 24, 40, .08);
  overflow: hidden;
}

.demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  border-bottom: 1px solid var(--border);
}

.demo-head h2 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: -.1px;
}

.demo-head span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

.demo-frame {
  width: 100%;
  height: min(70vh, 560px);
  border: 0;
  display: block;
  background: #000000;
}

.demo-copy {
  padding-top: 14px;
  padding-bottom: 16px;
  padding-left: 14px;
  padding-right: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5
}

.demo-copy p {
  margin-top: 0;
  margin-bottom: 10px
}

.demo-copy p:last-child {
  margin-bottom: 0
}

@media (max-width:420px) {
  .demo-frame {
    height: min(70vh, 520px)
  }
}

@media (min-width:1024px) {
  .demo-frame {
    height: 560px
  }
}

.layout {
  display: grid;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 26px;
}

@media (min-width:1024px) {
  .layout {
    grid-template-columns: 1fr 320px;
    gap: 22px;
    align-items: start;
  }
}

.toc {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  padding-right: 14px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, .08);
}

.toc h2 {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--accent3);
  letter-spacing: .2px;
}

.toc a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 12px;
  font-weight: 650;
  color: var(--text);
}

.toc a:hover {
  text-decoration: none;
  background: rgba(29, 45, 82, .06);
}

.toc a:focus-visible {
  outline: 3px solid rgba(232, 163, 63, .40);
  outline-offset: 2px
}

.toc .legal {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(29, 45, 82, .10);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toc .legal a {
  display: inline-flex;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 999px;
  background: rgba(29, 45, 82, .06);
  border: 1px solid rgba(29, 45, 82, .10);
  font-size: 12px;
  font-weight: 750;
  color: var(--accent3);
}

@media (min-width:1024px) {
  .toc {
    position: sticky;
    top: 92px
  }
}

.section {
  scroll-margin-top: 96px;
  margin-top: 18px;
}

.section:first-child {
  margin-top: 0
}

.section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -.1px;
  text-wrap: balance;
}

@media (min-width:768px) {
  .section h2 {
    font-size: 22px
  }
}

.section p {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.6;
  color: rgba(18, 19, 26, .92);
}

.section p:last-child {
  margin-bottom: 0
}

.card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width:768px) {
  .card {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.facts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.facts-head h2 {
  margin-bottom: 0;
}

.copy-btn {
  font-size: 13px;
  font-weight: 800;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
}

.facts-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 45, 82, .12);
  border-radius: 14px;
}

.facts-table th,
.facts-table td {
  text-align: left;
  vertical-align: top;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  border-bottom: 1px solid rgba(29, 45, 82, .12);
}

.facts-table th {
  width: 38%;
  color: var(--accent3);
  font-size: 13px;
  font-weight: 800;
  background: rgba(29, 45, 82, .05);
}

.facts-table td {
  color: rgba(18, 19, 26, .90);
  font-size: 14px;
  font-weight: 650;
}

.facts-table tr:last-child th,
.facts-table tr:last-child td {
  border-bottom: 0
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .2px;
}

.badge-third {
  background: rgba(29, 45, 82, .08);
  border: 1px solid rgba(29, 45, 82, .14);
  color: var(--accent3);
}

.facts-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.split {
  display: grid;
  gap: 16px;
}

@media (min-width:860px) {
  .split {
    grid-template-columns: 1fr 1fr
  }
}

.procon h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
}

.procon ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 18px;
}

.procon li {
  margin-bottom: 8px;
  color: rgba(18, 19, 26, .92);
  line-height: 1.5;
}

.procon li:last-child {
  margin-bottom: 0
}

.media-block {
  display: grid;
  gap: 14px;
}

@media (min-width:860px) {
  .media-block {
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }
}

.figure {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(29, 45, 82, .12);
  background: #ffffff;
}

.figure img {
  width: 100%;
  height: auto
}

.figcap {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  border-top: 1px solid rgba(29, 45, 82, .10);
}

.faq details {
  border: 1px solid rgba(29, 45, 82, .12);
  background: rgba(255, 255, 255, .82);
  border-radius: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 12px;
}

.faq details:last-child {
  margin-bottom: 0
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--accent3);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq details p {
  margin-top: 10px;
  margin-bottom: 0;
  color: rgba(18, 19, 26, .92);
}

.mnav {
  display: none;
  pointer-events: none;
}

.mnav.open {
  display: block;
  pointer-events: auto;
  position: fixed;
  inset: 0;
  overflow: auto;
  background: rgba(18, 19, 26, .45);
  z-index: 100;
}

.mnav-panel {
  width: min(92vw, 420px);
  min-height: 100%;
  background: var(--surface);
  border-right: 1px solid rgba(29, 45, 82, .14);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  box-shadow: var(--shadow);
}

.mnav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.mnav-head strong {
  font-size: 14px;
  color: var(--accent3)
}

.mnav a {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 14px;
  border: 1px solid rgba(29, 45, 82, .10);
  background: rgba(29, 45, 82, .04);
  margin-bottom: 10px;
  font-weight: 750;
}

.mnav a:hover {
  text-decoration: none;
  background: rgba(29, 45, 82, .08)
}

.mnav .mnav-legal {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(29, 45, 82, .10);
}

.mnav .mnav-legal a {
  font-weight: 750;
  background: transparent;
  border: 1px solid rgba(29, 45, 82, .12);
}

@media (min-width:1024px) {
  .menu-btn {
    display: none
  }

  .mnav {
    display: none
  }
}

.site-footer {
  margin-top: 26px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .70);
}

.footer-inner {
  padding-top: 18px;
  padding-bottom: 22px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-top .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-top .links a {
  font-weight: 750;
  font-size: 13px;
  color: var(--accent3);
  background: rgba(29, 45, 82, .06);
  border: 1px solid rgba(29, 45, 82, .10);
  border-radius: 999px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  padding-right: 10px;
}

.footer-note {
  margin-top: 14px;
  color: rgba(18, 19, 26, .78);
  font-size: 13px;
  line-height: 1.55;
}

.footer-disclosure {
  background: rgba(232, 163, 63, .14);
  border: 1px solid rgba(192, 58, 36, .14);
  border-radius: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  color: rgba(18, 19, 26, .86);
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-disclosure strong {
  color: var(--text);
}

.footer-note p {
  margin-top: 0;
  margin-bottom: 10px;
}

.footer-note p:last-child {
  margin-bottom: 0
}

.zoomable {
  cursor: zoom-in
}

.img-viewer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 130;
}

.img-viewer.open {
  display: block
}

.img-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.img-viewer-panel {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.img-viewer-panel img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  background: #111;
}

.img-viewer-close {
  position: absolute;
  top: calc(14px + env(safe-area-inset-top, 0px));
  right: calc(14px + env(safe-area-inset-right, 0px));
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-viewer-close:focus-visible {
  outline: 3px solid rgba(232, 163, 63, .38);
  outline-offset: 3px;
}

.no-scroll {
  overflow: hidden
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 85;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .2px;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, .06);
  background: linear-gradient(180deg, rgba(232, 163, 63, 1), rgba(192, 58, 36, 1));
  box-shadow: 0 20px 58px rgba(16, 24, 40, .22);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 18px;
  padding-right: 18px;
}

.sticky-cta:focus-visible {
  outline: 3px solid rgba(232, 163, 63, .38);
  outline-offset: 3px;
}

.sticky-cta:active {
  transform: translateY(1px)
}

@media (max-width:420px) {
  .sticky-cta {
    min-height: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: calc(16px + 62px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top.hidden {
  display: none
}

.to-top button {
  border-radius: 999px;
  border: 1px solid rgba(29, 45, 82, .16);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .14);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  font-weight: 850;
  color: var(--accent3);
  cursor: pointer;
}

@media (max-width:920px) and (orientation:landscape) {
  .container {
    padding-left: 24px;
    padding-right: 24px
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 18px
  }

  .header-inner {
    min-height: 58px;
    padding-top: 8px;
    padding-bottom: 8px
  }

  .demo-frame {
    height: min(76vh, 440px)
  }
}

@media (min-width:1024px) {
  .toc-inline {
    display: none
  }
}

@media (max-width:1023.98px) {
  .toc-aside {
    display: none
  }
}

.facts-table thead th {
  width: auto;
  font-size: 12px;
  font-weight: 850;
}

.facts-table tbody th {
  width: 38%;
}


@media (orientation: landscape) and (max-width: 920px) and (max-height: 520px) {
  #quick-facts .facts-table {
    border: 0;
    display: block
  }

  #quick-facts .facts-table thead {
    display: none
  }

  #quick-facts .facts-table tbody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #quick-facts .facts-table tr {
    display: block;
    margin: 0;
    border: 1px solid rgba(29, 45, 82, .12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, .55);
  }

  #quick-facts .facts-table th,
  #quick-facts .facts-table td {
    display: block;
    width: auto;
    border-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #quick-facts .facts-table th {
    background: rgba(29, 45, 82, .06);
  }
}