/**
 * Automancy Custom Single Post Stylesheet
 */

/* フォントと全体背景の統一 */
body {
	background-color: #fafafa !important;
	color: #2a1f0e !important;
	font-family: 'Noto Serif JP', 'Shippori Mincho', serif !important;
	margin: 0;
	padding: 0;
}

/* メインコンテナ */
.automancy-single-post-main {
	max-width: 840px;
	margin: 40px auto 80px;
	padding: 0 20px;
	box-sizing: border-box;
}

/* 記事カード */
.automancy-article {
	background: #ffffff;
	border: 1px solid rgba(184, 151, 61, 0.25);
	border-radius: 12px;
	padding: 60px 50px;
	box-shadow: 0 10px 30px rgba(138, 112, 64, 0.03);
	box-sizing: border-box;
}

/* 記事ヘッダー */
.automancy-article-header {
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(184, 151, 61, 0.2);
	padding-bottom: 25px;
}

.automancy-article-title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 32px;
	color: #2a1f0e;
	line-height: 1.4;
	margin: 0 0 20px 0;
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* 投稿メタ（日付・カテゴリ） */
.automancy-article-meta {
	display: flex;
	gap: 15px;
	align-items: center;
	font-size: 13px;
	font-family: 'M PLUS 1', sans-serif;
	color: #8a7040;
}

.automancy-date {
	font-weight: 500;
}

.automancy-category {
	padding: 2px 12px;
	border: 1px solid rgba(184, 151, 61, 0.4);
	border-radius: 50px;
	background-color: rgba(184, 151, 61, 0.04);
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.05em;
}

/* 記事本文 */
.automancy-article-content {
	font-family: 'Noto Serif JP', serif;
	font-size: 16px;
	color: #2a1f0e;
	line-height: 1.95;
	letter-spacing: 0.03em;
}

.automancy-article-content p {
	margin: 0 0 28px 0;
}

.automancy-article-content p:last-child {
	margin-bottom: 0;
}

/* 見出しスタイル */
.automancy-article-content h1,
.automancy-article-content h2 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 24px;
	color: #2a1f0e;
	border-left: 3px solid #b8973d;
	padding-left: 14px;
	margin: 50px 0 24px 0;
	line-height: 1.3;
	font-weight: 700;
}

.automancy-article-content h3 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 20px;
	color: #2a1f0e;
	border-bottom: 1px solid rgba(184, 151, 61, 0.25);
	padding-bottom: 8px;
	margin: 40px 0 20px 0;
	font-weight: 700;
}

.automancy-article-content h4 {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 18px;
	color: #2a1f0e;
	margin: 30px 0 15px 0;
	font-weight: 700;
}

/* 画像とキャプション */
.automancy-article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(138, 112, 64, 0.06);
	margin: 24px 0;
	display: block;
}

.automancy-article-content figure {
	margin: 24px 0;
}

.automancy-article-content figure figcaption {
	font-size: 12px;
	color: #8a7040;
	text-align: center;
	margin-top: 8px;
	font-family: 'M PLUS 1', sans-serif;
}

/* リスト */
.automancy-article-content ul,
.automancy-article-content ol {
	margin: 0 0 28px 24px;
	padding: 0;
}

.automancy-article-content li {
	margin-bottom: 8px;
}

/* 引用 */
.automancy-article-content blockquote {
	border-left: 3px solid rgba(184, 151, 61, 0.5);
	padding: 15px 24px;
	margin: 0 0 28px 0;
	background: rgba(184, 151, 61, 0.02);
	border-radius: 0 8px 8px 0;
}

.automancy-article-content blockquote p {
	font-style: italic;
	margin-bottom: 0;
	color: #5a4520;
}

/* 記事ナビゲーションフッター */
.automancy-article-footer {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px dashed rgba(184, 151, 61, 0.3);
}

.automancy-post-navigation .nav-links {
	display: flex;
	gap: 24px;
}

.automancy-post-navigation .nav-previous,
.automancy-post-navigation .nav-next {
	flex: 1;
	min-width: 0; /* 折り返し用の対策 */
}

.automancy-post-navigation .nav-card {
	display: block;
	text-decoration: none;
	padding: 20px 24px;
	border: 1px solid rgba(184, 151, 61, 0.2);
	border-radius: 8px;
	background: #ffffff;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 2px 8px rgba(138, 112, 64, 0.01);
}

.automancy-post-navigation .nav-card:hover {
	border-color: #b8973d;
	box-shadow: 0 8px 20px rgba(138, 112, 64, 0.08);
	transform: translateY(-2px);
}

.automancy-post-navigation .nav-meta {
	display: block;
	font-size: 11px;
	color: #8a7040;
	margin-bottom: 8px;
	font-family: 'M PLUS 1', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.automancy-post-navigation .nav-title {
	display: block;
	font-size: 14px;
	color: #2a1f0e;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: 'Noto Serif JP', serif;
	transition: color 0.3s;
}

.automancy-post-navigation .nav-card:hover .nav-title {
	color: #b8973d;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.automancy-single-post-main {
		margin: 20px auto 60px;
	}

	.automancy-article {
		padding: 30px 20px;
		border-radius: 8px;
	}

	.automancy-article-title {
		font-size: 24px;
	}

	.automancy-post-navigation .nav-links {
		flex-direction: column;
		gap: 16px;
	}

	.automancy-post-navigation .nav-card {
		padding: 16px 20px;
	}
}
