/* H1 标签样式 - 解决SEO问题 */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* 确保页面标题H1在视觉上不影响布局，但对SEO友好 */
.page-title.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* 详情页面的H1标题样式保持原样 */
.detail-title {
    /* 继承原有样式 */
}

/* 发布页面的H1标题样式保持原样 */
.post-title {
    /* 继承原有样式 */
}
