/**
 * 修复标题间距过大的问题
 * 覆盖主题默认的 margin: 20px 0
 */

.wp-posts-content h1,
.wp-posts-content h2,
.wp-posts-content h3,
.wp-posts-content h4,
.wp-posts-content h5 {
    margin: 10px 0 !important;
    font-weight: 700;
}

/* 保持第一个标题的上边距为0 */
.wp-posts-content h1:first-child,
.wp-posts-content h2:first-child,
.wp-posts-content h3:first-child,
.wp-posts-content h4:first-child,
.wp-posts-content h5:first-child {
    margin-top: 0 !important;
}

/* 最后一个标题的下边距可以稍小一些 */
.wp-posts-content h1:last-child,
.wp-posts-content h2:last-child,
.wp-posts-content h3:last-child,
.wp-posts-content h4:last-child,
.wp-posts-content h5:last-child {
    margin-bottom: 5px !important;
}