/* WordPress post single */
.zhuji-post-single .zhuji-post-page {
	width: 100%;
	padding: 54px 0 110px;
	background: #fff;
	color: var(--zhuji-ink);
}

.zhuji-post-article {
	margin: 0;
}

.zhuji-post-featured {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto 34px;
}

.zhuji-post-featured img {
	display: block;
	width: 100%;
	height: auto;
}

.zhuji-post-shell {
	width: min(860px, calc(100% - 48px));
	margin: 0 auto;
}

.zhuji-post-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin: 0 0 46px;
	color: var(--zhuji-muted);
	font-size: 13px;
	letter-spacing: .04em;
}

.zhuji-post-breadcrumb a {
	color: var(--zhuji-ink);
	text-decoration: none;
}

.zhuji-post-breadcrumb a:hover,
.zhuji-post-breadcrumb a:focus {
	text-decoration: underline;
}

.zhuji-post-header {
	margin-bottom: 48px;
	padding-bottom: 38px;
	border-bottom: 1px solid var(--zhuji-sand);
}

.zhuji-post-header h1 {
	margin: 0 0 22px;
	color: var(--zhuji-ink);
	font-family: "Noto Sans TC", sans-serif;
	font-size: clamp(40px, 5.2vw, 66px);
	font-weight: 500;
	line-height: 1.28;
	letter-spacing: .02em;
}

.zhuji-post-date {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--zhuji-muted);
	font-size: 13px;
	letter-spacing: .12em;
}

.zhuji-post-date::before {
	content: "";
	width: 34px;
	height: 1px;
	background: var(--zhuji-ink);
}

.zhuji-post-content {
	color: #293e55;
	font-size: 17px;
	line-height: 2;
}

.zhuji-post-content>*:first-child {
	margin-top: 0;
}

.zhuji-post-content p,
.zhuji-post-content ul,
.zhuji-post-content ol,
.zhuji-post-content blockquote {
	margin-bottom: 1.6em;
}

.zhuji-post-content h2,
.zhuji-post-content h3,
.zhuji-post-content h4 {
	margin-top: 1.8em;
	margin-bottom: .7em;
	color: var(--zhuji-ink);
	line-height: 1.4;
}

.zhuji-post-content img {
	max-width: 100%;
	height: auto;
}

.zhuji-post-content blockquote {
	margin-left: 0;
	padding: 18px 26px;
	border-left: 3px solid var(--zhuji-ink);
	background: var(--zhuji-cream);
}

.zhuji-post-content a {
	color: var(--zhuji-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.zhuji-post-pagination {
	margin-top: 48px;
}

@media (max-width: 600px) {
	.zhuji-post-single .zhuji-post-page {
		padding: 24px 0 72px;
	}

	.zhuji-post-featured,
	.zhuji-post-shell {
		width: min(100% - 34px, 860px);
	}

	.zhuji-post-featured {
		margin-bottom: 24px;
	}

	.zhuji-post-breadcrumb {
		margin-bottom: 34px;
		font-size: 12px;
	}

	.zhuji-post-header {
		margin-bottom: 36px;
		padding-bottom: 28px;
	}

	.zhuji-post-header h1 {
		font-size: 38px;
	}

	.zhuji-post-content {
		font-size: 16px;
		line-height: 1.9;
	}
}

