/* 제목 스타일 정리 */
h2.wp-block-heading { /* 워드프레스 블록 h2에 적용 */
    margin-top: 40px;
    margin-bottom: 20px;
}

h3.wp-block-heading { /* 워드프레스 블록 h3에 적용 */
    margin-top: 32px;
    margin-bottom: 15px;
}

h4.wp-block-heading { /* 워드프레스 블록 h4에 적용 */
    margin-top: 28px;
    margin-bottom: 15px;
}

h5.wp-block-heading { /* 워드프레스 블록 h5에 적용 */
    margin-top: 24px;
    margin-bottom: 15px;
}

/* 본문 단락 - 모든 워드프레스 문단 블록에 적용 */
p.wp-block-paragraph { /* .entry-content p 대신 이것을 더 우선적으로 고려 */
    line-height: 1.6;
    font-size: 16px;
    margin-top: 20px; /* 상단 여백 추가 */
    margin-bottom: 20px;
}

/* 이미지 아래 여백 */
.entry-content img {
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
    height: auto;
}

/* 목록 스타일 */
.entry-content ul,
.entry-content ol,
.wp-block-list { /* .wp-block-list 추가 */
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 인용문 스타일 */
.entry-content blockquote {
    border-left: 4px solid #ccc;
    padding-left: 16px;
    color: #555;
    font-style: italic;
    margin: 20px 0;
}

/* 줄바꿈 및 본문 패딩 설정 */
.entry-content,
.wp-block-group {
    word-break: keep-all !important;
    overflow-wrap: break-word;
    padding-left: 5px;
    padding-right: 5px;
}

/* 사이드바 카테고리 중 '리디렉션 보관함' 숨기기 */
.cat-item-1 {
    display: none !important;
}

/* 카테고리 버튼 hover 효과 */
a.category-button:hover {
    background-color: #333;
    color: white;
    transition: 0.3s;
}

/* 본문 단락 스타일 (문단 여백과 가독성 향상) */
.entry-content p,
p.wp-block-paragraph {
    line-height: 1.6;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 모바일 화면에서 패딩 축소 */
@media (max-width: 768px) {
    .entry-content,
    .wp-block-group {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Jetpack 좋아요 버튼 관련 요소 숨기기 */
.jetpack-likes-widget-wrapper,
.jetpack-likes-widget-unloaded,
.jetpack-likes-widget-placeholder,

