/* = 基本图文混排对齐
-------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5em;
    clear: both;
  }
  .alignright {
    float: right;
    margin-left: 1.5em;
    clear: both;
  }
  .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
  }
  img.alignleft,
  img.alignright,
  img.aligncenter {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    max-width: 100%;
    height: auto;
  }
  
  /* = WordPress 图文混排容器（经典编辑器）
  -------------------------------------- */
  .wp-caption {
    max-width: 100%;
    text-align: center;
    margin: 1em auto;
    font-size: 0.9em;
    color: #666;
  }
  .wp-caption img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .wp-caption-text {
    margin-top: 0.5em;
    font-style: italic;
  }
  
  /* = 列表样式
  -------------------------------------- */
  ul,
  ol {
    padding-left: 2em;
    margin-bottom: 1em;
  }
  ul li,
  ol li {
    margin-bottom: 0.5em;
  }
  
  /* = 表格基础样式
  -------------------------------------- */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
  }
  th,
  td {
    padding: 0.75em;
    border: 1px solid #dee2e6;
  }
  th {
    background: #f8f9fa;
    font-weight: bold;
  }
  
  /* = 引用块
  -------------------------------------- */
  blockquote {
    padding: 0.75em 1em;
    border-left: 5px solid #ccc;
    color: #666;
    margin: 1em 0;
    background-color: #f9f9f9;
    font-style: italic;
  }
  
  /* = Gutenberg 支持类（可选）
  -------------------------------------- */
  .has-text-align-left {
    text-align: left;
  }
  .has-text-align-right {
    text-align: right;
  }
  .has-text-align-center {
    text-align: center;
  }
  
  /* = ACF 富文本按钮、段落样式兼容
  -------------------------------------- */
  .editor-styles-wrapper p {
    margin-bottom: 1em;
    line-height: 1.7;
  }
  .editor-styles-wrapper h1,
  .editor-styles-wrapper h2,
  .editor-styles-wrapper h3,
  .editor-styles-wrapper h4,
  .editor-styles-wrapper h5,
  .editor-styles-wrapper h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: bold;
  }
  
  /* = 兼容 Bootstrap 的图片响应
  -------------------------------------- */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }