@charset "UTF-8";

/* ==================================================================
 * 슬기로운 블로그 생활 - Master Stylesheet
 * 최종 정리 by Gemini
 * ================================================================== */

/* ------------------------------------------------------------------
 * [테마 색상 변수]
 * ------------------------------------------------------------------ */
:root {
  --theme-navy-blue: #0A2342; /* 안정감과 신뢰를 주는 네이비 블루 */
  --theme-terracotta: #E2725B;    /* 따뜻하고 주목도 있는 테라코타 */
  --theme-beige: #EAE0D5; /* 부드러운 베이지 (경계선, 은은한 배경) */
  --theme-light-beige: #FDFBF8; /* 매우 밝은 베이지 (각종 박스 배경) */
  --theme-base-font: #3A4954;     /* 기본 본문 폰트 색상 */
  --theme-white: #ffffff; /* 흰색 */
}

/* ------------------------------------------------------------------
 * [기본 스타일 및 레이아웃]
 * ------------------------------------------------------------------ */
*:focus {
  outline:0;
}
@keyframes rotateEffect {
  50% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}
@keyframes rotateEffect2 {
  50% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}
body,html {
  font-family:"Noto sans KR",sans-serif;
  font-weight: 400;
  color: var(--theme-base-font);
  scroll-behavior:smooth;
  letter-spacing:0.2px;
  min-width:320px;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
}
::-webkit-scrollbar {
  -webkit-appearance:none;
  width: 8px;
  height: 8px
}
::-webkit-scrollbar-track {
  background: transparent
}
::-webkit-scrollbar-thumb {
  background-color: rgba(10, 35, 66, 0.25);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(10, 35, 66, 0.4);
}
#content {
  opacity: 0;
}
#content.show {
  opacity: 1 !important;
  transition: opacity 0.4s ease-in;
}
i {
  margin:0px 5px 0px 0px;
}
.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
  margin-top:16px
}
article,aside,canvas,details,figcaption,figure,footer,header,main,menu,nav,section,summary {
  display:block
}
body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,select,table,td,textarea,th,ul {
  margin:0;
  padding:0
}
body,button,input,select,textarea {
  color:inherit;
  font-family:inherit;
}
nav div,#container,#header_wrap #header_gnb{
  max-width:100% !important
}
button,input {
  border:0;
  border-radius:0;
  background-color: transparent;
}
img {
  border-style: none;
  box-sizing: border-box;
}
ol,ul {
  list-style:none
}
address,em {
  font-style:normal
}
a {
  cursor:pointer;
  color:inherit;
  text-decoration:none !important;
}
.blind {
  position:absolute;
  overflow:hidden;
  clip:rect(0 0 0 0);
  margin:-1px;
  width:1px;
  height:1px
}
.index_wrap {
  position:relative;
  background-color:inherit;
  overflow:hidden;
}
.thumnail img {
  border-radius:10px;
}
.list_detail_wrap {
  overflow:hidden;
  text-decoration:none;
}
.list_detail_wrap .post_title {
  margin-bottom:10px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  text-overflow:ellipsis;
  overflow:hidden;
  font-weight:600;
  line-height:150%;
  font-size:17px;
}
.list_detail_wrap .post_text {
  position: relative;
  color:var(--color-alpha-80);
  font-size:15px;
  max-height:50px;
  overflow:hidden;
  margin-bottom:10px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  text-overflow:ellipsis;
  line-height:1.7;
}
.list_detail_wrap .post_line_bar {
  display:inline-block;
  width:1px;
  height:9px;
  margin:0 5px;
  background: var(--theme-beige);
}
.post_list {
  color:var(--color-alpha-80);
  font-size:13px;
  display: inline-block;
}
.post_category {
  display:inline-block;
}
.post_date {
  display:inline-block;
}
.post_comment {
  margin-left:5px;
  display:inline-block;
}
.list_content {
  position:relative;
  overflow:hidden;
}
.list_content:hover .post_title {
  color: var(--theme-terracotta);
  transition:.3s;
}
.list_content:hover .thumnail img {
  -webkit-transition-duration:.3s;
  transition-duration:.3s;
  -webkit-transform:scale(1.05);
  -ms-transform:scale(1.05);
  transform:scale(1.05);
}
#paging {
  margin:20px auto;
  text-align:center;
}
#paging .page-icon {
  font-size: 21px;
  vertical-align: middle;
}
#paging .pagination li {
  display:inline-block
}
#paging .pagination li a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: #555;
  min-width: 30px;
}
#paging .pagination li a:hover {
  color: var(--theme-navy-blue);
  font-weight:600;
}
#paging .pagination li .selected {
  color: var(--theme-navy-blue);
  font-weight:600;
  border-bottom: 1px solid var(--theme-navy-blue);
}
#paging .prevpage {
  width:inherit !important
}
#paging .nextpage {
  width:inherit !important
}
.paging-line{
  border-bottom: 15px solid var(--theme-light-beige);
  margin: 25px auto;
  display: none;
}
.module-tag li a {
  display:inline-block;
  overflow:hidden;
  max-width:200px;
  white-space:nowrap;
  text-overflow:ellipsis;
  padding: 2px 4px;
  border-radius: 3px;
}
.module-tag li a:hover {
  background: var(--theme-navy-blue);
  color: var(--theme-white) !important;
  transition:.3s
}
.module-category .sub_category_list li {
  display:block;
}
.module-category .sub_category_list li a {
  color:var(--color-alpha-80) !important;
  -webkit-transition:color .3s;
  -moz-transition:color .3s;
  -ms-transition:color .3s;
  -o-transition:color .3s;
  transition:color .3s
}
.module-category .sub_category_list li:hover a {
  color: var(--theme-terracotta) !important
}
.module-category .sub_category_list li:first-child {
  margin-top:1px
}
.module-category .sub_category_list li:last-child {
  border:0
}
.module-category .link_tit {
  display:none;
}
#sidebar .module {
  margin-bottom:20px;
  padding-bottom:10px;
}
#sidebar .module-content {
  padding:0px 5px 0px 15px;
}
#sidebar .module-tag .module-content {
  padding: 0px 5px 0px 10px;
}
#sidebar .module .module-title {
  font-weight:600;
  line-height:10px;
  padding: 8px 10px 15px 15px;
  margin-bottom:10px;
  border-bottom:1px solid var(--theme-beige);
}
.module-notice ul li  {
  font-size:14px
}
.module-notice ul li a{
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 0px;
}
.module-category .tt_category {
  position:relative;
}
.module-category .c_cnt {
  font-size:12px;
  float:none;
  text-indent:0px;
  padding:0px 6px;
  line-height:normal;
  margin-top:5px;
}
.module-category .category_list>li {
  position:relative;
  font-size:14px;
  line-height:30px;
}
.module-category .category_list>li:last-child {
  border-bottom:none;
}
.module-category .category_list>li a {
  display:inline-block;
}
.module-category .category_list li ul a {
  margin-left:0;
  padding-left:12px;
}
.module-category .category_list li:hover a {
  color: var(--theme-terracotta);
  transition:color .3s;
}
.module-category .sub_category_list li:first-child:before {
  top:auto;
  bottom:auto;
}
.module-category .sub_category_list:before {
  border-left: 2px solid var(--theme-beige);
  content: '';
  display: block;
  height: calc(100% - 40px);
  left: 4px;
  position: absolute;
  width: 1px;
  bottom:4px
}
.module-category .sub_category_list>li {
  line-height:28px;
  font-size:14px;
  position:relative;
}
.module-tag ul li {
  font-size:14px;
  display:inline-block;
  line-height:22px
}
.module-tag .tag-list li {
  font-size:15px;
  line-height:25px
}
#taglog .module-tag .tag-list{
  margin-top: 10px;
}
#taglog .hd{
  margin-top: -8px;
}
.ad-module {
  text-align:center;
  margin-left:-2px;
  margin-bottom:5px
}
#wrap {
  width:100%;
  position:relative;
  min-height:100vh;
  margin-top: 92px;
  display: inline-block;
}
#wrap #container {
  width:1200px;
  flex:1;
  margin:0 auto;
  min-height:100vh;
}
#gnb {
  margin:2px 20px 40px 20px;
}
#gnb .header-blog-menu {
  border-top:1px solid var(--theme-beige);
  margin-bottom:10px;
}
#gnb ul {
  display:flex;
  white-space:nowrap;
  border-bottom:1px solid var(--theme-beige);
  overflow-x:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
#gnb ul::-webkit-scrollbar {
  display:none;
}
#gnb ul li {
  flex:0 0 auto;
}
#gnb ul li a {
  position: relative;
  display:block;
}
#gnb ul li a:hover:before {
  width: 105%;
}
#gnb ul li a:before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: -2px;
  right: 0;
  width: 0px;
  height: 2px;
  margin: auto;
  background-color: var(--theme-terracotta);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
header>.tt-search-inner {
  position:absolute;
  right:70px;
  top:20px;
  z-index:0
}
header>.tt-search-inner input {
  background:0 0 !important;
  border-bottom:1px solid var(--theme-white);
  color:var(--theme-white) !important;
  padding:10px;
  font-size:15px;
  width:280px;
  outline:0
}
header>.tt-search-inner input::placeholder {
  color:var(--theme-white)
}
header {
  position:relative;
}
#header_wrap #header_gnb #header-title {
  padding-left:25px;
  margin-right: auto;
}
#header_wrap #header_gnb #header-title a {
  font-size:19px;
  font-weight:600;
}
#header_wrap {
  width:100%;
  background-color:rgba(255,255,255,.9);
  z-index:99;
  position:fixed;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  top:0px;
  left:0px;
  line-height:85px;
  min-width:300px;
  transition: line-height 0.5s ease-out;
}
#header_wrap.shrink {
  line-height: 50px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.1);
}
#header_wrap #header_gnb {
  width:1200px;
  margin:auto;
  position:relative;
  margin-top:5px;
  display:flex;
  align-items:center;
}
.progress-bar {
  height:3px;
  background: var(--theme-terracotta);
  width:0%;
  position:fixed;
  z-index:9999;
}
#header-ico .btn_topMenu {
  background:none;
  cursor:pointer;
}
.menu-icon {
  width: 24px;
  height: 5px;
  border-bottom: 3px solid #666;
}
.menu-icon:nth-child(2) {
  border-bottom: 3px solid var(--theme-terracotta);
}
#header-ico .btn_topMenu:hover .menu-icon:nth-child(2) {
  animation: rotateEffect 0.2s linear forwards;
}
#header-ico {
  padding-right: 20px;
}
.header-home {
  float:left;
  line-height:51px;
  margin-right:15px
}
.header-home:hover {
  color: var(--theme-terracotta);
}
#search-bar {
  background-color: rgba(0, 0, 0, 0.025);
  border-radius: 10px;
  display: flex;
  padding: 5px 10px;
  margin: 0 10px 3px 10px;
}
#search-bar.active{
  background-color: var(--theme-light-beige);
  border-radius: 10px;
  position: absolute;
  right: 9px;
  transition: 0.3s;
}
#search-bar.active .input-text, #search-bar.active .search-close-icon {
  display:block;
}
#search-bar .search-icon{
  vertical-align: middle;
  cursor: pointer;
}
#search-bar .search-close-icon{
  cursor: pointer;
  padding-bottom: 4px;
  color:#777;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
#search-bar .btn_search {
  cursor:pointer;
  position:absolute;
  top:15px;
  left:20px;
}
#search-bar .input-text {
  text-indent: 10px;
  padding-bottom: 2px;
}
.menu_toolbar .txt_tool_id{
  color:#000 !important;
}
.btn_site {
  background: var(--theme-navy-blue);
  color: var(--theme-white) !important;
  padding:12px;
  margin:10px;
  display:block;
}
.btn_close {
  cursor:pointer;
  position:absolute;
  z-index:3;
  top:20px;
  right:18px;
}
.btn_close .close-icon{
  font-size: 35px;
  font-weight:600;
  color: var(--theme-white);
}
.btn_close .close-icon:hover{
  animation: rotateEffect 0.2s linear forwards;
}
#container nav {
  min-width:280px;
}
#container nav ul li {
  line-height:50px;
  display:inline-block;
  padding:0 25px 0 10px;
  font-size: 15px;
}
#container #main #content {
  flex:2.85;
  overflow:hidden;
  position:relative;
}
#container #main #sidebar {
  flex:1;
  max-width:302px;
  min-width:302px;
  height: fit-content;
}
#container #main #sidebar.left {
  margin-left:0px;
  margin-right:45px;
}
#container #main #sidebar.right {
  margin-left:45px;
  margin-right:0px;
}
.footer-wrap {
  background-color: var(--theme-white);
  border-top:1px solid var(--theme-beige);
}
#footer {
  display:flex;
  font-size:12px;
  line-height:30px;
  padding:10px 20px;
  justify-content:space-between;
}
#footer a {
  color: var(--theme-navy-blue);
  font-size:1.1em;
}
.thumnail {
  position:relative;
  display:block;
  float:right;
  overflow:hidden;
  margin-left:15px;
  border-radius:6px;
  text-align:center;
}
.thumnail a {
  display:block
}
.not-found {
  display:block;
  width:100%;
  margin-bottom:35px;
  text-align:left;
}
.not-found li {
  position:relative;
  padding-left:10px;
  line-height:2;
}
.not-found li:before {
  content:"-";
  position:absolute;
  bottom:26px;
  left:0;
  width:2px;
  height:2px;
}
.not-found .tag,.not-found .category,.not-found .archive {
  display:none;
}
#tt-body-index .h-entry:after,
#tt-body-category .h-entry:after,
#tt-body-search .h-entry:after,
#tt-body-tag .h-entry:after {
  display:block;
  border-bottom:1px solid var(--theme-beige);
  width:100%;
  content:"";
  margin:20px 0px 20px 0px;
}
#tt-body-index .index_s_list,#tt-body-category .index_s_list {
  padding-bottom:0px;
  margin-bottom:10px;
}
#tt-body-page figure.fileblock,figure.fileblock {
  border-radius: 7px;
  width:350px;
  background: var(--theme-light-beige);
  border: 1px solid var(--theme-beige);
  box-shadow: none;
}
#tt-body-page figure figcaption {
  padding-top:0px;
}
#tt-body-page .h-entry {
  background:inherit;
}
#tt-body-page .h-entry {
  max-width:100%;
  width:100%;
  margin:0 auto;
}
#tt-body-page .notice .sub-info .meta-cate .txt {
  display:none
}
#tt-body-tag .not-found ul,#tt-body-category .not-found ul,#tt-body-archive .not-found ul {
  display:none;
}
#tt-body-tag .not-found .tag,#tt-body-category .not-found .category,#tt-body-archive .not-found .archive {
  display:block;
}
hr[data-ke-style=style5] {
  height:5px !important
}
#tt-body-page .hd {
  border-bottom: 2px dotted var(--theme-beige);
}
.hd .hd-heading .p-category {
  display:inline-block;
  border-radius:50px;
  color: var(--theme-terracotta)
}
.hd .hd-heading {
  display:inline-block;
  margin-top:5px;
  margin-bottom:10px;
  font-size:1.5rem;
}
.hd .sub-info .c_cnt {
  color: var(--theme-terracotta)
}
.hd .sub-info {
  color:var(--color-alpha-80);
  font-size:14px;
  position:relative;
  margin-right: 5px;
  margin-left: 2px;
}
.hd .sub-info abbr {
  text-decoration:none;
}
.hd .sub-info .icon {
  margin-left:3px;
  margin-right:3px;
  font-size:13px;
}
.hd .sub-info .admin-menu a {
  font-size:13px;
  background: var(--theme-light-beige);
  padding:2px 6px;
}
.hd .sub-info .admin-menu a:hover {
  font-weight:600;
}
.hd .sub-info a {
  color:inherit;
}
.hd .sub-info .wide-button-wrap {
  display:none;
  position:absolute;
  right:0;
}
.hd .wide-button-wrap .wide-icon {
  font-size:24px;
  vertical-align:middle;
}
.post-content {
  max-width:100%;
  padding-bottom:0;
  font-size:16px;
  margin-top:20px;
}
.post-content iframe {
  margin:0;
  padding:0;
  border:0;
  width:100%;
}
.post-content .adsbygoogle, .post-content .kakao_ad_area{
  box-sizing: border-box;
  background: #FFF9F2; /* 어울리는 기존 색상 유지 */
  overflow: hidden;
  border: none !important;
  border-radius: 10px;
}
.ads-wrap{
  margin-top: 3px;
  max-width: 100%;
  background: #FFF9F2; /* 어울리는 기존 색상 유지 */
  overflow: hidden;
  border: none !important; /* <-- 이 부분을 수정합니다.
*/
  border-radius: 10px;
}
.ads-wrap.side-short{
  width: 300px;
  height: 250px;
}
.ads-wrap.side-long{
  width: 300px;
  height: 600px;
}
.ads-wrap.article-top{
  box-sizing: border-box;
  margin: 15px 0;
}
.ads-wrap.article-bottom{
  box-sizing: border-box;
  margin: 15px 0;
}
.post-content .tx-link {
  color: var(--theme-terracotta) !important;
  text-decoration:underline !important
}
.post-content .txc-table {
  width:100%
}
.post-content h4 {
  margin-bottom:15px;
  margin-top:15px;
  font-size:1.1rem;
  word-break:normal;
  word-wrap:break-word;
}
.post-content ol li,.post-content ul li {
  margin:0 0 3px 22px;
  font-size:15px;
  line-height:1.9;
}
.post-content figure {
  margin-top:15px ! important;
}
.post-reply .tt-box-textarea .tt-cmt:before {
  color: #777;
}
.post-reply .tt-wrap-cmt .tt_date {
  color: #777;
}
.post-reply .tt-link-comment .tt_txt_g {
  color: #777;
}
.post-reply .post-reply {
  padding-top:20px;
}
.post-reply .tt-wrap-cmt .tt_desc {
  font-size: 14px;
  line-height: 1.8em;
  color: #555;
}
.post-reply .tt-wrap-cmt .tt-link-user {
  font-size: 14px ;
  font-weight: 600;
  color: #333;
}
.post-reply .tt-wrap-cmt .tt-box-meta {
  padding-bottom: 10px;
  padding-top: 7px;
}
.post-reply .tt-comment-cont *{
  font-family: inherit !important;
}
.post-reply .tt-comment-cont{
  padding-bottom: 2px;
}
.post-reply .tt-item-reply .tt_cmt_info {
  padding-left:10px;
  width: 200px;
  min-height:40px;
  max-height:40px;
  position:relative;
  border:1px solid var(--theme-beige);
  border-top:none;
  border-bottom: 3px solid var(--theme-terracotta);
  border-radius: 5px;
  background: var(--theme-light-beige);
}
.post-reply .tt-item-reply .tt_cmt_info:after {
  content: none; /* 기존 그림자 효과 제거 */
}
.post-reply .tt-item-reply .tt_cmt_info .tt_txt_g{
  color: #555;
}
.post-reply .tt-list-reply{
  display: block;
  border-bottom: 1px dashed var(--theme-beige);
}
.post-reply .tt-item-reply{
  border-top: 2px dotted var(--theme-beige) !important;
}
.post-reply .tt-item-reply .tt-list-reply-comment {
  border-top:none;
}
.post-reply .tt-list-reply-comment .tt-item-reply {
  border-top: 1px dashed var(--theme-beige) !important;
}
.post-reply .tt-box-total {
  padding:15px 5px;
  border: 0px;
  color: #333;
}
.post-reply .tt-box-textarea {
  margin-bottom: 5px;
}
.post-reply .tt-area-write{
  margin-bottom: 20px;
}
.post-reply .tt-area-write .tt-box-thumb{
  display: none;
}
.post-reply .tt-box-textarea textarea, .tt-box-textarea div {
  line-height: 1.8em !important
}
.post-reply .tt_wrap_write{
  display: block;
  background: var(--theme-light-beige);
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid var(--theme-beige);
  margin-right: 3px;
  margin-left: 1px;
}
.post-reply .tt_wrap_write .tt-inner-g{
  border: 0px;
  padding-bottom: 0px;
}
.post-reply .tt-wrap-info {
  align-items: end;
}
.post-reply .tt-link-comment .tt_txt_g {
  font-size: 12px;
}
.post-reply .tt-box-write{
  padding: 0 20px 20px 0;
}
.post-reply .tt-btn_register{
  background: var(--theme-navy-blue);
  color: var(--theme-white) !important;
  border-radius:5px;
}
.post-reply .tt-btn_register:hover{
  background: var(--theme-terracotta);
  transition:0.3s;
}
.post-reply .tt-box-textarea #comment{
  background: var(--theme-light-beige);
  text-align: right;
}
.post-reply .tt-box-textarea #comment::placeholder{
  color:transparent;
}
.post-reply .tt-area-write .tt-box-account {
  display: flex;
  justify-content: flex-end;
  padding-top: 5px;
  padding-right: 15px;
  margin-bottom: 0;
}
.post-reply .tt-area-write .tt-box-account input {
  max-width: 200px;
  margin-left: 15px;
  margin-top: 10px;
  border: 1px solid var(--theme-beige);
  font-size: 14px;
  border-radius: 7px;
}
.post-reply .tt_btn_prev_more{
  background: var(--theme-light-beige);
  color: #555;
  margin-bottom: 15px;
  border-radius: 7px;
  border: 1px solid var(--theme-beige);
}
.post-reply .tt_btn_prev_more:hover{
  background: var(--theme-beige);
  transition:.3s;
}
#guestbook .hd{
  margin-top: -8px;
}
#guestbook .post-reply{
  margin-top: 20px;
}
#guestbook .post-reply .tt-area-reply{
  margin-bottom: 0;
}
#guestbook .tt-comment-cont,#guestbook .tt-list-reply{
  display: flex;
  flex-direction: column-reverse;
}
#guestbook .tt-box-total {
  order:2;
  border:0;
}
#guestbook .tt-comment-cont form {
  order:3;
  border:0;
}
#guestbook .tt-list-reply li:first-child {
  order:1;
  border-top: 2px dotted var(--theme-beige);
}
#guestbook .tt-list-reply li.tt-item-reply.rp_general:first-child {
  order:0
}
.text-length {
  color:var(--color-alpha-80);
  font-size:13px;
  display:flex;
  align-items:center;
  flex-direction:row;
  margin-top: 7px;
}
.text-length .ion {
  font-size:17px;
}
.text-length .textLenIncludeSpaces:before {
  content:"공백 포함:";
}
.text-length .textLenExcludeSpaces:before {
  content:"공백 제외:";
}
.text-length .textLenIncludeSpaces:after {
  content:" 자";
}
.text-length .textLenExcludeSpaces:after {
  content:" 자";
}
.text-length .divider:before {
  content:'';
  display:inline-block;
  margin:0 5px;
  width:1px;
  height:18px;
  background-color: var(--theme-beige);
  vertical-align:-4px;
}
#duplicateWordsContainer {
  display:flex;
  flex-wrap:wrap;
  margin-bottom:10px;
  height:auto;
  max-height:210px;
  overflow-y:auto;
}
.popup-container {
  padding:10px;
  background-color: var(--theme-light-beige);
  border:1px solid var(--theme-beige);
  border-radius:10px;
  z-index:9999;
  display:none;
  max-height:400px;
  overflow-y:auto;
  font-size:13px;
  margin: 10px 3px 10px 1px;
  box-shadow: none;
}
.popup-word {
  width:33%;
  word-wrap:break-word;
  list-style:none;
  padding:3px 0;
  display:inline-block;
  border-bottom:1px solid var(--theme-beige);
}
.popup-word::after {
  content:" 회"
}
.dup-button {
  cursor:pointer;
  background-color: var(--theme-light-beige);
  border:1px solid var(--theme-beige);
  border-radius:3px;
  padding:1px 3px;
  font-size:13px;
  margin-left:5px;
}
.popup-content {
  display:flex;
  flex-wrap:wrap;
}
#closeButton {
  display: inline-block;
  padding: 5px;
  margin-top: 10px;
  text-align: center;
  background-color: var(--theme-navy-blue);
  width: 100%;
  color: var(--theme-white);
  border-radius: 5px;
  cursor: pointer;
}
.toc-wrap.floating {
  font-size:14px;
  position: fixed;
  top: 175px;
  right: 0;
  max-width: 250px;
  z-index: 99;
  background-color: rgba(253, 251, 248, .8); /* 라이트 베이지 기반 */
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  padding: 0;
  margin: 0 9px;
  border: 0;
  box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  max-height: 500px;
  overflow-y: auto;
}
.toc-wrap.floating .toc-title {
  border:none;
  line-height: 35px;
  color: var(--color-alpha-70);
  display: flex;
  margin: 0 3px;
}
.toc-wrap.floating.active .toc-title {
  border-bottom:1px solid var(--theme-beige);
  margin: 0 7px;
}
.toc-wrap.floating .toc-title .toc-title-strong {
  display: none;
}
.toc-wrap.floating.active .toc-title .toc-title-strong {
  display: block;
}
.toc-wrap.floating .toc-title .floating-toc-icon::before {
  content:"\e242";
  font-family:"Material Icons Outlined";
  vertical-align:bottom;
  font-size: 23px;
  cursor: pointer;
}
.toc-wrap.floating.active .toc-title .floating-toc-icon::before {
  font-size: 19px;
  margin-right: 4px;
}
.toc-wrap.floating.active{
  border-radius:10px;
}
.toc-wrap.floating.active .toc,.toc-wrap.floating.active .toc-close-icon {
  display: block;
}
.toc-wrap.floating .toc,.toc-wrap.floating .toc-close-icon {
  display: none;
}
.toc-wrap.floating.active .toc-close-icon {
  margin-left: auto;
  font-size: 17px;
  cursor: pointer;
  color: #333;
}
.toc-wrap.floating .toc-title:before {
  color: #999;
}
.toc-wrap {
  background-color: var(--theme-light-beige);
  border:1px solid var(--theme-beige);
  border-radius:10px;
  padding:3px 10px;
  margin:0 3px 30px 1px;
  font-size:14px;
  box-sizing: border-box;
  position: relative;
  box-shadow: none;
}
.toc-wrap .toc-title {
  border-bottom:1px solid var(--theme-beige);
  padding:0 5px;
  position:relative;
  line-height: 40px;
  display: flex;
}
.toc-wrap .toc-title .toc-icon:before {
  content:"\e242";
  font-family:"Material Icons Outlined";
  font-size:20px;
  margin-right:3px;
  vertical-align:bottom;
}
.toc-wrap .toc-item a {
  transition: color 0.2s ease-in-out;
}
.toc-wrap .toc-item a:hover {
    color: var(--theme-terracotta);
}
.toc-wrap .toc-item.h2 {
  font-size:14px;
}
.toc-wrap .toc-item.h3 {
  padding-left:20px;
  font-size:14px;
}
.toc-wrap .toc-item.h2:before {
  content:"\e315";
  font-family:"Material Icons Outlined";
  margin-right:5px;
  font-size:16px;
  vertical-align:bottom;
}
.toc-wrap .toc-item.h3:before {
  content:"-";
  margin-right:7px;
  font-size:16px;
  vertical-align:bottom;
}
.toc-wrap ul {
  margin:0px;
}
.toc-wrap .toc li {
  list-style:none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 9px 0;
  line-height: 1.3;
}
.visitor {
  position:relative;
}
.visitor-row {
  font-size:13px
}
.visitor-row .visitor-cell {
  display:inline-block;
  font-weight:600;
  margin-bottom:5px;
  padding-right:10px
}
.visitor-row .visitor-date {
  display:inline-block;
  padding:0 5px
}
.secret-wrap {
  display:block;
  position:relative;
  padding-left:28px;
  cursor:pointer;
  font-size:14px;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
.secret-wrap input {
  position:absolute;
  cursor:pointer;
  height:0;
  width:0;
}
.secret-wrap .checkmark {
  position:absolute;
  top:0;
  left:0;
  height:20px;
  width:20px;
  border:1px solid;
  transition:.3s;
}
.secret-wrap:hover input~.checkmark {
  background-color: var(--theme-beige);
  border-color: var(--theme-beige);
}
.secret-wrap input:checked~.checkmark {
  background-color: var(--theme-terracotta);
  border-color: var(--theme-terracotta);
}
.secret-wrap .checkmark:after {
  content:"";
  position:absolute;
  display:none;
}
.secret-wrap input:checked~.checkmark:after {
  display:block;
}
.secret-wrap .checkmark:after {
  left:6px;
  top:2px;
  width:5px;
  height:10px;
  border:solid var(--theme-white);
  border-width:0 3px 3px 0;
  -webkit-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  transform:rotate(45deg);
}
.reply_thumb {
  float:left;
  margin-right:15px;
  margin-top:2px;
}
.reply_thumb img {
  border-radius:50%;
}
.comment-wrap {
  background-color: var(--theme-light-beige);
  border-radius:10px;
  display:block;
  padding:10px 20px;
  width:100%;
}
.reply_content {
  display:flex;
  min-height:70px;
  padding-top:0;
  position:relative;
  padding:10px 0;
  border-radius:10px;
}
.reply_content .name,.reply_content .name a {
  font-weight:600;
  font-size:14px;
}
.reply_content .control {
  display:inline-block;
  margin:10px 0px 10px 0px;
  font-size:12px;
}
.reply_content .modify,.reply_content .write {
  background: var(--theme-light-beige);
  padding:2px 4px 4px 6px;
  border:1px solid var(--theme-beige);
  border-radius:3px;
  transition:.3s;
}
.reply_content .modify:hover,.reply_content .write:hover {
  background: var(--theme-navy-blue);
  color: var(--theme-white);
  border-color: var(--theme-navy-blue);
}
.reply_content .comment-content p {
  line-height:2.5em
}
.reply_content .comment-content {
  font-size:14px;
  max-width:740px;
  word-break:break-all;
  margin:7px 0;
  margin-right:15px
}
.reply_date {
  font-size:12px;
  margin-top:5px;
  margin-bottom:10px;
}
.reply_date a {
  margin-left:0px;
}
.reply_date>a:before {
  content:"\00B7";
  margin-right:1px;
  margin-left:1px;
}
.rcomment .rcomment-meta {
  display:none
}
hr.point-another {
  border-color: var(--theme-beige) !important;
  margin:0
}
.h-entry .content-width{
  width: 100%;
}
#tt-body-index .h-entry h2,#tt-body-category .h-entry h2 {
  line-height:140%;
}
#tt-body-index .h-entry,#tt-body-category .h-entry,#tt-body-search .h-entry {
  max-width:100%;
}
#tt-body-page #comment .control {
  position:relative
}
#tt-body-page #comment .cmt_dropdown {
  display:none;
  position:absolute;
  right:10px;
  border:1px solid var(--theme-beige);
  border-radius:2px;
  padding:4px 10px;
  margin-top:2px;
  background: var(--theme-white);
}
#tt-body-page #comment .cmt_dropdown li {
  display:block;
  width:80px;
  padding:0 !important;
  margin:0 !important;
  text-align:left;
  line-height:35px
}
#tt-body-page #comment .cmt_dropdown li a {
  display:block;
  font-size:16px;
  color:#555;
  text-align:center
}
#tt-body-page #comment .cmt_dropdown li:hover a {
  color: var(--theme-terracotta)
}
#tt-body-category .h-entry .content-width,#tt-body-category .protected .content-width,#tt-body-search .h-entry .content-width,#tt-body-search .protected .content-width,#tt-body-tag .h-entry .content-width,#tt-body-tag .protected .content-width {
  padding:0px;
}
#tt-search {
  position:absolute;
  left:-35px;
  z-index:999;
  top:-50px;
  width:280px;
  color:#333;
  display:block !important
}
#tt-search input {
  background:0 0;
  color: var(--theme-white);
  font-size:15px
}
#tt-search .tt-search-inner {
  display:inline
}
#tt-search .tt-search-inner input {
  border-bottom:1px solid var(--theme-beige);
  line-height:40px;
  height:40px;
  width:100%;
  color: var(--theme-white);
  text-indent:10px
}
#tt-search .tt-search-inner input::placeholder {
  color: var(--theme-white)
}
#tt-search .tt-search-inner input:focus {
  outline:0 none
}
.input-wrap .textbox input {
  padding:3px 7px;
  font-size:14px;
  height:24px;
  line-height:24px;
  position:relative;
  z-index:9
}
.entry-tag {
  font-size:14px;
  margin:15px 0px 15px 0px
}
.entry-tag span {
  padding:2px 7px;
  margin-right:10px;
  color:#999
}
.entry-tag a::before {
  content:"#";
}
.entry-tag a {
  padding:2px 3px;
  color: var(--theme-terracotta);
}
.entry-tag a:hover {
  background: var(--theme-terracotta);
  border-color: var(--theme-terracotta);
  color: var(--theme-white) !important;
  transition:.3s
}
.e-content.post-content p {
  position:relative;
  display:block;
  line-height:1.9;
}
.h-entry .list_content .post-link {
  display:block;
}
.dropdown-content .dropdown-profile {
  overflow-x:hidden;
}
.dropdown-content .dropdown-profile_info:before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  border-style:solid;
  border-width:56px 0 0 400px;
  border-color:transparent transparent transparent var(--theme-white);
}
.dropdown-content .dropdown-profile_bg {
  position:relative;
  overflow:hidden;
  height:320px;
  background: var(--theme-navy-blue);
}
.dropdown-content .dropdown-profile_bg img {
  display:block;
  position:absolute;
  object-fit:cover;
  left:0;
  right:0;
  bottom:0;
  height: inherit;
}
.dropdown-content .dropdown-profile_info-inner {
  position:relative;
  top:-40px;
  display:inline-block;
}
.dropdown-profile_info-inner a:hover img {
  -webkit-transition-duration:.3s;
  transition-duration:.3s;
  -webkit-transform:scale(1.05);
  -ms-transform:scale(1.05);
  transform:scale(1.05);
}
.dropdown-content .dropdown-profile_info-inner a:hover p{
  color: var(--theme-terracotta);
  transition:0.3s;
}
.dropdown-content .dropdown-profile_info {
  margin-top:-55px;
  z-index:1;
  position:relative;
  padding-left:24px;
  padding-right:24px;
}
.dropdown-content .dropdown-profile_info img {
  object-fit:cover;
  border-radius:50%;
}
.dropdown-content .dropdown-profile-title {
  text-align: center;
  font-size:14px;
  color:#444;
}
.dropdown-content i.fas {
  margin-right:15px;
  font-size:14px;
}
.dropdown-content .tt_category li {
  text-indent:20px;
}
.dropdown-content .tt_category li .category_list li {
}
.dropdown-content .tt_category li .category_list li .sub_category_list li:before {
  content:"·";
  font-weight:900;
  position:absolute;
  left:12px;
  color:#666;
}
.dropdown-content .tt_category li .category_list li .sub_category_list li a{
  padding-left:24px;
}
.dropdown-content .tt_category .link_tit {
  width:100%;
  display:block;
}
.dropdown-content {
  max-width:100%;
  width:300px;
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  margin:0;
  overflow:hidden;
  background:var(--theme-white);
  font-size:14px;
  z-index:999;
  transform:translateX(101%);
  transition:all 0.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  box-shadow:0 1px 10px 2px rgb(0 0 0 / 10%);
}
.dropdown-content ul li {
  color:#444;
  line-height:35px;
  text-indent:10px;
  text-decoration:none;
  display:block;
}
.dropdown-content ul li a{
  display:block;
}
.dropdown-content ul li a:hover {
  background-color: var(--theme-light-beige);
  transition: 0.2s;
}
.dropdown-content-toggle {
  -webkit-transform:none;
  -moz-transform:none;
  -ms-transform:none;
  -o-transform:none;
  transform:none;
  overflow-x:hidden;
  overflow-y:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.dropdown-content-toggle::-webkit-scrollbar {
  display:none;
}
.dropdown-content #dropdown-menu{
  margin-bottom: 50px;
}
.show {
  display:block
}
.dropdown-content .header_layer:after {
  content:none;
}
.dropdown-content .header_layer {
  box-sizing: border-box;
  position: inherit;
  font-family:inherit;
  display: inline-block !important;
  width: 100%;
  box-shadow: none;
  border-top: 1px solid var(--theme-beige);
  border-bottom: 1px solid var(--theme-beige);
}
.dropdown-content .header_layer .img_common_tistory:hover {
  animation: rotateEffect2 0.3s linear forwards;
}
.dropdown-content .header_layer .info_profile:hover {
  background-color: var(--theme-light-beige);
  transition: 0.2s;
}
.dropdown-content .header_layer .inner_header_layer * {
  font-family:inherit;
  color: #444;
}
.dropdown-content .header_layer .inner_header_layer .info_profile_type1{
  padding-top:7px ;
}
.dropdown-content .inner_header_layer .txt_id_type2{
  font-size: 14px;
}
.dropdown-content .inner_header_layer .tit_list_type{
  padding: 10px 0 5px 23px;
  color: #999;
}
.dropdown-content .header_layer .list_toolbar a{
  padding-left: 13px;
}
.dropdown-content .ico_tistory_sign {
  display: none !important;
}
.another_category {
  border:none;
  padding:0 !important;
  margin:10px 0;
  clear:both
}
.another_category_color_gray th .current {
  border-color:#666 !important;
  font-weight:500;
  border-bottom:none !important
}
.another_category_color_gray * {
  color:#2b2b2b !important
}
.another_category_color_gray h4,.another_category_color_gray h4 a {
  color:#333 !important;
  font-size:15px
}
.another_category h4 {
  font-size:15px !important;
  margin:0 !important;
  border-bottom:none !important; /* 이 부분이 수정되었습니다. */
  padding:2px 0 6px !important
}
.another_category {
  border:none !important; /* 이 부분이 추가/수정되었습니다. */
  padding:0 !important;
  margin:10px 0;
  clear:both
}
.another_category.another_category_color_gray table th span {
  display:none
}
.another_category th a:hover {
  color: var(--theme-terracotta) !important
}
.category_list li a img {
  display:inline-block;
}
.syntaxhighlighter {
  background-color: var(--theme-white) !important;
  border:1px solid var(--theme-beige);
  padding-top:10px;
  padding-bottom:10px
}
.protected {
  overflow:hidden
}
.protected .media-wrap {
  margin:30px auto;
}
.protected .e-content {
  text-align:center
}
.protected .media .protectedPassword {
  border:1px solid var(--theme-beige);
  line-height:27px
}
#tt-body-page .protected .textbox input {
  border:1px solid var(--theme-beige);
  border-radius:2px;
  line-height:35px;
  box-sizing:border-box;
  text-indent:10px;
  width:260px;
}
.protected .media .media_btn {
  line-height:35px;
  padding:0 10px 0 10px;
  border:1px solid var(--theme-beige);
  cursor:pointer;
  box-sizing:border-box;
  border-radius:2px;
  transition:.3s;
  background: var(--theme-light-beige);
}
.protected .media .media_btn:hover {
  background: var(--theme-terracotta);
  color: var(--theme-white);
  border-color: var(--theme-terracotta);
}
.protected .media .textbox.focus-wrap {
  margin-top:15px
}
@media only screen and (max-width:1023px) {
  #header_wrap #header_gnb #header-title a {
    max-width:230px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .ads-wrap.side-short{
    width:100%;
    height:200px;
  }
  .ads-wrap.side-long{
    width:100%;
    height:250px;
  }
  #tt-body-category .h-entry .content-width,#tt-body-category .protected .content-width,#tt-body-search .h-entry .content-width,#tt-body-search .protected .content-width,#tt-body-tag .h-entry .content-width,#tt-body-tag .protected .content-width {
    margin:0px;
  }
  .list_content {
    cursor:pointer;
    justify-content:center;
    align-items:center;
    max-height:unset !important;
  }
  .h-entry {
    max-width:900px;
    width:auto !important;
    max-height:unset;
    padding: 0 20px 0 24px;
  }
  .list_detail_wrap {
    max-height:unset;
    vertical-align:middle;
  }
  #comment-form {
    width:unset !important
  }
  #comment ol>li {
    padding:unset !important
  }
  .dropdown-content {
    min-width:300px
  }
  #search-form{
    display: none;
  }
  #sidebar-category{
    display: none;
  }
  .paging-line{
    display: block;
  }
}
@media only screen and (min-width: 450px){
  .list_detail_wrap .post_text::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: -webkit-linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  }
}
@media only screen and (min-width:1023px) {
  #main.sidebarPosition.left {
    display:flex;
    flex-direction:row-reverse;
    margin:20px;
    padding-left: 0px;
  }
  #main.sidebarPosition.right {
    display:flex;
    margin:20px;
    padding-left: 10px;
  }
  #header_wrap #header_gnb #header-title {
    padding-left:30px;
  }
  .hd .sub-info .wide-button-wrap {
    display:inline-block;
  }
  .h-entry .content-width {
    max-width: 1000px;
    margin: 0 auto;
  }
  .h-entry .content-width.wide{
    max-width: 1200px;
  }
  #search-form{
    display: block;
  }
  #sidebar-category{
    display: block;
  }
}
@media only screen and (max-width:600px) {
  .popup-word {
    width:50%;
  }
  #footer {
    text-align:center;
    flex-direction:column;
  }
  #footer .ft-ac {
    position:inherit;
  }
  #search-bar{
    margin: auto 5px;
    background-color: transparent;
  }
  #search-bar .input-text{
    display: none;
  }
}
@media only screen and (max-width:1023px) {
  .dropdown-content ul li:first-child {
    display:block;
  }
  .dropdown-content .tt_category li {
    padding:0px;
  }
  #tt-search {
    position:initial !important;
    left:initial !important;
    top:initial !important;
    width:100%;
    display:none !important
  }
  #tt-search input {
    color:#333 !important
  }
  #tt-search input::placeholder {
    color:#333 !important
  }
  #sidebar {
    margin:0px !important;
    padding:20px 20px 20px 10px;
    max-width:none !important;
  }
  #taglog {
    margin:0px !important;
    padding:0 20px 0 24px;
    max-width:none !important;
  }
  #guestbook {
    margin:0px !important;
    padding:0 20px 0 24px;
    max-width:none !important;
  }
  #no-search-results {
    margin:0px !important;
    padding:0px 20px 0px 20px;
    max-width:none !important;
  }
  .module {
    width:unset !important;
    max-width:unset !important
  }
  #btn_goCategory {
    display:block !important
  }
  #container nav ul li{
    padding-left: 5px;
  }
}
.container_postbtn .wrap_btn{
  padding:0 10px;
  margin-right:8px !important;
  background: var(--theme-light-beige);
  border-radius:7px;
  box-shadow: none;
  border: 1px solid var(--theme-beige);
}
.container_postbtn .wrap_btn:hover{
  background: var(--theme-beige);
  transition:.3s;
}
.container_postbtn .btn_menu_toolbar:hover{
  background: var(--theme-navy-blue) !important;
  color: var(--theme-white);
  transition:.3s;
}
.container_postbtn .btn_menu_toolbar {
  background: var(--theme-light-beige);
  border-radius:7px !important;
  border:1px solid var(--theme-beige) !important;
  margin: 0px !important;
  box-shadow: none;
}
.container_postbtn .btn_menu_toolbar .txt_state{
  display: flex;
  padding-left: 5px;
}
.container_postbtn .txt_state::before{
  content: "\e866";
  font-family: "Material Icons Outlined";
  font-size: 18px;
  margin-right:2px;
}
.container_postbtn .btn_menu_toolbar {
  height:40px !important;
}
.container_postbtn .postbtn_like {
  display:inline-block;
  border: 0px !important;
  padding: 0px !important;
}
.container_postbtn .btn_post {
  height:40px !important;
  padding:0 5px !important
}
.container_postbtn {
  padding-bottom:15px !important;
  visibility: hidden;
}
.container_postbtn button {
  outline-style: none !important;
}
.container_postbtn .postbtn_ccl {
  float:none !important;
  position:absolute !important;
  right:0 !important;
  top:50% !important
}
#tistoryCclLayer{
  width:70px;
  padding:5px 25px 11px 15px;
}
.post-content ol li p,.post-content ul li p {
  line-height:normal !important
}
@media only screen and (max-width:450px) {
  #header_wrap #header_gnb #header-title a {
    font-size:17px;
  }
  #header_wrap #header_gnb #header-title {
    padding-left:18px;
  }
  #header_wrap {
    line-height:63px;
  }
  .hd .hd-heading {
    font-size:1.4rem;
  }
  #wrap {
    margin-top: 70px
  }
  #gnb {
    margin:0 14px 25px 14px;
  }
  .thumnail img {
    height: 90px;
    width: 90px;
  }
  .header-blog-menu li a {
    display:block;
  }
  .list_detail_wrap .post_title {
    font-size:16px;
  }
  #sidebar .module .module-title {
    font-size:15px;
  }
  .list_detail_wrap .post_text {
    font-size:14px;
  }
  .dup-button,.text-length {
    font-size:12px;
  }
  #paging .pagination li {
    font-size:15px;
  }
  .h-entry {
    padding:0 14px 0 18px;
  }
  #sidebar {
    padding:10px;
  }
  #guestbook {
    padding:0 14px 0 18px;
  }
  #taglog {
    padding:0 14px 0 18px;
  }
  #no-search-results {
    padding:0px 14px;
  }
  .write-form .input-wrap {
    flex-direction:column;
  }
  #gnb ul {
    font-size: 14px;
  }
  #header-ico {
    padding-right: 14px;
  }
  .menu-icon {
    width: 22px;
    height: 4px;
  }
  .toc-wrap.floating{
    top:135px
  }
}
.sr-only {
  border:0;
  clip:rect(0,0,0,0);
  height:1px;
  margin:-1px;
  overflow:hidden;
  padding:0;
  position:absolute;
  width:1px
}
.sr-only-focusable:active,.sr-only-focusable:focus {
  clip:auto;
  height:auto;
  margin:0;
  overflow:visible;
  position:static;
  width:auto
}
.recentPost ul {
  padding:0px 5px 0px 15px;
}
.recentPost ul li {
  width:100%;
  display:inline-block;
  position:relative;
  font-size:14px;
}
.recentPost ul li:last-child {
  border-bottom:none;
}
.recentPost ul li a {
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  padding:3px 0px;
}
.recentPost ul li a:hover {
  color: var(--theme-terracotta);
  transition:.3s;
}
.recentPost .recent-right {
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  text-overflow:ellipsis;
  overflow: hidden;
}
.recentPost .left-pop.left {
  position:relative;
  float:left;
}
.recentPost .left-pop .left-rep-thumbnail {
  width:50px;
  height:50px;
  background-color: var(--theme-light-beige);
  border-radius:7px;
  position:relative;
}
.left-pop .left-rep-thumbnail img {
  position: absolute;
  z-index: 1;
}
.no-img-icon::before {
  content: "\e560";
  font-family: "Material Icons Outlined";
  font-size: 37px;
  position: absolute;
  top: 53%;
  left: 51%;
  transform: translate(-50%, -50%);
  color: var(--theme-terracotta);
  z-index: 0;
}
.recentPost-info .left-pop img {
  border-radius:7px;
}
.recentPost .left-pop.right {
  position:relative;
  float:right;
  overflow:hidden;
}
.recentPost .right-pop {
  overflow: hidden;
  padding-left: 12px;
  font-size: 14px;
  height: 47px;
  display: flex;
  align-items: center;
}
.recentPost .right-pop.right {
  padding: 0px 12px 0px 5px;
}
.recentPost-list {
  margin:10px 5px 0px 10px
}
.recentPost-list a {
  display:table;
  width:100%;
  table-layout:fixed;
}
.recentPost-list a:hover {
  color: var(--theme-terracotta);
  transition:0.3s;
}
.recentPost-info {
  display:table-cell;
  vertical-align:middle;
}
.popularPost ul {
  padding:0px 15px;
}
.popularPost ul li {
  border-radius:3px;
  width:100%;
  display:inline-block;
  position:relative;
  font-size:15px;
  border-bottom:1px solid var(--theme-light-beige);
}
.popularPost ul li:last-child {
  border-bottom:none;
}
.popularPost ul li a {
  font-weight:normal;
  display:inline-block;
  padding-top:10px;
  padding-bottom:5px;
}
.popularPost ul li a:hover {
  color: var(--theme-terracotta);
  transition:.3s;
}
.popularPost .popular-right {
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  text-overflow:ellipsis;
  overflow:hidden;
}
.popularPost .left-pop.left {
  position:relative;
  float:left;
  overflow:hidden;
}
.popularPost .left-pop .left-rep-thumbnail {
  width:50px;
  height:50px;
  background-color: var(--theme-light-beige);
  border-radius:7px;
  position:relative;
}
.popularPost .left-pop.right {
  position:relative;
  float:right;
  overflow:hidden;
}
.popularPost-info .left-pop img {
  border-radius:7px;
}
.popularPost .right-pop {
  overflow: hidden;
  padding-left: 12px;
  font-size: 14px;
  height: 47px;
  display: flex;
  align-items: center;
}
.popularPost .right-pop.right {
  padding: 0px 12px 0px 5px;
}
.popularPost-list {
  margin:10px 5px 0px 10px;
}
.popularPost-list a {
  display:table;
  width:100%;
  table-layout:fixed;
}
.popularPost-list a:hover {
  color: var(--theme-terracotta);
  transition:0.3s;
}
.popularPost-info {
  display:table-cell;
  vertical-align:middle;
}
.area_related_wrap .related_table {
  margin-bottom:10px;
  margin-top:10px;
  display:table;
  width:100%;
}
.area_related_wrap .related_header {
  display:table-row;
}
.area_title_wrap {
  display:table-cell;
}
.area_related_wrap .tit_related {
  margin:0px 0px;
  font-size:14px;
}
.area_btn_more_wrap .link_more {
  flex:none;
  clear:both;
  font-size:12px;
  align-self:flex-end;
  padding:3px 6px;
  background: var(--theme-navy-blue);
  color: var(--theme-white);
  border-radius:3px;
  margin:5px;
}
.area_btn_more_wrap .link_more:hover {
  background: var(--theme-terracotta);
  transition:.3s
}
.area_btn_more_wrap {
  display:table-cell;
  position:relative;
  text-align:right;
}
.area_related_wrap .list_item {
  position:relative;
  overflow:hidden;
  padding: 10px 5px 10px 0;
  border-bottom:1px solid var(--theme-beige);
}
.area_related_wrap .area_thumb {
  position:relative;
  display:block;
  float:left;
  overflow:hidden;
  margin-right:15px;
}
.area_related_wrap .area_thumb img {
  border-radius:10px;
}
.area_related_wrap .area_info {
  display:flex;
  overflow:hidden;
  text-decoration:none;
}
.area_related_wrap {
  padding-bottom:10px;
  border-top:1px solid var(--theme-beige);
}
.area_related_wrap .list_related {
  border-top:1px solid var(--theme-beige);
}
.area_related_wrap .list_item .area_info .title {
  display:block;
  overflow:hidden;
  height:auto;
  white-space:nowrap;
  text-overflow:ellipsis;
  font-size:14px;
  line-height:20px;
  padding-right: 10px;
}
.area_related_wrap .list_item .area_info .title:hover {
  color: var(--theme-terracotta);
  transition:.3s;
}
.area_related_wrap .list_item .area_info .list_date {
  display:inline-block;
  font-size:13px;
  margin-left:auto;
}
/*google material icon */
.material-icons-outlined,.material-icons-round {
  vertical-align:text-bottom;
  font-size:16px;
  user-select:none;
}
.material-icon {
  font-size:17px;
  margin-right:3px;
  margin-top: 3px;
}
/* open graph */
figure[data-ke-type="opengraph"],#tt-body-page figure[data-ke-type="opengraph"] {
  max-width: 100% !important;
  margin:10px 0;
}
figure[data-ke-type='opengraph'] a,#tt-body-page figure[data-ke-type='opengraph'] a {
  height:110px;
  width:auto;
  border-radius: 7px;
  background: var(--theme-light-beige);
  border: 1px solid var(--theme-beige);
  box-shadow: none;
}
figure[data-ke-type='opengraph'] div.og-image {
  width:105px;
  height:auto;
  border-radius: 7px;
  margin: 5px;
  border: 0px;
  overflow: hidden;
}
figure[data-ke-type='opengraph'] div.og-text {
  left:120px !important;
  padding:13px 0 0 20px !important;
  margin-bottom: 5px;
}
figure[data-ke-type='opengraph'] div.og-text p.og-title,#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
  font-size:16px;
  font-family:inherit;
}
figure[data-ke-type='opengraph'] div.og-text p.og-desc,#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
  font-family:inherit;
  color:#555555;
  padding-right:10px;
  max-height:initial;
  -webkit-line-clamp:1
}
figure[data-ke-type='opengraph'] div.og-text p.og-host,#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
  font-family:inherit;
  font-weight:300;
  bottom:5px;
  color:#555555;
}
figure[data-ke-type="opengraph"] div.og-text p.og-desc,#tt-body-page figure[data-ke-type="opengraph"] div.og-text p.og-desc {
  display: -webkit-box;
}
/*code block */
code,kbd,samp {
  font-family:Consolas;
  line-height:150%;
  font-size:14px;
  border-radius:10px;
}
pre code{
  margin: 14px auto;
  display: inline-block;
}
pre > code.hljs {
  margin: 0px auto;
}
.hljs-ln-numbers {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  text-align:center;
  color:#B5B5B5;
  border-right:1px solid var(--theme-beige);
  vertical-align:top;
  width:20px;
  padding-left:0px;
}
.hljs-ln td.hljs-ln-numbers {
  padding-right:10px;
}
.hljs-ln td.hljs-ln-code {
  padding-left: 10px;
}
/* ==================================================================
   [Golden Duck Custom Components - Refactored by Gemini v4.2]
   (프롬프트 명칭 통일 및 중복 제거)
   ================================================================== */
/* --- [ 전역 스타일 (Global Styles) ] --- */
/* 이미지 기본 스타일 */
.post-content img,
.post-content figure img {
  border-radius: 0.375rem !important;
}
/* 인라인 코드 (<code>) 블록 스타일 - 폰트 사이즈 조정 */
.post-content p code,
.post-content li code,
.post-content table code,
.post-content .box-body code,
.post-content .faq-answer p code,
.post-content .takeaway-text code,
.post-content .info-description code {
  background-color: var(--theme-light-beige) !important;
  color: var(--theme-terracotta) !important;
  padding: 0.2em 0.5em !important;
  border-radius: 4px !important;
  font-size: 0.85em !important;
  /* 0.9em에서 0.85em으로 조정 */
  font-weight: 600 !important;
  font-family: "Noto Sans KR", sans-serif !important;
  border-bottom: none;
}
/* 텍스트 링크 (.text-link) 스타일 */
.post-content a.text-link {
  font-weight: 600;
  border-bottom: 1px dashed var(--theme-terracotta);
}
.post-content a.text-link:hover {
  border-bottom-style: solid;
}
.post-content a.text-link::before {
  content: "\f0c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85em;
  margin-right: 0.35em;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-1px);
}
/* 포인트 강조 (.highlight-point) 스타일 - 폰트 사이즈 및 패딩 조정 */
.post-content .highlight-point {
  display: inline-block;
  background-color: rgba(226, 114, 91, 0.1); /* 테라코타 기반 */
  color: #A35F18;
  font-weight: 600;
  padding: 0.15em 0.5em 0.25em 0.5em;
  /* 패딩을 살짝 줄여서 박스 크기 조정 */
  border-radius: 5px;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
  border: none;
  font-size: 0.9em; /* 기본 폰트 사이즈 추가 및 조정 */
}
.post-content .highlight-point:hover {
  transform: translateY(-2px);
  /* 모든 박스에 그림자가 안 들어가야 하므로, 이 그림자 효과는 유지 */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
/* 목록 (ul, ol) 스타일 */
.post-content ul,
.post-content ol {
  margin: 1em 0;
  padding-left: 0;
}
/* procon-box ul li 및 일반 ol에 대한 공통 리스트 스타일 */
.post-content .procon-box ul li,
.post-content ol {
  list-style-type: none !important;
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.5em;
}
/* procon-box ul li 앞 기호 */
.post-content .procon-box ul > li::before {
  content: '\2022';
  font-weight: 900;
  color: var(--theme-terracotta);
  font-size: 1.2em;
  position: absolute;
  left: 0.3em;
  top: -0.1em;
}
/* --- [ 제목 스타일 (Heading Styles) ] --- */
/* H2/H3 제목 공통 스타일 */
.post-content h2,
.post-content h3 {
  color: inherit;
  transition: color 0.2s ease;
}
/* H2 제목 스타일 */
.post-content h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 2em 0 0.8em 0;
  padding-bottom: 0.25em;
  border-left: none;
  border-bottom: 1.5px solid var(--theme-terracotta);
  padding-left: 0;
}
.post-content h2::first-letter {
  color: var(--theme-terracotta);
}
/* H3 제목 스타일 */
.post-content h3 {
  font-size: 1.25em;
  font-weight: 600;
  margin: 2em 0 0.8em 0;
  padding-left: 1em;
  position: relative;
}
.post-content h3::before {
  content: "\f292";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--theme-terracotta);
  font-size: 0.8em;
  position: absolute;
  left: 0.01em;
  top: 0.05em;
}
/* 제목 호버 효과 */
.post-content h2:hover,
.post-content h3:hover {
  color: var(--theme-terracotta);
}
/* 제목 내 링크 스타일 */
.post-content h2 a,
.post-content h3 a {
  color: inherit;
  text-decoration: none !important;
  border: none;
}
/* --- [ 공통 컴포넌트 스타일 (Common Component Styles) ] --- */
/* 모든 박스에서 그림자 제거 및 기본 테두리 적용 (highlight-point는 예외) */
/* .highlight-point는 텍스트 강조이므로 box-shadow:hover 유지 */
.post-content .custom-note-box,
.post-content .custom-cta-container,
.post-content .procon-box,
.post-content .takeaway-item, /* 핵심 요약 (카드) 개별 아이템 */
.post-content .key-takeaways-infographic, /* 핵심 요약 (인포그래픽) 전체 컨테이너 */
.post-content .info-item, /* 핵심 요약 (인포그래픽) 개별 아이템 */
.post-content .moreless-container /* 더보기/접기 블록 컨테이너 */
{
  border: 1px solid var(--theme-beige);
  box-shadow: none !important; /* 모든 박스에서 그림자 제거 */
}
/* --- [ 개별 컴포넌트 스타일 (Individual Component Styles) ] --- */
/* Note 박스 (.custom-note-box) 스타일 */
.post-content .custom-note-box {
  background-color: var(--theme-light-beige);
  border-radius: 0.375rem;
  padding: 1.5rem;
  margin: 2rem 0;
}
.post-content .custom-note-box .box-header {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--theme-navy-blue);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  border: none !important;
  border-bottom: 1px dashed var(--theme-terracotta) !important;
}
.post-content .custom-note-box .box-header::before {
  content: "\f040";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.7em;
  font-size: 1.1em;
  color: var(--theme-terracotta);
}
.post-content .custom-note-box .box-body {
  padding: 0;
  font-size: 0.95em;
  line-height: 1.7;
  color: #343a40 !important;
}
/* 사용자 정의 인용구 (.custom-quote-box) 스타일 */
.post-content .custom-quote-box {
  background-color: #FFF9F2 !important;
  border-left: 5px solid var(--theme-terracotta) !important;
  margin: 1.5em 0 !important;
  padding: 1.2em 1.5em !important;
  border-radius: 0.375rem !important;
  border: 1px solid var(--theme-beige) !important;
}
.post-content .custom-quote-box p {
  font-size: 0.95em !important;
  line-height: 1.7 !important;
  color: #343a40 !important;
  margin-bottom: 0.5em !important;
}
.post-content .custom-quote-box p:last-child {
  margin-bottom: 0 !important;
}
/* CTA 박스 (.custom-cta-container) 스타일 */
.post-content .custom-cta-container {
  background-color: var(--theme-light-beige);
  border-radius: 0.375rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  flex-wrap: nowrap;
}
.post-content .custom-cta-container .cta-icon-area::before {
  content: "\f0a1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--theme-terracotta);
  font-size: 1.8em;
  line-height: 1;
  margin-right: 1.25rem;
}
.post-content .cta-text-content .cta-title {
  font-size: 1.05em;
  font-weight: 700;
  color: var(--theme-terracotta);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.post-content .cta-text-content .cta-body {
  font-size: 0.9em;
  color: #495057;
  line-height: 1.6;
}
.post-content a.learn-more-codepen-themed {
  min-width: 10rem;
  height: 3rem;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none !important;
  background: transparent;
  padding: 0;
  font-family: "Mukta", sans-serif;
  border: none;
}
.post-content a.learn-more-codepen-themed .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--theme-terracotta);
  border-radius: 1.625rem;
}
.post-content .custom-cta-container:hover .learn-more-codepen-themed .circle {
  width: 100%;
}
.post-content a.learn-more-codepen-themed .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: #ffffff;
}
.post-content a.learn-more-codepen-themed .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
  transform: rotate(45deg);
}
.post-content .custom-cta-container:hover .learn-more-codepen-themed .circle .icon.arrow {
  transform: translate(1rem, 0);
}
.post-content a.learn-more-codepen-themed .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 3rem;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  color: var(--theme-terracotta) !important;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.post-content .custom-cta-container:hover .learn-more-codepen-themed .button-text {
  color: #ffffff !important;
}
/* 장점/단점 비교 블록 (.procon-box) 스타일 */
.post-content .procon-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background-color: var(--theme-light-beige);
  padding: 1.5rem;
  border-radius: 0.375rem;
  margin: 2rem 0;
}
.post-content .procon-box h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1em;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.post-content .procon-box .pros h4 {
  color: #E2725B;
}
.post-content .procon-box .pros h4::before {
  content: '\f058';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.6em;
}
.post-content .procon-box .cons h4 {
  color: #E2725B;
}
.post-content .procon-box .cons h4::before {
  content: '\f058';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.6em;
}
.post-content .procon-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #343a40 !important;
}
.post-content .procon-box ul li {
  list-style: none !important;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
/* 핵심 요약 (카드) (.key-takeaways-cards) 스타일 - 수정됨 (큰 박스 제거) */
.post-content .key-takeaways-cards {
  margin: 2.5rem 0;
  /* 큰 박스의 테두리, 그림자, 패딩, 배경색 모두 제거 */
  border: none;
  box-shadow: none !important;
  padding: 0;
  background-color: transparent;
  border-radius: 0; /* 둥근 모서리도 제거 */
}
.post-content .key-takeaways-cards h4 {
  margin: 0 0 1.5rem 0;
  font-size: 1.2em;
  font-weight: 700;
  color: #212529;
  display: flex;
  align-items: center;
}
.post-content .key-takeaways-cards h4::before {
  content: '\f0ca';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.7em;
  color: var(--theme-terracotta);
  font-size: 1.1em;
}
.post-content .takeaway-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* 핵심 요약 (카드) 개별 아이템 스타일 */
.post-content .takeaway-item {
  display: flex;
  align-items: center;
  background-color: var(--theme-light-beige);
  padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 0.375rem; /* 둥근 모서리 유지 */
  /* 개별 아이템에 테두리 추가 (그림자는 모든 박스에서 제거) */
  border: 1px solid var(--theme-beige);
  box-shadow: none !important; /* 모든 박스에 그림자 제거 */
}
.post-content .takeaway-item:hover {
  transform: translateY(-3px);
  /* hover 시 그림자도 제거 */
  box-shadow: none !important;
}
.post-content .takeaway-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--theme-navy-blue);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.1em;
  font-weight: 700;
  margin-right: 1.25rem;
  margin-top: 0.1em;
}
.post-content .takeaway-text {
  color: #343a40 !important;
  line-height: 1.7;
  font-size: 0.95em;
}

/* 핵심 요약 (인포그래픽) (.key-takeaways-infographic) 스타일 - 수정됨 (큰 박스 제거) */
.post-content .key-takeaways-infographic {
  margin: 2.5rem 0;
  background-color: transparent;
  /* 전체 배경색 투명으로 */
  border-radius: 0; /* 전체 테두리 둥글기 제거 */
  padding: 0;
  /* 전체 여백 제거 */
  /* 전체 컨테이너에서는 테두리와 그림자 제거 */
  border: none;
  box-shadow: none !important;
}
.post-content .key-takeaways-infographic h4 {
  margin: 0 0 1.5rem 0;
  font-size: 1.2em;
  font-weight: 700;
  color: #212529;
  display: flex;
  align-items: center;
}
.post-content .key-takeaways-infographic h4::before {
  content: '\f55b';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.7em;
  color: var(--theme-terracotta);
  font-size: 1.1em;
}
.post-content .infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.post-content .info-item {
  background-color: var(--theme-light-beige);
  /* 내부 아이템 배경색 */
  border-radius: 0.375rem;
  padding: 1.5rem;
  border-top: 4px solid var(--theme-terracotta);
  /* 상단 강조 테두리 유지 */
  /* 개별 아이템에 테두리 추가 (그림자는 모든 박스에서 제거) */
  border: 1px solid var(--theme-beige);
  box-shadow: none !important; /* 모든 박스에 그림자 제거 */
}
.post-content .info-item .info-title {
  font-size: 1.1em;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.post-content .info-item .info-title::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.6em;
  color: var(--theme-terracotta);
}
.post-content .info-item.item-1 .info-title::before { content: '\f0eb'; }
.post-content .info-item.item-2 .info-title::before { content: '\f00c'; }
.post-content .info-item.item-3 .info-title::before { content: '\f140';
}
.post-content .info-item .info-description {
  font-size: 0.9em;
  line-height: 1.6;
  color: #343a40 !important;
}
/* 카드형 목록 테이블 (.card-list-table) 스타일 */
.post-content .card-list-table {
  margin: 2.5rem 0;
  /* 큰 틀에서 배경색, 여백, 테두리 모두 제거 */
}
.post-content .card-list-table .table-header {
  display: none;
  /* 모바일 우선, 헤더 숨김 */
}
.post-content .card-list-table .table-body {
  display: flex;
  flex-direction: column;
}
.post-content .card-list-table .table-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1rem 0;
  border-bottom: 1px dashed #e9ecef;
}
.post-content .card-list-table .table-row:last-child {
  border-bottom: none;
}
.post-content .card-list-table .row-title {
  font-weight: 600;
  color: var(--theme-terracotta);
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}
.post-content .card-list-table .row-content {
  color: #343a40 !important;
  line-height: 1.6;
  font-size: 0.9em;
}
/* 더보기/접기 블록 (data-ke-type="moreLess") 스타일 */
.btn-toggle-moreless,
.btn_more,
.btn_less {
  background: var(--theme-terracotta); /* 버튼 배경색 */
  border-radius: 9999px;
  /* 매우 둥근 모서리 */
  /* 이 버튼의 그림자만 유지 (highlight-point와 동일) */
  box-shadow: rgba(237, 137, 54, 0.2) 0 4px 11px 0, rgba(237, 137, 54, 0.35) 0 1px 3px 0;
  z-index: 1; /* 다른 요소 위에 오도록 */
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  /* 버튼 안쪽 여백 */
  margin-top: 5px;
  color: #fff !important; /* 버튼 글씨색 */
  font-size: 14px !important;
  /* 버튼 글씨 크기 */
}
/* 더보기/접기 버튼 아이콘 */
.btn-toggle-moreless:before,
.btn_more:before {
  content: '✚';
  /* 버튼이 접혀있을 때 앞에 붙일 아이콘 */
  margin-right: 5px;
}
.open .btn-toggle-moreless:before,
.btn_less:before {
  content: '✖';
  /* 버튼을 닫을 때 앞에 붙일 아이콘 */
  margin-right: 5px;
}
/* 더보기/접기 컨테이너 라인 스타일 */
div[data-ke-type='moreLess'] {
  position: relative;
}
div[data-ke-type='moreLess']::before {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 1px dashed #F5B041; /* 박스 상단 라인 */
  margin-top: 22.5px;
  /* 라인 높이 */
}
.moreless-content {
  padding: 15px 5px; /* 박스 내부 여백 */
  border-bottom: 1px dashed #F5B041;
  /* 박스 하단 라인 */
}
/* 접이식 Q&A (details.faq-item) 스타일 */
.post-content details.faq-item {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
  cursor: pointer;
}
.post-content details.faq-item:first-of-type {
  border-top: 1px solid #e9ecef;
}
.post-content details.faq-item summary {
  font-size: 1.05em;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-content details.faq-item summary::-webkit-details-marker {
  display: none;
}
.post-content details.faq-item summary .faq-question-text {
  color: #343a40 !important;
  padding-right: 1rem;
}
/* Q&A 답변 보기/닫기 버튼 스타일 수정 */
.post-content details.faq-item summary .faq-toggle-text {
  background-color: #616161;
  /* '더보기' 버튼과 동일한 진한 회색 */
  color: #fbfbfb;           /* '더보기' 버튼과 동일한 흰색 글씨 */
  border-radius: 3px;
  /* '더보기' 버튼과 동일한 둥근 모서리 */
  font-size: 12px;           /* '더보기' 버튼과 동일한 글자 크기 */
  font-weight: 400;
  padding: 4px 8px;          /* 버튼 내부 여백 */
  flex-shrink: 0;
  white-space: nowrap;
}
.post-content details.faq-item:not([open]) summary .faq-toggle-text::after {
  content: ' 답변 보기 \f078';
  font-family: "Noto Sans KR", "Font Awesome 6 Free";
  font-weight: 900;
}
.post-content details.faq-item[open] summary .faq-toggle-text::after {
  content: ' 답변 닫기 \f077';
  font-family: "Noto Sans KR", "Font Awesome 6 Free";
  font-weight: 900;
}
.post-content details.faq-item[open] summary .faq-question-text {
  color: var(--theme-terracotta) !important;
}
.post-content details.faq-item .faq-answer {
  padding: 1rem 0 0 1.5rem;
  margin-top: 1rem;
  color: #343a40 !important;
  line-height: 1.7;
  border-left: 2px solid var(--theme-terracotta);
}
/* ==================================================================
   [블로거님 커스텀 CSS - 정리된 최종 버전]
   ================================================================== */
/* 마우스오버 효과 (p 태그 및 li 태그 안의 a 태그 모두 적용) */
.contents_style p a, .contents_style li a {
  word-break: break-all;
  color: var(--theme-navy-blue) !important; /* 기본 글꼴 색상 */
  background-repeat: no-repeat;
  background-size: 100% 2px;
  /* 밑줄 굵기 */
  background-position: 0 100%;
  background-image: linear-gradient(to right, var(--theme-terracotta) 0%, var(--theme-beige) 100%);
  transition: all .25s ease-in;
  padding: 3px 2px;
  text-decoration: none !important; /* 밑줄 제거 */
}
.contents_style p a:hover, .contents_style li a:hover {
  background-size: 100% 100%;
  color: var(--theme-white) !important; /* 마우스오버 글꼴 색상 */
  border-radius: 5px;
}
/* --- [ 최종 인용구 박스 스타일 (왼쪽 정렬 + 클래식 따옴표) ]--- */
/* [최종 수정] 사용자가 제공한 원본 디자인 기반 인용구 스타일 */
.post-content .custom-quote-box {
  display: block !important;
  background: var(--theme-light-beige) !important;
  padding: 1.5em 1.5em 1.5em 45px !important;
  margin: 2em 0 !important;
  position: relative !important;
  font-family: 'Black Han Sans', sans-serif !important;
  font-size: 1em !important;
  line-height: 1.7 !important;
  color: inherit !important;
  box-shadow: none !important;
  border-left: 15px solid var(--theme-terracotta) !important;
  border-right: 2px solid var(--theme-navy-blue) !important;
  border-top: 1px solid var(--theme-beige) !important;
  border-bottom: 1px solid var(--theme-beige) !important;
  border-radius: 5px !important;
}
.post-content .custom-quote-box::before {
  content: "\201C" !important;
  font-family: Georgia, serif !important;
  font-size: 60px !important;
  font-weight: bold !important;
  color: var(--theme-beige) !important;
  position: absolute !important;
  left: 10px !important;
  top: 5px !important;
}
.post-content .custom-quote-box p {
  margin: 0 !important;
}
/* --- [인용구 대안] 오른쪽 테두리를 '네이비'로 강조한 버전 --- */
.post-content .custom-quote-box {
  display: block;
  background: var(--theme-light-beige);
  padding: 15px 20px 15px 45px;
  margin: 2em 0;
  position: relative;
  font-family: Georgia, serif;
  font-size: 1em;
  line-height: 1.7;
  color: inherit;
  box-shadow: none;
  border-left: 15px solid var(--theme-terracotta);
  border-right: 2px solid var(--theme-terracotta) !important;
  /* 이 부분만 네이비로 변경 */
  border-top: 1px solid var(--theme-beige);
  border-bottom: 1px solid var(--theme-beige);
  border-radius: 5px;
}
/* --- [최종 수정] H3 호버 효과 추가 및 인용구 폰트 수정 --- */
.post-content h3 {
    font-size: 1.25em;
    font-weight: 600;
    margin: 2em 0 0.8em 0;
    padding-left: 1em;
    position: relative;
    color: var(--theme-terracotta);
    /* 기본 색상은 테라코타 */
    transition: color 0.3s ease-in-out;
    /* 부드러운 색상 변경 효과 */
}
/* H3 제목에 마우스 오버 시 네이비 색으로 변경 */
.post-content h3:hover {
    color: var(--theme-navy-blue);
}
.post-content h3::before {
  content: "\f292"; /* 기존 손가락 아이콘 유지 */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--theme-terracotta);
  font-size: 0.8em;
  position: absolute;
  left: 0.01em;
  top: 0.05em;
}
/* 최종 인용구 박스 스타일 (왼쪽 정렬 + 클래식 따옴표 + 기본 폰트) */
.post-content blockquote {
    display: block !important;
    background: var(--theme-light-beige) !important;
    padding: 1.5em 1.5em 1.5em 45px !important;
    margin: 2em 0 !important;
    position: relative !important;
    font-family: inherit !important;
    /* 블로그 기본 폰트로 변경하여 정렬감 개선 */
    font-style: normal !important;
    font-size: 1em !important;
    line-height: 1.7 !important;
    color: inherit !important;
    box-shadow: none !important;
    text-align: left !important;
    border-left: 8px solid var(--theme-terracotta) !important;
    border-right: 1px solid var(--theme-beige) !important;
    border-top: 1px solid var(--theme-beige) !important;
    border-bottom: 1px solid var(--theme-beige) !important;
    border-radius: 5px !important;
}
.post-content blockquote::before {
    content: "\201C" !important;
    font-family: Georgia, serif !important;
    font-size: 60px !important;
    font-weight: bold !important;
    color: var(--theme-beige) !important;
    position: absolute !important;
    left: 10px !important;
    top: 12px !important;
    z-index: 0 !important;
}
.post-content blockquote::after {
    content: "" !important;
    display: none !important;
}
/* 텍스트가 따옴표 장식 위에 오도록 설정 */
.post-content blockquote p {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}
/* 인용구 내부 링크 스타일 */
.post-content blockquote a {
    text-decoration: none !important;
    background: var(--theme-beige) !important;
    cursor: pointer !important;
    padding: 0 3px !important;
    color: var(--theme-terracotta) !important;
}
.post-content blockquote a:hover {
    color: var(--theme-navy-blue) !important;
}
/* --- [추가] 목차(TOC) 링크 호버 효과 --- */
.toc-wrap .toc-item a:hover {
    color: var(--theme-terracotta);
}

/* --- [최종 에러 수정] 누락된 컴포넌트 복원 및 링크 밑줄 제거 --- */

/* 1. 핵심 수치 강조 블록(.stat-callout) 스타일 복원 */
.post-content .stat-callout {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid var(--theme-beige);
    border-bottom: 1px solid var(--theme-beige);
}
.post-content .stat-callout .stat-number {
    font-size: 4em;
    font-weight: 800;
    color: var(--theme-navy-blue);
    line-height: 1;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.post-content .stat-callout .stat-description {
    font-size: 1.05em;
    color: inherit !important;
    line-height: 1.7;
}
@media (max-width: 640px) {
    .post-content .stat-callout .stat-number {
        font-size: 3em;
    }
}


/* 2. 더보기/접기 블록 (data-ke-type="moreLess") 스타일 복원 */
.btn-toggle-moreless,
.btn_more,
.btn_less {
  background: var(--theme-terracotta);
  border-radius: 9999px;
  box-shadow: rgba(237, 137, 54, 0.2) 0 4px 11px 0, rgba(237, 137, 54, 0.35) 0 1px 3px 0;
  z-index: 1;
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  margin-top: 5px;
  color: #fff !important;
  font-size: 14px !important;
}
.btn-toggle-moreless:before,
.btn_more:before {
  content: '✚';
  margin-right: 5px;
}
.open .btn-toggle-moreless:before,
.btn_less:before {
  content: '✖';
  margin-right: 5px;
}
div[data-ke-type='moreLess'] {
  position: relative;
}
div[data-ke-type='moreLess']::before {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 1px dashed #F5B041; /* 박스 상단 라인 */
  margin-top: 22.5px;
}
.moreless-content {
  padding: 15px 5px;
  border-bottom: 1px dashed #F5B041;
}


/* 3. 텍스트 링크(.text-link) 스타일에서 밑줄 제거 */
.post-content a.text-link {
    font-weight: 600;
    border-bottom: none; /* 점선 밑줄 제거 */
}
.post-content a.text-link:hover {
    border-bottom-style: none;
}

/* =============================================================
 * === 최종 수정 패치 (Master Override Patch) ===
 * 기존 코드는 그대로 두고, 이 블록 전체를 CSS 맨 아래에 추가하세요.
 * ============================================================= */

/* 1. H3 제목 호버 효과 추가 */
.post-content h3 {
    transition: color 0.3s ease-in-out;
}
.post-content h3:hover {
    color: var(--theme-navy-blue);
}

/* 2. 텍스트 링크 밑줄 제거 */
.post-content a.text-link {
    border-bottom: none;
}
.post-content a.text-link:hover {
    border-bottom-style: none;
}

/* 3. 핵심 요약 카드 세로 정렬 개선 */
.post-content .takeaway-item {
    align-items: flex-start; /* '위쪽' 정렬로 기준점 변경 */
}
.post-content .takeaway-number {
    margin-top: 0; /* 기존 마진 초기화 */
}
.post-content .takeaway-text {
    padding-top: 2px; /* 텍스트를 살짝 내려서 숫자와 시각적 균형 맞춤 */
}

/* 4. 목차 호버 효과 추가 */
.toc-wrap .toc-item a {
    transition: color 0.2s ease-in-out;
}
.toc-wrap .toc-item a:hover {
    color: var(--theme-terracotta);
}

/* 5. 인용구 박스 최종 디자인 (에디터 깨짐 방지 포함) */
.post-content blockquote {
    display: block !important;
    background: var(--theme-light-beige) !important;
    padding: 1.5em 1.5em 1.5em 45px !important;
    margin: 2em 0 !important;
    position: relative !important;
    font-family: inherit !important;
    font-style: normal !important;
    font-size: 1em !important;
    line-height: 1.7 !important;
    color: inherit !important;
    box-shadow: none !important;
    text-align: left !important;
    border-left: 8px solid var(--theme-terracotta) !important;
    border-right: 2px solid var(--theme-terracotta) !important;
    border-top: 1px solid var(--theme-beige) !important;
    border-bottom: 1px solid var(--theme-beige) !important;
    border-radius: 5px !important;
}
.post-content blockquote::before {
    content: "\201C" !important;
    font-family: Georgia, serif !important;
    font-size: 60px !important;
    font-weight: bold !important;
    color: var(--theme-beige) !important;
    position: absolute !important;
    left: 10px !important;
    top: 12px !important;
    z-index: 0 !important;
}
.post-content blockquote::after {
    content: "" !important;
    display: none !important;
}
.post-content blockquote p {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}
.post-content blockquote a {
    text-decoration: none !important;
    background: var(--theme-beige) !important;
    cursor: pointer !important;
    padding: 0 3px !important;
    color: var(--theme-terracotta) !important;
}
.post-content blockquote a:hover {
    color: var(--theme-navy-blue) !important;
}

/* 6. 스티키 사이드바 기능 복원 (PC 화면) */
@media (min-width: 1023px) {
  #sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    align-self: flex-start;
  }
}
/* =============================================================
 * === 최종 수정 패치 v2 (Master Override Patch v2) ===
 * 모든 디자인 수정사항과 누락된 기능 복원을 포함합니다.
 * ============================================================= */

/* 1. H3 제목 호버 효과 추가 */
.post-content h3 {
    transition: color 0.3s ease-in-out;
}
.post-content h3:hover {
    color: var(--theme-navy-blue);
}

/* 2. 텍스트 링크 밑줄 제거 */
.post-content a.text-link {
    border-bottom: none;
}
.post-content a.text-link:hover {
    border-bottom-style: none;
}

/* 3. 핵심 요약 카드 세로 정렬 개선 */
.post-content .takeaway-item {
    align-items: flex-start; /* '위쪽' 정렬로 기준점 변경 */
}
.post-content .takeaway-number {
    margin-top: 0; /* 기존 마진 초기화 */
}
.post-content .takeaway-text {
    padding-top: 2px; /* 텍스트를 살짝 내려서 숫자와 시각적 균형 맞춤 */
}

/* 4. 목차 호버 효과 추가 */
.toc-wrap .toc-item a {
    transition: color 0.2s ease-in-out;
}
.toc-wrap .toc-item a:hover {
    color: var(--theme-terracotta);
}

/* 5. 인용구 박스 최종 디자인 (에디터 깨짐 방지 포함) */
.post-content blockquote {
    display: block !important;
    background: var(--theme-light-beige) !important;
    padding: 1.5em 1.5em 1.5em 45px !important;
    margin: 2em 0 !important;
    position: relative !important;
    font-family: inherit !important;
    font-style: normal !important;
    font-size: 1em !important;
    line-height: 1.7 !important;
    color: inherit !important;
    box-shadow: none !important;
    text-align: left !important;
    border-left: 8px solid var(--theme-terracotta) !important;
    border-right: 2px solid var(--theme-terracotta) !important;
    border-top: 1px solid var(--theme-beige) !important;
    border-bottom: 1px solid var(--theme-beige) !important;
    border-radius: 5px !important;
}
.post-content blockquote::before {
    content: "\201C" !important;
    font-family: Georgia, serif !important;
    font-size: 60px !important;
    font-weight: bold !important;
    color: var(--theme-beige) !important;
    position: absolute !important;
    left: 10px !important;
    top: 12px !important;
    z-index: 0 !important;
}
.post-content blockquote::after {
    content: "" !important;
    display: none !important;
}
.post-content blockquote p {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}
.post-content blockquote a {
    text-decoration: none !important;
    background: var(--theme-beige) !important;
    cursor: pointer !important;
    padding: 0 3px !important;
    color: var(--theme-terracotta) !important;
}
.post-content blockquote a:hover {
    color: var(--theme-navy-blue) !important;
}

/* 6. 스티키 사이드바 기능 복원 (PC 화면) */
@media (min-width: 1023px) {
  #sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    align-self: flex-start;
  }
}

/* =============================================================
 * === 최종 수정 패치 (Master Override Patch) ===
 * 기존 코드는 그대로 두고, 이 블록 전체를 CSS 맨 아래에 추가하세요.
 * ============================================================= */

/* 1. H3 제목 호버 효과 추가 */
.post-content h3 {
    transition: color 0.3s ease-in-out;
}
.post-content h3:hover {
    color: var(--theme-navy-blue);
}

/* 2. 텍스트 링크 밑줄 제거 */
.post-content a.text-link {
    border-bottom: none;
}
.post-content a.text-link:hover {
    border-bottom-style: none;
}

/* 3. 핵심 요약 카드 세로 정렬 개선 */
.post-content .takeaway-item {
    align-items: flex-start; /* '위쪽' 정렬로 기준점 변경 */
}
.post-content .takeaway-number {
    margin-top: 0; /* 기존 마진 초기화 */
}
.post-content .takeaway-text {
    padding-top: 2px; /* 텍스트를 살짝 내려서 숫자와 시각적 균형 맞춤 */
}

/* 4. 목차 호버 효과 추가 */
.toc-wrap .toc-item a {
    transition: color 0.2s ease-in-out;
}
.toc-wrap .toc-item a:hover {
    color: var(--theme-terracotta);
}

/* 5. 인용구 박스 최종 디자인 (에디터 깨짐 방지 포함) */
.post-content blockquote {
    display: block !important;
    background: var(--theme-light-beige) !important;
    padding: 1.5em 1.5em 1.5em 45px !important;
    margin: 2em 0 !important;
    position: relative !important;
    font-family: inherit !important;
    font-style: normal !important;
    font-size: 1em !important;
    line-height: 1.7 !important;
    color: inherit !important;
    box-shadow: none !important;
    text-align: left !important;
    border-left: 8px solid var(--theme-terracotta) !important;
    border-right: 2px solid var(--theme-terracotta) !important;
    border-top: 1px solid var(--theme-beige) !important;
    border-bottom: 1px solid var(--theme-beige) !important;
    border-radius: 5px !important;
}
.post-content blockquote::before {
    content: "\201C" !important;
    font-family: Georgia, serif !important;
    font-size: 60px !important;
    font-weight: bold !important;
    color: var(--theme-beige) !important;
    position: absolute !important;
    left: 10px !important;
    top: 12px !important;
    z-index: 0 !important;
}
.post-content blockquote::after {
    content: "" !important;
    display: none !important;
}
.post-content blockquote p {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}
.post-content blockquote a {
    text-decoration: none !important;
    background: var(--theme-beige) !important;
    cursor: pointer !important;
    padding: 0 3px !important;
    color: var(--theme-terracotta) !important;
}
.post-content blockquote a:hover {
    color: var(--theme-navy-blue) !important;
}

/* 6. 스티키 사이드바 기능 복원 (PC 화면) */
@media (min-width: 1023px) {
  #sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    align-self: flex-start;
  }
}


/* 보조 CTA 버튼 (.cta-sub) 기본 스타일 - 3D & Full-width */
.post-content .cta-sub {
  box-sizing: border-box !important; /* [수정] 가로폭 넘침 방지 */
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Hahmlet', serif;
  font-weight: 700;
  color: var(--theme-navy-blue);
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: var(--theme-light-beige);
  border: 1px solid var(--theme-beige) !important; /* [수정 필요] */
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
  margin-bottom: 1.2em !important; /* [수정] 잘림 현상 방지 */
}

/* ::after 가상 요소를 이용한 아이콘 자동 생성 */
.post-content .cta-sub::after {
  content: '\f002'; /* 돋보기 아이콘의 유니코드 */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.75em;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

/* 3D 효과를 내는 그림자 부분 */
.post-content .cta-sub::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--theme-terracotta);
  border-radius: inherit;
  box-shadow: 0 0 0 1px var(--theme-beige), 0 0.625em 0 0 rgba(45, 53, 80, 0.2); /* [수정 필요] */
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}

/* 마우스를 올렸을 때의 효과 */
.post-content .cta-sub:hover {
  background: var(--theme-beige);
  transform: translate(0, 0.25em);
}
.post-content .cta-sub:hover::before {
  box-shadow: 0 0 0 1px var(--theme-beige), 0 0.5em 0 0 rgba(45, 53, 80, 0.2); /* [수정 필요] */
  transform: translate3d(0, 0.5em, -1em);
}
.post-content .cta-sub:hover::after {
    transform: translateX(3px);
}

/* 클릭했을 때의 효과 */
.post-content .cta-sub:active {
  background: var(--theme-beige);
  transform: translate(0em, 0.75em);
}
.post-content .cta-sub:active::before {
  box-shadow: 0 0 0 1px var(--theme-beige), 0 0 rgba(45, 53, 80, 0.2); /* [수정 필요] */
  transform: translate3d(0, 0, -1em);
}

/* 모바일 반응형 (화면 너비 768px 이하) */
@media (max-width: 768px) {
  .post-content .cta-sub {
    font-size: 0.9rem;
    padding: 1em 1.5em;
  }
}

/*그래프*/
/* 전체 그래프 컴포넌트를 감싸는 외부 컨테이너 */
.bar-graph-wrapper {
    max-width: 680px; /* 콘텐츠의 최대 너비를 고정 */
    margin: 2em auto; /* 좌우 마진을 auto로 주어 중앙 정렬 */
    padding: 2em;
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

/* 그래프 제목 스타일 */
.bar-graph-wrapper h4 {
    text-align: center;
    margin-top: 0;
    color: var(--theme-navy-blue); /* 제목 폰트 색상 */
}

/* Font Awesome 아이콘 추가 (제목 앞) */
.bar-graph-wrapper h4::before {
    content: '\f080'; /* bar-chart 아이콘 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.75em;
    color: var(--theme-terracotta); /* 아이콘 색상을 그래프 색상과 통일 */
}

/* 테이블 전체의 레이아웃 */
.graph-table {
    width: 100%;
    border-collapse: collapse; /* 셀 사이의 간격 제거 */
    font-size: 0.9rem;
}

.graph-table td {
    padding: 8px 0;
    vertical-align: middle; /* 세로 중앙 정렬 */
}

/* 항목 라벨 셀 */
.graph-table .label-cell {
    width: 80px;
    padding-right: 1em;
    font-weight: 600;
    color: var(--theme-navy-blue); /* 폰트 색상 네이비로 지정 */
}

/* 퍼센트(%) 숫자 셀 */
.graph-table .percent-cell {
    width: 50px;
    padding-left: 1em;
    text-align: right;
    font-weight: 700;
    color: var(--theme-navy-blue); /* 폰트 색상 네이비로 지정 */
}

/* 막대그래프 스타일 */
.single-bar {
    height: 25px;
    border-radius: 13px;
    /* 배경 트랙 색상을 더 진한 회색으로 변경하여 시인성 확보 */
    background: linear-gradient(to right, 
        var(--theme-terracotta) var(--p), 
        #e0e0e0 var(--p)
    );
}




/* 스티치 박스 기본 스타일 */
.stitch-box {
    margin: 2em auto;
    position: relative;
    padding: 2em;
    z-index: 0;
    background-color: #f5f5f5; 
    border-radius: 13px;
    color: var(--theme-navy-blue);
}

/* 테두리 스타일 */
.stitch-box:before {
    position: absolute;
    content: '';
    display: block;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    z-index: -1;
    border-radius: 10px;
    border: 1.5px dashed var(--theme-terracotta);
}

/* [수정됨] .has-pin 클래스가 있을 때만 핀 아이콘 생성 */
.stitch-box.has-pin::after {
    content: '\f08d'; /* 핀(pin) 아이콘 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: 35px;
    font-size: 2.2rem;
    color: var(--theme-terracotta);
}

/* 박스 내부 제목(H4) 스타일 */
.stitch-box h4 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--theme-navy-blue);
}

/* 박스 내부 목록(ul) 스타일 */
.stitch-box ul {
    padding-left: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}


/* ==================================================================
   [추가 컴포넌트] 리뷰 박스
   Theme: Navy(#0A2342), Terracotta(#E2725B), Beige(#EAE0D5)
   ================================================================== */


/* 1. 리뷰 요약 박스 (별점 박스) */
.post-content .review-summary-box {
    border: 1px solid var(--theme-beige);
    border-radius: 10px;
    padding: 30px 20px;
    background-color: var(--theme-light-beige);
    box-shadow: none !important;
    margin: 3rem 0;
    text-align: center;
}

.post-content .review-header {
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--theme-beige);
    padding-bottom: 15px;
}

.post-content .product-name {
    display: block;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--theme-navy-blue);
    margin-bottom: 10px;
}

.post-content .star-rating {
    color: #FFC107; /* 골드 색상 */
    font-size: 1.2em;
    letter-spacing: 3px;
}

.post-content .score {
    color: var(--theme-base-font);
    font-weight: 600;
    margin-left: 10px;
    font-size: 0.9em;
    letter-spacing: 0;
}

.post-content .review-comment {
    font-size: 1.05em;
    color: var(--theme-base-font);
    font-style: normal;
    line-height: 1.8;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

/* 따옴표 아이콘 (CSS로 처리하여 깨짐 방지) */
.post-content .review-comment::before {
    content: '\f10d'; /* FontAwesome 따옴표 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--theme-terracotta);
    font-size: 1.2em;
    vertical-align: top;
}


/* ==================================================================
   [Advanced Components: No-Break Icons Edition]
   Theme: Navy(#0A2342), Terracotta(#E2725B), Beige(#EAE0D5)
   * HTML 본문에 <i> 태그를 쓰지 않아 에디터 오류가 없습니다.
   ================================================================== */

/* 1. VS 비교 박스 (업그레이드 판) */
/* 용도: 위경련 vs 췌장염, 길몽 vs 흉몽 비교 */
.vs-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
}
.vs-box-item {
    flex: 1;
    min-width: 280px;
    border: 1px solid var(--theme-beige);
    border-radius: 8px;
    overflow: hidden;
}
/* 헤더 스타일 (아이콘 자동 생성) */
.vs-box-header {
    padding: 12px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    font-size: 1.1em;
}
/* A타입 (왼쪽/장점/보통) - 네이비 */
.vs-box-item.type-a .vs-box-header {
    background-color: var(--theme-navy-blue);
}
/* B타입 (오른쪽/단점/심각) - 테라코타 */
.vs-box-item.type-b .vs-box-header {
    background-color: var(--theme-terracotta);
}
/* 내용 영역 */
.vs-box-content {
    padding: 20px;
    background-color: #fff;
    font-size: 0.95em;
    line-height: 1.6;
    color: #444;
}
.vs-box-content ul {
    margin: 0;
    padding-left: 15px;
}


/* 2. 메디컬 체크리스트 (자가진단용) */
/* 용도: 증상 체크, 필수 준비물 체크 */
.check-list-box {
    background-color: #fff;
    border: 2px solid var(--theme-beige);
    border-radius: 12px;
    padding: 25px;
    margin: 2rem 0;
    position: relative;
}
/* 제목 옆에 체크 아이콘 자동 생성 */
.check-list-box h4::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--theme-terracotta);
}
.check-list-box h4 {
    margin-top: 0;
    color: var(--theme-navy-blue);
    font-weight: 700;
    font-size: 1.2em;
    border-bottom: 2px solid var(--theme-light-beige);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
/* 리스트 아이템 앞 체크 표시 */
.check-list-box ul {
    list-style: none !important;
    padding: 0 !important;
}
.check-list-box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.check-list-box li::before {
    content: '\f058'; /* FontAwesome Circle Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--theme-navy-blue);
    font-size: 1em;
}


/* 3. 절대 경고 박스 (Red Flag) */
/* 용도: 응급상황, 금기사항, 부작용 경고 */
.warning-alert-box {
    background-color: #fff5f5; /* 연한 붉은색 */
    border: 1px solid #ffcdd2;
    border-left: 5px solid #c0392b; /* 진한 빨강 */
    border-radius: 4px;
    padding: 20px;
    margin: 2rem 0;
}
.warning-title {
    color: #c0392b;
    font-weight: 800;
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
/* 경고 아이콘 자동 생성 */
.warning-title::before {
    content: '\f071'; /* FontAwesome Warning Triangle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.3em;
}
.warning-desc {
    color: #333;
    font-size: 0.95em;
    line-height: 1.6;
}



/* ==================================================================
   [Visual Impact Components] 
   * 직관적인 정보 전달을 위한 시각화 도구 (OX, Step)
   ================================================================== */

/* 1. OX 팩트체크 박스 (고정 크기 + 아이콘 색상 변경) */
.ox-box-container {
    display: flex; 
    gap: 15px; 
    margin: 2rem 0;
}

/* 1. 박스 공통 레이아웃 */
.ox-card {
    flex: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    border-radius: 12px;
    /* background: #fff;  <-- 공통 흰색 배경 삭제 (아래에서 개별 색상 지정) */
    border: 1px solid var(--theme-beige);
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03); /* 살짝 입체감 추가 */
}

/* 2. [O 카드] 설정 (긍정/Navy) */
.ox-card.type-o {
    background-color: #F1F9F5; /* ★ 배경: 눈이 편안한 연한 민트색 */
    border-color: #D1E5DD;     /* 테두리: 배경보다 살짝 진한 민트 */
}
.ox-card.type-o .ox-mark { color: #2ecc71; } /* 아이콘: 녹색 */
.ox-card.type-o .ox-mark::before { content: '\f111'; font-weight: 400; }

/* 3. [X 카드] 설정 (부정/Terracotta) */
.ox-card.type-x {
    background-color: #FFF5F5; /* ★ 배경: 자극적이지 않은 연한 핑크 */
    border-color: #EEDCDC;     /* 테두리: 배경보다 살짝 진한 핑크 */
}
.ox-card.type-x .ox-mark { color: #e74c3c; } /* 아이콘: 빨강 */
.ox-card.type-x .ox-mark::before { content: '\f00d'; font-weight: 900; }

/* 4. 내부 텍스트 스타일 (공통) */
.ox-title {
    font-weight: 800; display: block; text-align: center;
    margin-bottom: 15px; color: #333; font-size: 1.2em;
}
.ox-card ol {
    margin: 0; padding-left: 20px; color: #555;
    font-weight: 500; line-height: 1.6; flex-grow: 1;
}
.ox-card ol li { margin-bottom: 8px; }

/* 아이콘 영역 공통 */
.ox-mark {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    text-align: center; 
    font-family: "Font Awesome 6 Free"; 
    line-height: 1;
}

/* --- O 카드 (녹색 + 빈 동그라미) --- */
.ox-card.type-o .ox-mark { 
    color: #2ecc71; /* ★녹색으로 변경 */
}
.ox-card.type-o .ox-mark::before { 
    content: '\f111'; /* 빈 동그라미 */
    font-weight: 400; /* 테두리만 */
}

/* --- X 카드 (빨간색 + X 마크) --- */
.ox-card.type-x .ox-mark { 
    color: #e74c3c; /* ★빨간색으로 변경 */
}
.ox-card.type-x .ox-mark::before { 
    content: '\f00d'; /* X 마크 */
    font-weight: 900; /* 두껍게 */
}

/* 제목 스타일 */
.ox-title { 
    font-weight: 800; 
    display: block; 
    text-align: center;
    margin-bottom: 15px; 
    color: #333; 
    font-size: 1.2em; 
}

/* 리스트 스타일 */
.ox-card ol {
    margin: 0;
    padding-left: 20px;
    color: #555; 
    font-weight: 500;
    line-height: 1.6;
    flex-grow: 1; 
}
.ox-card ol li {
    margin-bottom: 8px;
}

/* 모바일 대응 */
@media screen and (max-width: 600px) {
    .ox-box-container { flex-direction: column; }
    .ox-card { flex: auto; } 
}


/* 3. 단계별 프로세스 (Step Timeline) */
.step-process-box {
    margin: 2rem 0;
    padding: 10px 0;
}
.step-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}
.step-item:last-child { margin-bottom: 0; }

/* 원형 숫자 */
.step-num {
    width: 32px; height: 32px;
    background: var(--theme-navy-blue);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}
/* 연결선 */
.step-item:not(:last-child)::after {
    content: ''; position: absolute;
    top: 32px; left: 15px;
    width: 2px; height: calc(100% - 10px);
    background: var(--theme-beige);
}
.step-content {
    margin-left: 18px;
    padding-top: 4px;
}
.step-title { font-weight: 700; color: var(--theme-navy-blue); margin-bottom: 5px; display: block; font-size: 1.05em; }
.step-desc { font-size: 0.95em; color: #555; line-height: 1.6; }

/* ==================================================================
   [Wise Blog Additional Components]
   (Golden Duck 기능을 슬기생 테마(Navy/Terracotta)로 이식)
   ================================================================== */

/* 1. 인터랙티브 자가진단 (클릭형) - 슬기생 Ver. */
.diagnosis-container {
    background-color: var(--theme-light-beige);
    border: 1px solid var(--theme-beige);
    border-radius: 12px;
    padding: 25px;
    margin: 2.5rem 0;
}
.diagnosis-title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--theme-navy-blue); /* 네이비 타이틀 */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--theme-beige);
    padding-bottom: 10px;
}
.diagnosis-title i {
    color: var(--theme-terracotta); /* 아이콘은 테라코타 */
    margin-right: 10px;
    font-size: 1.3em;
}
.diagnosis-list { display: flex; flex-direction: column; gap: 12px; }
.diagnosis-item input[type="checkbox"] { display: none; }

/* 라벨 (기본 상태) */
.diagnosis-item label {
    display: block;
    position: relative;
    padding: 14px 15px 14px 45px;
    background: #fff;
    border: 1px solid var(--theme-beige);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95em;
    color: var(--theme-base-font);
    font-weight: 500;
}
.diagnosis-item label::before {
    content: "\f0c8"; /* 빈 사각형 */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    color: #ccc; font-size: 1.3em; transition: all 0.2s;
}

/* [클릭 시] 활성화 스타일 (테라코타 포인트) */
.diagnosis-item input[type="checkbox"]:checked + label {
    background-color: #fff8f6; /* 아주 연한 테라코타 배경 */
    border-color: var(--theme-terracotta);
    color: var(--theme-navy-blue);
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(226, 114, 91, 0.15);
}
.diagnosis-item input[type="checkbox"]:checked + label::before {
    content: "\f14a"; /* 체크박스 */
    font-weight: 900;
    color: var(--theme-terracotta);
}
.diagnosis-result {
    margin-top: 20px; padding: 15px; background-color: #fff;
    border: 1px dashed var(--theme-navy-blue); border-radius: 8px;
    font-size: 0.95em; color: var(--theme-base-font); line-height: 1.6;
}

/* 2. 이모지 채팅 박스 (Golden Duck Style -> Wise Theme) */
.post-content .chat-container {
    display: flex; flex-direction: column; gap: 20px; margin: 2.5rem 0; width: 100%;
}
.post-content .chat-bubble { display: flex; align-items: flex-start; max-width: 100%; }

/* 아이콘 공통 (이모지 중앙 정렬) */
.post-content .chat-icon {
    width: 45px; height: 45px; border-radius: 50%;
    background-color: #fff; border: 1px solid var(--theme-beige);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; line-height: 1; margin: 0 12px; flex-shrink: 0;
    cursor: default;
}

/* 왼쪽 (질문자) */
.post-content .chat-bubble.left { align-self: flex-start; flex-direction: row; }
.post-content .chat-bubble.left .chat-content {
    background-color: var(--theme-light-beige);
    border: 1px solid var(--theme-beige);
    color: #333; border-top-left-radius: 2px;
}

/* 오른쪽 (답변자) */
.post-content .chat-bubble.right { align-self: flex-end; flex-direction: row-reverse; }
.post-content .chat-bubble.right .chat-icon { border-color: var(--theme-terracotta); }
.post-content .chat-bubble.right .chat-content {
    background-color: var(--theme-terracotta); /* 답변 강조 */
    color: #fff !important; border-top-right-radius: 2px; text-align: left; border: none;
}
.post-content .chat-bubble.right .chat-content p { color: #fff !important; margin: 0; }

/* [수정] 말풍선 본문: 폰트 사이즈 축소 및 여백 최적화 */
.post-content .chat-content {
    padding: 12px 15px;      /* 여백을 살짝 줄여서 컴팩트하게 */
    border-radius: 12px;
    font-size: 0.9em;        /* ★ 핵심: 폰트 크기 축소 (0.95em -> 0.9em) */
    line-height: 1.6;        /* 줄간격은 유지해 가독성 확보 */
    max-width: calc(100% - 70px);
    word-break: break-word;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 은은한 그림자 유지 */
}

/* 문단 여백 제거 (내용이 길어져도 깔끔하게 붙도록) */
.post-content .chat-content p {
    margin: 0;
}

/* ==================================================================
   [최종 확정] 가로형 바 그래프 (슬기생 Ver. - 폰트/여백 조정)
   ================================================================== */
.stat-bar-box {
    padding: 20px; /* 박스 내부 여백 조정 */
    background: #fff;
    border: 1px solid var(--theme-beige);
    border-radius: 10px;
    margin: 1.5rem 0;
}

/* 제목 스타일 */
.stat-bar-box h4 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--theme-navy-blue);
    font-size: 1.0em; /* 제목 폰트 사이즈 미세 조정 */
    font-weight: 700;
}

/* 개별 항목 행 */
.stat-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center; 
}
.stat-item:last-child {
    margin-bottom: 0;
}

/* 라벨 텍스트: 글자 짤림 방지 (핵심) */
.stat-label-text {
    width: 100px; 
    min-width: 100px;
    font-weight: 700;
    font-size: 0.85em; /* 폰트 사이즈 축소 */
    color: var(--theme-base-font);
    white-space: nowrap; /* 줄바꿈 금지 */
    overflow: hidden; 
    text-overflow: ellipsis; /* 말줄임표 처리 */
    text-align: right; 
    padding-right: 10px; 
}

/* 그래프 바 영역 */
.stat-progress-area {
    flex-grow: 1; 
    height: 10px; /* 높이 조정 */
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

/* 채워지는 바 */
.stat-progress-fill {
    height: 100%;
    border-radius: 5px;
    background-color: var(--theme-terracotta);
}

/* 수치 텍스트: 글자 짤림 방지 및 너비 고정 */
.stat-value-text {
    width: 70px !important; 
    min-width: 70px !important; 
    white-space: nowrap; /* 줄바꿈 금지 */
    text-align: right; 
    font-weight: 800;
    font-size: 0.9em; /* 폰트 사이즈 축소 */
    color: var(--theme-terracotta);
    padding-left: 10px;
}


/* ==================================================================
   [ULTIMATE FIX] 최종 레이아웃, 정렬, 폰트 사이즈 오버라이드
   ================================================================== */

/* 1. GLOBAL BASE FONT REDUCTION (전체 폰트 크기 축소) */
body, html {
  font-size: 14px !important; /* 15px에서 14px로 축소하여 공간 확보 */
}

/* 2. PC LAYOUT & CENTERING (중앙 정렬 및 여백 조정) */
@media only screen and (min-width: 1023px) {
  /* 본문 컨테이너가 중앙에 오도록 명확히 보장 */
  #wrap #container {
    margin: 0 auto !important; 
  }
  /* 사이드바 여백을 45px에서 30px로 축소하고 균형 유지 */
  #container #main #sidebar.left {
    margin-right: 30px !important; 
  }
  #container #main #sidebar.right {
    margin-left: 30px !important; 
  }
  /* 본문 최대 너비를 살짝 줄여 긴 줄을 방지 */
  .h-entry .content-width {
    max-width: 780px !important; 
  }
}

/* 3. MOBILE PADDING & CENTERING (모바일 좌우 여백 통일 및 축소) */
@media only screen and (max-width: 1023px) {
  /* 모든 주요 콘텐츠 블록의 좌우 여백을 10px로 통일 */
  .h-entry {
    padding: 0 10px 0 10px !important; 
  }
  #taglog, #guestbook, #no-search-results {
    padding: 0 10px !important;
  }
  #sidebar {
    padding: 10px !important; 
  }
  /* 헤더 타이틀 크기 축소 */
  #header_wrap #header_gnb #header-title a {
    font-size: 17px !important; 
  }
}

/* 4. SPECIFIC COMPONENT FONT REDUCTION (가로형 그래프 글자 짤림 방지) */
.stat-label-text {
    font-size: 0.8em !important; /* 폰트 추가 축소 */
}
.stat-value-text {
    font-size: 0.85em !important; /* 폰트 추가 축소 */
    width: 65px !important; /* 수치 영역 너비 조정 */
    min-width: 65px !important;
}


/* ==================================================================
   [슬기로운 블로그] 추가 컴포넌트 (참고문헌)
   Theme: Navy(#0A2342), Terracotta(#E2725B), Beige(#EAE0D5)
   ================================================================== */


/* 1. 참고 문헌 박스 (.wise-reference) */
.wise-reference {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px dashed #dcd6ce; /* var(--theme-beige) */
}

/* 제목 스타일 */
.wise-reference h4 {
    color: #2c3e50; /* var(--theme-navy-blue) */
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* 제목 옆 아이콘 (FontAwesome 등 사용 시) */
.wise-reference h4 i {
    color: #e07a5f; /* var(--theme-terracotta) */
    margin-right: 10px;
    font-size: 0.9em;
}

/* 리스트 컨테이너 (ul 대체) */
.wise-reference .ref-list {
    display: block;
    margin: 0;
    padding: 0;
}

/* 리스트 아이템 (li 대체) */
.wise-reference .ref-item {
    display: block; /* 줄바꿈 강제 */
    font-size: 0.9em;
    color: #777;
    line-height: 1.7;
    padding-left: 15px; /* 텍스트 들여쓰기 */
    position: relative;
    margin-bottom: 8px;
    word-break: keep-all; /* 단어 단위 줄바꿈 (선택사항) */
}

/* 커스텀 점 (bullet) */
.wise-reference .ref-item::before {
    content: '';
    position: absolute;
    left: 4px; /* 위치 조정 */
    top: 10px; /* 텍스트 높이에 맞춰 중앙 정렬 */
    width: 4px;
    height: 4px;
    background-color: #dcd6ce; /* var(--theme-beige) */
    border-radius: 50%;
}

/* ==================================================================
   [NEW] 가로 스크롤 비교 테이블 (.scroll-compare-table)
   * 모바일에서 좌우 스크롤 가능 / 데이터 비교에 최적화
   ================================================================== */
.scroll-table-wrapper {
    width: 100%;
    overflow-x: auto; /* 핵심: 내용이 넘치면 스크롤 생성 */
    margin: 2rem 0;
    border: 1px solid var(--theme-beige);
    border-radius: 8px;
    box-shadow: none;
    -webkit-overflow-scrolling: touch; /* 모바일 부드러운 스크롤 */
    
    /* 스크롤바 스타일링 (옵션) */
    scrollbar-width: thin;
    scrollbar-color: var(--theme-terracotta) var(--theme-light-beige);
}

.scroll-table-wrapper::-webkit-scrollbar {
    height: 8px;
}
.scroll-table-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--theme-terracotta);
    border-radius: 4px;
}
.scroll-table-wrapper::-webkit-scrollbar-track {
    background-color: var(--theme-light-beige);
}

.scroll-compare-table {
    width: 100%;
    min-width: 500px; /* 핵심: 모바일에서도 최소 너비 확보하여 찌그러짐 방지 */
    border-collapse: collapse;
    font-size: 0.95em;
    background-color: #fff;
}

/* 헤더 스타일 (네이비 배경 + 흰색 글씨) */
.scroll-compare-table thead th {
    background-color: var(--theme-navy-blue);
    color: #fff;
    font-weight: 700;
    padding: 12px 15px;
    text-align: center;
    border-bottom: 2px solid var(--theme-terracotta);
    white-space: nowrap; /* 제목 줄바꿈 방지 */
}

/* 본문 셀 스타일 */
.scroll-compare-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}

/* 첫 번째 열 강조 (구분 항목) */
.scroll-compare-table tbody td:first-child {
    background-color: #fdfdfd;
    font-weight: 700;
    color: var(--theme-navy-blue);
    border-right: 1px solid #eee;
    white-space: nowrap; /* 항목명 줄바꿈 방지 */
}

/* 마지막 행 테두리 제거 */
.scroll-compare-table tbody tr:last-child td {
    border-bottom: none;
}