@charset "utf-8";


ul.tt_category > li > a {
    display: none;
}
@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  box-sizing: border-box;
  list-style: none;
  line-height: var(--line-height);
  letter-spacing: 0;
  font-family: 'Pretendard-Regular';
}

html {
  background-color: var(--skin-bg);
  font-size: var(--font-size);
  color: var(--font-color);
  text-decoration: none;
  scroll-behavior: smooth;
}

body.fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.fade.loaded {
  opacity: 1;
}

input,
textarea,
button,
::placeholder {
  border-radius: 0;
  border: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  font-size: 1rem;
  color: var(--font-color);
  letter-spacing: 0;
}

a,
a:link,
a:visited,
a:active {
  color: var(--font-color);
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-bg);
}

::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-th);
}

[class*=" xi-"],
[class^=xi-] {
  font-size: 1rem;
  line-height: var(--line-height) !important;
}

.topbtn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  opacity: 0; /* 처음에는 안 보이게 */
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  z-index: 99999;
  pointer-events: none; /* 안 보일 땐 클릭도 막음 */
}

.topbtn.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.topbtn > i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
}




/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap:30px;
  margin: 120px auto;
  width: calc(var(--side-width) + var(--content-width) + 30px);
}

#side {
  width: var(--side-width);
}

#content{
  width: var(--content-width);
}





/*====================================*/
/*=============== side ===============*/
/*====================================*/

#side{}

#side .profile{
  position: relative;
  margin-bottom:20px;
  padding-top: calc(80px - 25px);
}

#side .profile .profile-img{
  position: absolute;
  top:0;
  right:15px;
  width:80px;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  overflow: hidden;
  z-index: 11;
}

#side .profile .profile-img a{
  display: block;
  width:100%;
  height:100%;
}

#side .profile .profile-info{
  width:100%;
  padding:35px 15px 15px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  z-index: 10;
}

#side .profile .profile-info .title{
  padding-bottom: 10px;
  margin-bottom:10px;
  border-bottom:var(--border);
  font-weight: bold;
  letter-spacing: 0.5px;
}

#side .profile .profile-info .desc{
  margin-bottom:5px;
}

#side .profile .profile-info .hash{
  font-weight: bold;
  font-size: 0.8rem;
  color: var(--point-color);
}

#side .profile .profile-info .link-list{
  margin-top:10px;
}

#side .profile .profile-info .link-list ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 5px;
  row-gap: 3px;
} 

#side .profile .profile-info .link-list ul > li{
  border: var(--border);
  border-radius: 10px;
  background-color: var(--sub-bg);
}

#side .profile .profile-info .link-list ul > li > a,
#side .profile .profile-info .link-list ul > li > div{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1rem;
  padding:3px 5px;
}

#side .profile .profile-info .link-list .menuBtn{
  display: none;
}


#side .menu_list .menu_item{
  padding:10px;
  margin-bottom:20px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

#side .menu_list .m1>ul{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap:10px;
  margin-bottom:10px;
}

#side .menu_list .m1>ul>li{
  width: calc((100% - 30px) / 4);
}

#side .menu_list .m1>ul>li>a>i{
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-size: 0.8rem;
}

#side .menu_list .m1 ul>li>a,
#side .menu_list .m1 ul>li>div{
  display: inline-block;
  width:100%;
  padding:10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

#side .menu_list .m1 .search{
  width:100%;
  padding:10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}


#side .menu_list .m1 .search input{
  width:100%;
}

#side .menu_list .m1 .search input::placeholder{
  transition:0.7s;
}

#side .menu_list .m1 .search:hover>input::placeholder{
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 1px;
  transition:0.7s;
}

#side .menu_list .close{
  display: none;
}



/*========================================*/
/*=============== category ===============*/
/*========================================*/

.link_tit {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: 100%;
  padding: 10px;
  margin-bottom:10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.link_tit>.c_cnt,
.category_list .c_cnt {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.category_list>li:not(:last-child) {
  margin-bottom:10px;
}

.category_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.category_list>li>.has-sub{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.category_list>li>.has-sub>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  width: calc(100% - 35px);
  height: 35px;
  padding: 5px 10px;
}

.category_list>li>.has-sub>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-left: var(--border);
}

.sub_category_list {
  margin: 10px 0 0 20px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);  
}

.sub_category_list>li:not(:last-child) {
  border-bottom: var(--border);
}

.sub_category_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  padding: 10px;
  color: var(--sub-color);
  font-size: 0.9rem;
}


.tt_category i {
  color: var(--sub-color);
}

#side .menu_list .menu_item:hover{
  transition: 0.7s;
  background-color: var(--sub-bg);
}

#side .menu_list .m1>ul>li>a,
#side .menu_list .m1>ul>li>div>input::placeholder,
.link_tit .cname,
.category_list .has-sub .cname,
.category_list>li>a>.cname,
.sub_category_list>li>a>.cname{
  transition: 0.7s;
}

#side .menu_list .m1>ul>li>a:hover,
#side .menu_list .m1>ul>li>div:hover>input::placeholder,
.link_tit:hover .cname,
.category_list li>a:hover>.cname,
.category_list .has-sub:hover>a>.cname,
.sub_category_list>li>a>.cname:hover {
  transition: 0.7s;
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 1px;
}





/*======================================*/
/*=============== paging ===============*/
/*======================================*/
.paging {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.paging a{
  width:35px;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.paging a>i{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}






/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.confirm {
  padding:10px;
  margin-bottom:20px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.confirm .c_title span {
  color: var(--sub-color);
}

.confirm .c_desc {
  margin-top: 3px;
  font-size: 0.9rem;
}

.confirm .c_desc:empty {
  display: none;
}

.empty_con {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--content-width);
  text-align: center;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.empty_con i {
  margin-right: 1.5px;
}

#list_n1> :not(.n1),
#list_g1> :not(.g1){
  display: none;
}

.list_w .sum{
  display: none;
}

.list_w .xi-lock,
.list_w .xi-new-o {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.list_w .list_t .title .t-icon {
  display: flex;
  gap: 2px;
}

.thumb_i {
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.n1{
  width:100%;
  padding:5px 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.n1 .list_c {
  background-color: var(--main-bg);
  transition: 0.7s;
}

.n1 .list_c:not(:last-child){
  border-bottom: var(--border);
}

.n1 .list_t {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 10px;
}

.n1 .list_t .title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: calc(100% - 55px);
  font-weight: bold;
}

.n1 .list_t .title>span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.7s;
}

.n1 .list_c:hover .list_t .title span {
  letter-spacing: 1px;
  color: var(--point-color);
  transition: 0.7s;
}

.n1 .list_c .list_t .date {
  text-align: center;
  color: var(--sub-color);
}

.n1 .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}





.g1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap: 10px;
  padding:10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.g1 .list_c {
  position: relative;
  width: calc((100% - 20px) / 3);
  overflow: hidden;
  transition: 0.7s;
}

.g1 .list_c .thumb_i {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
}

.g1 .list_c .list_t {
  display: none;
  position: absolute;
  bottom:10px;
  left:10px;
  width: calc(100% - 20px);
  height: auto;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  padding:8px 5px;
}

.g1 .list_c .list_t .title {
  text-align: center;
  font-weight: bold;
  width:100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.g1 .list_c .list_t .fa-lock {
  display: none;
}

.g1 .xi-new-o {
  display: none;
}

.g1 .list_c:hover img {
  filter: grayscale(10);
  transition: 0.7s;
}




/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.entry .title-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding:10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  margin-bottom:20px;
}

.entry .title-wrap .title {
  font-weight: bold;
  width: calc(100% - 50px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.entry .title-wrap .date {
  color: var(--sub-color);
}

.entry .article .ny {
  padding:10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  margin-bottom:20px;
}

.entry .detail {
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.entry .detail .tag_trail{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
  width: 100%;
  padding:10px;
  border-bottom: var(--border);
}

.entry .detail .tag_trail a{
  transition: 0.7s;
}

.entry .detail .tag_trail a:hover{
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 1px;
  transition: 0.7s;
}

.entry .detail .tag_trail a::before{
  content:'#';
}

.entry .detail .detail-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:10px;
}

.entry .detail .action_trail {
  font-weight: bold;
}

.entry .detail .admin {
  display: flex;
  align-items: center;
  gap: 10px;
}

.entry .tt-box-total {
  display: none;
}

.entry .tt-comment-cont {
  display: none;
}

.entry .tt-comment-cont.dp_flex {
  display: flex;
}

.entry .tt-comment-cont>form {
  padding: 20px 0 0 !important;
}






/*==========================================*/
/*========== article / font style ==========*/
/*==========================================*/

.ny p>a {
  font-weight: bold;
  color: var(--point-color);
}

/*hyperlink*/

h2,
h2[data-ke-size] {
  line-height: calc(var(--line-height) * 1.3);
}

h3,
h3[data-ke-size] {
  line-height: calc(var(--line-height) * 1.25);
}

h4,
h4[data-ke-size] {
  line-height: calc(var(--line-height) * 1.2);
}

p[data-ke-size='size18'] {
  line-height: calc(var(--line-height) * 1.1);
}

p[data-ke-size='size16'] {
  line-height: var(--line-height);
}

p[data-ke-size='size14'] {
  line-height: calc(var(--line-height) * 0.9);
}





/*==========================================*/
/*=============== imageblock ===============*/
/*==========================================*/

figure.imageblock.alignCenter {
  margin: 0 auto 5px !important;
}

figure.imagegridblock,
#tt-body-page figure.imagegridblock {
  margin: 0 auto !important;
}

figure.imagegridblock .image-container>span {
  margin-top: 0 !important;
}

figure.imageblock.alignCenter>figcaption,
figure.imagegridblock>figcaption {
  font-size: 1rem !important;
  padding-bottom:10px;
}





/*==========================================*/
/*=============== blockquote ===============*/
/*==========================================*/

.ny blockquote {
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--font-color) !important;
}

blockquote, blockquote p{
  font-size: 1rem !important;
}

blockquote[data-ke-style='style1'] {
  text-align: center;
  margin: 10px 0;
}

blockquote[data-ke-style='style1']:before {
  content: '\f10d';
  font-size: 1.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}

blockquote[data-ke-style='style1']>span{
  font-family: 'Pretendard-Regular' !important;
}

blockquote[data-ke-style='style2'] {
  padding: 5px 10px;
  padding-right: 0;
  border-left: var(--border);
  border-left-width: 5px;
  margin: 10px 0;
}

blockquote[data-ke-style='style3'] {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--sub-bg);
  margin: 10px 0;
}




/*==========================================*/
/*=========== video Optimization ===========*/
/*==========================================*/

.ny iframe {
  max-width: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}





/*=========================================*/
/*========== article / list-type ==========*/
/*=========================================*/

ul[data-ke-list-type='disc'],
ul[data-ke-list-type='circle'],
ol[data-ke-list-type='decimal'] {
  padding-left: 15px;
}





/*=========================================*/
/*============ image Slideshow ============*/
/*=========================================*/

figure.imageslideblock.alignCenter {
  margin: 0 auto 10px;
}

figure.imageslideblock div.image-container {
  position: relative;
  width: 100% !important;
  height: unset !important;
  padding-bottom: 100%;
  min-width: unset;
  max-width: unset;
  min-height: unset;
  max-height: unset;
  align-items: unset;
}

figure.imageslideblock div.image-container span.image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}

figure.imageslideblock div.image-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto !important;
}

figure.imageslideblock figcaption {
  color: var(--font-color);
  font-size: 1rem;
  padding-top: 0;
  min-height: unset;
}





/*========================================*/
/*=============== moreless ===============*/
/*========================================*/

div[data-ke-type="moreLess"] {
  margin: 10px 0;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  width: fit-content;
  color: var(--font-color);
  font-size: 1rem;
  line-height: 1.4rem;
  padding: 5px 8px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--sub-bg);
}

div[data-ke-type='moreLess']:not(.open)>.btn-toggle-moreless::before {
  content: "\e942";
  font-family: 'xeicon' !important;
}

div[data-ke-type='moreLess'].open>.btn-toggle-moreless::before {
  content: "\e945";
  font-family: 'xeicon' !important;
}

div[data-ke-type='moreLess'].open .moreless-content {
  padding: 10px;
  margin-top: 10px;
  background-color: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}





/*=========================================*/
/*=============== fileblock ===============*/
/*=========================================*/

figure.fileblock {
  margin: 10px 0;
  width: 200px;
  height: unset;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

figure.fileblock a {
  position: relative;
  height: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: 0.7s;
}


figure.fileblock .image {
  position: relative;
  background: none;
  margin: 0;
  width: auto;
  height: auto;
}

figure.fileblock .image:after {
  content: "\eaa7";
  font-family: 'xeicon' !important;
  font-size: 28px;
  padding: 15px 10px;
}

figure.fileblock .desc {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  width: calc(100% - 50.5px);
  padding: 15px 10px;
  padding-left: 0;
}

figure.fileblock .filename {
  color: var(--font-color);
  font-size: 1rem;
  height: auto;
  margin: 0;
}

figure.fileblock .name {
  max-width: 95%;
  height: auto;
  font-weight: bold;
}

figure.fileblock .size {
  font-size: 0.85rem;
  color: var(--sub-color);
  height: auto;
  margin: 0;

}

figure.fileblock a::after {
  display: none;
}

figure.fileblock a>.down {
  display: block;
  width: 100%;
  border-top: var(--border);
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px;
  background-color: var(--sub-bg);
}

figure.fileblock a>.down>span:after {
  content: "\eb7c";
  font-family: 'xeicon' !important;
  font-size: 1rem;
}

figure.fileblock a>.down>span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

figure.fileblock a:hover .down {
  letter-spacing: 2px;
  color: var(--point-color);
  transition: 0.7s;
}





/*=========================================*/
/*=============== codeblock ===============*/
/*========================================*/

pre[data-ke-type="codeblock"] {
  padding: 10px;
  margin: 10px 0;
  background-color: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
}

pre[data-ke-type="codeblock"]>code {
  font-family: 'Pretendard-Regular';
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-bg);
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-th);
  border: 0;
}





/*=========================================*/
/*=========== protected article ===========*/
/*=========================================*/

.protect .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding:10px;
  margin-bottom:20px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.protect .title-wrap .title {
  width: calc(100% - 50px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
}

.protect .date {
  color: var(--sub-color);
}

.protect .p-article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: var(--content-width);
  text-align: center;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.protect .p-info {
  display: flex;
  flex-direction: column;
}

.protect .p-info i {
  font-size: 1.7rem;
}

.protect .p-info span {
  margin: 10px 0 20px;
}

.protect .p-input {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.protect .p-input input {
  width: 100px;
  line-height: 35px;
  padding: 0 10px;
  border-right: var(--border);
}

.protect .p-input button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
}





/*======================================*/
/*=============== taglog ===============*/
/*======================================*/

.taglog .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.taglog .tags a {
  width: calc((100% - 40px) / 5);
  padding: 10px 5px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
  transition: 0.7s;
}

.taglog a:before {
  content: '#';
}

.taglog a:hover {
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--point-color);
  transition: 0.7s;
}





/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.n_entry {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.n_entry:not(:last-child) {
  margin-bottom: 10px;
}

.n_entry .title-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.n_entry .title-wrap .title {
  width: calc(100% - 50px);
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.n_entry .title-wrap .date {
  color: var(--sub-color);
}

.n_entry .container_postbtn {
  display: none !important;
}





/*======================================*/
/*=============== comment ===============*/
/*======================================*/

/*----- setting -----*/
.tt-comment-cont * {
  font-family: 'Pretendard-Regular' !important;
  font-size: var(--font-size) !important;
  line-height: var(--line-height) !important;
  color: var(--font-color) !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.entry .tt-comment-cont {
  padding: 0;
}

.tt_ico_lock,
.tt-button-modify,
.tt-box-write .tt-xe-label-text {
  font-size: 0 !important;
}

.tt_ico_lock {
  width: 15px;
  height: 15px;
  background-position: -28px -42px !important;
}

.tt-box-total {
  display:none;
}


.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
}



/*----- write form -----*/
.tt-comment-cont>form {
  order: 2;
}

.tt-list-reply-comment .tt-area-write {
  /*답글 입력폼*/
  padding: 10px 10px 0;
}

.tt-btn-cancel {
  height: 30px !important;
  width: 60px !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  background-color: var(--main-bg);
}

.tt-area-write {
  display: block !important;
  margin-bottom: 20px;
}

.tt-area-write .tt-box-account {
  border: var(--border);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: var(--main-bg);
  margin-bottom: 0 !important;
}

.tt-area-write .tt-box-account input {
  width: 50%;
  padding: 10px !important;
  border: 0 !important;
}

.tt-area-write .tt-box-account input::placeholder {
  color: var(--font-color) !important;
}

.tt-area-write .tt-box-account input:first-child {
  border-right: var(--border) !important;
}

.tt-area-write .tt-box-thumb {
  display: none;
}

.tt-box-textarea {
  margin-bottom: 20px !important;
  padding: 10px;
  border: var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  background-color: var(--main-bg);
}

/* no input */
.tt_wrap_write>.tt-box-textarea:first-child {
  border-radius: var(--radius);
}


.tt-box-textarea .tt_txt_user {
  display: none !important;
}

.tt-box-textarea .tt-inner-g {
  overflow: auto !important;
  min-height: unset !important;
  max-height: 100px !important;
  padding: 0 5px 0 0 !important;
  border: unset !important;
  border-radius: unset !important;
  text-align: justify;
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar {
  background-color: var(--main-bg);
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar-thumb {
  background-color: var(--scroll-th);
}

.tt-box-textarea textarea,
.tt-box-textarea div {
  height: unset !important;
}

.tt-box-textarea .tt-cmt[contenteditable=true]:empty:before {
  color: var(--font-color) !important;
}

.tt-box-write .tt-xe-label {
  height: 30px;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  margin-top: 0 !important;
  margin-right: 10px !important;
  justify-content: center;
}

.tt-box-write .tt-xe-input-helper {
  margin: 0 !important;
  transform: scale(0.75);
}

.tt-btn_register {
  width: 60px !important;
  border-radius: var(--radius) !important;
  font-weight: bold;
  background-color: var(--sub-bg) !important;
  border: var(--border) !important;
}

.tt-btn_register:disabled,
.tt-btn_register:hover,
.tt-btn_register:focus {
  background-color: var(--main-bg) !important;
  border: var(--border) !important;
}



/*----- comment list -----*/

ul.tt-list-reply {
  border-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul.tt-list-reply>li.tt-item-reply {
  padding: 0 !important;
  border: var(--border) !important;
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

ul.tt-list-reply>li.tt-item-reply>.tt-wrap-cmt {
  padding: 10px;
}

ul.tt-list-reply>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb {
  display: none !important;
}

ul.tt-list-reply>li.tt-item-reply>.tt-wrap-cmt>.tt-box-content {
  width: 100% !important;
}

ul.tt-list-reply-comment {
  margin: 0 !important;
  border: 0 !important;
}

ul.tt-list-reply-comment>li.tt-item-reply {
  padding: 0 !important;
  border-top: var(--border) !important;
}

ul.tt-list-reply-comment>li.tt-item-reply:before {
  display: none !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt {
  width: 100% !important;
  justify-content: space-between !important;
  align-items: stretch;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-content {
  width: calc(100% - 20px) !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb {
  margin: 0 !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb span.tt-thumbnail {
  width: 20px !important;
  height: 0 !important;
  background-image: none !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb span.tt-thumbnail:after {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-content {
  padding: 10px;
}

.tt-wrap-cmt>.tt-box-content>.tt-box-meta {
  gap: 3px;
  margin-bottom: 5px !important;
}

.tt-wrap-cmt>.tt-box-content>.tt-box-meta>a {
  font-weight: bold;
}

.tt-wrap-cmt>.tt-box-content>.tt-box-meta>span.tt_img_area_reply {
  transform: scale(0.8);
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info>.tt_date {
  padding-top: 0 !important;
  color: var(--sub-color) !important;
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info>.tt-wrap-link-comment {
  padding-left: 0 !important;
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info>.tt-wrap-link-comment>a>span {
  padding-top: 0 !important;
  font-weight: bold;
  color: var(--sub-color) !important;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

.tt-wrap-cmt .tt-box-modify {
  top: 7.5px !important;
  right: 5px !important;
}

.tt-wrap-cmt .tt-box-modify button {
  margin-top: -1px;
  transform: scale(0.8);
}

ul.tt-list-modify {
  top: 28px !important;
  display: flex;
  flex-direction: column;
  width: 70px !important;
  padding: 0 !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  overflow: hidden;
}

ul.tt-list-modify>li>a {
  padding: 7px !important;
  font-size: 0.9rem !important;
  line-height: var(--line-height) !important;
  font-family: "Pretendard-Regular" !important;
  color: var(--font-color) !important;
  letter-spacing: 0 !important;
  border-bottom: var(--border);
}

ul.tt-list-modify>li:last-child a {
  border-bottom: 0 !important;
}



/*----- pinned comment -----*/
.tt-item-reply .tt_cmt_info {
  border-bottom: var(--border);
  margin: unset !important;
  padding: 10px;
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
  margin-right: 0 !important;
}

.tt-item-reply:has(.tt_cmt_info) {
  border: var(--border) !important;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.tt-item-reply:has(.tt_cmt_info) .tt-wrap-cmt .tt-box-modify {
  top: 7.5px !important;
  right: 5px !important;
}

.tt_ico_fixed {
  transform: scale(0.8);
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed {
  margin-bottom: 0 !important;
}



/*----- prev more comment -----*/
.tt_btn_prev_more {
  padding: 10px !important;
  margin-bottom: 10px !important;
  border: var(--border) !important;
  border-radius: var(--radius);
}





/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/

.c_item:not(:last-child) {
  margin-bottom: 20px;
}

.c_item .title-wrap {
  padding: 0 5px 10px;
}

.c_item .title-wrap span {
  font-weight: bold;
}


.cn1 .cn_content {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.cn1 .cn_content:not(:last-child) {
  margin-bottom: 20px;
}

.cn1 .cn_content .cn_tt {
  font-weight: bold;
  margin-bottom: 10px;
}

.cn1 .cn_content .cn_sum {
  text-align: justify;
}

.cn1 .cn_content .cn_img {
  max-width: 100%;
  margin-bottom: 10px;
}

.cn1 .cn_content .cn_img img {
  width: 100%;
}



.cg1 .cg_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  padding:10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.cg1 .list_c {
  position:relative;
  width: calc((100% - 20px) / 3);
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  overflow: hidden;
}

.cg1 .list_c .list_t {
  display: none;
  position: absolute;
  bottom:10px;
  left:10px;
  width: calc(100% - 20px);
  height: auto;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  padding:8px 5px;
}

.cg1 .list_c .list_t .title {
  text-align: center;
  font-weight: bold;
  width:100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.cl .cl_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  padding: 10px;
}

.cl .cl_text_wrap {
  width: calc((100% - 10px) / 2);
  padding: 15px 10px;
  border-bottom: var(--border);
}

.cl .cl_text_wrap:nth-child(-n+2) {
  border-top: var(--border);
}

.cl .cl_text_wrap:hover .cl_tt {
  color: var(--point-color);
  letter-spacing: 1px;
  transition: 0.7s;
}

.cl .cl_text_wrap .cl_tt {
  width: 100%;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.7s;
}







/*=========================================*/
/*================== RWD ==================*/
/*=========================================*/

@media (max-width:767px) {

  #container {
    width: calc(100% - 40px);
    margin: 20px auto 100px;
    flex-direction: column;
    flex-wrap: wrap;
    gap:20px;
  }

  #side{
    width:100%;
  }

  #side .profile{
    padding-top: calc(80px - 30px);
    margin-bottom: 0;
  }

  #side .profile .profile-info{
    padding-top:15px;
  }

  #side .profile .profile-info .hash,
  #side .profile .profile-info .link-list ul > li > a,
  #side .profile .profile-info .link-list ul > li > div{
    font-size: 0.9rem;
  }

  #side .profile .profile-info .link-list .menuBtn{
    display: block;
  }

  #side .menu_list .m1>ul>li>a>i{
    aspect-ratio: auto;
  }
  
  #side .menu_list{
    display: none;
    position:fixed;
    left: 0;
    top:0;
    width:100%;
    height:100%;
    z-index: 111;
  }
  #side .menu_list::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7); /* 원하는 투명도 조절 */
    z-index: -1;
  }

  #side .menu_list .menu_wrap{
    position: fixed;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    width:70%;
    height:auto;
  }

  #side .menu_list .close{
    display: block;
    padding:0;
  }

  #side .menu_list .close .x{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }

  #side .menu_list .close .x>span{
    display: flex;
    align-items: center;
    padding:10px;
  }

  #side .menu_list .close .x>i{
    display: flex;
    justify-content: center;
    align-items: center;
    width:35px;
    aspect-ratio: 1;
    border-left: var(--border);
  }

  #content {
    width: 100%;
    height: auto;
  }

  .g1 .list_c, .cg1 .list_c{
    width: calc((100% - 10px) / 2);
  }

  .taglog .tags a {
    width: calc((100% - 20px) / 3);
  }

  .cl .cl_text_wrap:nth-child(2) {
    border-top: 0;
  }

  .cl .cl_text_wrap {
    width: 100%;
  }
}


/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 13px;
  bottom: 10px;
  font-family: 'Pretendard-Regular';
  font-size: 12px;
  color: var(--font-color);
  letter-spacing: 1px;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/