/* ============================================================
 * DUT Drone Development Guide - 极简主题增强
 *
 * 策略：只自定义正文内容区域，导航/侧边栏/页眉/抽屉
 *      全部由 Material 原生 slate 方案处理，确保移动端可用。
 * ============================================================ */

/* ============================================================
 * 1. 正文排版
 * ============================================================ */

.md-typeset {
  font-size: .775rem;
  line-height: 1.78;
}

.md-typeset h1 {
  font-size: 1.85em;
  font-weight: 700;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
  padding-bottom: .35em;
  margin-bottom: .7em;
}

.md-typeset h2 {
  font-size: 1.35em;
  font-weight: 650;
  border-left: 3px solid var(--md-primary-fg-color--light);
  padding-left: .6em;
  margin-top: 1.8em;
  margin-bottom: .6em;
}

.md-typeset h3 {
  font-size: 1.15em;
  font-weight: 600;
  margin-top: 1.4em;
  margin-bottom: .45em;
}

.md-typeset h4 {
  font-size: 1.05em;
  font-weight: 550;
  margin-top: 1.15em;
  margin-bottom: .35em;
}

.md-typeset p  { margin: .65em 0; }
.md-typeset ul,
.md-typeset ol { padding-left: 1.6em; }
.md-typeset li { margin-bottom: .3em; }

/* ============================================================
 * 2. 代码块
 * ============================================================ */

.md-typeset code {
  font-size: .84em;
  border-radius: 4px;
  padding: .14em .42em;
}

.md-typeset pre {
  border-radius: 8px;
  border: 1px solid var(--md-default-fg-color--lightest);
}

.md-typeset pre > code {
  border-radius: 8px;
  padding: 1em 1.25em;
}

/* ============================================================
 * 3. 表格
 * ============================================================ */

.md-typeset table {
  border-radius: 8px;
  overflow: hidden;
}

.md-typeset table thead th {
  font-weight: 600;
  font-size: .82em;
  padding: .7em 1em;
}

.md-typeset table tbody td {
  padding: .6em 1em;
  font-size: .8em;
}

/* ============================================================
 * 4. 引用块
 * ============================================================ */

.md-typeset blockquote {
  border-radius: 0 6px 6px 0;
  padding: .8em 1.2em;
  margin: 1em 0;
}

/* ============================================================
 * 5. Admonition
 * ============================================================ */

.md-typeset .admonition {
  border-radius: 8px;
}

/* ============================================================
 * 6. 水平线
 * ============================================================ */

.md-typeset hr {
  height: 1px;
  margin: 2em 0;
}

/* ============================================================
 * 7. 链接（仅正文内）
 * ============================================================ */

.md-typeset a {
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

/* ============================================================
 * 8. 图片
 * ============================================================ */

.md-typeset img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

/* ============================================================
 * 9. 键盘/标记
 * ============================================================ */

.md-typeset kbd {
  border-radius: 4px;
  padding: .1em .45em;
  font-size: .85em;
}

.md-typeset mark {
  border-radius: 2px;
  padding: 0 .2em;
}

/* ============================================================
 * 10. 公告栏
 * ============================================================ */

.md-banner {
  text-align: center;
  font-weight: 500;
  font-size: .8rem;
}

/* ============================================================
 * 11. 布局微调
 * ============================================================ */

.md-grid {
  max-width: 75rem;
}

.md-content__inner {
  padding-top: 1.6rem;
  padding-bottom: 2.5rem;
}

/* ============================================================
 * 12. 响应式
 * ============================================================ */

@media screen and (max-width: 76.1875em) {
  .md-typeset h1 { font-size: 1.5em; }
  .md-typeset h2 { font-size: 1.2em; }
  .md-typeset h3 { font-size: 1.05em; }
}

/* ============================================================
 * 13. 打印
 * ============================================================ */

@media print {
  .md-typeset h1 { color: #000; border-bottom-color: #000; }
  .md-typeset h2 { color: #000; }
  .md-typeset table thead th { background: #ddd; color: #000; }
}