/** Shopify CDN: Minification failed

Line 17:0 Unexpected "<"
Line 18:3 Unexpected "{"
Line 18:21 Expected ":"
Line 19:0 Unexpected "<"

**/
.page-title {
  margin-top: 0;
}

.main-page-title {
  margin-bottom: 3rem;
}

<div class="main-page-content">
  {{ content_for_blog }}
</div>
/* 页面标题 */
.page-title {
  margin-top: 0;
}

/* 博客和 FAQ 页面宽度设置 */
.main-page-content {
  max-width: 1200px; /* 设置宽度为 1200px */
  margin: 0 auto; /* 居中对齐 */
  padding: 0 20px; /* 添加左右内边距 */
}

/* 响应式调整 */
@media screen and (max-width: 750px) {
  .main-page-content {
    max-width: 100%; /* 小屏幕宽度自适应 */
    padding: 0 15px; /* 避免内容贴边 */
  }
}


@media screen and (min-width: 750px) {
  .main-page-title {
    margin-bottom: 4rem;
  }
}

.page-placeholder-wrapper {
  display: flex;
  justify-content: center;
}

.page-placeholder {
  width: 52.5rem;
  height: 52.5rem;
}
