@charset "utf-8";

@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://cdn.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;
  letter-spacing: 0;
  font-family: 'Pretendard-Regular';
  font-weight: 400;
}

html {
  background-color: var(--skin-bg);
  font-size: var(--font-size);
  line-height: var(--line-height);
  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: 0;
  height: 0;
}

::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
}

[class*=" xi-"],
[class^=xi-] {
  font-size: 1rem;
}

b {
  font-weight: bold;
}

.bold {
  font-weight: bold;
  letter-spacing: 0.2px;
  transition: 0.5s;
}

/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  margin: 120px auto;
  width: var(--container-width);
  height: var(--container-height);
  border: var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: calc(100% - 35px);
  padding: 35px;
  background-color: var(--wrapper-color);
  background-image: var(--wrapper-img);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--over-color);
  opacity: var(--over-opacity);
  z-index: 0;
}

.side {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: calc(100% - var(--content-width) - 20px);
  z-index: 1;
}

#content {
  width: var(--content-width);
  height: 100%;
  background-color: #fff;
  border: var(--border);
  border-radius: var(--radius);
  overflow-y: auto;
  z-index: 1;
  padding: 10px;
}

.top {
  position: relative;
  width: 100%;
  height: 35px;
  background-color: var(--sub-bg);
  border-bottom: var(--border);
  padding: 0 10px;
  text-align: center;
}

.top .circle {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top .circle i {
  line-height: 15px;
}

.blog-title a {
  display: block;
  line-height: 34px;
  font-weight: bold;
  transition: ease 0.5s all;
}

.blog-title a:hover {
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: ease 0.5s all;
}



/*======================================*/
/*================ side ================*/
/*======================================*/

.folder-box {
  padding-top: 10px;
}

.folder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.folder .tt {
  font-weight: bold;
  padding: 0 2px;
  width: fit-content;
  background-color: var(--folder-name-bg);
}

.folder:not(:last-child) {
  margin-bottom: 30px;
}

.f-icon {
  width: 50px;
  height: 35px;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  border-top-left-radius: 0;
  position: relative;
  overflow: visible;
  margin-bottom: 5px;
}

.f-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 35px;
  height: 16px;
  background-color: var(--sub-bg);
  clip-path: polygon(0 100%, 0% 0%, 70% 0%, 100% 60%, 100% 100%);
  border-radius: var(--radius);
}

.profile .f-icon,
.profile .f-icon::before {
  background-color: var(--folder1);
}

.category .f-icon,
.category .f-icon::before {
  background-color: var(--folder2);
}

.menu .f-icon,
.menu .f-icon::before {
  background-color: var(--folder3);
}

.white-box {
  position: relative;
  width: calc(100% - 70px);
}

.white-box>div {
  position: absolute;
  width: 100%;
  height: auto;
  border: var(--border);
  border-radius: var(--radius);
  background-color: #fff;
}

.profile-box {
  display: none;
  padding: 10px;
}

.profile-box .p-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-image: var(--profile);
  background-position: center center;
  background-size: cover;
  border-radius: var(--radius);
  border: var(--border);
  margin-bottom: 5px;
}

.profile-box .p-img .bubble {
  display: none;
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: calc(100% - 10px);
  padding: 5px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: #fff;
}

.profile-box .p-img .bubble::before {
  content: '';
  position: absolute;
  left: 9px;
  top: -6px;
  /* 살짝 더 위에 */
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent var(--b-color) transparent;
  /* 검정 테두리 */
}

.profile-box .p-img .bubble::after {
  content: '';
  position: absolute;
  left: 10px;
  top: -5px;
  border-width: 0 5px 5px 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.profile-box .p-name {
  display: flex;
  align-items: center;
  gap: 2.5px;
}

.profile-box .p-name .nickname {
  font-weight: bold;
}

.profile-box .p-name .account {
  font-size: 0.95rem;
  color: var(--sub-color);
}

.profile-box .hl {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--point-color);
}


/*========================================*/
/*=============== category ===============*/
/*========================================*/
.category-box {
  display: none;
}

.tt_category>li {
  display: flex;
  flex-direction: column;
}

.link_tit {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  width: 100%;
  padding: 10px;
  border-bottom: var(--border);
  transition: ease 0.5s all;
}

.link_tit>.c_cnt,
.category_list .c_cnt {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.category_list>li {
  width: 100%;
  padding: 10px;
  border-bottom: var(--border);
  transition: ease 0.5s all;
}

.category_list>li:last-child {
  border: 0;
}

.category_list>li>a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
}

.category_list>li>.has-sub {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.category_list>li>.has-sub>a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  width: calc(100% - 20px);
}

.category_list>li>.has-sub>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 8px;
}

.sub_category_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
  background-color: #fff;
  border: var(--border);
}

.sub_category_list>li {
  width: 100%;
  padding: 10px
}

.sub_category_list>li:not(:last-child) {
  border-bottom: var(--border);
}

.sub_category_list>li>a>.cname {
  color: var(--sub-color);
  font-size: 0.95rem;
}

.sub_category_list>li>a>.cname::before {
  content: '-';
  margin-right: 2px;
}

.cname {
  transition: 0.5s;
}

.link_tit:hover>.cname,
.category_list li:hover>a>.cname,
.category_list li:hover>.has-sub>a>.cname {
  letter-spacing: 0.3px;
  transition: ease 0.5s all;
}

.link_tit:hover,
.category_list>li:hover {
  background-color: var(--sub-bg);
  transition: ease 0.5s all;
}

.category_list i.xi-new-o {
  display: none;
}

.menu-box {
  display: none;
}

.menu-box>ul>li {
  padding: 10px;
  border-bottom: var(--border);
  transition: ease 0.5s all;
}

.menu-box>ul>li:last-child {
  border: 0;
}

.link-list>ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
  background-color: #fff;
  border: var(--border);
}

.link-list>ul>li {
  width: 100%;
  padding: 10px;
}

.link-list>ul>li:not(:last-child) {
  border-bottom: var(--border);
}

.link-list>ul>li>a {
  color: var(--sub-color);
}

.link-list>ul>li>a::before {
  content: '-';
}

.menu-box a,
.menu-box span {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
  transition: ease 0.5s all;
}

.menu-box>ul>li:hover>a,
.menu-box>ul>li:hover>span,
.menu-box>ul>li:hover>input[type="text"]::placeholder,
.link-list>ul>li:hover>a {
  letter-spacing: 0.3px;
  transition: ease 0.5s all;
}

.menu-box>ul>li:hover {
  background-color: var(--sub-bg);
  transition: ease 0.5s all;
}

.category-box .tt,
.menu-box .tt {
  padding: 10px;
  font-weight: bold;
  border-bottom: var(--border);
}

.menu-box i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-color) !important;
}

.search {
  display: flex;
  align-items: center;
  gap: 2.5px;
}

.search input[type="text"] {
  width: calc(100% - 11px - 2.5px);
}

.search input[type="text"]::placeholder {
  transition: ease 0.5s all;
}

/*======================================*/
/*=============== paging ===============*/
/*======================================*/

.paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.paging a.prev,
.paging a.next {
  font-size: 0.9rem;
  font-weight: bold;
  padding: 3px;
}

.paging .numbox {
  display: flex;
  gap: 10px;
}

.paging .numbox span.selected {
  font-weight: bold;
  color: var(--point-color);
}


/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.confirm {
  padding: 2px 7px;
  border-left: 3px solid var(--point-color);
}

.confirm .c_title {
  margin-bottom: 2px;
}

.confirm .c_title .bold {
  margin-right: 2px;
}

#content:has(.empty_con) .list_w {
  display: none;
}

.empty_con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: calc(100% - 50px);
  overflow: hidden;
  text-align: center;
}

.empty_con i {
  font-size: 1.7rem;
}

#list_n1> :not(.n1),
#list_n2> :not(.n2),

#list_g1> :not(.g1),
#list_g2> :not(.g2),
#list_g3> :not(.g3),
#list_g4> :not(.g4),

#list_cd> :not(.cd),
#list_wz> :not(.wz),

#list_ct> :not(.ct),
#list_m> :not(.mm),
#list_v> :not(.vd) {
  display: none;
}

.list_w .xi-lock,
.list_w .xi-new-o {
  color: var(--sub-color);
}

.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;
}

.thumb_i.yt-thumb {
  background-size: 140%;
  /* 유튜브 썸네일만 확대 */
  background-position: center center;
}

/*=======================================*/
/*=============== list_n1 ===============*/
/*=======================================*/

.n1 {
  padding-top: 10px;
}

.n1 .list_c {
  border-bottom: var(--border);
  transition: ease 0.5s all;
}

.n1 .list_c:first-child {
  border-top: var(--border);
}

.n1 .list_t {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 11px;
}

.n1 .list_t .title {
  display: flex;
  align-items: center;
  gap: 2.5px;
  width: calc(100% - 40px);
}

.n1 .list_t .title>span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: ease 0.5s all;
  font-weight: bold;
}

.n1 .list_c:hover .list_t .title span {
  letter-spacing: 0.2px;
  color: var(--point-color);
  font-weight: bold;
  transition: ease 0.5s all;
}

.n1 .list_c .list_t .date {
  width: 30px;
  color: var(--sub-color);
}

.n1 .thumb_i,
.n1 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_n2 ===============*/
/*=======================================*/

.n2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
}

.n2 .list_c {
  width: calc((100% - 5px) / 2);
  padding: 15.5px 10px;
  border: var(--border);
  background-color: #fff;
  transition: ease 0.5s all;
}

.n2 .list_t {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.n2 .list_t .title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: 100%;
  margin-bottom: 3px;
}

.n2 .list_t .title>span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  transition: ease 0.5s all;
}

.n2 .list_c:hover .list_t .title span {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: ease 0.5s all;
}

.n2 .list_c:hover {
  background-color: var(--sub-bg);
  transition: ease 0.5s all;
}

.n2 .list_c .list_t .dc-flex {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.9rem;
}

.n2 .list_c .list_t .dc-flex .date {
  color: var(--sub-color);
}

.n2 .list_c .list_t .dc-flex .date::after {
  content: '·';
}

.n2 .list_c .list_t .dc-flex .catett {
  color: var(--sub-color);
}

.n2 .thumb_i,
.n2 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_g1 ===============*/
/*=======================================*/

.g1 {
  display: grid;
  grid-template-columns: repeat(var(--g1col), 1fr);
  gap: 5px;
  padding-top: 10px;
}

.g1 .list_c {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border: var(--border);
}

.g1 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g1th);
  object-fit: cover;
}

.g1 .list_c .list_t {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffa;
}

.g1 .list_c .list_t .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 10px;
}

.g1 .xi-lock,
.g1 .xi-new-o,
.g1 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_g2 ===============*/
/*=======================================*/

.g2 {
  display: grid;
  grid-template-columns: repeat(var(--g2col), 1fr);
  gap: 5px;
  padding-top: 10px;
}

.g2 .list_c {
  border: var(--border);
  overflow: hidden;
}

.g2 .thumb_i {
  border-bottom: var(--border);
}

.g2 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g2th);
  object-fit: cover;
}

.g2 .list_t {
  text-align: center;
  padding: 5px;
  transition: ease 0.5s all;
}

.g2 .list_t .title {
  display: flex;
  gap: 2.5px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.g2 .list_t .title .text {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: ease 0.5s all;
}

.g2 .list_c:hover .list_t .title .text {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: ease 0.5s all;
}

.g2 .list_c:hover .list_t {
  background-color: var(--sub-bg);
  transition: ease 0.5s all;
}

.g2 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_g3 ===============*/
/*=======================================*/

.g3 {
  display: grid;
  grid-template-columns: repeat(var(--g3col, 2), 1fr);
  gap: 1px;
  margin-top: 10px;
  background-color: var(--b-color);
  border-top: var(--border);
  border-bottom: var(--border);
}

.g3 .list_c {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding: 5px;
}

.g3 .placeholder {
  background: #fff;
}

.g3 .thumb_i {
  overflow: hidden;
}

.g3 .thumb_i img {
  width: 100%;
  aspect-ratio: var(--g3th);
  object-fit: cover;
}

.g3 .list_t {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffa;
}

.g3 .list_t .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 10px;
}

.g3 .list_t .title .text {
  font-weight: bold;
}

.g3 .sum {
  display: none;
}

.g3 .list_t i {
  display: none;
}

/*=======================================*/
/*=============== list_g4 ===============*/
/*=======================================*/

.g4 {
  display: grid;
  grid-template-columns: repeat(var(--g4col, 2), 1fr);
  gap: 1px;
  margin-top: 10px;
  background-color: var(--b-color);
  border-top: var(--border);
  border-bottom: var(--border);
}

.g4 .list_c {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding: 5px;
}

.g4 .placeholder {
  background: #fff;
}

.g4 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g4th);
  object-fit: cover;
}

.g4 .list_t {
  padding: 5px 5px 0;
}

.g4 .list_t .title {
  display: flex;
  align-items: center;
  gap: 2.5px;
  width: 100%;
}

.g4 .list_t .title .text {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.g4 .list_c:hover .list_t .title .text {
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}

.g4 .list_c .list_t .dc-flex {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.9rem;
}

.g4 .list_c .list_t .dc-flex .date {
  color: var(--sub-color);
}

.g4 .list_c .list_t .dc-flex .date::after {
  content: '·';
}

.g4 .list_c .list_t .dc-flex .catett {
  color: var(--sub-color);
}

.g4 .sum {
  display: none;
}


/*=======================================*/
/*=============== list_cd ===============*/
/*=======================================*/

.cd {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.cd .list_c {
  padding: 10px 0;
  border-bottom: var(--border);
}

.cd .list_c:first-child {
  border-top: var(--border);
}

.cd .thumb_i {
  overflow: hidden;
  margin-bottom: 5px;
}

.cd .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--cdth);
  object-fit: cover;
}

.cd .list_t {
  margin-bottom: 5px;
}

.cd .list_t .title {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: bold;
  transition: 0.5s;
}

.cd .list_t .dc-flex {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.9rem;
}

.cd .list_t .dc-flex .date {
  color: var(--sub-color);
}

.cd .list_t .dc-flex .date::after {
  content: '·';
}

.cd .list_t .dc-flex .catett {
  color: var(--sub-color);
}

.cd .s-wrap .sum {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--cdsum);
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  line-height: calc(var(--line-height) - 2px);
}

.cd .list_c:hover .list_t .title {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

/*=======================================*/
/*=============== list_wz ===============*/
/*=======================================*/

.wz {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.wz .list_c {
  width: 100%;
  padding: 10px 0;
  border-bottom: var(--border);
}

.wz .list_c:first-child {
  border-top: var(--border);
}

.wz .list_c a.thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.wz .thumb_i {
  width: var(--wzwidth);
}

.wz .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--wzth);
  object-fit: cover;
}

.wz .list_t {
  width: calc((100% - var(--wzwidth)) - 10px);
  display: flex;
  flex-direction: column;
}

.wz .list_t .title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5px;
  font-weight: bold;
  transition: 0.5s;
}

.wz .list_t .dc-flex {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--sub-color);
  font-size: 0.9rem;
}

.wz .list_t .dc-flex .date::after {
  content: '·';
}

.wz .s-wrap {
  margin-top: 5px;
}

.wz .s-wrap .sum {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--wzsum);
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  line-height: calc(var(--line-height) - 2px);
}

.wz .list_c:hover .list_t .title {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

/*=======================================*/
/*=============== list_ct ===============*/
/*=======================================*/

.ct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 15px;
}

.ct .list_c {
  display: flex;
  flex-direction: column;
}

.ct .list_c:nth-child(even) {
  align-items: flex-end;
}

.ct .list_c:nth-child(even) .thumb_l {
  align-items: flex-end;
}


.ct .list_c:nth-child(odd) {
  align-items: flex-start;
}

.ct .list_c .thumb_l {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: var(--ctwidth);
}


.ct .thumb_i {
  overflow: hidden;
  width: 70%;
}

.ct .thumb_i img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
}

.ct .thumb_i:empty {
  display: none;
}

.ct .list_t {
  max-width: 100%;
  width: fit-content;
}

.ct .list_t .title {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 100%;
  font-weight: bold;
  margin-bottom: 3px;
}

.ct .list_c:nth-child(even) .list_t .title {
  justify-content: flex-end;
}

.ct .list_c:nth-child(even) .list_t .sum {
  text-align: right;
}

.ct .list_t .s-wrap .sum {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--ctsum);
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  line-height: calc(var(--line-height) - 2px);
}

.ct .list_c .date {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.9rem;
  color: var(--sub-color);
  margin: 5px 10px 0;
}

.ct .list_c .date i {
  line-height: 1 !important;
}

.ct .thumb_l>div {
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px;
  border-radius: var(--radius);
  background-color: var(--ch-left2);
}

.ct .list_c:nth-child(even) .thumb_l>div {
  background-color: var(--ch-right2);
}

.ct .list_t:before {
  content: '';
  position: absolute;
  left: -5px;
  right: auto;
  bottom: 15px;
  border-width: 5px 5px 5px 0;
  border-style: solid;
  border-color: transparent var(--ch-left2) transparent transparent;
}

.ct .list_c:nth-child(even) .list_t:before {
  left: auto;
  right: -5px;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent var(--ch-right2);
}

.ct .thumb_i:has(img[src=""]) {
  display: none;
}

/*=======================================*/
/*=============== list_mm ===============*/
/*=======================================*/

.mm {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.mm .list_c {
  width: 100%;
  padding: 15px 0;
  border-bottom: var(--border);
}

.mm .list_c:first-child {
  border-top: var(--border);
}

.mm .list_c:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mm .thumb_l {
  display: flex;
  gap: 10px;
}

.mm .m-profile {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 100%;
  background-color: #eee;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mm .list_t {
  width: calc(100% - 60px - 10px);
}

.mm .list_t .td-flex {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mm .list_t .title {
  display: none;
}

.mm .list_t .nickname {
  font-weight: bold;
}

.mm .list_t .account {
  font-size: 0.95rem;
  color: var(--sub-color);
}

.mm .list_t .date {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.mm .list_t .date::before {
  content: '·';
  font-size: 1rem;
}

.mm .list_t .s-wrap .sum {
  font-size: 0.9rem;
  line-height: calc(var(--line-height) - 2px);
}


.mm .list_t .thumb_i {
  width: 100%;
  margin-top: 5px;
}

.mm .list_t .thumb_i img {
  width: 100%;
  border-radius: var(--radius);
}


/*=======================================*/
/*=============== list_vd ===============*/
/*=======================================*/

.vd {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.vd .list_c:first-child {
  border-top: var(--border);
}

.vd .list_c {
  border-bottom: var(--border);
  overflow: hidden;
  padding: 10px 0;
}

.vd .list_c .thumb_i {
  display: none;
}

.vd .list_t .thumb_l {
  width: 100%;
}

.vd .list_t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.vd .list_t .title {
  display: flex;
  align-items: center;
  gap: 3.5px;
  font-weight: bold;
  transition: 0.5s;
}

.vd .list_c:hover .list_t .title {
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}

.vd .list_t .date {
  color: var(--sub-color);
}

.vd .youtube-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.vd .sum-text {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: calc(var(--line-height) - 2px);
}

/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.article .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article .title-wrap .title {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.article .title-wrap .data-btn {
  position: relative;
}

.data-btn .admin {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
}

.data-btn .admin>div {
  padding: 2px 5px;
  background-color: var(--sub-bg);
  border: var(--border);
}

.data-btn .admin a {
  font-size: 0.9rem;
}

.article .article-data {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  padding: 5px 0 10px;
  margin-bottom: 10px;
  border-bottom: var(--border);
}

.article-data .tag_trail {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.article-data .tag_trail span a {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--sub-color);
  transition: all 0.5s ease;
}

.article-data .tag_trail span a:hover {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: all 0.5s ease;
}

.article-data .tag_trail a:before {
  content: '#';
}

.article-data .date,
.article-data .catett a {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.article-data .date::after {
  content: '·';
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-footer .action_trail {
  padding: 5px 8px;
  background-color: #fff;
  border: var(--border);
  font-weight: bold;
}

.article .comment {
  display: none;
  margin-top: 10px;
}

.container_postbtn * {
  line-height: var(--line-height);
}


/*==========================================*/
/*========== article / font style ==========*/
/*==========================================*/

.contents_style p>a {
  font-weight: bold;
  color: var(--point-color);
}

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);
}

hr[data-ke-style] {
  height: 0 !important;
  margin: 10px auto !important;
  background: none !important;
}

hr[data-ke-style='style5'] {
  border-bottom: 1px solid var(--font-color);
}

hr[data-ke-style='style6'] {
  border-bottom: var(--border);
}

/*==========================================*/
/*=============== imageblock ===============*/
/*==========================================*/

figure.imageblock.alignCenter {
  margin: 0 auto !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;
}

/*==========================================*/
/*=============== 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: left;
  color: var(--font-color) !important;
}

blockquote[data-ke-style='style1']:before {
  content: '\f10d';
  font-size: 1.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

blockquote[data-ke-style='style1']>span {
  font-family: 'Pretendard-Regular' !important;
}

blockquote[data-ke-style='style2'] {
  padding: 10px;
  padding-right: 0;
  border-left: 5px solid var(--point-color);
  color: var(--font-color) !important;
}

blockquote[data-ke-style='style3'] {
  padding: 10px;
  border: var(--border);
  background-color: var(--sub-bg);
  color: var(--font-color) !important;
}

/*==========================================*/
/*=========== video Optimization ===========*/
/*==========================================*/

.ny iframe {
  max-width: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

figure[data-ke-type='video'][data-ke-style='alignCenter'] {
  margin-top: 0;
  margin-bottom: 0 !important;
}

figure[data-ke-type='video'] figcaption {
  color: var(--font-color);
  font-size: 1rem;
}

/* 영상 iframe과 같은 주소를 삭제*/
.hide-duplicate-link {
  display: none !important;
}

/*=========================================*/
/*========== 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"].open>.btn-toggle-moreless {
  background-color: var(--sub-bg);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: fit-content;
  color: var(--font-color);
  font-size: 1rem;
  line-height: var(--line-height);
  padding: 5px 8px;
  border: var(--border);
  background-color: var(--sub-bg);
}

div[data-ke-type='moreLess']:not(.open)>.btn-toggle-moreless::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 600;
  font-size: 0.8rem;
}

div[data-ke-type='moreLess'].open>.btn-toggle-moreless::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 600;
  font-size: 0.8rem;
}

div[data-ke-type='moreLess'].open .moreless-content {
  padding: 10px;
  margin-top: 10px;
  border: var(--border);
}

/*=========================================*/
/*=============== fileblock ===============*/
/*=========================================*/

figure.fileblock {
  width: 250px;
  height: unset;
  border: var(--border);
  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.5s;
}

figure.fileblock .image {
  position: relative;
  background: none;
  margin: 0;
  width: auto;
  height: auto;
}

figure.fileblock .image:after {
  content: "\e905";
  font-family: 'xeicon' !important;
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  background-color: var(--sub-bg);
  border-radius: 100%;
}

figure.fileblock .desc {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  width: calc(100% - 50.5px);
  padding: 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;
  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 span {
  letter-spacing: 2px;
  color: var(--point-color);
  transition: 0.5s;
}

/*=========================================*/
/*=============== codeblock ===============*/
/*========================================*/

pre[data-ke-type="codeblock"] {
  padding: 10px;
  background-color: #fff;
  border: var(--border);
}

pre[data-ke-type="codeblock"]>code {
  font-family: 'Pretendard-Regular';
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #fff;
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background-color: var(--b-color);
}

/*=========================================*/
/*=========== protected article ===========*/
/*=========================================*/

.protect {
  height: 100%;
}

.protect .article-data .catett {
  border-bottom: 0;
}

.protect .contents_style {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: calc(100% - 100px);
}

.protect .p-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.protect .p-info i {
  font-size: 1.7rem;
}

.protect .p-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.protect .p-form input[type="password"] {
  width: 120px;
  padding: 5px 10px;
  border: var(--border);
  color: var(--sub-color);
  text-align: center;
}

.protect .p-form input.submit {
  color: var(--point-color);
  font-weight: bold;
}

/*======================================*/
/*=============== taglog ===============*/
/*======================================*/

.taglog .t-con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.taglog .t-con a {
  display: block;
  width: calc((100% - 30px) / 4);
  padding: 10px 5px;
  border: var(--border);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #fff;
  text-align: center;
  transition: 0.5s;
}

.taglog a:before {
  content: '#';
}

.taglog .t-con a:hover {
  letter-spacing: 0.2px;
  font-weight: bold;
  background-color: var(--sub-bg);
  color: var(--point-color);
  transition: 0.5s;
}

/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.notice:not(:last-child) {
  margin-bottom: 10px;
}

.notice {
  border: var(--border);
  padding: 10px;
}

.notice .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: unset;
  margin-bottom: 10px;
}

.notice .title-wrap .title {
  width: calc(100% - 50px);
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.notice .title-wrap .date {
  color: var(--sub-color);
}

.notice .container_postbtn {
  display: none !important;
}

/*======================================*/
/*=============== comment ===============*/
/*======================================*/

.comment-write {
  margin-bottom: 10px;
}

.comment-write .input-write {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
}

.comment-write .input-write input {
  line-height: 15px;
  padding: 10px;
  border: var(--border);
  width: calc((100% - 10px) / 2);
}

.comment-write .text-box {
  background-color: var(--main-bg);
  border: var(--border);
  margin-bottom: 10px;
}

.comment-write .text-box textarea {
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px;
  resize: none;
}

.comment-write .secret-submit {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 10px;
}

.comment-write .secret-submit>div {
  width: 60px;
  padding: 10px;
  border: var(--border);
}

.comment-write .check {
  text-align: center;
}

.comment-write .check input[type="checkbox"] {
  display: none;
}

.comment-write .check input[type="checkbox"]+label:before {
  content: '공개';
  color: var(--font-color);
  line-height: var(--line-height);
}

.comment-write .check input[type="checkbox"]:checked+label:before {
  content: '비밀';
  font-weight: bold;
}

.comment-write .submit input[type="submit"] {
  font-size: 1rem;
  width: 100%;
  color: var(--font-color);
  font-weight: bold;
  line-height: var(--line-height);
}


.comment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comment-list>div {
  width: 100%;
  border: var(--border);
}

.comment-list .cmt-item {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.comment-list .reply-list .cmt-reply {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-top: var(--border);
}

.comment-list .reply-list .cmt-reply .wrap {
  padding-left: 5px;
  border-left: solid 3px var(--point-color);
}

.comment-list .cmt-item .wrap,
.comment-list .cmt-reply .wrap {
  width: 100%;
}

.comment-list .wrap .info {
  display: flex;
  gap: 5px;
  align-items: center;
  width: 100%;
  margin-bottom: 3px;
}

.comment-list .wrap .info .name,
.comment-list .wrap .info .name a {
  font-weight: bold;
}

.comment-list .wrap .info .date,
.comment-list .wrap .info .date a {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.comment-list .wrap .info .control {
  margin-left: auto;
}

.comment-list .wrap .info .control a i {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.tistoryProfileLayerTrigger {
  display: none !important;
}

/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/

.c_item:not(:last-child) {
  margin-bottom: 10px;
}

.cover_wrap .date:not(.cct .date) {
  display: flex;
  gap: 3px;
}

.cn1 .c-content {
  border: var(--border);
  padding: 10px;
}

.cn1 .c-content:not(:last-child) {
  margin-bottom: 10px;
}

.cn1 .c-content .title {
  margin-bottom: 3px;
  font-weight: bold;
}

.cn1 .c-content .sum {
  padding-left: 7px;
  border-left: 3px solid var(--point-color);
}

.cn1 .c-content .cn_img {
  width: 100%;
  margin: 7px 0 10px;
}

.cn1 .c-content .cn_img img {
  max-width: 100%;
}

.cn2 .c-content .cn_img {
  width: 100%;
  margin-bottom: 10px;
  border: var(--border);
  padding: 10px;
}

.cn2 .c-content .cn_img img {
  width: 100%;
}

.cn2 .c-content .list_t {
  margin-bottom: 10px;
  border: var(--border);
  padding: 10px;
}

.cn2 .c-content .list_t .title {
  margin-bottom: 3px;
  font-weight: bold;
}

.cl1 .c-content {
  border: var(--border);
}

.cl1 .n1 {
  padding-top: 0;
}

.cl1 .n1 .list_c {
  border: 0;
}

.cl1 .list_c:not(:last-child) {
  border-bottom: var(--border);
}

.cl1 .n1 .list_c:first-child {
  border-top: 0;
}

.cl2 .c-content {
  position: relative;
}

.cl2 .n2 {
  padding-top: 0;
}

.cg1 .c-content {
  grid-template-columns: repeat(var(--cg1col), 1fr);
  padding-top: 0;
}

.cg1 .thumb_i img {
  aspect-ratio: var(--cg1th);
}

.cg2 .c-content {
  grid-template-columns: repeat(var(--cg2col), 1fr);
  padding-top: 0;
}

.cg2 .thumb_i img {
  aspect-ratio: var(--cg2th);
}

.cg3 .c-content {
  grid-template-columns: repeat(var(--cg3col), 1fr);
  border-top: var(--border);
}

.cg3 .g3 {
  margin-top: 0;
  border: var(--border);
}

.cg3 .thumb_i img {
  aspect-ratio: var(--cg3th);
}

.cg4 .c-content {
  grid-template-columns: repeat(var(--cg4col), 1fr);
  border-top: var(--border);
}

.cg4 .g4 {
  margin-top: 0;
  border: var(--border);
}

.cg4 .thumb_i img {
  aspect-ratio: var(--cg4th);
}

.ccd .cd {
  margin-top: 0;
}

.ccd .cd .list_c {
  padding: 10px;
  border: var(--border);
}

.ccd .thumb_i img {
  aspect-ratio: var(--cdth);
}

.cwz .wz {
  padding: 10px;
  margin-top: 0;
  border: var(--border);
}

.cwz .wz .list_c {
  padding: 10px;
}

.cwz .wz .list_c:first-child {
  border-top: 0;
}

.cwz .wz .list_c:last-child {
  border-bottom: 0;
}

.cwz .c-content {
  padding: 0;
}

.cwz .thumb_i {
  width: var(--cwzwidth);
}

.cwz .thumb_i img {
  aspect-ratio: var(--cwzth);
}

.cwz .list_t {
  width: calc((100% - var(--cwzwidth)) - 10px);
}

.cct .ct {
  padding: 10px;
  border: var(--border);
}

.cct .list_c .thumb_l {
  width: var(--cctwidth);
}

.cct .list_t .s-wrap .sum {
  -webkit-line-clamp: var(--cctsum);
}

.cmm .mm {
  padding: 0;
  border: var(--border);
}

.cmm .mm .list_c {
  padding: 10px;
}

.cmm .mm .list_c:first-child {
  border-top: 0;
  gap: 10px;
}

.cvd .vd {
  margin-top: 0;
  gap: 10px;
}

.cvd .vd .list_c {
  border: var(--border);
  padding: 10px;
}


/*=========================================*/
/*============== media query ==============*/
/*=========================================*/


@media (max-width:767px) {

  #container {
    width: calc(100% - 40px);
    height: calc(100dvh - 40px);
    /* 지원되면 이걸 사용 */
    margin: 20px auto;
  }

  .wrapper {
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    padding: 20px;
  }

  .side {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    z-index: 999;
  }

  .side .folder-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .folder:not(:last-child) {
    margin-bottom: 0;
  }

  .white-box>div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
  }

  #content {
    width: 100%;
    height: 82%;
  }

  .g1,
  .cg1 .c-content,
  .g2,
  .cg2 .c-content,
  .g3,
  .cg3 .c-content,
  .g4,
  .cg4 .c-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .wz .thumb_i,
  .cwz .thumb_i {
    width: 40%;
  }

  .wz .list_t,
  .cwz .list_t {
    width: calc((100% - 40%) - 10px);
  }

  .wz .s-wrap .sum,
  .cwz .s-wrap .sum {
    -webkit-line-clamp: 3;
  }

  .ct .thumb_i,
  .cct .thumb_i {
    width: 80%;
  }

  .empty_con,
  .protect {
    height: calc(100% - 70px);
  }

}

.container_postbtn{display: none !important;}
.tt_box_namecard{display: none !important;}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 999;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/