/* ===== 移动端代码块优化 ===== */
@media (max-width: 768px) {
  figure.highlight {
    margin: 1em -15px;
    border-radius: 0;
    font-size: 13px;
  }

  figure.highlight table,
  figure.highlight .gutter,
  figure.highlight .code {
    display: block;
  }

  figure.highlight .gutter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .post-content pre {
    padding: 10px 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 代码块行号在小屏上缩小 */
  figure.highlight .gutter pre {
    padding-right: 6px;
  }
}

/* ===== 表格移动端优化 ===== */
@media (max-width: 768px) {
  .post-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}

/* ===== 图片暗色模式适配 ===== */
html[data-user-color-scheme="dark"] .post-content img {
  opacity: 0.85;
}

html[data-user-color-scheme="dark"] .post-content img:hover {
  opacity: 1;
}

/* ===== 文章内链样式 ===== */
.post-content a[href^="http://www.ming-ice-tea.top"]::after,
.post-content a[href^="https://www.ming-ice-tea.top"]::after {
  content: " 🔗";
  font-size: 0.75em;
}

/* ===== 代码复制按钮位置修正 ===== */
figure.highlight .copy-btn {
  transition: opacity 0.2s;
}

/* ===== 块引用增强 ===== */
.post-content blockquote {
  border-left: 4px solid #30a9de;
  background: rgba(48, 169, 222, 0.05);
}
