/* 사이트 전체 배경 이미지 제거 */
body {
    background-image: none !important;
    background-color: #ffffff !important; /* 배경색을 흰색으로 강제 지정 */
}

/* 모든 이미지 가운데 정렬 */
.single .wp-block-image {
    text-align: center;
}
/* End 모든 이미지 가운데 정렬 *//* GeneratePress Site CSS */ /* Site title and tag line */
.site-description {
	margin-top: 1.2em;
	background-color: rgba(31,32,36, 0.4);
	padding: 14px;
	border: 1px solid var(--contrast-5);
}
/* Box shadow */
.site, .box-shadow {
	box-shadow: 0px 0px 20px -10px rgba(0,0,0,0.3);
}
/* Forms and buttons */
.button, .submit {
	border-radius: 3px;
}
/* Sidebar */
.sidebar.is-right-sidebar {
	background-color: var(--base-2);
}

@media(min-width: 769px) {
	.sidebar.is-right-sidebar > .inside-right-sidebar {
        position: sticky;
        top: 54px;
    }
}
/* Category label background colors */
body:not(.single):not(.blog):not(.search-results) .post-term-item {
	padding: 5px 10px;
}
body.blog .post-term-item,
body.search-results .post-term-item
{
	padding: 10px 20px;
}
body:not(.single):not(.blog):not(.search-results) .post-term-item {
	border-radius: 3px;
}
body:not(.single) .post-term-item.term-business {
	background-color: var(--business);
}
body:not(.single) .post-term-item.term-community {
	background-color: var(--community);
}
body:not(.single) .post-term-item.term-education {
	background-color: var(--education);
}
body:not(.single) .post-term-item.term-entertainment {
	background-color: var(--entertainment);
}
body:not(.single) .post-term-item.term-lifestyle {
	background-color: var(--lifestyle);
}
body:not(.single) .post-term-item.term-technology {
	background-color: var(--technology);
}
body:not(.single) .post-term-item.term-travel {
	background-color: var(--travel);
}
/* Category layout */
.archive .site-main {
	padding: 30px;
	background-color: var(--base-2);
}
@media (min-width: 769px) {
	.archive .site-main .ratio-third {
		display: grid;
  	grid-template-columns: repeat(3, 1fr);
	}
	.archive .site-main .ratio-third > .gb-query-loop-item:first-child {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
	}
} /* End GeneratePress Site CSS */

/* H2 to H5 design */
.single .entry-content h2 { 
    margin: 1.15em 0 0.6em 0; 
    font-weight: normal; 
    position: relative; 
    font-size: 25px; 
    line-height: 40px; 
    background: linear-gradient(to right, #18609C, #49A9D0); 
    border: 1px solid #fff; 
    padding: 5px 15px; 
    color: white; 
    border-radius: 0 10px 0 10px; 
    box-shadow: inset 0 0 5px rgba(53, 86, 129, 0.5); 
}
.single .entry-content h3 { 
    color: #124875; 
    padding-bottom: 10px; 
    text-align: left; 
    border-left: #18609C 10px solid; 
    padding: 3px 9px; 
    margin: 30px 0 20px 0; 
    background-color: #FFF; 
    border-bottom: 2px solid #18609C; 
    font-size: 1.2em; 
    font-weight: 700; 
}
.single .entry-content h4 { 
    padding: 3px 9px; 
    border-left: 5px solid #18609C; 
    border-bottom: 1px solid #18609C; 
    margin-bottom: 15px;
    transition: all .4s ease-in-out; 
}
.single .entry-content h5 { 
    padding: 3px 9px; 
    border-left: 0px solid #18609C; 
    border-bottom: 1px solid #18609C; 
    margin-bottom: 15px;
    transition: all .4s ease-in-out; 
}

/* 제이메구 스타일 정보 표 (v4: 3:7 비율, 선 제거, 색상 변경) */
.jm-table {
  width: 100%;
  border-collapse: collapse; /* 선을 합치는 기능 (선이 없어도 유지) */
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9em;
  /* '감싸는 선'은 v3에서 이미 제거되었습니다. */
}

/* 표의 머리말(항목)과 내용 */
.jm-table th,
.jm-table td {
  text-align: left;
  padding: 10px 12px;
  /* 3. 모든 선 제거 (border 속성 삭제) */
}

/* 항목(th)은 약간 더 진한 배경색으로 구분 */
.jm-table th {
  background-color: #f9f9f9;
  width: 25%; /* 1. 좌우 3:7 비율 (왼쪽 30%) */
}

/* 짝수 행(row)에만 배경색 적용 (Zebra Striping) */
.jm-table tr:nth-child(even) {
  /* 2. 기존 #f4f8fb 보다 조금 더 진한 파란색 */
  background-color: #e1f0fb; 
  /* (참고: GPT가 제안했던 #B9E2FA는 너무 진할 수 있습니다.) */
  /* (만약 #e1f0fb도 엷다면 #d1e9fb 로 시도해 보세요.) */
}

/* ===================== */
/* jm-table3 (3칸 2:4:4) */
/* ===================== */

.jm-table3 {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9em;
  table-layout: fixed; /* 열 비율 고정 */
}

.jm-table3 th,
.jm-table3 td {
  text-align: left;
  padding: 10px 12px;
}

/* 헤더 배경 */
.jm-table3 th {
  background-color: #f9f9f9;
}

/* zebra striping */
.jm-table3 tr:nth-child(even) {
  background-color: #e1f0fb;
}

/* ⭐ 2:4:4 비율 */
.jm-table3 th:nth-child(1),
.jm-table3 td:nth-child(1) {
  width: 20%;
}

.jm-table3 th:nth-child(2),
.jm-table3 td:nth-child(2) {
  width: 40%;
}

.jm-table3 th:nth-child(3),
.jm-table3 td:nth-child(3) {
  width: 40%;
}


/* 링크 스타일 */
.jm-table a {
  color: #007acc;
  text-decoration: underline;
}