/* =========================================================
   한혜진닷컴 커스텀 CSS  (정리본)
   구조: 1)기본 본문  2)헤더  3)글 상세페이지  4)카테고리 목록
   * 메인페이지(page-id-3155)는 모든 본문/제목 스타일에서 제외
   ========================================================= */


/* =========================================================
   1. 본문 기본 (메인페이지 제외)
   ========================================================= */
body:not(.page-id-3155) {
    background-color: #FFFFFF !important;
    color: #18181B !important;
    line-height: 1.8 !important;
    font-size: 17px !important;
}

/* 본문 폭 제한 + 중앙 정렬 */
body:not(.page-id-3155) .site-content,
body:not(.page-id-3155) .entry-content,
body:not(.page-id-3155) .ast-container {
    max-width: 1152px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* 문단 간격 */
body:not(.page-id-3155) p {
    margin-bottom: 24px !important;
}

/* 본문 소제목 (H2, H3) — 글 안에서 쓰는 헤딩 */
body:not(.page-id-3155) h2 {
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 2px solid #FF4500;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 50px;
    margin-bottom: 25px;
}
body:not(.page-id-3155) h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* 인용구 */
body:not(.page-id-3155) blockquote {
    background-color: #FAFAFA !important;
    border-left: 4px solid #FF4500 !important;
    margin: 40px 0 !important;
    padding: 30px !important;
    font-style: italic;
    color: #52525B !important;
}


/* =========================================================
   2. 헤더 (상단 메뉴바)
   ========================================================= */
/* 전 페이지 헤더 검은 배경 고정 (한 번만 지정) */
.ast-primary-header-bar,
.site-header {
    background-color: #0D0D0D !important;
}


/* =========================================================
   3. 글 상세페이지 (single-post) — 실제로 글 하나를 열었을 때
   ========================================================= */
/* 글 제목: 크고 굵게, 여백은 좁게 (간격 문제 해결) */
.single-post .entry-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #000000 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    margin-top: 20px !important;
    margin-bottom: 16px !important;
}


/* =========================================================
   4. 카테고리 / 아카이브 목록 — 글 목록으로 볼 때의 미리보기
   ========================================================= */
/* 목록 카드: 빨간 테두리 */
.ast-article-post,
.archive article.post {
    border: 1px solid #CC0000 !important;
    padding: 24px !important;
    margin-bottom: 30px !important;
    background-color: #FFFFFF !important;
}

/* 목록 속 글 제목 (작게, 미리보기용) */
.ast-article-post .entry-title,
.archive article.post .entry-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 6px !important;
}
.ast-article-post .entry-title a,
.archive article.post .entry-title a {
    color: #000000 !important;
}

/* 목록 속 본문 미리보기 (얇고 차분한 회색) */
.ast-article-post .entry-content,
.archive article.post .entry-content,
.archive article.post .excerpt {
    font-size: 14px !important;
    font-weight: 300 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    word-break: keep-all !important;
}