/* 1. 修改右侧写字区域的惨白色，变成温润米色 */
.site-content article {
	background-color: #FCF3E9 !important;
}

/* 2. 确保背景容器透明，让你选的背景图露出来 */
.site-content {
	background-color: transparent !important;
}

/* 3. 解决左边名字换行的问题 */
.site-title {
	font-size: 28px !important;
	white-space: nowrap !important;
}

/* 1. 缩小页面顶部的超级大标题 (例如 "Home 開卷", "Research 探幽") */
.entry-title {
	font-size: 28px !important;
/* 默认通常是 30px+，这里降到 24px */
	font-weight: 700 !important;
	margin-bottom: 15px !important;
}

/* 1. 调大左侧导航菜单（目录）的字体 */
.main-navigation a {
	font-size: 20px !important;
/* 调到 16px 左右，既醒目又不会显得笨重 */
	font-weight: 500 !important;
/* 稍微加一点粗度，更有质感 */
	padding-top: 8px !important;
/* 增加一点行间距，让目录不拥挤 */
	padding-bottom: 10px !important;
}

/* 1. 强制正文、段落、列表全部恢复“自由换行” */
html, body, p, li, .entry-content, .entry-summary, .site-main, article {
	white-space: normal !important;
	word-wrap: break-word !important;
	overflow-wrap: break-word !important;
}

/* 2. 精准打击：只允许左侧的“姓名”和“斋号”保持在一行 */
.site-title, 
.site-title a,
.site-description {
	white-space: nowrap !important;
/* 只有这里不换行 */
}

/* 1. 设置正文默认状态：20px，但不加 !important */
/* 这样你在编辑器里选择“特大”或手动输入字号时，你的操作就能生效了 */
body, p, li, .entry-content p {
	font-family: "Baskerville", "Garamond", "Crimson Text", "Noto Serif SC", "Songti SC", "YuMincho", serif;
	font-size: 20px;
/* 删掉了 !important，允许被编辑器覆盖 */
	line-height: 1.45;
	color: #2c2c2c;
	white-space: normal;
/* 确保正文自由换行 */
}

/* 4. 侧边栏菜单：确保菜单项也能正常处理长标题 */
.main-navigation a {
	white-space: normal !important;
	font-size: 19px !important;
	font-weight: 600 !important;
}

/* 6. 侧边栏标题微调：防止名字太大挤出去 */
.site-title {
	font-size: 25px !important;
}

.site-description {
	font-size: 15px !important;
}

/* 3. 斋号（副标题）调大：提升至 18px，并增加间距感 */
.site-description {
	font-family: "Baskerville", "Garamond", serif !important;
	font-size: 18px !important;
/* 从15px大幅提升 */
	font-weight: 500 !important;
	letter-spacing: .03em !important;
/* 稍微拉开，更有金石味 */
	margin-top: 5px !important;
	color: #555 !important;
/* 稍微淡一点点，与主名字拉开层次 */
}

/* 1. 缩小侧边栏小工具之间的间距 */
.widget {
	margin-bottom: 10px !important;
/* 原本可能是 30px-50px，现在大幅缩小 */
	padding-top: 0 !important;
}

/* 2. 调整小工具内的文字：更小、更紧凑 */
.widget p, 
.widget li, 
.widget a,
.widget_text,
.widget_block {
	font-family: "Baskerville", "Garamond", serif !important;
	font-size: 16px !important;
/* 调小到 15px，显得更精致 */
	line-height: 1.2 !important;
/* 极紧凑的行高 */
	color: #666 !important;
/* 颜色调浅一点，拉开层级 */
	margin: 0 !important;
/* 去掉段落自带的外边距 */
}

/* 3. 给链接加一点点间距和交互感 */
.widget a {
	display: inline-block;
	padding: 2px 0;
	text-decoration: none !important;
	border-bottom: 1px solid transparent;
	transition: all .2s ease;
}

.widget a:hover {
	color: #8b0000 !important;
/* 悬停时朱砂红 */
	border-bottom: 1px dotted #8b0000;
/* 悬停时出现虚线下划线 */
}

/* 4. 如果你用的是列表积木，去掉圆点并靠左 */
.widget ul {
	list-style: none !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
}
/* 禁止所有文字自动断字 */
p, div, li, h1, h2, h3, h4, h5, h6 {
    hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
}