/* 页面内容整体居中：容器限宽 + 左右 auto 外边距 */
body {
  margin: 0;
  text-align: center;
}

.site-header,
main,
.site-footer {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

/* H1 基础样式：桌面与平板
   对应 Tailwind text-5xl：font-size 3rem / line-height 1 */
.yrjXVD {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  margin: 0;
}

/* 手机竖屏 ≤479px
   对应 Tailwind text-4xl：font-size 2.25rem / line-height 2.5rem */
@media screen and (max-width: 479px) {
  .yrjXVD {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
