@font-face {
    font-family: NanumSquare;
    font-weight: 400;
    src: url("./images/se-nanumsquare-regular.woff") format("woff");
}
body {
    text-size-adjust: 100%;
    font-weight: 400;
    font-family: NanumSquare, Noto Sans KR, sans-serif;
    font-size: 1em;
    /* [수정] 기본 줄 간격을 넓혀서 눈의 피로 감소 */
    line-height: 1.6;
    color: #333;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 100%;
}

blockquote, code, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, pre, td, textarea, th, ul {
    margin: 0px;
    padding: 0px;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

button, input, select, textarea {
    font-size: 100%;
    border-radius: 0px;
}

/* ★★★ 수익형 블로그 최적화 버튼 (클릭 유도) ★★★ */
button, .btn, a.btn, .button, a.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'NanumSquare', 'Noto Sans KR', sans-serif;
    text-decoration: none !important;
    cursor: pointer;
    outline: none;
    border: none;
    box-sizing: border-box;
    position: relative;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
    border-radius: 50px;
    
    /* 붉은색 그라디언트 (주목도 상승) */
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    background-size: 200% auto;
    
    /* 그림자 효과 */
    box-shadow: 0 10px 20px rgba(255, 75, 43, 0.3);
    
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(0);
    
    line-height: normal; 
    margin: 20px auto; /* 버튼 위아래 여백 확보 */
}

/* 버튼 호버 효과 */
button:hover, .btn:hover, a.btn:hover, .button:hover, a.button:hover {
    background-position: right center;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 75, 43, 0.5);
    background-color: #e65c00;
}

/* 버튼 클릭 효과 */
button:active, .btn:active, a.btn:active, .button:active, a.button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(255, 75, 43, 0.4);
}

ul li {
    list-style: none;
}

fieldset, img {
    border: none;
    vertical-align: top;
}

a, a:link {
    text-decoration: none;
    color: #333333;
}

a:visited {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.inner {
    margin-bottom: 20px;
    color: rgb(51, 51, 51);
}

#header .inner {
    position: relative;
    max-width: 1080px;
    margin: 0px auto;
}

#header .inner .logo {
    padding: 50px 0px 0px;
    font-size: 1.75em;
    line-height: 32px;
    letter-spacing: -1px;
    color: #333;
    font-family: NanumSquare, Noto Sans KR;
    font-weight: normal;
}

#header .inner .logo a {
    display: inline-block;
    height: 32px;
    text-decoration: none;
    color: rgb(51, 51, 51);
    vertical-align: top;
}
#header .inner .logo img {
    width: auto;
    height: 32px;
}

#container {
    position: relative;
}

/* 1단 레이아웃 설정: 본문 너비 조정 */
#container .content-wrap {
    max-width: 860px;
    margin: 50px auto 0px;
    padding: 0px 20px;
    float: none;
}

#container .content-wrap::after {
    content: "";
    clear: both;
    display: block;
    height: 0px;
    visibility: hidden;
}

/* 1단 레이아웃 설정: 콘텐츠 영역 100% 사용 */
#content {
    float: none;
    width: 100%;
    padding: 0px 0px 60px;
    box-sizing: border-box;
    margin: 0 auto;
}

#content > .inner::after {
    content: "";
    clear: both;
    display: block;
    height: 0px;
    visibility: hidden;
}

/* 사이드바 숨김 처리 */
#aside {
    display: none;
}

#footer {
    padding: 38px 0px 28px;
}

#footer .inner {
    position: relative;
    max-width: 1080px;
    margin: 0px auto;
}

#footer p {
    margin-bottom: 10px;
    font-size: 0.875em;
    color: rgb(119, 119, 119);
}

#footer .page-top {
    position: absolute;
    bottom: -40px;
    right: 0px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url("images/ico_package.png") -100px -200px no-repeat rgb(255, 255, 255);
    text-indent: -999em;
    border: 1px solid rgb(238, 238, 238);
    margin-bottom: 40px;
}

#footer .page-top:focus, #footer .page-top:hover {
    background-color: rgb(117, 117, 117);
    background-position-x: -150px;
}

#tt-body-index #content {
    padding-bottom: 20px;
}

.post-header h1 {
    margin-bottom: 18px;
    font-size: 1.4em;
    line-height: 1.375;
}

.post-header h1 em {
    margin-left: 7px;
    font-style: normal;
    color: rgb(4, 190, 184);
}

.post-item {
    float: left;
    width: 31.0811%;
    margin: 0px 0px 20px 3.37838%;
}
.post-item:hover {
    opacity:.7;
}

.post-item:nth-child(3n+1) {
    clear: both;
    margin-left: 0px;
}

.post-item a {
    display: block;
    text-decoration: none;
}

.post-item .thum {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 0px;
    margin-bottom: 5px;
    padding-bottom: 100%;
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
}

.post-item .thum img {
    width: 100%;
    height: auto;
}

.post-item .title {
    display: block;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 4px;
    padding-top: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
    font-weight: bold;
}

.post-item .excerpt {
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    font-size: 0.9125em;
    line-height: 1.5rem;
    color: rgb(51, 51, 51);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-item.protected .thum::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 47px;
    margin: -24px 0px 0px -17px;
    background: url("images/ico_package.png") 0px -120px / 120px no-repeat;
}

#tt-body-archive .not-found ul, #tt-body-category .not-found ul, #tt-body-tag .not-found ul {
    display: none;
}

#tt-body-archive .not-found .archive, #tt-body-category .not-found .category, #tt-body-tag .not-found .tag {
    display: block;
}

.pagination {
    margin-bottom: 60px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0px 12px;
    font-size: 0.875em;
    line-height: 1.5rem;
    vertical-align: top;
    color: #333333;
}

.pagination .selected {
    color: rgb(51, 51, 51);
}

.pagination .next, .pagination .prev {
    width: 22px;
    height: 22px;
    border: 1px solid rgb(238, 238, 238);
    background: url("images/ico_package.png") 0px -50px no-repeat;
    text-indent: -999em;
}

.pagination .next {
    background-position-x: -50px;
}

.pagination .view-more {
    display: block;
    margin: 0px;
    padding: 12px 0px 11px;
    border: 1px solid rgb(238, 238, 238);
    text-align: center;
    font-size: 0.875em;
    color: rgb(153, 153, 153);
}

.related-articles {
    margin-bottom: 55px;
}

.related-articles h2 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1em;
}

.related-articles ul {
    display: inline-block;
    width: 101.622%;
    margin-left: -1.62162%;
    vertical-align: top;
}

.related-articles ul li {
    float: left;
    width: 25%;
    padding-left: 1.62162%;
    box-sizing: border-box;
}

.related-articles ul li:first-child {
    margin-left: 0px;
}

.related-articles ul li a {
    color: rgb(85, 85, 85);
}

.related-articles ul li a:focus, .related-articles ul li a:hover {
    color: rgb(51, 51, 51);
}

.related-articles ul li figure {
    display: block;
    width: 100%;
    height: 0px;
    margin-bottom: 0px;
    padding-bottom: 100%;
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
}

.related-articles ul li figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.related-articles ul li .title {
    overflow: hidden;
    max-width: 100%;
    white-space: initial;
    font-size: 0.975em;
    line-height: 1.4;
    margin-top: 10px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-weight: bold;
}

.entry-content h1 {
    clear: both;
    margin: 29px 0px 22px;
    font-size: 1.6875em;
    line-height: 1.5;
    color: rgb(0, 0, 0);
}

/* h2 스타일 */
.entry-content h2 {
    font-size: 1.5em;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.entry-content h2::before {
    display: inline-block;
    content: "";
    width: 8px;
    height: 24px;
    background: linear-gradient(180deg, #ff5b00, #ffbb00);
    background-size: 200% 200%;
    border-radius: 4px;
    margin-right: 12px;
    animation: gradientAnimation 3s infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.entry-content h2:hover {
    box-shadow: none;
    transform: none;
    border-color: #e0e0e0;
}

.entry-content h3 {
    clear: both;
    margin: 29px 0px 22px;
    font-size: 1.3125em;
    line-height: 1.5;
    color: rgb(0, 0, 0);
    font-weight: bold!important;
}

.entry-content h4 {
    clear: both;
    margin: 29px 0px 22px;
    font-weight: 400;
    font-size: 1.125em;
    line-height: 1.5;
    color: rgb(0, 0, 0);
}

.entry-content a {
    color: rgb(4, 190, 184);
}

/* ★★★ 본문 가독성 최적화 세팅 ★★★ */
.entry-content p {
    word-break: break-all;
    /* [수정] 폰트 사이즈 키움 (가독성 UP) */
    font-size: 1.05em; 
    /* [수정] 줄 간격 1.8 유지 (편안함) */
    line-height: 1.8;
    /* [수정] 글자색 진하게 (명시성) */
    color: #222;
    /* [수정] 문단 간격 넓힘 (스크롤 유도) */
    margin-bottom: 24px; 
}

.entry-content p img {
    max-width: 100%;
    height: auto;
}

.entry-content figure {
    margin-top: 8px !important;
}
.entry-content pre {
    word-break: break-all;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}
.entry-content ul {
    list-style: none;
    margin-bottom: 10px;
    padding: 0px;
}

/* ★★★ 리스트 가독성 수정 ★★★ */
.entry-content ul li {
    position: relative;
    /* [수정] 리스트 간격 조정 */
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.7;
    text-indent: 15px;
    list-style-type: none!important;
}
.entry-content ul li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0px;
    width: 8px;
    height: 1px;
    background-color: rgb(153, 153, 153);
}

.entry-content ol {
    margin-bottom: 22px;
}

.entry-content ol li {
    position: relative;
    /* [수정] 리스트 간격 조정 */
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #333333;
    text-indent: 15px;
    list-style-type: none!important;
}

.entry-content ol li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0px;
    width: 8px;
    height: 1px;
    background-color: rgb(153, 153, 153);
}

.entry-content img.alignleft {
    float: left;
    margin: 0px 22px 22px 0px;
}

.entry-content img.aligncenter {
    display: block;
    margin: 0px auto 22px;
}

.entry-content img.alignright {
    float: right;
    margin: 0px 0px 22px 22px;
}

.entry-content blockquote {
    margin-bottom: 40px;
    padding: 16px 20px;
    border-left: 4px solid rgb(230, 230, 230);
}

.entry-content blockquote p {
    margin: 22px 0px 0px;
}

.entry-content blockquote p:first-child {
    margin-top: 0px;
}

.entry-content table {
    width: 100%;
    margin-bottom: 22px;
    border: 1px solid rgb(230, 230, 230);
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9375em;
    line-height: 1.5714;
    color: rgb(102, 102, 102);
}

.entry-content table thead th {
    padding: 7px 0px 11px;
    border-left: 1px solid rgb(230, 230, 230);
}

.entry-content table tbody td {
    padding: 7px 0px 11px;
    border-left: 1px solid rgb(230, 230, 230);
    border-top: 1px solid rgb(230, 230, 230);
}

.entry-content input {
    height: 36px;
    padding: 0px 10px;
    border: 1px solid rgb(230, 230, 230);
    font-size: 0.875em;
    line-height: 1.25;
    color: rgb(102, 102, 102);
    box-sizing: border-box;
    vertical-align: middle;
}

.entry-content .entry-content .protected_form {
    margin-bottom: 40px;
    padding: 120px 0px 200px;
    border-bottom: 1px solid rgb(122, 88, 58);
    text-align: center;
}

.entry-content .entry-content .protected_form input {
    width: 200px;
    margin-bottom: 10px;
    vertical-align: top;
}

.entry-content .cap1 {
    text-align: center;
    font-size: 0.875em;
    font-style: italic;
}

.entry-content .iframe-wrap {
    position: relative;
    height: 0px;
    padding-bottom: 56.25%;
}

.entry-content .iframe-wrap iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.entry-content .protected_form {
    display: block;
    width: 100%;
    padding: 98px 0px 120px;
    text-align: center;
}

.entry-content .protected_form h2 {
    margin: 0px 0px 8px;
    font-weight: 600;
    font-size: 1.625em;
    line-height: 2.125rem;
    color: rgb(85, 85, 85);
}

.entry-content .protected_form p {
    margin-bottom: 34px;
    font-weight: 300;
    font-size: 1em;
    line-height: 1.75;
    color: rgb(153, 153, 153);
}

.entry-content .protected_form input {
    width: 183px;
    padding: 0px 23px;
    border: 1px solid rgb(238, 238, 238);
    font-size: 0.9125em;
    line-height: 2.125rem;
}

.entry-content .protected_form input:focus {
    border-color: rgb(72, 72, 72);
}

.entry-content .protected_form .btn {
    margin-left: 5px;
}

#dimmed {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 300;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.slide-wrap {
    overflow: hidden;
}

#content .another_category {
    padding: 16px 20px 14px;
    margin: 60px 0px 57px !important;
}

#content .another_category h4 {
    margin: 0px 0px 13px !important;
    padding: 0px !important;
    border-bottom: 0px !important;
    font-size: 0.875em !important;
}

#content .another_category table {
    border: 0px;
    margin: 0px !important;
}

#content .another_category th {
    padding: 2px 0px !important;
    font-size: 0.875rem !important;
}

#content .another_category th a.current {
    font-weight: 400;
    text-decoration: underline !important;
    color: rgb(51, 51, 51) !important;
    border: 0px !important;
}

#content .another_category td {
    border: 0px;
    padding: 2px 0px !important;
    font-size: 0.75rem !important;
}

.container_postbtn {
    margin: 53px 0px 55px;
    padding: 0px !important;
}

.absent_post::before {
    content: "";
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 1.75em;
    line-height: 1.28571;
    color: rgb(85, 85, 85);
    white-space: pre;
}

.absent_post {
    line-height: 1.75;
    padding: 98px 0px !important;
    background: 0px 0px !important;
    font-weight: 400 !important;
    font-size: 1em !important;
    color: rgb(153, 153, 153) !important;
}

/* 1단 레이아웃 관련 모바일 대응 */
@media screen and (max-width: 1080px) {
    #footer, #header h1 {
        padding-left: 24px;
        padding-right: 24px;
    }

    #container .content-wrap::before {
        left: 72.7%;
        margin-left: 0px;
    }

    #header .inner .logo {
        padding: 0px 20px;
        padding-top: 24px;
    }
}

@media screen and (max-width: 767px) {
    #header h1 {
        position: relative;
        z-index: 10;
        padding: 40px 24px 0 24px;
        background-color: rgb(255, 255, 255);
        margin: 0;
    }

    #container .content-wrap {
        padding: 0px;
        margin: 0;
        width: 100%;
    }

    #container .content-wrap::before {
        content: none;
    }

    #content {
        float: none;
        width: 100%;
        padding: 34px 24px 40px;
    }

    /* 사이드바 관련 스타일 제거 및 초기화 */
    #aside {
        display: none;
    }

    #footer {
        padding: 32px 24px 26px;
    }

    #footer p {
        margin-bottom: 11px;
        font-size: 0.8125em;
    }
    #header .inner .logo {
        padding: 0px 24px;
        padding-top: 24px;
        text-align: center;
    }

    #tt-body-index #content {
        padding: 0px;
    }

    #tt-body-index #content > .inner {
        padding: 0px 50px;
    }

    #tt-body-index #content > .inner:first-child {
        padding-top: 30px;
    }

    #tt-body-index.list-type-text #content > .inner:first-child {
        padding-top: 36px;
    }

    #tt-body-index .pagination {
        margin: 0px 20px 40px;
    }

    #tt-body-page #content {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .post-header {
        padding-top: 2px;
    }

    .post-item {
        float: none;
        width: auto;
        margin-left: 0px;
        margin-bottom: 30px;
    }

    .post-item .thum {
        margin-bottom: 7px;
    }

    .post-item .title {
        margin-bottom: 12px;
    }

    .post-item .excerpt {
        margin-bottom: 12px;
    }

    .pagination {
        margin-bottom: 0px;
    }

    .pagination a {
        margin: 0px 4px;
    }

    /* 버튼 모바일 대응 */
    .btn, button, a.btn, .button, a.button {
        width: 100%;
        padding: 15px 0;
        font-size: 1.1em;
    }
}

.revenue_unit_wrap.position_list {
    max-width: 740px;
    margin: 30px auto;
}
.adsense {
		width:100%; 
		height:100%;
}

/* h3 스타일 */
h3 {
    font-size: 1.5em; 
    color: #333;
    margin-bottom: 20px;
    padding: 10px 0;
    text-align: left;
    font-weight: bold;
    border-bottom: 3px solid #ff5b00;
    position: relative;
    transition: color 0.3s ease;
}

h3:hover::after {
    width: 100%;
    background-color: #ff5b00;
}

/* h4 스타일 */
h4 {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 15px;
    padding: 5px 0;
    text-align: left;
    font-weight: bold;
    border-left: 4px solid #ff5b00;
    padding-left: 10px;
    position: relative;
    transition: color 0.3s ease;
}

h4:hover::before {
    width: 100%;
    background-color: #ff5b00;
}

@media (max-width: 768px) {
    h3 { font-size: 1.3em; }
    h4 { font-size: 1.1em; }
}

@media (max-width: 480px) {
    h3 { font-size: 1.1em; }
    h4 { font-size: 1em; }
}

/* q&a */
[itemtype="https://schema.org/Question"] {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

[itemtype="https://schema.org/Question"]:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

[itemtype="https://schema.org/Question"] [itemprop="name"] {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  padding: 10px 0;
  padding-left: 10px;
  border-left: 4px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

[itemtype="https://schema.org/Question"]:hover [itemprop="name"] {
  color: #ff5b00;
  border-color: #ff5b00;
}

[itemtype="https://schema.org/Answer"] [itemprop="text"] p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* 기본 형광펜 밑줄 효과 */
u:nth-of-type(3n+1) {
	text-decoration: none;
	display: inline;
	box-shadow: inset 0 -4px 0 #F5B7B1;
	color: #000;
  }
  
  u:nth-of-type(3n+2) {
	text-decoration: none;
	display: inline;
	box-shadow: inset 0 -4px 0 #AED6F1;
	color: #000;
  }
  
  u:nth-of-type(3n) {
	text-decoration: none;
	display: inline;
	box-shadow: inset 0 -4px 0 #FFDD57;
	color: #000;
  }

/* 주황색 테이블 스타일 */
.flexible-table {
	--primary-color: #FF8C00;
	--secondary-color: #FFA500;
	--highlight-color: #FFD700;
	--text-color: #333;
	--bg-color: #FFF5E6;
	
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 15px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-color);
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
  }
  
  .flexible-table thead tr {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
	transform: translateY(-5px);
	transition: transform 0.3s ease;
  }
  
  .flexible-table th {
	color: white;
	padding: 20px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
  }
  
  .flexible-table th::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--highlight-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
  }
  
  .flexible-table th:hover::after {
	transform: scaleX(1);
  }
  
  .flexible-table tbody tr {
	background-color: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	transition: all 0.3s ease;
  }
  
  .flexible-table tbody tr:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 10px 20px rgba(255, 140, 0, 0.15);
  }
  
  .flexible-table td {
	padding: 20px;
	color: var(--text-color);
	position: relative;
	overflow: hidden;
  }
  
  .flexible-table td::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background-color: var(--primary-color);
	transform: scaleY(0);
	transition: transform 0.3s ease;
  }
  
  .flexible-table tr:hover td::before {
	transform: scaleY(1);
  }
  
  .flexible-table td:nth-child(3),
  .flexible-table td:nth-child(4) {
	font-weight: bold;
  }
  
  @keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
  }
  
  .flexible-table tbody tr:hover {
	animation: pulse 1.5s infinite;
  }
  
  @media screen and (max-width: 768px) {
	.flexible-table {
	  font-size: 14px;
	  padding: 10px;
	}
	
	.flexible-table th,
	.flexible-table td {
	  padding: 15px 10px;
	}
  }
  
  /* 인용문 스타일 */
  blockquote[cite] {
	  border: 3px solid transparent;
	  border-image: linear-gradient(45deg, #FF8C00, #FFA500) 1;
	  border-radius: 10px;
	  padding: 30px 30px 30px 70px;
	  margin: 40px 0;
	  font-family: 'Arial', sans-serif;
	  font-size: 18px;
	  line-height: 1.6;
	  color: #333;
	  background-color: rgba(255, 248, 240, 0.3);
	  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.1);
	  position: relative;
	  overflow: hidden;
	  transition: all 0.3s ease;
  }
  
  blockquote[cite]::before,
  blockquote[cite]::after {
	  content: '\201C';
	  font-family: Georgia, serif;
	  font-size: 120px;
	  color: #FF8C00;
	  position: absolute;
	  opacity: 0.2;
  }
  
  blockquote[cite]::before {
	  left: 10px;
	  top: -30px;
  }
  
  blockquote[cite]::after {
	  content: '\201D';
	  right: 10px;
	  bottom: -70px;
  }
  
  blockquote[cite] p {
	  margin: 0 0 15px;
	  position: relative;
	  z-index: 1;
  }
  
  blockquote[cite] cite {
	  display: block;
	  font-style: normal;
	  font-size: 16px;
	  color: #FF8C00;
	  margin-top: 15px;
	  text-align: right;
	  font-weight: bold;
  }
  
  blockquote[cite] cite::before {
	  content: "— ";
  }
  
  blockquote[cite]:hover {
	  transform: translateY(-3px);
	  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
  }
  
  @media (max-width: 768px) {
	  blockquote[cite] {
		  font-size: 16px;
		  padding: 25px 25px 25px 60px;
	  }
	  
	  blockquote[cite]::before,
	  blockquote[cite]::after {
		  font-size: 100px;
	  }
	  
	  blockquote[cite]::after {
		  bottom: -60px;
	  }
  }

  /* 이미지 스타일 */
  img[alt] {
	  border-radius: 15px;
	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	  transition: all 0.3s ease;
	  max-width: 100%;
	  height: auto;
	  display: block;
	  margin: 20px auto;
  }
  
  img[alt]:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* 캡션 스타일 */
  figure {
	  margin: 0;
	  padding: 0;
	  text-align: center;
	  position: relative;
  }
  
  figcaption {
	  margin-top: 10px;
	  padding: 10px 15px;
	  background-color: rgba(255, 140, 0, 0.1);
	  color: #FF8C00;
	  font-style: normal;
	  font-weight: bold;
	  font-size: 1.1em;
	  border-radius: 8px;
	  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	  display: inline-block;
	  transition: all 0.3s ease;
  }
  
  figcaption:hover {
	  background-color: rgba(255, 140, 0, 0.2);
	  transform: translateY(-2px);
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 768px) {
	  img[alt] {
		  border-radius: 10px;
	  }
	  
	  figcaption {
		  font-size: 1em;
		  padding: 8px 12px;
	  }
  }
  
  /* 리스트 스타일 */
  ul[data-ke-list-type="disc"] {
	  list-style-type: none;
	  padding: 0;
	  margin: 30px 0;
	  font-family: 'Noto Sans KR', 'Helvetica Neue', Arial, sans-serif;
  }
  
  ul[data-ke-list-type="disc"] li {
	  margin-bottom: 25px;
	  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  ul[data-ke-list-type="disc"] li a {
	  display: flex;
	  align-items: center;
	  padding: 18px 25px;
	  background: #ffffff;
	  color: #333333;
	  text-decoration: none;
	  font-family: 'Noto Sans KR', sans-serif;
	  font-size: 17px;
	  font-weight: 600;
	  border-radius: 15px;
	  border: 2px solid #FF6B00;
	  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
	  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	  position: relative;
	  overflow: hidden;
  }
  
  ul[data-ke-list-type="disc"] li a::before {
	  content: '함께 읽기 👀';
	  position: absolute;
	  top: 0;
	  left: 0;
	  background: #FF6B00;
	  color: #ffffff;
	  padding: 6px 12px;
	  font-size: 13px;
	  font-weight: 500;
	  border-radius: 0 0 12px 0;
	  opacity: 0;
	  transform: translateY(-100%);
	  transition: all 0.3s ease;
  }
  
  ul[data-ke-list-type="disc"] li a:hover {
	  transform: translateY(-7px) scale(1.03);
	  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
	  border-color: #FF4500;
  }
  
  ul[data-ke-list-type="disc"] li a:hover::before {
	  opacity: 1;
	  transform: translateY(0);
  }
  
  ul[data-ke-list-type="disc"] li a::after {
	  content: '→';
	  margin-left: auto;
	  font-size: 28px;
	  color: #FF6B00;
	  opacity: 0.8;
	  transition: all 0.3s ease;
  }
  
  ul[data-ke-list-type="disc"] li a:hover::after {
	  transform: translateX(5px) rotate(-45deg);
	  opacity: 1;
	  color: #FF4500;
  }
  
  ul[data-ke-list-type="disc"] li a span {
	  flex-grow: 1;
	  padding-right: 15px;
  }
  
  @keyframes softPulse {
	  0% { box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1); }
	  50% { box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2); }
	  100% { box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1); }
  }
  
  ul[data-ke-list-type="disc"] li a {
	  animation: softPulse 3s infinite;
  }
  
  @media (max-width: 768px) {
	  ul[data-ke-list-type="disc"] li a {
		  font-size: 15px;
		  padding: 15px 20px;
	  }
	  ul[data-ke-list-type="disc"] li a::before {
		  font-size: 11px;
		  padding: 4px 8px;
	  }
	  ul[data-ke-list-type="disc"] li a::after {
		  font-size: 24px;
	  }
  }

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    line-height: 1.6;
}

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: #FF9800;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li:hover {
    color: #FF9800;
    padding-left: 32px;
}

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li:hover::before {
    background-color: #F57C00;
    transform: rotate(45deg) scale(1.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 텍스트 스타일 */
b, strong, em, i, abbr {
    transition: all 0.3s ease;
}

b {
    font-weight: 700;
    color: #ff6600;
    padding: 0 2px;
}

b:hover {
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 2px;
}

strong {
    font-weight: 700;
    color: #ffffff;
    background-color: #ff6600;
    padding: 0 4px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

strong:hover {
    background-color: #e65c00;
}

em {
    font-style: italic;
    color: #ff8533;
    position: relative;
}

em::before {
    content: '『';
    margin-right: 2px;
}

em::after {
    content: '』';
    margin-left: 2px;
}

i {
    font-style: italic;
    color: #ff7f40;
    border-bottom: 1px dashed #ff7f40;
}

abbr {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px dotted #ff9966;
    cursor: help;
    position: relative;
}

abbr::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9966;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

abbr:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    box-shadow: 0 2px 4px rgba(255,140,0,0.3);
    border-radius: 2px;
}
h1:hover::after {
    width: 140px;
    transition: width 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(255,140,0,0.5);
}
.logo {
    padding: 10px 0;
    border-bottom: 1px solid #FF8C00;
}

.logo a {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 30px;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: bold;
}
.pagination {
    display: none;
}
.sidebar-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    margin-top: 20px;
    background: linear-gradient(135deg, #FF8C00, #FF4500);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.sidebar-banner:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.banner-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-size: 18px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@keyframes shine {
    0% {
        background-position: -100% 100%;
    }
    100% {
        background-position: 100% -100%;
    }
}

.sidebar-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 200%;
    animation: shine 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sidebar-banner:hover .banner-title,
.sidebar-banner:hover .banner-subtitle {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.sidebar-banner {
    animation: bounce 5s infinite;
}

/* 목차 컨테이너 */
#toc-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  font-family: 'Arial', sans-serif;
}

#toc-header {
  background: #FF8C00;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

#toc-header:hover {
  background: #FFA500;
}

#toc-container h2 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
}

#toc-toggle {
  font-size: 18px;
  transition: transform 0.3s ease;
}

#toc-container.collapsed #toc-toggle {
  transform: rotate(-90deg);
}

#toc {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#toc-container:not(.collapsed) #toc {
  max-height: 500px;
  padding: 15px;
}

#toc li {
  margin-bottom: 10px;
  line-height: 1.4;
}

#toc a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
}

#toc a:hover {
  background-color: #FFE4B5;
  color: #FF8C00;
}

#toc li.toc-h3 {
  margin-left: 15px;
  font-size: 13px;
}

@media (max-width: 768px) {
  #toc-container {
    width: 95%;
  }
}

.inner .entry-content {
    margin: 5px 0;
    background: #fff;
    padding: 35px 27px 1px 27px;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    box-shadow: 3px 4px 9px 0.1px #eaeaea;
    border-radius: 11px;
}
#container {
    background-color: #f2f2f2;
    position: relative;
}

/* ★★★ 모바일 본문 폰트 크기 확대 ★★★ */
@media screen and (max-width: 767px) {
    .entry-content p, 
    .entry-content ul li, 
    .entry-content ol li {
        /* 기존 1.05em -> 1.2em으로 확대 (취향에 따라 숫자 조절 가능) */
        font-size: 1.2em !important; 
        line-height: 1.65; /* 글자가 커진 만큼 줄 간격도 자연스럽게 조정 */
    }
}