@charset "UTF-8";@import url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css);#footer,#tt-body-page figure[data-ke-type=opengraph] a:hover,figure[data-ke-type=opengraph] a:hover,header {
    background: #f1f1f1
}

.btn,a.btn,body {
    font-weight: 400
}

.entry-content table tbody td,.entry-content table thead th {
    padding: 7px 0 11px;
    border-left: 1px solid #e6e6e6
}

#header .inner .logo a,.button,.contents_style a,.post-item a,.toc *,a,a:active,a:link,a:visited {
    text-decoration: none
}

#content,#sidebar,.entry-content input {
    box-sizing: border-box;
    box-sizing: border-box
}

#container,#footer .inner,#header .inner,.ad,.category,.contents_style a,.entry-content .iframe-wrap,.entry-content ol li,.entry-content ul li,.post-item .thum,.toc {
    position: relative
}

body {
    text-size-adjust: 100%;
    font-family: 'Pretendard Variable',"맑은고딕","Malgun Gothic",Dotum,"돋움",Helvetica,sans-serif;
    line-height: 1.25;
    color: #333;
    background: #f1f1f1
}

header {
    padding: 0 40px
}

body,html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 100%
}

blockquote,code,dd,div,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,pre,td,textarea,th,ul {
    margin: 0;
    padding: 0
}

#tt-body-archive .not-found .archive,#tt-body-category .not-found .category,#tt-body-tag .not-found .tag,.post-item a,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

button,input,select,textarea {
    font-size: 100%;
    border-radius: 0
}

button {
    overflow: visible;
    margin: 0;
    padding: 0;
    border: 0;
    background: 0 0
}

ul li {
    list-style: none
}

fieldset,img {
    border: none;
    vertical-align: top
}

.entry-content a,a,a:link {
    color: #3858e9
}

.inner {
    margin-bottom: 0;
    color: #333
}

/* 모노크롬 모던 미니멀 목차 - 완전히 재작성된 버전 */
.toc {
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;  /* 배경색 흰색 */
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 24px 0;
    position: relative;
    color: #000000;
    border: 1px solid #e5e5e5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* 목차 헤더 */
.toc-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;  /* 헤더 배경색도 흰색으로 변경 */
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    min-height: 42px;
    flex-shrink: 0;
}

/* 목차 제목 */
.toc-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-right: auto;
    content: "목차";  /* 목차라는 텍스트만 표시 */
}

/* 제목 아이콘 */
.toc-title:before {
    content: "";
    margin-right: 8px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h16M4 12h16M4 18h16'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    flex-shrink: 0;
}

/* 토글 아이콘 */
.toc-toggle {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* 토글 상태 */
.toc.collapsed .toc-toggle {
    transform: rotate(0deg);
}

.toc:not(.collapsed) .toc-toggle {
    transform: rotate(180deg);
}

/* 목차 컨텐츠 영역 */
.toc-content {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    opacity: 0;
    transform-origin: top;
    padding: 0 20px;
}

.toc.collapsed .toc-content {
    display: none;
}

.toc.expanded .toc-content {
    max-height: 800px;
    padding: 8px 20px 16px;
    display: block;
    opacity: 1;
    animation: expandContent 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 목차 리스트 */
.toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.toc li {
    position: relative;
    margin-bottom: 3px;
    list-style-type: none;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.toc li:last-child {
    margin-bottom: 0;
}

/* 목차 링크 */
.toc a {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s ease;
    display: block;
    padding: 4px 14px;
    border-radius: 4px;
    background: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    width: 100%;
    box-sizing: border-box;
}

.toc a:hover {
    color: #000000;
    background: #f9f9f9;
}

/* 하위 목차 */
.toc ul ul {
    margin-left: 12px;
    margin-top: 3px;
    width: calc(100% - 12px);
    box-sizing: border-box;
}

.toc ul ul li {
    margin-bottom: 2px;
}

.toc ul ul li a {
    font-size: 13px;
    padding: 3px 8px;
    color: #555555;
}

.toc li > a::before {
    content: "•";
    display: inline-block;
    margin-right: 6px;
    font-size: 14px;
    color: #000000;
    opacity: 0.6;
    vertical-align: middle;
}

.toc ul ul li > a::before {
    content: "·";
    font-size: 16px;
    color: #555555;
    opacity: 0.5;
}

/* 스크롤 가능한 목차 */
.toc-content {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cccccc #f5f5f5;
}

/* 스크롤바 스타일 */
.toc-content::-webkit-scrollbar {
    width: 3px;
}

.toc-content::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.toc-content::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 3px;
}

.toc-content::-webkit-scrollbar-thumb:hover {
    background-color: #aaaaaa;
}

.toc.expanded {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toc.collapsed {
    height: auto;
    min-height: 42px;
    transform: scale(0.99);
}

/* 활성 항목 하이라이트 */
.toc a.active {
    color: #ffffff;
    background: #000000;
    font-weight: 500;
}

.toc a.active::before {
    opacity: 1;
    color: #ffffff;
}

.toc ul ul li > a.active::before {
    color: #ffffff;
}

/* 반응형 스타일 */
@media screen and (max-width: 767px) {
    .toc {
        margin: 18px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .toc-header {
        padding: 8px 12px;
        width: 100%;
    }
    
    .toc.expanded .toc-content {
        padding: 8px 12px 12px;
        width: 100%;
    }
    
    .toc a {
        padding: 6px 8px;
    }
    
    .toc ul ul li a {
        padding: 4px 6px;
    }
}

/* 다크 모드 */
.dark-theme .toc,
@media (prefers-color-scheme: dark) {
    .toc {
        background-color: #121212;
        color: #ffffff;
        border-color: #333333;
    }
    
    .toc-header {
        background-color: #1a1a1a;
    }
    
    .toc-title {
        color: #ffffff;
    }
    
    .toc-title:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h16M4 12h16M4 18h16'%3E%3C/path%3E%3C/svg%3E");
    }
    
    .toc-toggle {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    }
    
    .toc a {
        color: #e0e0e0;
        background: #1e1e1e;
    }
    
    .toc a:hover {
        color: #ffffff;
        background: #252525;
    }
    
    .toc ul ul li a {
        color: #bbbbbb;
    }
    
    .toc-content::-webkit-scrollbar-track {
        background: #1a1a1a;
    }
    
    .toc-content::-webkit-scrollbar-thumb {
        background-color: #444444;
    }
    
    .toc-content::-webkit-scrollbar-thumb:hover {
        background-color: #555555;
    }
    
    .toc a.active {
        color: #000000;
        background: #ffffff;
    }
    
    .toc a.active::before {
        color: #000000;
    }
    
    .toc ul ul li > a.active::before {
        color: #000000;
    }
}

/* 애니메이션 키프레임 */
@keyframes expandContent {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.98);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        max-height: 800px;
    }
}

@keyframes collapseContent {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        max-height: 800px;
    }
    to {
        opacity: 0;
        transform: translateY(-15px) scale(0.98);
        max-height: 0;
    }
}

/* 토글 부드러운 전환 */
.toc-header {
    transition: background-color 0.3s ease;
}

.toc.expanded .toc-header {
    border-bottom: 1px solid #f0f0f0;
}

/* 문제 해결을 위한 추가 CSS */
b[style*="position: relative"][style*="color: black"][style*="text-align: center"][style*="margin-left: -20px"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* 헤더 내부 컨테이너 스타일 수정 */
#header .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center; /* 중앙 정렬 추가 */
}

/* 로고 스타일 수정 */
#header .inner .logo {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -1px;
    color: #333;
    font-weight: 700;
    padding: 20px 40px;
    text-align: center; /* 텍스트 중앙 정렬 */
}

#header .inner .logo a {
    display: inline-block;
    height: auto;
    color: #333;
    vertical-align: middle;
}

#header .inner .logo img {
    max-width: 100%;
    max-height: 100px; /* 이미지 최대 높이 설정 */
    width: auto;
    height: auto;
    vertical-align: middle;
}

#container .content-wrap {
    max-width: 1200px;
    margin: 20px auto
}

#container .content-wrap::after,#content>.inner::after {
    content: "";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden
}

#content {
    float: left;
    width: 68.5185%
}

#footer {
    padding: 2px 0
}

#footer .inner {
    max-width: 1080px;
    margin: 0 auto
}

#footer p {
    margin-bottom: 10px;
    font-size: .875em;
    color: #777
}

#footer .page-top {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url("images/ico_package.png") -100px -200px no-repeat #fff;
    text-indent: -999em;
    border: 1px solid #eee;
    margin-bottom: 40px
}

#footer .page-top:focus,#footer .page-top:hover {
    background-color: #757575;
    background-position-x: -150px
}

#tt-body-index #content {
    padding-bottom: 20px
}

.btn,a.btn {
    display: inline-block;
    width: 100px;
    height: 36px;
    background-color: #c4c4c4;
    text-align: center;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    vertical-align: middle
}

.btn:hover {
    background-color: #676767
}

.post-header h1 {
    margin-bottom: 18px;
    font-size: 1.4em;
    line-height: 1.375
}

.post-header h1 em {
    margin-left: 7px;
    font-style: normal;
    color: #04beb8
}

.post-item {
    float: left;
    margin: 0 0 20px 3.37838%
}

.post-item:nth-child(3n+1) {
    clear: both;
    margin-left: 0
}

.post-item .thum {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 0;
    margin-bottom: 5px;
    padding-bottom: 100%;
    background-color: #f8f8f8;
    border-radius: 10px
}

.post-item .thum img {
    width: 100%;
    height: auto
}

.post-item .title {
    display: block;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 4px;
    padding-top: 9px;
    text-overflow: ellipsis;
    line-height: 1.4
}

.post-item .excerpt,.sidebar .post-list ul li .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.post-item .excerpt {
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 15px;
    font-size: .9125em;
    line-height: 1.5;
    color: #222;
    -webkit-line-clamp: 3
}

.post-item.protected .thum::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 47px;
    margin: -24px 0 0 -17px;
    background: url("images/ico_package.png") 0 -120px/120px no-repeat
}

#tt-body-archive .not-found ul,#tt-body-category .not-found ul,#tt-body-tag .not-found ul,.list-type-text .post-item .thum,.related-articles li:nth-child(4),a.link_tit {
    display: none
}

.pagination {
    margin-bottom: 60px;
    text-align: center;
    background: #fff;
    padding: 50px 40px
}

.pagination a {
    display: inline-block;
    margin: 0 12px;
    font-size: .875em;
    line-height: 1.5rem;
    vertical-align: top;
    color: #333
}

.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4 {
    clear: both;
    margin: 29px 0 22px;
    line-height: 1.5;
    color: #000
}

.pagination .selected,.sidebar ul li a,.sidebar ul li a:hover {
    color: #333
}

.pagination .next,.pagination .prev {
    width: 22px;
    height: 22px;
    background: url("images/ico_package.png") 0 -50px no-repeat;
    text-indent: -999em
}

.pagination .next {
    background-position-x: -50px
}

.pagination .view-more {
    display: block;
    margin: 0;
    padding: 12px 0 11px;
    border: 1px solid #eee;
    text-align: center;
    font-size: .875em;
    color: #999
}

.entry-content {
    padding: 40px;
    background: #fff;
    border-radius: 12px; /* 모서리를 둥글게 만듭니다 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 선택사항: 약간의 그림자 효과 추가 */
    margin-bottom: 20px; /* 콘텐츠 아래에 여백 추가 */
}

.inner h1 {
    font-size: 34px;
    background: #fff;
    padding: 40px 40px 20px; /* 하단 패딩 추가 */
    font-weight: 700!important;
    border-radius: 12px; /* 모든 모서리 둥글게 */
    margin-bottom: 20px; /* 본문과의 간격 추가 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 그림자 효과 추가 */
}


/* 리스트 형식의 게시물 아이템에도 적용합니다 */
.list-type-text .post-item {
    float: none;
    overflow: hidden;
    margin: 0 0 20px;
    padding: 40px;
    background: #fff;
    border-radius: 12px; /* 모서리를 둥글게 만듭니다 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* 약간의 그림자 효과 */
}

/* 연관 게시물 영역도 둥글게 */
.related-articles {
    background: #fff;
    padding: 0 40px 80px;
    border-bottom-left-radius: 12px; /* 하단 왼쪽 모서리만 둥글게 */
    border-bottom-right-radius: 12px; /* 하단 오른쪽 모서리만 둥글게 */
    margin-bottom: 30px; /* 아래 여백 추가 */
}

/* 모바일 화면에서도 둥근 모서리 유지 */
@media screen and (max-width: 767px) {
    .entry-content {
        padding: 20px!important;
        background: #fff;
        border-radius: 12px;
    }
    
    .inner h1 {
        margin-top: 20px;
        padding: 20px!important;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    
    .list-type-text .post-item {
        padding: 30px;
        border-radius: 12px;
    }
    
    .related-articles {
        padding: 0 20px 100px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}

.entry-content h2,.entry-content h3 {
    font-weight: 500!important
}

.entry-content h1 {
    font-size: 40px
}

.entry-content h2 {
    font-size: 29px
}

.entry-content h3 {
    font-size: 25px
}

.entry-content h4 {
    font-weight: 400;
    font-size: 1.125em
}

.entry-content p {
    word-break: break-all;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-block-end:1em}

.entry-content p img {
    max-width: 100%;
    height: auto
}

.entry-content figure {
    margin-top: 8px!important
}

.entry-content pre {
    word-break: break-all;
    white-space: pre-wrap;
    overflow-wrap: break-word
}

.entry-content ul {
    list-style: none;
    margin-bottom: 10px
}

.entry-content ul li {
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 1.5714;
    list-style-type: none;
    margin-left: 20px
}

.entry-content ol {
    margin-bottom: 22px
}

.entry-content ol li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.5714;
    color: #333;
    text-indent: 15px;
    list-style-type: none!important
}

.entry-content ol li::before,.sub_category_list li::before {
    content: "";
    position: absolute;
    top: .8em;
    left: 0;
    width: 8px;
    height: 1px;
    background-color: #999
}

.entry-content img.alignleft {
    float: left;
    margin: 0 22px 22px 0
}

.entry-content img.aligncenter {
    display: block;
    margin: 0 auto 22px
}

.entry-content img.alignright {
    float: right;
    margin: 0 0 22px 22px
}

.entry-content blockquote {
    margin-bottom: 40px!important;
    padding: 16px 20px;
    border-left: 4px solid #e6e6e6
}

.entry-content blockquote p {
    margin: 22px 0 0
}

.entry-content blockquote p:first-child {
    margin-top: 0
}

.entry-content table {
    width: 100%;
    margin-bottom: 22px;
    border: 1px solid #e6e6e6;
    border-collapse: collapse;
    text-align: center;
    font-size: .9375em;
    line-height: 1.5714;
    color: #666
}

.entry-content table tbody td {
    border-top: 1px solid #e6e6e6
}

.entry-content input {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    font-size: .875em;
    line-height: 1.25;
    color: #666;
    vertical-align: middle
}

.entry-content .entry-content .protected_form {
    margin-bottom: 40px;
    padding: 120px 0 200px;
    border-bottom: 1px solid #7a583a;
    text-align: center
}

.entry-content .entry-content .protected_form input {
    width: 200px;
    margin-bottom: 10px;
    vertical-align: top
}

.entry-content .cap1 {
    text-align: center;
    font-size: .875em;
    font-style: italic
}

.entry-content .iframe-wrap {
    height: 0;
    padding-bottom: 56.25%
}

.entry-content .iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.entry-content .protected_form {
    display: block;
    width: 100%;
    padding: 98px 0 120px;
    text-align: center
}

.entry-content .protected_form h2 {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 1.625em;
    line-height: 2.125rem;
    color: #555
}

.entry-content .protected_form p {
    margin-bottom: 34px;
    font-weight: 300;
    font-size: 1em;
    line-height: 1.75;
    color: #999
}

.entry-content .protected_form input {
    width: 183px;
    padding: 0 23px;
    border: 1px solid #eee;
    font-size: .9125em;
    line-height: 2.125rem
}

.entry-content .protected_form input:focus {
    border-color: #484848
}

.entry-content .protected_form .btn {
    margin-left: 5px
}

.sidebar ul li {
    padding: 4px 0 5px;
    font-size: .8125em;
    line-height: 1.25rem;
    color: #333
}

.sidebar .sidebar-2 {
    margin-top: 38px;
    padding-top: 46px;
    border-top: 1px solid #eee
}

.sidebar .category,.sidebar .recent-comment {
    margin-bottom: 36px
}

.sidebar .category ul li {
    padding: 0;
    font-size: 1.075em;
    font-weight: 600
}

.sidebar .category ul li ul {
    padding-top: 8px
}

.sidebar .category ul li ul li {
    padding: 6px 0 7px;
    font-weight: 400;
    font-size: .9rem
}

.sidebar .category ul li ul li ul {
    overflow: hidden;
    margin-bottom: -4px;
    padding-top: 6px
}

.sidebar .category ul li ul li ul li {
    position: relative;
    padding: 3px 0 3px 15px;
    font-size: .9rem
}

.sidebar .recent-comment ul li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.sidebar .post-list {
    margin-bottom: 46px
}

.sidebar .post-list h2 {
    margin-bottom: 12px
}

.sidebar .post-list ul li {
    overflow: hidden;
    margin-bottom: 18px;
    padding: 0
}

.sidebar .post-list ul li img {
    float: right;
    width: 58px;
    height: 58px;
    margin: 2px 0 0 20px
}

.sidebar .post-list ul li a {
    display: block;
    overflow: hidden;
    text-decoration: none
}

.author-name,.sidebar .post-list ul li a:hover .title,.site a {
    text-decoration: underline
}

.sidebar .post-list ul li .title {
    overflow: hidden;
    -webkit-line-clamp: 2
}

.sidebar .tab-ui h2 a {
    color: #999
}

.sidebar .tab-ui h2 a.current {
    color: #555
}

.sidebar .tab-ui h2 a::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 5px;
    margin: 0 10px;
    vertical-align: middle;
    background: url("images/ico_package.png") -100px -50px no-repeat
}

.sidebar .tab-ui h2 a:first-child::before {
    content: none
}

.slide-wrap {
    overflow: hidden
}

.container_postbtn {
    margin: 49px 0 55px
}

.absent_post::before {
    content: "";
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 1.75em;
    line-height: 1.28571;
    color: #555;
    white-space: pre
}

.absent_post {
    line-height: 1.75;
    padding: 98px 0!important;
    background: 0 0!important;
    font-weight: 400!important;
    font-size: 1em!important;
    color: #999!important
}

.date,.site-description {
    color: #575760;
    line-height: 1.5
}

.layout-aside-left #content {
    float: right
}

.layout-aside-left #aside {
    float: left;
    margin-left: 0;
    padding: 80px 0
}

.layout-aside-left #container .content-wrap::before {
    margin-left: -256px
}

.list-type-text .post-header {
    margin-bottom: 38px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee
}

.list-type-text .post-header h1 {
    margin-bottom: 0
}

.list-type-text .post-item {
    float: none;
    overflow: hidden;
    margin: 0 0 20px;
    padding: 40px;
    background: #fff
}

.list-type-text .post-item .title {
    max-width: 100%;
    margin-bottom: 10px;
    padding-top: 0;
    font-size: 26px;
    color: #222;
    font-weight: 700
}

.category a:hover,.list-type-text .post-item .title:hover {
    color: #3858e9;
    transition: .2s
}

.list-type-text .post-item .excerpt {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 17px;
    user-select: text;
    margin-top: 2em
}

.revenue_unit_wrap.position_list {
    max-width: 740px;
    margin: 30px auto
}

.adsense {
    width: 100%;
    height: 100%
}

.site-description {
    margin: 0;
    font-weight: 400;
    text-transform: none;
    font-size: 15px
}

.inside-site-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px
}

.copyright {
    text-align: center;
    font-size: 15px
}

.date {
    font-size: 16px;
    padding: 5px 40px 10px;
    display: none;
    background: #fff
}

#sidebar,.entry-content {
    padding: 40px;
    background: #fff
}

.related-articles {
    background: #fff;
    padding: 0 40px 80px
}

.related-articles img {
    display: none!important
}

.related-articles span {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis
}

.related-articles li {
    float: left;
    width: 33%
}

.related-title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px!important;
    padding-bottom: 12px
}

.related-date {
    color: #222;
    opacity: .6
}

/* 카테고리 전체 컨테이너 */
.category {
  width: 100%;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 2px 8px rgba(0,0,0,0.01);
  overflow: hidden;
}

/* 카테고리 리스트 초기화 */
ul.category_list {
  display: block;
  padding: 12px 0;
  margin: 0;
  list-style-type: none;
}

/* 메인 카테고리 항목 */
ul.category_list > li {
  margin: 0;
  padding: 0;
}

/* 메인 카테고리 링크 */
ul.category_list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 15px;
  letter-spacing: -0.3px;
  border-left: 2px solid transparent;
}

/* 메인 카테고리 호버 효과 */
ul.category_list > li > a:hover {
  color: #000;
  background-color: #f9f9f9;
  border-left: 2px solid #555;
}

/* 하위 카테고리 리스트 - 배경색 제거 */
.sub_category_list {
  padding: 2px 0 8px 20px;
  margin: 0;
  list-style-type: none;
  background: #fff; /* 메인과 동일한 배경색으로 변경 */
}

/* 하위 카테고리 항목 */
.sub_category_list li {
  margin: 0;
  padding: 0;
}

/* 하위 카테고리 링크 */
.sub_category_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px 8px 12px;
  color: #777;
  font-size: 14px;
  transition: all 0.2s;
  letter-spacing: -0.2px;
  position: relative;
}

/* 하위 카테고리 호버 효과 */
.sub_category_list li a:hover {
  color: #333;
  background: #f5f5f5;
}

/* 하위 카테고리 미세한 점 추가 */
.sub_category_list li a::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background: #ccc;
  border-radius: 50%;
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 15px;
  transition: all 0.2s;
}

.sub_category_list li a:hover::before {
  background: #555;
}

/* 모든 '-' 기호 제거 */
ul.category_list li::before,
.sub_category_list li::before,
.entry-content ol li::before {
  content: none !important;
}

/* 카테고리 카운트 스타일 */
.c_cnt {
  color: #aaa;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s;
  margin-left: 4px;
}

/* 호버 시 카운트 스타일 */
a:hover .c_cnt {
  color: #666;
}

/* 검색창 컨테이너 */
.search {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  padding: 6px 10px;
  border: 1px solid #eee;
}

/* 검색창 입력 필드 */
input[type=text] {
  padding: 8px 12px;
  color: #333;
  background-color: transparent;
  border: none;
  width: 100%;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

/* 검색 버튼 */
input.submit {
  background: #444;
  color: white;
  border: none;
  padding: 8px 14px;
  margin-left: 6px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  min-width: 60px;
}

input.submit:hover {
  background: #333;
}

/* 반응형 조정 */
@media screen and (max-width: 767px) {
  ul.category_list > li > a {
    padding: 10px 16px;
  }
  
  .sub_category_list {
    padding: 2px 0 6px 16px;
  }
  
  .sub_category_list li a {
    padding: 7px 16px 7px 10px;
  }
}

/* 검색 컨테이너 스타일링 */
.search {
    padding: 6px 8px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
    position: relative;
}

.search:focus-within {
    border-color: #c8c8c8;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

/* 검색 입력 필드 */
input[type=text] {
    padding: 10px 14px;
    color: #333;
    background-color: transparent;
    border: none;
    width: 100%;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

input[type=text]::placeholder {
    color: #aaa;
    font-weight: 300;
}

/* 검색 버튼 - 모노톤 고급스러운 스타일 */
input.submit {
    background: #2a2a2a;
    color: white;
    border: none;
    padding: 9px 20px;
    margin-left: 8px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

input.submit:hover {
    background: #444;
}

input.submit:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
}

/* 검색 컨테이너 포커스 시 버튼 스타일 변화 */
.search:focus-within input.submit {
    background: #222;
}

/* 반응형 조정 */
@media screen and (max-width: 767px) {
    .search {
        padding: 5px 8px;
    }
    
    input[type=text] {
        padding: 8px 10px;
    }
    
    input.submit {
        padding: 8px 16px;
        font-size: 12px;
    }
}
.entry-content #tt-body-page figure[data-ke-type=opengraph] a *,.entry-content figure[data-ke-type=opengraph] a * {
    border-color: inherit!important;
    color: inherit!important
}

.entry-content #tt-body-page figure[data-ke-type=opengraph] a:hover,.entry-content figure[data-ke-type=opengraph] a:hover {
    border-color: var(--point);
    color: #3858e9!important
}

figure.imageblock.alignCenter {
    margin: 20px auto;
    text-align: center
}



.button.dark {
    --background: #2F3545;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5)
}

.button.white {
    --background: #fff;
    --text: #275efe;
    --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
    --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12)
}

.button.fast {
    --duration: 0.32s
}

.button {
    --background: #275efe;
    --text: #fff;
    --font-size: 16px;
    --duration: 0.44s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
    --font-shadow: var(--font-size);
    padding: 16px 32px;
    font-family: Roboto;
    font-weight: 500;
    line-height: var(--font-size);
    border-radius: 24px;
    display: block;
    outline: 0;
    font-size: var(--font-size);
    letter-spacing: .5px;
    background: var(--background);
    color: var(--text)!important;
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease,box-shadow var(--duration) ease;
    max-width: fit-content;
    margin: 0 auto
}

.button div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text)
}

.button div span {
    display: block;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0)
}

.button div span:first-child {
    transition-delay: 50ms
}

.button div span:nth-child(2) {
    transition-delay: 0.1s
}

.button div span:nth-child(3) {
    transition-delay: 0.15s
}

.button div span:nth-child(4) {
    transition-delay: 0.2s
}

.button div span:nth-child(5) {
    transition-delay: 0.25s
}

.button div span:nth-child(6) {
    transition-delay: 0.3s
}

.button div span:nth-child(7) {
    transition-delay: 0.35s
}

.button div span:nth-child(8) {
    transition-delay: 0.4s
}

.button div span:nth-child(9) {
    transition-delay: 0.45s
}

.button div span:nth-child(10) {
    transition-delay: 0.5s
}

.button div span:nth-child(11) {
    transition-delay: 0.55s
}

.button:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover)
}

.button:hover span {
    --m: calc(var(--font-size) * -1)
}

.button.reverse {
    --font-shadow: calc(var(--font-size) * -1)
}

.button.reverse:hover span {
    --m: calc(var(--font-size))
}

#sidebar {
    float: right;
    width: 30%;
    position: sticky;
    top: 0;
    padding: 40px;
    background: #fff;
    border-radius: 12px; /* Add rounded corners */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Optional: adds subtle shadow for depth */
    margin-bottom: 20px; /* Adds some space below the sidebar */
}

/* For mobile responsiveness */
@media screen and (max-width: 767px) {
    #sidebar {
        float: unset;
        width: 100%;
        position: sticky;
        top: 0;
        border-radius: 12px; /* Keep rounded corners on mobile */
        padding: 30px; /* Slightly reduced padding for mobile */
    }
}
#tt-body-page figure[data-ke-type=opengraph] a:hover,figure[data-ke-type=opengraph] a {
    border-color: #f7f8f9!important
}

#tt-body-page figure[data-ke-type=opengraph] div.og-text p.og-title,figure[data-ke-type=opengraph] div.og-text p.og-title {
    font-family: 'Pretendard Variable',"Apple SD Gothic Neo","Malgun Gothic",Dotum,sans-serif;
    font-weight: 700
}

#tt-body-page figure[data-ke-type=opengraph] div.og-text p.og-desc,figure[data-ke-type=opengraph] div.og-text p.og-desc {
    font-family: 'Pretendard Variable',"Apple SD Gothic Neo","Malgun Gothic",Dotum,sans-serif;
    color: #00102b;
    width: 90%;
    font-size: 15px;
    max-height: 52px!important;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    font-weight: 400;
    white-space: break-spaces;
    line-height: 1.8
}

#tt-body-page figure[data-ke-type=opengraph] div.og-text p.og-host,figure[data-ke-type=opengraph] div.og-text p.og-host {
    text-transform: uppercase;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: auto;
    font-size: 10px;
    display: none
}

figure[data-ke-type=opengraph] div.og-text {
    background: #f5f5f5!important;
    text-align: left;
    padding: 30px!important
}

#tt-body-page figure[data-ke-type=opengraph],figure[data-ke-type=opengraph] {
    margin-top: 0!important;
    margin-bottom: 20px!important
}

.container_postbtn .postbtn_like {
    margin-right: 5px!important
}

.container_postbtn {
    padding: 0!important;
    margin-top: 100px
}

.container_postbtn .postbtn_like:before {
    content: "도움이 되셨다면 공감 눌러주세요 😊";
    position: absolute;
    left: 0;
    top: -50px;
    background: #3858e9;
    color: #fff;
    font-size: 10pt;
    padding: 8px 12px;
    border-radius: 50px
}

.container_postbtn .postbtn_like:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -18px;
    width: 0;
    height: 0;
    border-top: 7px solid #3858e9;
    border-bottom: none;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent
}

/* 초매력적인 클릭 유도 버튼 */
a.myredbtn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin: 24px 0;
  padding: 18px 32px;
  background: linear-gradient(135deg, #ff4141, #ff1a1a);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25), 0 6px 6px rgba(255, 26, 26, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  z-index: 1;
  transform: perspective(1px) translateZ(0);
  -webkit-font-smoothing: antialiased;
  animation: pulse 2s infinite alternate;
}

/* 지속적인 펄스 애니메이션 - 가만히 있어도 움직임 효과 */
@keyframes pulse {
  0% {
    transform: perspective(1px) translateZ(0) scale(1);
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25), 0 6px 6px rgba(255, 26, 26, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
  100% {
    transform: perspective(1px) translateZ(0) scale(1.02);
    box-shadow: 0 12px 24px rgba(255, 26, 26, 0.3), 0 8px 8px rgba(255, 26, 26, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  }
}

/* 지속적인 그라데이션 배경 변화 */
a.myredbtn {
  background-size: 200% 200%;
  background-image: linear-gradient(135deg, #ff4141, #ff1a1a, #ff0000, #ff3333);
  animation: 
    pulse 2s infinite alternate,
    gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 버튼 내부 반짝임 효과 - 지속적으로 발생 */
a.myredbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  animation: autoShine 5s infinite;
}

@keyframes autoShine {
  0% {
    left: -75%;
    opacity: 0;
  }
  15% {
    left: -75%;
    opacity: 0.7;
  }
  35% {
    left: 130%;
    opacity: 0.7;
  }
  40% {
    left: 130%;
    opacity: 0;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

/* 호버 효과 - 반짝임 이동 및 버튼 확대 */
a.myredbtn:hover {
  background: linear-gradient(135deg, #ff3333, #ff0000);
  box-shadow: 0 15px 30px rgba(255, 26, 26, 0.3), 0 8px 8px rgba(255, 26, 26, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transform: perspective(1px) translateZ(0) scale(1.05);
  color: #ffffff !important;
  animation: none; /* 호버 시 기본 애니메이션 중지 */
}

a.myredbtn:hover::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
    opacity: 0.7;
  }
  100% {
    left: 130%;
    opacity: 0.7;
  }
}

/* 클릭(액티브) 효과 - 눌림 효과 */
a.myredbtn:active {
  transform: perspective(1px) translateZ(0) scale(0.98);
  box-shadow: 0 8px 16px rgba(255, 26, 26, 0.2), 0 4px 4px rgba(255, 26, 26, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: none; /* 클릭 시 기본 애니메이션 중지 */
}

/* 추가적인 시각적 요소 - 향상된 화살표 애니메이션 */
a.myredbtn span {
  display: inline-block;
  position: relative;
  padding-right: 0;
  transition: all 0.4s ease;
  animation: gentle-bounce 2s infinite alternate;
}

@keyframes gentle-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2px); }
}

a.myredbtn span::after {
  content: '→';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: all 0.4s ease;
}

a.myredbtn:hover span {
  padding-right: 28px;
  animation: none; /* 호버 시 바운스 애니메이션 중지 */
}

a.myredbtn:hover span::after {
  opacity: 1;
  right: 0;
}

/* 3D 효과를 위한 추가 요소 */
a.myredbtn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transition: all 0.4s ease;
}

a.myredbtn:hover::after {
  height: 3px;
}

/* 버튼 텍스트에 살짝 그림자 효과 추가 */
a.myredbtn {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* 버튼 둘레에 미세한 빛나는 효과 */
a.myredbtn {
  outline: none;
}

a.myredbtn:focus {
  outline: none;
  box-shadow: 0 10px 25px rgba(255, 26, 26, 0.35), 0 6px 10px rgba(255, 26, 26, 0.3), 0 0 0 3px rgba(255, 75, 75, 0.4);
}

/* 눈에 띄는 추가 텍스트 요소 (선택 사항) */
a.myredbtn::before {
  content: '';
  /* '지금 바로!' 같은 텍스트를 넣을 수도 있습니다 */
}

/* 패딩 및 마진 향상 */
a.myredbtn {
  margin: 24px auto;
  max-width: 95%; /* 양쪽에 약간의 여백 */
}

/* 모바일 반응형 스타일 */
@media screen and (max-width: 767px) {
  a.myredbtn {
    padding: 16px 24px;
    font-size: 16px;
    margin: 20px auto;
  }
}

.container_postbtn .link_ccl {
    border: 0!important;
    font-size: 0!important;
    padding: 0
}

#tt-body-page figure[data-ke-type=opengraph] a,figure[data-ke-type=opengraph] a {
    border-radius: 0
}

#tt-body-page figure[data-ke-type=opengraph] div.og-text p.og-desc,#tt-body-page figure[data-ke-type=opengraph] div.og-text p.og-title,figure[data-ke-type=opengraph] div.og-text p.og-desc,figure[data-ke-type=opengraph] div.og-text p.og-title {
    text-align: left!important
}

.layer_post .btn_mark {
    border: unset;
    border-radius: unset
}

a.btn_mark::before {
    content: unset
}

a.btn_mark:hover {
    content: unset;
    color: unset;
    background: unset
}

.article_view a {
    color: var(--pointColor);
    transition: opacity .2s;
    font-weight: 700
}

.ad,.contents_style a {
    text-align: center
}

@media screen and (max-width: 1080px) {
    #footer,#header h1 {
        padding-left:24px;
        padding-right: 24px
    }

    #container .content-wrap::before {
        left: 72.7%;
        margin-left: 0
    }

    .layout-aside-left #container .content-wrap::before {
        left: 27.3%;
        margin-left: 0
    }

    #header .inner .logo {
        padding: 24px 20px 0
    }
}

@media screen and (max-width: 767px) {
    #aside,#header h1 {
        background-color:#fff
    }

    #content,.post-item {
        width: auto
    }

    #aside,#content,.layout-aside-left #content,.post-item {
        float: none
    }

    #header h1 {
        position: relative;
        z-index: 10;
        padding: 40px 24px 0;
        margin: 0
    }

    #container .content-wrap {
        padding: 0;
        margin: 0
    }

    .related-date,ul.category_list {
        display: none!important
    }

    #container .content-wrap::before {
        content: none
    }

    #content {
        padding: 0 40px
    }

    #aside {
        position: fixed;
        top: 0;
        right: -278px;
        z-index: 400;
        overflow: auto;
        width: 278px;
        height: 100%;
        padding: 94px 24px 40px;
        box-sizing: border-box;
        transition: right .5s
    }

    #footer {
        padding: 32px 24px 26px
    }

    #footer p {
        margin-bottom: 11px;
        font-size: .8125em
    }

    #header {
        padding: 0 30px
    }

    #header .inner .logo {
        padding: 24px 0;
        background: transparent; /* 배경을 투명하게 변경 */
        margin-bottom: 20px
    }

    #tt-body-index #content,#tt-body-index.list-type-text #content>.inner:first-child {
        padding: 0
    }

    #tt-body-index #content>.inner {
        padding: 0 50px
    }

    #tt-body-index #content>.inner:first-child {
        padding-top: 30px
    }

    #tt-body-index .pagination {
        margin: 0 0 20px
    }

    #tt-body-page #content {
        padding-left: 0;
        padding-right: 0
    }

    .layout-aside-left #aside {
        padding: 80px 20px 40px
    }

    .post-header {
        padding-top: 2px
    }

    .post-item {
        margin-left: 0;
        margin-bottom: 30px
    }

    .post-item .thum {
        margin-bottom: 7px
    }

    .post-item .excerpt,.post-item .title {
        margin-bottom: 12px
    }

    .pagination {
        margin-bottom: 0
    }

    .pagination a {
        margin: 0 4px
    }

    .list-type-text .post-header {
        margin-bottom: 28px
    }

    .list-type-text .post-item {
        margin-bottom: 26px;
        padding: 30px
    }

    .list-type-text .post-item .title {
        margin-bottom: 10px
    }

    .list-type-text .post-item .excerpt {
        margin-bottom: 12px;
        -webkit-line-clamp: 4
    }

    .list-type-text .pagination {
        margin-top: 30px
    }

    .date {
        padding: 0 20px!important
    }

    .inner h1 {
        margin-top: 20px;
        color: #333;
        line-height: 1.5;
        letter-spacing: -1px;
        padding: 20px!important
    }

    .entry-content {
        padding: 20px!important;
        background: #fff
    }

    .entry-content p {
        margin-bottom: 22px;
        line-height: 1.625rem
    }

    .entry-content figure {
        margin-top: 6px!important
    }

    .entry-content .protected_form input {
        width: 163px
    }

    #content .another_category {
        margin: 40px 0 37px!important
    }

    .container_postbtn {
        margin: 70px 0 37px
    }

    #content .another_category th {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical
    }

    #tt-body-index .post-header {
        padding-top: 36px;
        padding-left: 24px
    }

    #sidebar {
        float: unset;
        width: 100%;
        position: sticky;
        top: 0
    }

    .entry-content ul li {
        margin-bottom: 3px;
        font-size: 16px;
        line-height: 1.5714;
        list-style-type: none!important;
        margin-left: 0
    }

    .related-articles {
        background: #fff;
        padding: 0 20px 100px
    }

    .toc {
        padding: 15px 35px!important
    }

    .contents_style a {
        line-height: 20px
    }
}

r-radius: 2px;
}



.sidebar-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    margin-top: 20px;
    background: linear-gradient(135deg, #FF8C00, #FF4500);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.sidebar-banner:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.banner-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-size: 18px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@keyframes shine {
    0% {
        background-position: -100% 100%;
    }
    100% {
        background-position: 100% -100%;
    }
}

.sidebar-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 200%;
    animation: shine 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sidebar-banner:hover .banner-title,
.sidebar-banner:hover .banner-subtitle {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.sidebar-banner {
    animation: bounce 5s infinite;
}
.bf-breadcrumb .bf-breadcrumb-items {display: flex;flex-wrap: wrap;padding: 0;margin: 0;list-style: none;font-size: 15px;}.bf-breadcrumb .bf-breadcrumb-item:not(.bf-breadcrumb-end):after {content: '\00BB';margin: 0 3px 0 3px;color: #929292;font-size: 11px;align-self: center;}.bf-breadcrumb .bf-breadcrumb-item a, .bf-breadcrumb .bf-breadcrumb-item span {color: #525252;display: inline-block;}li.bf-breadcrumb-item {display: contents;font-size: 14px !important;}.

/* General reset and base styles */
.post-list, .recent-comment {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
}

/* 섹션 컨테이너 스타일링 */
.post-list.tab-ui {
  margin-bottom: 30px;
}

/* 각 섹션 스타일링 */
.post-list.tab-ui #recent,
.post-list.tab-ui #popular {
  display: block;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #fcfcfc;
  border: 1px solid #f2f2f2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

/* 섹션 호버 효과 */
.post-list.tab-ui #recent:hover,
.post-list.tab-ui #popular:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* 섹션 제목 스타일링 */
.post-list h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  color: #222;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* 섹션 제목 아이콘 (최근글/인기글 구분) */
.post-list #recent h2:before,
.post-list #popular h2:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  position: relative;
  top: -2px;
}

/* 최근글 아이콘 - 푸른색 */
.post-list #recent h2:before {
  background-color: #4a90e2;
}

/* 인기글 아이콘 - 주황색 */
.post-list #popular h2:before {
  background-color: #f59c3c;
}

/* 최근 댓글 섹션 */
.recent-comment {
  padding: 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  background-color: #fcfcfc;
  border: 1px solid #f2f2f2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.recent-comment h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  color: #222;
  border-bottom: 1px solid #eee;
}

.recent-comment h2:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #75c791;
  position: relative;
  top: -2px;
}

/* 리스트 스타일링 */
.post-list ul, .recent-comment ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-list li {
  margin-bottom: 14px;
  transition: all 0.2s ease;
  padding-bottom: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.post-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.post-list li:hover {
  transform: translateX(3px);
}

.post-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-direction: row; /* 썸네일을 왼쪽에 배치 */
  justify-content: flex-start; /* 왼쪽부터 배치 */
}

.post-list li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 12px; /* 왼쪽에 위치하므로 오른쪽 마진 */
  border: 1px solid #f5f5f5;
  flex-shrink: 0; /* 이미지 크기 고정 */
}

.post-list li .title {
  display: block;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  line-height: 1.4;
  max-height: 2.8em; /* 2줄까지 표시 */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2줄로 제한 */
  -webkit-box-orient: vertical;
  word-break: break-word; /* 긴 단어도 줄바꿈 */
  flex-grow: 1; /* 가능한 공간 모두 사용 */
}

.post-list li .date {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 3px;
}

/* 최근 댓글 스타일링 */
.recent-comment li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-comment li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-comment li:first-child {
  padding-top: 0;
}

.recent-comment li a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.recent-comment li a:hover {
  color: #333;
}

/* 목차 컨테이너 스타일 - 흰색 얇은 직사각형 */
#toc-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  font-family: 'Arial', sans-serif;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

#toc-container:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 목차 헤더 */
#toc-header {
  background: transparent;
  color: #333;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

#toc-header:hover {
  color: #FF8C00;
}

#toc-container h2 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
}

/* 토글 아이콘 - 삼각형 대신 단순한 +/- 텍스트 사용 */
#toc-toggle {
  font-size: 18px;
  /* 삼각형 효과를 위한 transform 제거 */
}

/* 목차 리스트 */
#toc {
  list-style: none;
  padding: 0 15px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#toc-container:not(.collapsed) #toc {
  max-height: 500px;
  padding: 10px 15px;
}

/* 목차 아이템 */
#toc li {
  margin-bottom: 8px;
  line-height: 1.4;
}

#toc a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: block;
  padding: 5px 8px;
  transition: background 0.2s ease;
}

#toc a:hover {
  background-color: #f9f9f9;
}

/* 목차 들여쓰기 (h3 항목) */
#toc li.toc-h3 {
  margin-left: 15px;
  font-size: 13px;
}

/* 반응형 */
@media (max-width: 768px) {
  #toc-container {
    width: 95%;
  }
}


/* 초매력적인 클릭 유도 버튼 */
.aros-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin: 24px 0;
  padding: 18px 32px;
  background: linear-gradient(135deg, #ff4141, #ff1a1a);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25), 0 6px 6px rgba(255, 26, 26, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  z-index: 1;
  transform: perspective(1px) translateZ(0);
  -webkit-font-smoothing: antialiased;
  animation: pulse 2s infinite alternate;
}

/* 지속적인 펄스 애니메이션 - 가만히 있어도 움직임 효과 */
@keyframes pulse {
  0% {
    transform: perspective(1px) translateZ(0) scale(1);
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25), 0 6px 6px rgba(255, 26, 26, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
  100% {
    transform: perspective(1px) translateZ(0) scale(1.02);
    box-shadow: 0 12px 24px rgba(255, 26, 26, 0.3), 0 8px 8px rgba(255, 26, 26, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  }
}

/* 지속적인 그라데이션 배경 변화 */
.aros-button {
  background-size: 200% 200%;
  background-image: linear-gradient(135deg, #ff4141, #ff1a1a, #ff0000, #ff3333);
  animation: 
    pulse 2s infinite alternate,
    gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 버튼 내부 반짝임 효과 - 지속적으로 발생 */
.aros-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  animation: autoShine 5s infinite;
}

@keyframes autoShine {
  0% {
    left: -75%;
    opacity: 0;
  }
  15% {
    left: -75%;
    opacity: 0.7;
  }
  35% {
    left: 130%;
    opacity: 0.7;
  }
  40% {
    left: 130%;
    opacity: 0;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

/* 호버 효과 - 반짝임 이동 및 버튼 확대 */
.aros-button:hover {
  background: linear-gradient(135deg, #ff3333, #ff0000);
  box-shadow: 0 15px 30px rgba(255, 26, 26, 0.3), 0 8px 8px rgba(255, 26, 26, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transform: perspective(1px) translateZ(0) scale(1.05);
  color: #ffffff !important;
  animation: none; /* 호버 시 기본 애니메이션 중지 */
}

.aros-button:hover::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
    opacity: 0.7;
  }
  100% {
    left: 130%;
    opacity: 0.7;
  }
}

/* 클릭(액티브) 효과 - 눌림 효과 */
.aros-button:active {
  transform: perspective(1px) translateZ(0) scale(0.98);
  box-shadow: 0 8px 16px rgba(255, 26, 26, 0.2), 0 4px 4px rgba(255, 26, 26, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: none; /* 클릭 시 기본 애니메이션 중지 */
}

/* 추가적인 시각적 요소 - 향상된 화살표 애니메이션 */
.aros-button span {
  display: inline-block;
  position: relative;
  padding-right: 0;
  transition: all 0.4s ease;
  animation: gentle-bounce 2s infinite alternate;
}

@keyframes gentle-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2px); }
}

.aros-button span::after {
  content: '→';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: all 0.4s ease;
}

.aros-button:hover span {
  padding-right: 28px;
  animation: none; /* 호버 시 바운스 애니메이션 중지 */
}

.aros-button:hover span::after {
  opacity: 1;
  right: 0;
}

/* 3D 효과를 위한 추가 요소 */
.aros-button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transition: all 0.4s ease;
}

.aros-button:hover::after {
  height: 3px;
}

/* 버튼 텍스트에 살짝 그림자 효과 추가 */
.aros-button {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* 버튼 둘레에 미세한 빛나는 효과 */
.aros-button {
  outline: none;
}

.aros-button:focus {
  outline: none;
  box-shadow: 0 10px 25px rgba(255, 26, 26, 0.35), 0 6px 10px rgba(255, 26, 26, 0.3), 0 0 0 3px rgba(255, 75, 75, 0.4);
}

/* 눈에 띄는 추가 텍스트 요소 (선택 사항) */
.aros-button::before {
  content: '';
  /* '지금 바로!' 같은 텍스트를 넣을 수도 있습니다 */
}

/* 패딩 및 마진 향상 */
.aros-button {
  margin: 24px auto;
  max-width: 95%; /* 양쪽에 약간의 여백 */
}

/* 모바일 반응형 스타일 */
@media screen and (max-width: 767px) {
  .aros-button {
    padding: 16px 24px;
    font-size: 16px;
    margin: 20px auto;
  }
}


.myredbtn {
    display: inline-block;
    justify-content: center;
    align-items: center;
    background-color: #e00d0d;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px 40px;
    width: 80%;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.myredbtn:hover {
    background-color: #ffeb3b;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(255, 128, 0, 0.4), inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.myredbtn:active {
    background-color: #e60000;
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.myredbtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.myredbtn:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.button {
    display: inline-block;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #ff1a1a, #cc0000);
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px 40px;
    width: 80%;
    transition: all 0.3s ease;
    animation: heartbeat 1.5s infinite, float 3s ease-in-out infinite;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3),
                inset 0 0 10px rgba(0, 0, 0, 0.2),
                0 8px 0 #990000,
                0 10px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.button:hover {
    background: linear-gradient(145deg, #ffcc00, #ff9900);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 128, 0, 0.4),
                inset 0 0 15px rgba(0, 0, 0, 0.2),
                0 10px 0 #cc7a00,
                0 15px 20px rgba(0, 0, 0, 0.3);
}

.button:active {
    background: linear-gradient(145deg, #cc0000, #990000);
    transform: translateY(4px) scale(0.95);
    box-shadow: 0 2px 6px rgba(230, 0, 0, 0.3),
                inset 0 0 10px rgba(0, 0, 0, 0.2),
                0 4px 0 #660000,
                0 5px 10px rgba(0, 0, 0, 0.3);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 45%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 55%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.button:hover::before {
    transform: translateX(100%);
}

.button::after {
    content: ' 👉바로가기👈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    font-size: 1.5em;
    color: #ffffff;
    background: linear-gradient(145deg, #ff9933, #ff8000);
    padding: 5px 10px;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(30px);
}

.button span {
    transition: all 0.3s ease;
    display: inline-block;
}

.button:hover span {
    opacity: 0;
    transform: scale(0.8) translateZ(-20px);
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .button {
        font-size: 1.2em;
        padding: 15px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(255, 77, 77, 0.3),
                    inset 0 0 8px rgba(0, 0, 0, 0.2),
                    0 6px 0 #990000,
                    0 8px 10px rgba(0, 0, 0, 0.3);
    }

    .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(255, 128, 0, 0.4),
                    inset 0 0 10px rgba(0, 0, 0, 0.2),
                    0 8px 0 #cc7a00,
                    0 10px 15px rgba(0, 0, 0, 0.3);
    }

    .button::after {
        font-size: 1em;
    }

    .button:hover::after {
        transform: translate(-50%, -50%) translateZ(20px);
    }
}
.myredbtn::after {
    content: ' 👉바로가기👈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    color: #ffffff;
    background: rgb(252, 118, 0);
    padding: 5px 10px;
    border-radius: 10px;
    opacity: 0;
    transition: top 0.3s ease, opacity 0.3s ease;
}

.myredbtn:hover::after {
    top: 50%;
    opacity: 1;
}

.myredbtn:hover span {
    opacity: 0;
    transform: scale(0.8);
}

.myredbtn span {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .myredbtn {
        font-size: 1.2em;
        padding: 15px 30px;
        border-radius: 15px;
    }

    .myredbtn:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(255, 128, 0, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .myredbtn:hover::before {
        transform: translate(-50%, -50%) scale(1.1);
    }

    .myredbtn::after {
        font-size: 1em;
    }

    .myredbtn:hover::after {
        top: 55%;
    }
}

/* h3 스타일 */
h3 {
    font-size: 1.5em; /* 기본 폰트 크기 설정 */
    color: #333;
    margin-bottom: 20px;
    padding: 10px 0;
    text-align: left;
    font-weight: bold;
    border-bottom: 3px solid #ff5b00;
    position: relative;
    transition: color 0.3s ease;
}

h3:hover::after {
    width: 100%;
    background-color: #ff5b00;
}

/* h4 스타일 */
h4 {
    font-size: 1.2em; /* 기본 폰트 크기 설정 */
    color: #555;
    margin-bottom: 15px;
    padding: 5px 0;
    text-align: left;
    font-weight: bold;
    border-left: 4px solid #ff5b00;
    padding-left: 10px;
    position: relative;
    transition: color 0.3s ease;
}

h4:hover::before {
    width: 100%;
    background-color: #ff5b00;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    h3 {
        font-size: 1.3em; /* 작은 화면에서 폰트 크기 조정 */
    }

    h4 {
        font-size: 1.1em; /* 작은 화면에서 폰트 크기 조정 */
    }
}

@media (max-width: 480px) {
    h3 {
        font-size: 1.1em; /* 더 작은 화면에서 폰트 크기 조정 */
    }

    h4 {
        font-size: 1em; /* 더 작은 화면에서 폰트 크기 조정 */
    }
}
/* q&a */
[itemtype="https://schema.org/Question"] {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

[itemtype="https://schema.org/Question"]:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

[itemtype="https://schema.org/Question"] [itemprop="name"] {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  padding: 10px 0;
  padding-left: 10px;
  border-left: 4px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

[itemtype="https://schema.org/Question"]:hover [itemprop="name"] {
  color: #ff5b00;
  border-color: #ff5b00;
}

[itemtype="https://schema.org/Answer"] [itemprop="text"] p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
/* 기본 형광펜 밑줄 효과 */
u:nth-of-type(3n+1) {
	text-decoration: none;
	display: inline;
	box-shadow: inset 0 -4px 0 #F5B7B1; /* 핑크색 밑줄 두께 조정 */
	color: #000;
  }
  
  u:nth-of-type(3n+2) {
	text-decoration: none;
	display: inline;
	box-shadow: inset 0 -4px 0 #AED6F1; /* 파란색 밑줄 두께 조정 */
	color: #000;
  }
  
  u:nth-of-type(3n) {
	text-decoration: none;
	display: inline;
	box-shadow: inset 0 -4px 0 #FFDD57; /* 노란색 밑줄 두께 조정 */
	color: #000;
  }
  /* 혁신적인 주황색 테이블 스타일 */
.flexible-table {
	--primary-color: #FF8C00;
	--secondary-color: #FFA500;
	--highlight-color: #FFD700;
	--text-color: #333;
	--bg-color: #FFF5E6;
	
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 15px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-color);
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
  }
  
  .flexible-table thead tr {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
	transform: translateY(-5px);
	transition: transform 0.3s ease;
  }
  
  .flexible-table th {
	color: white;
	padding: 20px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
  }
  
  .flexible-table th::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--highlight-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
  }
  
  .flexible-table th:hover::after {
	transform: scaleX(1);
  }
  
  .flexible-table tbody tr {
	background-color: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	transition: all 0.3s ease;
  }
  
  .flexible-table tbody tr:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 10px 20px rgba(255, 140, 0, 0.15);
  }
  
  .flexible-table td {
	padding: 20px;
	color: var(--text-color);
	position: relative;
	overflow: hidden;
  }
  
  .flexible-table td::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background-color: var(--primary-color);
	transform: scaleY(0);
	transition: transform 0.3s ease;
  }
  
  .flexible-table tr:hover td::before {
	transform: scaleY(1);
  }
  
  .flexible-table td:nth-child(3),
  .flexible-table td:nth-child(4) {
	font-weight: bold;
  }
  
  /* 애니메이션 효과 */
  @keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
  }
  
  .flexible-table tbody tr:hover {
	animation: pulse 1.5s infinite;
  }
  
  /* 반응형 디자인 */
  @media screen and (max-width: 768px) {
	.flexible-table {
	  font-size: 14px;
	  padding: 10px;
	}
	
	.flexible-table th,
	.flexible-table td {
	  padding: 15px 10px;
	}
  }
  
  /* 뚜렷한 인용부호가 있는 인용문 스타일 */
  blockquote[cite] {
	  border: 3px solid transparent;
	  border-image: linear-gradient(45deg, #FF8C00, #FFA500) 1;
	  border-radius: 10px;
	  padding: 30px 30px 30px 70px;
	  margin: 40px 0;
	  font-family: 'Arial', sans-serif;
	  font-size: 18px;
	  line-height: 1.6;
	  color: #333;
	  background-color: rgba(255, 248, 240, 0.3);
	  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.1);
	  position: relative;
	  overflow: hidden;
	  transition: all 0.3s ease;
  }
  
  blockquote[cite]::before,
  blockquote[cite]::after {
	  content: '\201C';
	  font-family: Georgia, serif;
	  font-size: 120px;
	  color: #FF8C00;
	  position: absolute;
	  opacity: 0.2;
  }
  
  blockquote[cite]::before {
	  left: 10px;
	  top: -30px;
  }
  
  blockquote[cite]::after {
	  content: '\201D';
	  right: 10px;
	  bottom: -70px;
  }
  
  blockquote[cite] p {
	  margin: 0 0 15px;
	  position: relative;
	  z-index: 1;
  }
  
  blockquote[cite] cite {
	  display: block;
	  font-style: normal;
	  font-size: 16px;
	  color: #FF8C00;
	  margin-top: 15px;
	  text-align: right;
	  font-weight: bold;
  }
  
  blockquote[cite] cite::before {
	  content: "— ";
  }
  
  blockquote[cite]:hover {
	  transform: translateY(-3px);
	  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
  }
  
  @media (max-width: 768px) {
	  blockquote[cite] {
		  font-size: 16px;
		  padding: 25px 25px 25px 60px;
	  }
	  
	  blockquote[cite]::before,
	  blockquote[cite]::after {
		  font-size: 100px;
	  }
	  
	  blockquote[cite]::after {
		  bottom: -60px;
	  }
  }
  /* 세련된 둥근 이미지 스타일 */
  img[alt] {
	  border-radius: 15px;
	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	  transition: all 0.3s ease;
	  max-width: 100%;
	  height: auto;
	  display: block;
	  margin: 20px auto;
  }
  
  img[alt]:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
figcaption {
    color: #FF8C00;                          /* 진한 주황색 텍스트 */
    background-color: rgba(255, 140, 0, 0.1); /* 연한 주황색 배경 */
    padding: 10px 20px;                      /* 내부 여백 */
    border-radius: 5px;                      /* 모서리 둥글게 */
    font-size: 16px;                         /* 글자 크기 */
    font-weight: 500;                        /* 글자 두께 */
    text-align: center;                      /* 가운데 정렬 */
    box-shadow: 0 2px 4px rgba(255, 140, 66, 0.1); /* 연한 그림자 효과 */
    margin: 10px 0;                          /* 외부 여백 */
    transition: all 0.3s ease;               /* 부드러운 전환 효과 */
}

/* 호버 효과 */
figcaption:hover {
    background-color: rgba(255, 140, 0, 0.15); /* 호버시 약간 더 진한 배경 */
    transform: translateY(-2px);               /* 살짝 위로 움직임 */
}
  
  /* 반응형 디자인을 위한 미디어 쿼리 */
  @media (max-width: 768px) {
	  img[alt] {
		  border-radius: 10px;
	  }
	  
	  figcaption {
		  font-size: 1em;
		  padding: 8px 12px;
	  }
  }
  
  /* 세련되고 눈에 띄는 주황색 기반 '함께 보면 좋은 글' 스타일 */
  ul[data-ke-list-type="disc"] {
	  list-style-type: none;
	  padding: 0;
	  margin: 30px 0;
	  font-family: 'Noto Sans KR', 'Helvetica Neue', Arial, sans-serif;
  }
  
  ul[data-ke-list-type="disc"] li {
	  margin-bottom: 25px;
	  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  ul[data-ke-list-type="disc"] li a {
	  display: flex;
	  align-items: stretch;
	  background: #fff;
	  color: #333;
	  text-decoration: none;
	  border-radius: 12px;
	  overflow: hidden;
	  box-shadow: 0 10px 20px rgba(255, 127, 80, 0.1);
	  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	  border: 1px solid rgba(255, 127, 80, 0.2);
  }
  
  ul[data-ke-list-type="disc"] li a:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 15px 30px rgba(255, 127, 80, 0.2);
	  border-color: rgba(255, 127, 80, 0.5);
  }
  
  ul[data-ke-list-type="disc"] li .icon-wrapper {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  width: 100px;
	  background: linear-gradient(135deg, #FF8C00, #FF4500);
	  transition: all 0.5s ease;
  }
  
  ul[data-ke-list-type="disc"] li a:hover .icon-wrapper {
	  width: 120px;
  }
  
  ul[data-ke-list-type="disc"] li .icon {
	  font-size: 36px;
	  color: white;
	  transition: all 0.5s ease;
  }
  
  ul[data-ke-list-type="disc"] li a:hover .icon {
	  transform: scale(1.2) rotate(15deg);
  }
  
  ul[data-ke-list-type="disc"] li .content {
	  flex-grow: 1;
	  padding: 20px;
	  position: relative;
	  overflow: hidden;
  }
  
  ul[data-ke-list-type="disc"] li .title {
	  font-size: 18px;
	  font-weight: 700;
	  color: #FF7F50;
	  margin-bottom: 10px;
	  transition: all 0.3s ease;
  }
  
  ul[data-ke-list-type="disc"] li a:hover .title {
	  color: #FF4500;
  }
  
  ul[data-ke-list-type="disc"] li .description {
	  font-size: 14px;
	  color: #666;
	  margin-bottom: 15px;
	  transition: all 0.3s ease;
	  line-height: 1.6;
  }
  
  ul[data-ke-list-type="disc"] li .meta {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  font-size: 12px;
	  color: #888;
  }
  
  ul[data-ke-list-type="disc"] li .read-time {
	  display: flex;
	  align-items: center;
  }
  
  ul[data-ke-list-type="disc"] li .read-time::before {
	  content: '⏱️';
	  margin-right: 5px;
  }
  
  ul[data-ke-list-type="disc"] li .category {
	  background: #FFF0E6;
	  color: #FF7F50;
	  padding: 3px 10px;
	  border-radius: 20px;
	  transition: all 0.3s ease;
	  font-weight: 600;
  }
  
  ul[data-ke-list-type="disc"] li a:hover .category {
	  background: #FF7F50;
	  color: white;
  }
  
  ul[data-ke-list-type="disc"] li .arrow {
	  position: absolute;
	  right: 20px;
	  bottom: 20px;
	  font-size: 24px;
	  opacity: 0;
	  transform: translateX(-10px);
	  transition: all 0.5s ease;
	  color: #FF4500;
  }
  
  ul[data-ke-list-type="disc"] li a:hover .arrow {
	  opacity: 1;
	  transform: translateX(0);
  }
  /* 함께 보면 좋은 글 스타일 - 주황색 테두리 버전 */
  ul[data-ke-list-type="disc"] {
	  list-style-type: none;
	  padding: 0;
	  margin: 30px 0;
  }
  
  ul[data-ke-list-type="disc"] li {
	  margin-bottom: 25px;
  }
  
  ul[data-ke-list-type="disc"] li a {
	  display: flex;
	  align-items: center;
	  padding: 18px 25px;
	  background: #ffffff;
	  color: #333333;
	  text-decoration: none;
	  font-family: 'Noto Sans KR', sans-serif;
	  font-size: 17px;
	  font-weight: 600;
	  border-radius: 15px;
	  border: 2px solid #FF6B00;
	  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
	  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	  position: relative;
	  overflow: hidden;
  }
  
  ul[data-ke-list-type="disc"] li a::before {
	  content: '함께 읽기 👀';
	  position: absolute;
	  top: 0;
	  left: 0;
	  background: #FF6B00;
	  color: #ffffff;
	  padding: 6px 12px;
	  font-size: 13px;
	  font-weight: 500;
	  border-radius: 0 0 12px 0;
	  opacity: 0;
	  transform: translateY(-100%);
	  transition: all 0.3s ease;
  }
  
  ul[data-ke-list-type="disc"] li a:hover {
	  transform: translateY(-7px) scale(1.03);
	  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
	  border-color: #FF4500;
  }
  
  ul[data-ke-list-type="disc"] li a:hover::before {
	  opacity: 1;
	  transform: translateY(0);
  }
  
  ul[data-ke-list-type="disc"] li a::after {
	  content: '→';
	  margin-left: auto;
	  font-size: 28px;
	  color: #FF6B00;
	  opacity: 0.8;
	  transition: all 0.3s ease;
  }
  
  ul[data-ke-list-type="disc"] li a:hover::after {
	  transform: translateX(5px) rotate(-45deg);
	  opacity: 1;
	  color: #FF4500;
  }
  
  /* 글자 내용 스타일 */
  ul[data-ke-list-type="disc"] li a span {
	  flex-grow: 1;
	  padding-right: 15px;
  }
  
  /* 애니메이션 효과 */
  @keyframes softPulse {
	  0% { box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1); }
	  50% { box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2); }
	  100% { box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1); }
  }
  
  ul[data-ke-list-type="disc"] li a {
	  animation: softPulse 3s infinite;
  }
  
  /* 반응형 디자인 */
  @media (max-width: 768px) {
	  ul[data-ke-list-type="disc"] li a {
		  font-size: 15px;
		  padding: 15px 20px;
	  }
	  ul[data-ke-list-type="disc"] li a::before {
		  font-size: 11px;
		  padding: 4px 8px;
	  }
	  ul[data-ke-list-type="disc"] li a::after {
		  font-size: 24px;
	  }
  }
  p[style*='text-align: center;'][data-ke-size='size16'] {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 4px solid #FFA500; /* 주황색 밑줄 */
    padding-bottom: 5px;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    color: #FFA500; /* 주황색 텍스트 */
    transition: color 0.3s; /* 색상 변화에 트랜지션 효과 추가 */
}

p[style*='text-align: center;'][data-ke-size='size16']:hover {
    color: #FF8C00; /* 마우스 오버시 약간 더 진한 주황색 */
}
ol[style="list-style-type: decimal;"][data-ke-list-type="decimal"] {
    padding-left: 20px;
    color: #333; / 기본 텍스트 색상 /
}
ol[style="list-style-type: decimal;"][data-ke-list-type="decimal"] > li {
    margin-bottom: 10px;
    padding-left: 10px;
}
ol[style="list-style-type: decimal;"][data-ke-list-type="decimal"] > li::marker {
    color: #FFA500; / 주황색 숫자 /
    font-weight: bold;
}
ol[style="list-style-type: decimal;"][data-ke-list-type="decimal"] > li:hover {
    color: #FFA500; /* 마우스 오버시 텍스트 주황색으로 변경 */
    transition: color 0.3s ease;
}
ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    line-height: 1.6;
}

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: #FF9800;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li:hover {
    color: #FF9800;
    padding-left: 32px;
}

ul[style*="list-style-type: disc;"][data-ke-list-type="disc"] > li:hover::before {
    background-color: #F57C00;
    transform: rotate(45deg) scale(1.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* 공통 전환 효과 */
b, strong, em, i, abbr {
    transition: all 0.3s ease;
}

/* 볼드 텍스트 스타일링 */
b {
    font-weight: 800;  /* 더 굵은 폰트 웨이트 */
    color: #ff6600;
    padding: 0 4px;    /* 패딩 증가 */
    position: relative;
    text-shadow: 1px 1px 0 rgba(255, 102, 0, 0.1);  /* 텍스트 그림자 추가 */
    transition: all 0.2s ease;  /* 부드러운 전환 효과 */
}

b:hover {
    background-color: rgba(255, 102, 0, 0.15);  /* 배경색 더 진하게 */
    border-radius: 4px;
    transform: translateY(-1px);  /* 살짝 위로 떠오르는 효과 */
    text-shadow: 2px 2px 2px rgba(255, 102, 0, 0.2);  /* 호버시 그림자 강화 */
}order-radius: 2px;
}

/* 강한 강조 텍스트 스타일링 */
strong {
    font-weight: 700;
    color: #ffffff;
    background-color: #ff6600;
    padding: 0 4px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

strong:hover {
    background-color: #e65c00;
}

/* 강조 텍스트 스타일링 */
em {
    font-style: italic;
    color: #ff8533;
    position: relative;
}

em::before {
    content: '『';
    margin-right: 2px;
}

em::after {
    content: '』';
    margin-left: 2px;
}

/* 기울임 텍스트 스타일링 */
i {
    font-style: italic;
    color: #ff7f40;
    border-bottom: 1px dashed #ff7f40;
}

/* 약어 스타일링 */
abbr {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px dotted #ff9966;
    cursor: help;
    position: relative;
}

abbr::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9966;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

abbr:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}
.entry-content h2 {
    font-size: 1.5em;
    font-weight: 900; /* 글자를 더 굵게 설정 */
    color: #111; /* 글자색을 더 진하게 변경 */
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: block; /* 블록 요소로 변경 */
    width: 100%; /* 가로로 꽉 채우기 */
    box-sizing: border-box; /* 패딩과 테두리를 포함하여 박스 크기 설정 */
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* 텍스트에 약간의 그림자 추가 */
}

.entry-content h2::before {
    display: inline-block;
    content: "";
    width: 8px;
    height: 24px;
    background: linear-gradient(180deg, #ff5b00, #ffbb00); /* 그라데이션 효과 추가 */
    background-size: 200% 200%; /* 애니메이션을 위한 배경 크기 설정 */
    border-radius: 4px;
    margin-right: 12px;
    animation: gradientAnimation 3s infinite; /* 그라데이션 애니메이션 추가 */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.entry-content h2:hover {
    box-shadow: none; /* 호버 시 그림자 제거 */
    transform: none; /* 호버 시 이동 효과 제거 */
    border-color: #e0e0e0; /* 호버 시 테두리 색상 유지 */
}
.content-box {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.content-inner {
    display: flex;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.content-inner:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 이미지 영역 */
.content-image {
    width: 40%;
    background: #f5f5f5;
    position: relative;
}

.image-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* 콘텐츠 영역 */
.content-details {
    width: 60%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 프로필 섹션 */
.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.profile-image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-right: 12px;
}

.profile-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.profile-tag {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

/* 텍스트 콘텐츠 */
.text-content {
    flex-grow: 1;
    margin: 8px 0;
}

.content-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.content-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 액션 영역 */
.action-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

/* 버튼 */
.cta-button {
    padding: 10px 24px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #1557b0;
    transform: translateY(-1px);
}

/* 광고 태그 */
.content-tag {
    font-size: 13px;
    color: #999;
}

/* 반응형 디자인 */
@media (max-width: 600px) {
    .content-inner {
        flex-direction: column;
    }
    
    .content-image,
    .content-details {
        width: 100%;
    }
    
    .content-image {
        aspect-ratio: 16/9;
    }
    
    .content-details {
        padding: 20px;
    }
}
.sidebar-ad {
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.sidebar-ad:hover {
    border-color: #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* 이미지 영역 */
.ad-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f8f8;
    position: relative;
}

.image-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 13px;
    font-weight: 500;
}

/* 텍스트 영역 */
.ad-content {
    padding: 12px;
    border-top: 1px solid #f0f0f0;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad-tag {
    font-size: 11px;
    color: #888;
    margin-left: 8px;
    white-space: nowrap;
}
/* 본문 내 이미지에만 적용되는 스타일 */
.entry-content img {
  max-width: none !important; /* max-width 제한 해제 */
  width: auto !important; /* 원래 이미지 너비 사용 */
  height: auto !important; /* 비율 유지 */
  display: inline-block !important; /* 인라인 블록으로 표시 */
  border-radius: 0 !important; /* 기존 border-radius 제거 */
  transform: none !important; /* 변형 효과 제거 */
  box-shadow: none !important; /* 그림자 효과 제거 */
}

/* 본문 이미지 컨테이너 스타일 */
.entry-content figure, 
.entry-content p:has(img) {
  width: 100% !important;
  overflow-x: auto !important; /* 이미지가 클 경우 가로 스크롤 허용 */
  text-align: center !important;
}

/* 초매력적인 클릭 유도 버튼 */
.asd {
  display: block;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin: 24px 0;
  padding: 18px 32px;
  background: linear-gradient(135deg, #ff4141, #ff1a1a);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25), 0 6px 6px rgba(255, 26, 26, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  z-index: 1;
  transform: perspective(1px) translateZ(0);
  -webkit-font-smoothing: antialiased;
  animation: pulse 2s infinite alternate;
}

/* 지속적인 펄스 애니메이션 - 가만히 있어도 움직임 효과 */
@keyframes pulse {
  0% {
    transform: perspective(1px) translateZ(0) scale(1);
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25), 0 6px 6px rgba(255, 26, 26, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
  100% {
    transform: perspective(1px) translateZ(0) scale(1.02);
    box-shadow: 0 12px 24px rgba(255, 26, 26, 0.3), 0 8px 8px rgba(255, 26, 26, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  }
}

/* 지속적인 그라데이션 배경 변화 */
.asd {
  background-size: 200% 200%;
  background-image: linear-gradient(135deg, #ff4141, #ff1a1a, #ff0000, #ff3333);
  animation: 
    pulse 2s infinite alternate,
    gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 버튼 내부 반짝임 효과 - 지속적으로 발생 */
.asd::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  animation: autoShine 5s infinite;
}

@keyframes autoShine {
  0% {
    left: -75%;
    opacity: 0;
  }
  15% {
    left: -75%;
    opacity: 0.7;
  }
  35% {
    left: 130%;
    opacity: 0.7;
  }
  40% {
    left: 130%;
    opacity: 0;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

/* 호버 효과 - 반짝임 이동 및 버튼 확대 */
.asd:hover {
  background: linear-gradient(135deg, #ff3333, #ff0000);
  box-shadow: 0 15px 30px rgba(255, 26, 26, 0.3), 0 8px 8px rgba(255, 26, 26, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transform: perspective(1px) translateZ(0) scale(1.05);
  color: #ffffff !important;
  animation: none; /* 호버 시 기본 애니메이션 중지 */
}

.asd:hover::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
    opacity: 0.7;
  }
  100% {
    left: 130%;
    opacity: 0.7;
  }
}

/* 클릭(액티브) 효과 - 눌림 효과 */
.asd:active {
  transform: perspective(1px) translateZ(0) scale(0.98);
  box-shadow: 0 8px 16px rgba(255, 26, 26, 0.2), 0 4px 4px rgba(255, 26, 26, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: none; /* 클릭 시 기본 애니메이션 중지 */
}

/* 추가적인 시각적 요소 - 향상된 화살표 애니메이션 */
.asd span {
  display: inline-block;
  position: relative;
  padding-right: 0;
  transition: all 0.4s ease;
  animation: gentle-bounce 2s infinite alternate;
}

@keyframes gentle-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2px); }
}

.asd span::after {
  content: '→';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: all 0.4s ease;
}

.asd:hover span {
  padding-right: 28px;
  animation: none; /* 호버 시 바운스 애니메이션 중지 */
}

.asd:hover span::after {
  opacity: 1;
  right: 0;
}

/* 3D 효과를 위한 추가 요소 */
.asd::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transition: all 0.4s ease;
}

.asd:hover::after {
  height: 3px;
}

/* 버튼 텍스트에 살짝 그림자 효과 추가 */
.asd {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* 버튼 둘레에 미세한 빛나는 효과 */
.asd {
  outline: none;
}

.asd:focus {
  outline: none;
  box-shadow: 0 10px 25px rgba(255, 26, 26, 0.35), 0 6px 10px rgba(255, 26, 26, 0.3), 0 0 0 3px rgba(255, 75, 75, 0.4);
}

/* 눈에 띄는 추가 텍스트 요소 (선택 사항) */
.asd::before {
  content: '';
  /* '지금 바로!' 같은 텍스트를 넣을 수도 있습니다 */
}

/* 패딩 및 마진 향상 */
.asd {
  margin: 24px auto;
  max-width: 95%; /* 양쪽에 약간의 여백 */
}

/* 모바일 반응형 스타일 */
@media screen and (max-width: 767px) {
  .asd {
    padding: 16px 24px;
    font-size: 16px;
    margin: 20px auto;
  }
}




