.elementor-8217 .elementor-element.elementor-element-34a0cd1{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ===== 外层容器：只影响本篇 Playbook ===== */
.ma-playbook-wrapper {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 40px 16px 80px;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

/* 统一盒模型 */
.ma-playbook-wrapper * {
  box-sizing: border-box;
}

/* ===== 标题样式 ===== */

/* H1 顶部大标题（蓝色） */
.ma-playbook-wrapper h1 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 28px;
  color: #1a4aa3;
  line-height: 1.25;
}

/* H2 章节标题：强制恢复成标准块级，拉开与正文的距离，解决重叠问题 */
.ma-playbook-wrapper h2 {
  display: block !important;
  position: static !important;
  float: none !important;
  clear: both !important;

  font-size: 20px;
  font-weight: 600;
  line-height: 1.5 !important;

  margin-top: 48px;
  margin-bottom: 0;        /* 底部间距交给 padding + 段落 margin 控制 */
  padding-bottom: 10px;    /* 标题自身与下一行的空隙 */
}

/* 紧跟在 H2 后面的第一段，强制再加一点顶部间距 */
.ma-playbook-wrapper h2 + p {
  margin-top: 16px !important;
}

/* H3 小标题 */
.ma-playbook-wrapper h3 {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 26px 0 10px;
  line-height: 1.4;
}

/* ===== 正文 & 列表 ===== */

.ma-playbook-wrapper p {
  margin: 0 0 14px;
}

.ma-playbook-wrapper ul,
.ma-playbook-wrapper ol {
  margin: 0 0 16px 20px;
}

.ma-playbook-wrapper li {
  margin: 4px 0;
}

/* ===== 顶部小 pill 标签行 ===== */

.ma-playbook-wrapper .ma-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.ma-playbook-wrapper .ma-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3ff;
  color: #1a4aa3;
  font-size: 13px;
}

/* ===== 分隔线 ===== */

.ma-playbook-wrapper .ma-divider {
  border: 0;
  border-top: 1px solid #e1e4ec;
  margin: 32px 0;
}

/* ===== 图片：统一缩小一点，居中显示 ===== */

.ma-playbook-wrapper img {
  max-width: 820px;
  width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 10px;
}

/* figure/figcaption */
.ma-playbook-wrapper figure {
  margin: 24px 0;
}

.ma-playbook-wrapper figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* ===== 响应式视频容器 ===== */

.ma-playbook-wrapper .ma-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  margin: 20px 0;
}

.ma-playbook-wrapper .ma-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== 信息框（提示 / 公式） ===== */

.ma-playbook-wrapper .ma-info-box {
  border-left: 4px solid #1a4aa3;
  background: #f5f7ff;
  padding: 14px 16px;
  margin: 18px 0;
  font-size: 14px;
}

/* ===== 底部两个区块：推荐产品 & 相关文章 ===== */

.ma-playbook-wrapper .ma-section {
  margin-top: 40px;
}

.ma-playbook-wrapper .ma-section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ma-playbook-wrapper .ma-section-intro {
  margin-bottom: 22px;
  color: #555;
}

/* 网格布局 */
.ma-playbook-wrapper .ma-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  .ma-playbook-wrapper .ma-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ma-playbook-wrapper .ma-grid {
    grid-template-columns: 1fr;
  }
}

/* 卡片样式 */
.ma-playbook-wrapper .ma-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ma-playbook-wrapper .ma-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: #c7d7f5;
}

.ma-playbook-wrapper .ma-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ma-playbook-wrapper .ma-card-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

/* 按钮样式 */
.ma-playbook-wrapper .ma-btn {
  display: inline-block;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #1a4aa3;
  background-color: #1a4aa3;
  color: #ffffff;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.ma-playbook-wrapper .ma-btn:hover {
  background-color: #163c83;
  border-color: #163c83;
  color: #ffffff;
  transform: translateY(-1px);
}

/* 相关文章按钮：描边样式 */
.ma-playbook-wrapper .ma-btn-outline {
  background-color: transparent;
  color: #1a4aa3;
}

.ma-playbook-wrapper .ma-btn-outline:hover {
  background-color: #1a4aa3;
  color: #ffffff;
}

/* 相关文章卡片虚线边框 */
.ma-playbook-wrapper .ma-card-guide {
  border-style: dashed;
  border-color: #d5e0f5;
}/* End custom CSS */