@font-face {
  font-family: "OPPO Sans";
  src: url("./assets/fonts/OPPO-Sans-4.0.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --ink: #1a1a1a;
  --muted: rgba(26, 26, 26, 0.64);
  --soft: rgba(26, 26, 26, 0.42);
  --gold: #f2ca50;
  --gold-strong: #d4af37;
  --line: rgba(26, 26, 26, 0.1);
  --glass: rgba(255, 255, 255, 0.48);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --serif: "Songti SC", "SimSun", "Noto Serif CJK SC", serif;
  --sans: "OPPO Sans", "Microsoft YaHei", "PingFang SC", sans-serif;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 50% 31%, rgba(242, 202, 80, 0.22), rgba(242, 202, 80, 0.08) 22%, transparent 54%),
    linear-gradient(180deg, #f4f1ea 0%, #efebe3 100%);
  overflow-x: hidden;
}

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

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 14px clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  background: rgba(244, 241, 234, 0.82);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.035);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  color: var(--ink);
}

.brand-name {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-line {
  width: 1px;
  height: 22px;
  margin: 0 16px 0 18px;
  background: rgba(26, 26, 26, 0.28);
}

.brand-en {
  color: rgba(26, 26, 26, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(24px, 3vw, 38px);
  color: rgba(26, 26, 26, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--gold-strong);
}

.home-main,
.docs-main {
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: clamp(760px, 92svh, 1080px);
  padding: 160px 0 134px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  --glow-y: 0%;
  top: clamp(120px, 24svh, 290px);
  left: 50%;
  width: min(760px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 202, 80, 0.2), rgba(242, 202, 80, 0.08) 38%, transparent 68%);
  filter: blur(16px);
  transform: translate(-50%, var(--glow-y));
  pointer-events: none;
  animation: forgeGlowPulse 7.2s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .primary-button {
  animation: heroTextIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.hero-copy h1 {
  animation-delay: 80ms;
}

.hero-copy p {
  animation-delay: 180ms;
}

.hero-copy p + p {
  animation-delay: 260ms;
}

.hero-copy .primary-button {
  animation-delay: 380ms;
}

.hero-copy h1,
.workflow-section h2,
.download-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(62px, 7.2vw, 96px);
  line-height: 1;
}

.hero-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.45;
}

.hero-copy .hero-subtitle {
  margin-top: 18px;
  color: rgba(154, 122, 28, 0.86);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-copy .hero-subtitle + p {
  margin-top: 28px;
}

.hero-copy p + p {
  margin-top: 8px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  height: 48px;
  margin-top: 54px;
  padding: 0 34px;
  border-radius: 12px;
  color: #3c2f00;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffd85a, var(--gold));
  box-shadow:
    0 12px 26px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}

.primary-button::after {
  position: absolute;
  inset: -30% -65%;
  content: "";
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.42) 50%, transparent 65%);
  transform: translateX(-58%);
  animation: buttonSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffdf72, #f0bd35);
  box-shadow:
    0 16px 34px rgba(212, 175, 55, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 122px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--glass);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.035);
  backdrop-filter: blur(24px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card {
  display: block;
  color: inherit;
  min-height: 248px;
  padding: 38px 34px 36px;
  border-radius: 16px;
  animation:
    cardRiseIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards,
    cardFloatOne 9.2s ease-in-out 1.1s infinite,
    cardBreath 7s ease-in-out 900ms infinite;
  will-change: transform, translate, filter;
}

.feature-card:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.62);
  outline-offset: 5px;
}

.feature-card:nth-child(1) {
  animation-delay: 80ms, 1.1s, 900ms;
}

.feature-card:nth-child(2) {
  animation-name: cardRiseIn, cardFloatTwo, cardBreath;
  animation-delay: 180ms, 1.55s, 1.3s;
}

.feature-card:nth-child(3) {
  animation-name: cardRiseIn, cardFloatThree, cardBreath;
  animation-delay: 280ms, 1.95s, 1.7s;
}

.raised-card {
  margin-top: 32px;
}

.feature-icon-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 40px;
  color: rgba(183, 139, 22, 0.95);
  animation: iconDrift 6.4s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon-wrap {
  animation-delay: 520ms;
}

.feature-card:nth-child(3) .feature-icon-wrap {
  animation-delay: 1.04s;
}

.feature-icon-wrap::before {
  position: absolute;
  inset: 7px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 202, 80, 0.24), transparent 70%);
  filter: blur(8px);
  opacity: 0.62;
  transform: scale(0.9);
  animation: iconAura 4.8s ease-in-out infinite;
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  overflow: visible;
  fill: currentColor;
  stroke: none;
  filter: drop-shadow(0 8px 14px rgba(177, 132, 18, 0.14));
  transform-origin: center;
  animation: iconInkPulse 5.2s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 480ms;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 960ms;
}

.feature-card h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.feature-card p,
.workflow-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

.workflow-section,
.download-section {
  width: min(100%, 900px);
  margin: 0 auto 120px;
  text-align: center;
}

.section-label {
  margin: 0 0 18px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workflow-section h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.16;
}

.workflow-section h2 span {
  display: block;
  white-space: nowrap;
}

.workflow-content {
  display: grid;
  gap: 30px;
}

.workflow-content > p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-step {
  min-height: 210px;
  padding: 28px 26px 26px;
  border-radius: 16px;
  text-align: left;
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 24px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 999px;
  color: rgba(154, 122, 28, 0.9);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: rgba(242, 202, 80, 0.12);
}

.workflow-step h3 {
  margin: 26px 0 0;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.18;
}

.workflow-step p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.72;
}

.download-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  width: min(100%, 1050px);
  padding: 32px 36px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 18px 52px rgba(58, 43, 16, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  text-align: left;
}

.download-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.download-copy p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.7;
}

.download-actions {
  display: grid;
  justify-items: stretch;
  gap: 12px;
  min-width: 188px;
}

.download-actions .primary-button {
  flex: 0 0 auto;
  margin-top: 0;
}

.download-secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.secondary-platform-button {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px 14px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  color: rgba(26, 26, 26, 0.46);
  background: rgba(26, 26, 26, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  cursor: not-allowed;
  user-select: none;
}

.secondary-platform-button strong {
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.secondary-platform-button small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  opacity: 0.78;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
  padding: 0 0 48px;
  color: rgba(26, 26, 26, 0.52);
  font-size: 13px;
  font-weight: 500;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.docs-main {
  max-width: 980px;
  padding: 148px 0 94px;
}

.markdown-doc {
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 28px 80px rgba(58, 43, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
}

.markdown-doc h2 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0.02em;
  scroll-margin-top: 110px;
}

.markdown-doc h2 {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.28;
}

.markdown-doc p,
.markdown-doc li,
.markdown-doc td,
.markdown-doc th {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.markdown-doc .doc-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(26, 26, 26, 0.72);
  font-size: 18px;
  line-height: 1.88;
}

.markdown-doc p {
  margin: 18px 0 0;
}

.markdown-doc strong {
  color: rgba(26, 26, 26, 0.84);
  font-weight: 850;
}

.markdown-doc ul,
.markdown-doc ol {
  margin: 18px 0 0;
  padding-left: 1.35em;
}

.markdown-doc li + li {
  margin-top: 8px;
}

.markdown-doc blockquote {
  margin: 34px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--gold-strong);
  border-radius: 0 14px 14px 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.85;
  background: rgba(255, 255, 255, 0.48);
}

.markdown-doc table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.markdown-doc th,
.markdown-doc td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.09);
  text-align: left;
  vertical-align: top;
}

.markdown-doc th {
  color: rgba(26, 26, 26, 0.78);
  font-size: 14px;
  font-weight: 900;
  background: rgba(242, 202, 80, 0.13);
}

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

@keyframes forgeGlowPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translate(-50%, var(--glow-y)) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, var(--glow-y)) scale(1.08);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSheen {
  0%,
  62% {
    transform: translateX(-58%);
  }

  78%,
  100% {
    transform: translateX(58%);
  }
}

@keyframes cardRiseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardBreath {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.025);
  }
}

@keyframes cardFloatOne {
  0%,
  100% {
    translate: 0 0;
  }

  34% {
    translate: -3px -4px;
  }

  70% {
    translate: 2px 3px;
  }
}

@keyframes cardFloatTwo {
  0%,
  100% {
    translate: 0 0;
  }

  38% {
    translate: 4px -3px;
  }

  74% {
    translate: -2px 4px;
  }
}

@keyframes cardFloatThree {
  0%,
  100% {
    translate: 0 0;
  }

  42% {
    translate: -2px 4px;
  }

  78% {
    translate: 3px -2px;
  }
}

@keyframes iconDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes iconAura {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.86);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.08);
  }
}

@keyframes iconInkPulse {
  0%,
  100% {
    opacity: 0.84;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 1100px) {
  .home-main {
    display: grid;
    grid-template-columns: minmax(430px, 0.88fr) minmax(540px, 1fr);
    grid-template-areas:
      "hero cards"
      "workflow workflow"
      "download download";
    align-items: center;
    column-gap: clamp(48px, 6vw, 96px);
    width: min(100% - 88px, 1360px);
    padding-top: 72px;
  }

  .hero-section {
    grid-area: hero;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100svh - 72px);
    padding: 34px 0 48px;
    text-align: left;
  }

  .hero-glow {
    --glow-y: -50%;
    top: 50%;
    left: 34%;
    width: min(760px, 58vw);
  }

  .hero-copy {
    justify-items: start;
    max-width: 530px;
  }

  .hero-copy h1 {
    max-width: 6em;
    font-size: clamp(64px, 6vw, 94px);
    line-height: 1.06;
  }

  .hero-copy p {
    max-width: 430px;
    font-size: 18px;
  }

  .hero-copy p + p {
    margin-top: 10px;
  }

  .primary-button {
    min-width: 176px;
    height: 52px;
    margin-top: 46px;
  }

  .feature-strip {
    grid-area: cards;
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 620px);
    padding-bottom: 0;
    justify-self: end;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 26px;
    align-items: center;
    min-height: 154px;
    padding: 28px 32px;
    border-radius: 18px;
  }

  .raised-card {
    margin-top: 0;
    margin-left: 46px;
  }

  .feature-icon-wrap {
    margin-bottom: 0;
  }

  .feature-card h2 {
    font-size: clamp(28px, 2.7vw, 38px);
  }

  .feature-card p {
    max-width: 430px;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.7;
  }

  .feature-card h2,
  .feature-card p {
    grid-column: 2;
  }

  .feature-card .feature-icon-wrap {
    grid-row: 1 / span 2;
  }

  .workflow-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: clamp(42px, 6vw, 78px);
    align-items: start;
    width: 100%;
    margin: 0 0 28px;
    padding: 56px 0 62px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .workflow-section#workflow {
    grid-area: workflow;
  }

  .workflow-section .section-label {
    margin-top: 12px;
    margin-bottom: 0;
  }

  .workflow-section h2 {
    max-width: 480px;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.18;
  }

  .workflow-content {
    gap: 26px;
  }

  .workflow-content > p {
    max-width: 740px;
    margin: 4px 0 0;
  }

  .workflow-step {
    min-height: 218px;
  }

  .download-section {
    grid-area: download;
    width: 100%;
    margin: 72px 0 92px;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    row-gap: 14px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
  }

  .home-main,
  .docs-main,
  .site-footer {
    width: min(100% - 48px, var(--container));
  }

  .hero-section {
    min-height: 760px;
    padding-top: 170px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: auto;
  }

  .raised-card {
    margin-top: 0;
  }

  .download-section {
    flex-direction: column;
    align-items: start;
  }

  .download-actions {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 14px 18px;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-line,
  .brand-en {
    display: none;
  }

  .main-nav {
    justify-self: stretch;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
  }

  .home-main,
  .docs-main,
  .site-footer {
    width: calc(100% - 32px);
  }

  .hero-section {
    min-height: 690px;
    padding: 150px 0 88px;
  }

  .hero-glow {
    top: 120px;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .primary-button {
    width: min(100%, 210px);
    margin-top: 42px;
  }

  .feature-strip {
    gap: 18px;
    padding-bottom: 86px;
  }

  .feature-card {
    min-height: 0;
    padding: 28px 26px;
  }

  .feature-icon-wrap {
    margin-bottom: 30px;
  }

  .feature-card h2 {
    font-size: 30px;
  }

  .workflow-section {
    margin-bottom: 88px;
  }

  .workflow-section h2 {
    font-size: 36px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: 0;
  }

  .download-section {
    padding: 28px 22px;
  }

  .download-actions .primary-button {
    width: 100%;
  }

  .download-secondary-actions {
    grid-template-columns: 1fr;
  }

  .download-copy h2 {
    font-size: 30px;
  }

  .download-copy p {
    font-size: 14px;
  }

  .site-footer,
  .site-footer nav {
    flex-direction: column;
    gap: 14px;
  }

  .docs-main {
    padding: 132px 0 72px;
  }

  .markdown-doc {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .markdown-doc h2 {
    margin-top: 44px;
    padding-top: 24px;
    font-size: 28px;
  }

  .markdown-doc .doc-lead,
  .markdown-doc blockquote {
    font-size: 16px;
  }

  .markdown-doc table {
    display: block;
    overflow-x: auto;
  }
}
