/* 글로벌 콘텐츠 너비 1000px로 설정 */
:root {
  --wp--style--global--content-size: 1000px;
  --wp--style--global--wide-size: 1200px;
}

.wp-block-paragraph,
.wp-block-heading,
.wp-block-list,
.wp-block-image {
  max-width: 1000px !important;
  width: 100% !important;
}

/* 최신 글 리스트 너비 1000px 가운데 정렬 */
.wp-block-query.alignwide {
  max-width: 1000px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* 메인 페이지 게시물 제목의 밑줄 제거 */
.home a, .home a:hover {
    text-decoration: none !important;
}

/* 만약 위 코드로 안 된다면 이 코드를 써보세요 */
h2 a, h3 a {
    text-decoration: none !important;
}
/* 전체 본문 폰트 사이즈 조정 */
body, p, li {
    font-size: 16px !important; /* 기본보다 조금 더 큰 18px 추천 */
    line-height: 1.8; /* 줄 간격도 함께 넓혀야 읽기 편해요 */
}

/* 표(Table) 내부 텍스트 크기도 함께 키우기 */
table td, table th {
    font-size: 16px !important;
}

/* 1. 포스팅 전체 제목 (H1) 크기 조절 */
h1.entry-title, .entry-title a {
    font-size: 32px !important; /* 기존보다 크고 명확하게 */
    font-weight: 700 !important; /* 두껍게 강조 */
    line-height: 1.3;
}

/* 2. 본문 중간 소제목 (H2) 크기 조절 - '숙소 선택 시 핵심 체크리스트' 등 */
h2 {
    font-size: 24px !important;
    margin-top: 40px !important; /* 제목 위쪽 간격을 줘서 가독성 확보 */
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

/* 3. 더 작은 소제목 (H3) 크기 조절 */
h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
}
/* 오직 메인 페이지의 h3 태그 사이즈만 줄이기 */
.home h2 {
    font-size: 15px !important; /* 원하는 크기로 숫자를 조절하세요 */
    font-weight: 400 !important; /* 두께도 적절히 유지 */
	  margin-top: 10px !important; /* 제목 위쪽 간격을 줘서 가독성 확보 */
    margin-bottom: 10px !important;
}

/* 만약 최신글 리스트 블록 내의 링크된 제목이라면 이 코드가 더 정확할 수 있습니다 */
.home h2 a {
    font-size: 18px !important;
	    margin-top: 10px !important; /* 제목 위쪽 간격을 줘서 가독성 확보 */
    margin-bottom: 10px !important;
}