body {
	background: #e9e7e2;
	color: #222;
	font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
	line-height: 1.7;
}

.wp-site-blocks {
	max-width: 1120px;
	margin: 56px auto;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	padding: 42px 44px 36px;
}

@media (max-width: 760px) {
	.wp-site-blocks {
		margin: 0;
		padding: 28px 20px;
		box-shadow: none;
	}
}

.wp-block-navigation {
	border-top: 1px solid #e5e2dc;
	border-bottom: 1px solid #e5e2dc;
	margin-top: 28px;
	margin-bottom: 44px;
	padding: 12px 0;
}

.wp-block-navigation a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
}

.wp-block-navigation a:hover {
	color: #000;
	text-decoration: underline;
}

.book-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
	margin-top: 36px;
	max-width: 760px;
}

.book-card {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 22px;
	align-items: start;
	text-decoration: none;
	color: inherit;
	padding: 18px;
	border: 1px solid #e5e1d8;
	border-radius: 14px;
	background: #faf8f3;
	transition: transform .15s ease, box-shadow .15s ease;
}

.book-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.book-card img {
	width: 110px;
	height: auto;
	border-radius: 6px;
	display: block;
}

.book-card h3 {
	margin: 0 0 7px;
	font-size: 1.08rem;
	line-height: 1.4;
}

.book-subtitle {
	margin: 0 0 9px;
	color: #6f6a60;
	font-size: .92rem;
}

.book-summary {
	margin: 0;
	line-height: 1.65;
	color: #333;
	font-size: .92rem;
}

@media (max-width: 600px) {
	.book-card {
		grid-template-columns: 82px 1fr;
		gap: 15px;
		padding: 14px;
	}
	
	.book-card img {
		width: 82px;
	}
}

.post-hero-image {
	width: 100%;
	margin: 0 0 28px;
}

.post-hero-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.post-inline-image {
	width: 68%;
	margin: 24px auto;
}

.post-inline-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 700px) {
	.post-inline-image {
		width: 92%;
	}
}

/* 책과 작업 목록 카드 */
.books-work-section-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 2.2em 0 1.2em;
}

.books-work-card {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-start !important;
	gap: 24px !important;
	margin: 0 0 34px !important;
	text-decoration: none !important;
	color: inherit !important;
	clear: both !important;
}

.books-work-card img {
	width: 120px !important;
	max-width: 120px !important;
	height: auto !important;
	flex: 0 0 120px !important;
	border-radius: 4px !important;
	box-shadow: 0 1px 5px rgba(0,0,0,0.12) !important;
}

.books-work-card-text {
	flex: 1 !important;
	min-width: 0 !important;
	padding-top: 4px !important;
}

.books-work-card-text h3 {
	margin: 0 0 8px !important;
	font-size: 1.12rem !important;
	line-height: 1.35 !important;
}

.books-work-meta {
	margin: 0 0 10px !important;
	opacity: .72 !important;
	font-size: .92rem !important;
}

.books-work-subtitle {
	margin: 0 0 8px !important;
	opacity: .86 !important;
}

.books-work-summary {
	margin: 0 !important;
	line-height: 1.65 !important;
}

/* 모바일에서도 표지 왼쪽 + 설명 오른쪽 유지 */
@media screen and (max-width: 600px) {
	.books-work-card {
		gap: 16px !important;
	}
	
	.books-work-card img {
		width: 92px !important;
		max-width: 92px !important;
		flex-basis: 92px !important;
	}
	
	.books-work-card-text h3 {
		font-size: 1rem !important;
	}
	
	.books-work-summary {
		font-size: .92rem !important;
	}
}
/*
WordPress 추가 CSS에 한 번만 붙여넣기.
목적: 데스크톱에서는 자동화 코드의 가로/세로 사진 배치를 사용하고,
모바일/카카오톡 브라우저에서는 모든 본문 이미지를 원본 비율의 100% 폭으로 표시한다.
*/

@media (max-width: 768px) {
  img.body-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    float: none !important;
    margin: 18px 0 !important;
  }
}
