/*
 * Midea 글 상세 페이지 전용 스타일.
 * 헤더/푸터/게시글 리스트(관련 글) 공용 스타일은 common.css 참고.
 */

.midea-post {
	max-width: 720px;
	margin: 0 auto;
	padding: 64px 24px 48px;
}

.midea-post-header {
	text-align: center;
	margin-bottom: 40px;
}

.midea-post-header .midea-post-category {
	display: inline-block;
	margin-bottom: 16px;
}

.midea-post-heading {
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 16px;
}

.midea-post-date {
	display: block;
	font-size: 13px;
	color: var(--color-text-faint);
}

.midea-post-content {
	font-size: 16px;
	line-height: 1.85;
	color: var(--color-text-secondary);
}

.midea-post-content > * + * {
	margin-top: 24px;
}

.midea-post-content h2,
.midea-post-content h3,
.midea-post-content h4 {
	font-family: var(--font-heading);
	color: var(--color-text-primary);
	line-height: 1.4;
}

.midea-post-content h2 {
	font-size: 24px;
}

.midea-post-content h3 {
	font-size: 20px;
}

.midea-post-content a {
	color: var(--color-accent-cyan);
	text-decoration: underline;
}

.midea-post-content strong {
	color: var(--color-text-primary);
}

.midea-post-content blockquote {
	margin: 0;
	padding: 16px 20px;
	border-left: 2px solid var(--color-accent-violet);
	background-color: var(--color-bg-surface);
	color: var(--color-text-primary);
}

.midea-post-content ul,
.midea-post-content ol {
	padding-left: 1.25em;
}

.midea-post-content img {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

.midea-post-content figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--color-text-faint);
	text-align: center;
}

.midea-related-posts {
	border-top: 1px solid var(--color-border);
	padding-top: 48px;
}

.midea-back-home {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px 64px;
	text-align: center;
}

.midea-back-home a {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-accent-cyan);
}

/* ---------- 반응형: 태블릿 (≤ 1024px) ---------- */

@media (max-width: 1024px) {
	.midea-post {
		max-width: 640px;
	}
}

/* ---------- 반응형: 모바일 (≤ 640px) ---------- */

@media (max-width: 640px) {
	.midea-post {
		padding: 48px 20px 32px;
	}

	.midea-post-heading {
		font-size: 26px;
	}

	.midea-post-content {
		font-size: 15px;
	}
}
