@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: var(--letter);
  font-family: 'Pretendard-Regular';
  font-weight: 400;
  cursor: default;
}

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;
}

input,
textarea,
button,
::placeholder {
  border-radius: 0;
  border: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  font-size: 1rem;
  color: var(--font-color);
}

a,
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: calc(var(--letter) + 0.2px);
  transition: all 0.3s linear;
}

.tt_box_namecard,
.container_postbtn {
  display: none !important;
}



/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  margin: 100px auto 80px;
  padding: 20px;
  width: var(--container-width);
  height: var(--container-height);
  border: var(--border);
  border-radius: var(--radius);
  background-color: #fff;
  overflow: scroll;
}


#content {
  width: 100%;
  z-index: 1;
}


/*======================================*/
/*=============== header ===============*/
/*======================================*/
.personal {
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}

.profile {
  width: calc((100% - 15px) / 2);
}

.profile .p-img {
  position: relative;
  width: 100%;
  aspect-ratio: var(--profile-o);
  background-image: var(--profile);
  background-position: center center;
  background-size: cover;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

.user-d {
  width: calc((100% - 15px) / 2);
}

.user-d .option {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: var(--border);
}

.user-d .option ul {
  display: flex;
  flex-direction: column;
  gap: 5.5px;
}

.user-d .option ul li {
  display: flex;
  align-items: center;
  gap: 3.5px;
}

.user-d .option ul li:hover .option-name {
  box-shadow: 0 0 3.5px var(--point-color);
  transition: all 0.3s linear;
}

.user-d .option ul li:hover .option-data {
  letter-spacing: calc(var(--letter) + 0.2px);
  font-weight: bold;
  transition: all 0.3s linear;
}

.user-d .option ul li .option-name {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--point-color);
  background-color: var(--point-color2);
  border-radius: var(--radius);
  padding: 2px 7px;
  margin-right: 3.5px;
  box-shadow: 0 0 3.5px #ffffff00;
  transition: all 0.3s linear;
}

.user-d .option ul li .option-data {
  transition: all 0.3s linear;
}

.user-desc {
  padding: 0 5px;
}

.user-desc .highlight {
  color: var(--point-color);
  font-size: 0.9rem;
  font-weight: bold;
}



/*========================================*/
/*=============== category ===============*/
/*========================================*/

.came {
  display: flex;
  align-items: center;
  margin: 10px 0;
  border-top: var(--border);
  border-bottom: var(--border);
}

.search input[type="text"] {
  width: 40px;
}

.search input[type="text"]::placeholder {
  transition: all 0.3s linear;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: stretch;
  padding: 10px 5px 10px 10px;
}

.menu>ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-list li .menu-list>div {
  transition: all 0.3s linear;
}

.menu-list li:hover a {
  color: var(--point-color);
  transition: all 0.3s linear;
}

.menu-list div.search input::placeholder {
  background-color: #ffffff;
  font-size: 1rem !important;
}

.menu-list div.search:hover input::placeholder {
  color: var(--point-color);
  transition: all 0.3s linear;
}

.link {
  position: relative;
}

.link .right .icon i {
  font-size: 11px;
  transform: rotate(135deg);
}

.link .link-list {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  right: -10px;
  z-index: 999;
}

.link .link-list .link-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  width: 100px;
  background-color: var(--sub-bg);
  border: var(--border);
  border-radius: var(--radius);
  padding: 10px 8px;
  transition: all 0.3s linear;
}


.link .link-list .link-flex li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.link .link-list .link-flex li a {
  transition: all 0.3s linear;
}

.link .link-list .link-flex li .circle {
  width: 7px;
  height: 7px;
  border-radius: var(--radius);
  background-color: var(--font-color);
  opacity: 0.5;
  transition: all 0.3s linear;
  position: relative;
  bottom: 1px;
}

.link .link-list .link-flex:hover {
  background-color: var(--point-color2);
  border: 1px solid var(--point-color2);
  box-shadow: 0 0 3.5px var(--point-color);
  transition: all 0.3s linear;
}

.link .link-list .link-flex:hover a {
  color: var(--point-color);
  transition: all 0.3s linear;
}

.link .link-list .link-flex:hover .circle {
  background: var(--point-color) !important;
  opacity: 0.5;
  transition: all 0.3s linear;
}

.link .link-list .link-flex li:hover a {
  color: var(--point-color);
  font-weight: bold;
  letter-spacing: calc(var(--letter) + 0.2px);
  transition: all 0.3s linear;
}

.link .link-list .link-flex li:hover .circle {
  opacity: 1;
  transition: all 0.3s linear;
}



.cate {
  position: relative;
}

.cate .cate-tt {
  width: 75px;
  padding: 10px;
  text-align: center;
  border-right: var(--border);
  font-weight: bold;
  transition: all 0.3s linear;
}


.cate .cate-tt:hover {
  letter-spacing: calc(var(--letter) + 0.2px);
  color: var(--point-color);
  transition: all 0.3s linear;
}

.tt_category>li {
  display: flex;
  flex-direction: column;
}

.tt_category {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 999;
}

.tt_category>li {
  padding: 10px 8px;
  width: 100px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--sub-bg);
  transition: all 0.3s linear;
}

.tt_category:hover>li {
  background-color: var(--point-color2);
  border: 1px solid var(--point-color2);
  box-shadow: 0 0 3.5px var(--point-color);
  transition: all 0.3s linear;
}

.tt_category:hover .icn>.cate-circle {
  background: var(--point-color) !important;
  opacity: 0.5;
  transition: all 0.3s linear;
}

.tt_category:hover * {
  color: var(--point-color) !important;
}

.link_tit {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  width: 100%;
  padding: 0 0 5px;
  border-radius: var(--radius);
  transition: all 0.3s linear;
}

.link_tit>.c_cnt,
.category_list .c_cnt {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}

.category_list>li {
  width: 100%;
  transition: all 0.3s linear;
}

.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>a>.cname {
  transition: color 0.3s;
}

.category_list>li>.has-sub>a>.cname.active {
  color: var(--point-color);
  font-weight: bold;
}

.category_list>li>.has-sub>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  padding-left: calc((var(--line-height) - 7px) / 2);
  transition: all 0.3s linear;
}

.category_list>li>.has-sub>.icn>.cate-circle {
  width: 7px;
  height: 7px;
  background-color: var(--font-color);
  opacity: 0.5;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.category_list>li>.has-sub>.icn.active .cate-circle {
  background-color: var(--point-color);
  transition: background-color 0.3s;
}

.sub_category_list {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  gap: 5px;
}

.sub_category_list>li {
  width: 100%;
  padding: 2px 7px;
  border-radius: var(--radius);
  background-color: #fff;
}

.sub_category_list>li:first-child {
  margin-top: 5px;
}

.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: all 0.3s linear;
}

.link_tit:hover>.cname,
.category_list>li:hover>a>.cname,
.category_list>li:hover>.has-sub>a>.cname {
  letter-spacing: calc(var(--letter) + 0.2px);
  transition: all 0.3s linear;
  color: var(--point-color);
  font-weight: bold;
}

.category_list>li:hover>.has-sub>.icn>.cate-circle {
  background-color: var(--point-color);
  opacity: 1;
  transition: all 0.3s linear;
}

.sub_category_list>li>a>.cname {
  color: var(--sub-color) !important;
  font-size: 0.9rem;
  transition: all 0.3s linear;
}

.sub_category_list>li:hover a>.cname {
  font-weight: bold;
  letter-spacing: calc(var(--letter) + 0.2px);
  transition: all 0.3s linear;
}

.category_list i.xi-new-o {
  display: none;
}

.category_list>li.selected>a>.cname,
.category_list>li.selected .has-sub .cname,
.sub_category_list .selected .cname {
  letter-spacing: calc(var(--letter) + 0.2px);
  color: var(--point-color);
  font-weight: bold;
}



/*======================================*/
/*=============== paging ===============*/
/*======================================*/

.paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
}

.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: 10px;
  background-color: var(--point-color2);
  border-radius: var(--radius);
}

.confirm .c_title span {
  color: var(--point-color);
  font-weight: bold;
}

.confirm .c-desc {
  font-size: 0.9rem;
  color: var(--point-color);
}

#content:has(.empty_con) .list_w {
  display: none;
}

.empty_con {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(var(--container-width) - 100px);
}

.empty_con span {
  font-weight: bold;
}

#list_n1> :not(.n1),
#list_n2> :not(.n2),

#list_g1> :not(.g1),
#list_g2> :not(.g2),

#list_wz> :not(.wz),
#list_ac> :not(.ac),
#list_mm> :not(.mm),

#list_ct> :not(.ct),
#list_tw> :not(.tw),
#list_v> :not(.vd) {
  display: none;
}

.list_w .list_t .title .xi-lock {
  margin-left: 2px;
  color: var(--sub-color);
}

.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 {
  display: flex;
  flex-direction: column;
  margin: 10px 0 3px;
  gap: 15px;
}

.n1 .list_c {
  transition: all 0.3s linear;
}

.n1 .list_t {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.n1 .list_t .title {
  display: flex;
  align-items: center;
  gap: 2px;
  width: calc(100% - 50px);
}

.n1 .list_t .title>span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s linear;
  font-weight: bold;
}

.n1 .list_c:hover .list_t .title span {
  letter-spacing: calc(var(--letter) + 0.2px);
  color: var(--point-color);
  font-weight: bold;
  transition: all 0.3s linear;
}

.n1 .list_c .list_t .date {
  width: 40px;
  padding: 3px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sub-color);
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

.n1 .thumb_i,
.n1 .sum {
  display: none;
}



/*=======================================*/
/*=============== list_g1 ===============*/
/*=======================================*/

.g1 {
  display: grid;
  grid-template-columns: repeat(var(--g1col), 1fr);
  gap: 10px;
  padding-top: 10px;
}

.g1 a.thumb_l {
  display: block;
}

.g1 .list_c {
  position: relative;
  border-radius: var(--radius);
  transition: all 0.3s linear;
  overflow: hidden;
}

.g1 .thumb_i {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.g1 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g1th);
  object-fit: cover;
  transition: all 0.3s linear;
}

.g1 .list_t {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
  background-color: #ffffff99;
}

.g1 .list_t .title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.g1 .list_c .sum {
  display: none;
}

.g1 .list_c:hover .thumb_i img {
  transform: scale(1.05);
  transition: all 0.3s linear;
}



/*=======================================*/
/*=============== list_g2 ===============*/
/*=======================================*/

.g2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 10px;
}

.g2 .list_c {
  width: 100%;
  overflow: hidden;
  transition: all 0.3s linear;
}

.g2 .thumb_i {
  margin-bottom: 5px;
  overflow: hidden;
  border-radius: var(--radius);
}

.g2 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g2th);
  object-fit: cover;
  transition: all 0.3s linear;
}

.g2 .list_t {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s linear;
}

.g2 .list_t .title {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(100% - 50px);
  transition: all 0.3s linear;
}

.g2 .list_c .list_t .date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 3px;
  font-size: 0.9rem;
  color: var(--sub-color);
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

.g2 .list_c:hover .thumb_i img {
  transform: scale(1.05);
  transition: all 0.3s linear;
}

.g2 .list_c:hover .list_t .title {
  letter-spacing: calc(var(--letter) + 0.2px);
  color: var(--point-color);
  transition: all 0.3s linear;
}

.g2 .sum {
  display: none;
}



/*=======================================*/
/*=============== list_wz ===============*/
/*=======================================*/

.wz {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.wz .list_c a.thumb_l {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wz .thumb_i {
  width: var(--wzwidth);
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.wz .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--wzth);
  object-fit: cover;
  transition: all 0.3s linear;
}

.wz .list_t {
  width: calc((100% - var(--wzwidth)) - 10px);
  display: flex;
  flex-direction: column;
}

.wz .list_t .title {
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: all 0.3s linear;
}

.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: '·';
  padding-left: 2.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);
  margin-top: 5px;
}

.wz .list_c:hover .list_t .title {
  letter-spacing: calc(var(--letter) + 0.2px);
  color: var(--point-color);
  transition: all 0.3s linear;
}

.wz .list_c:hover .thumb_i img {
  transform: scale(1.05);
  transition: all 0.3s linear;
}



/*========================================*/
/*=============== list_ac ================*/
/*========================================*/

.ac {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 3px;
}

.ac .list_t {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ac .list_t .circle {
  width: 7px;
  height: 7px;
  background-color: var(--point-color);
  opacity: 0.5;
  border-radius: 100%;
  transition: all 0.3s linear;
  position: relative;
  bottom: 1px;
}

.ac .list_t .title {
  font-weight: bold;
  transition: all 0.3s linear;
}

.ac .accr {
  display: none;
  margin-left: 12px;
}

.ac .thumb_i {
  margin: 10px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.ac .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--acth);
  object-fit: cover;
}

.ac .s-wrap .sum {
  font-size: 0.95rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--acsum);
  -webkit-box-orient: vertical;
}

.ac .dc-flex {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.ac .dc-flex .date,
.ac .dc-flex .catett {
  padding: 2px 7px;
  font-size: 0.9rem;
  color: var(--sub-color);
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

.ac .dc-flex a {
  margin-left: auto;
  padding: 2px 7px;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--point-color);
  background-color: var(--point-color2);
  border-radius: var(--radius);
  transition: all 0.3s linear;
}

.ac .dc-flex a:hover {
  box-shadow: 0 0 3.5px var(--point-color);
  transition: all 0.3s linear;
}

.ac .list_t:hover .circle,
.ac .list_t.active .circle {
  opacity: 1;
  transition: all 0.3s linear;
}

.ac .list_t:hover .title,
.ac .list_t.active .title {
  letter-spacing: calc(var(--letter) + 0.2px);
  color: var(--point-color);
  transition: all 0.3s linear;
}



/*=======================================*/
/*=============== list_mm ===============*/
/*=======================================*/

.mm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.mm .thumb_i {
  display: none;
}

.mm .list_t .td-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mm .list_t .td-flex .title {
  font-weight: bold;
  color: var(--point-color);
  transition: all 0.3s linear;
}

.mm .list_t .td-flex .date {
  padding: 2px 7px;
  font-size: 0.9rem;
  color: var(--sub-color);
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

.mm .s-wrap {
  margin-top: 2.5px;
}

.mm .s-wrap .sum {
  font-size: 0.9rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--mmsum);
  -webkit-box-orient: vertical;
}

.mm .list_c:hover .title {
  letter-spacing: calc(var(--letter) + 0.2px);
  transition: all 0.3s linear;
}



/*=======================================*/
/*=============== list_ct ===============*/
/*=======================================*/

.ct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

.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: 80%;
}

.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: none;
  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: 3.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_tw ===============*/
/*=======================================*/

.tw {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 15px;
}

.tw .list_c {
  width: 100%;
}

.tw .thumb_l {
  display: flex;
  gap: 10px;
}

.tw .m-profile {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 100%;
  background-color: var(--sub-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.tw .list_t {
  width: calc(100% - 60px - 10px);
}

.tw .list_t .td-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
}

.tw .list_t .title {
  color: var(--point-color);
  font-weight: bold;
}

.tw .list_t .title i {
  display: none;
}

.tw .list_t .date {
  display: none;
  padding: 2px 7px;
  font-size: 0.9rem;
  color: var(--sub-color);
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

.tw .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);
}

.tw .list_t .thumb_i {
  width: 100%;
  margin-top: 5px;
}

.tw .list_t .thumb_i img {
  width: 100%;
  border-radius: var(--radius);
}



/*=======================================*/
/*=============== list_vd ===============*/
/*=======================================*/

.vd {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.vd .list_c {
  overflow: hidden;
}

.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: 5px;
}

.vd .list_t .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
  font-weight: bold;
  color: var(--point-color);
}

.vd .list_t .title i {
  display: none;
}

.vd .list_t .date {
  color: var(--sub-color);
}

.vd .youtube-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.vd .sum-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
  font-size: 0.9rem;
  line-height: calc(var(--line-height) - 2px);
  display: none;
}



/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.article .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: var(--point-color2);
  border-radius: var(--radius);
  color: var(--point-color);
}

.article .title-wrap .title {
  font-weight: bold;
}

.article .title-wrap .date {
  font-size: 0.9rem;
}

.article .article-data {
  display: flex;
  flex-wrap: wrap;
}

.article-data .action_trail,
.article-data .tag_trail .t-icon,
.article-data .admin .a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: var(--radius);
  background-color: var(--point-color2);
  color: var(--point-color);
}

.article-data .action_trail {
  margin-right: 5px;
}

.article-data .action_trail a>i {
  color: var(--point-color);
}

.article-data .tag_trail {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-data .admin {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-data .tag_trail .t-item,
.article-data .admin .a-item {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 0;
  overflow: hidden;
  transition: width 0.4s ease;
}

.article-data .tag_trail .t-item a {
  display: block;
}

.article-data .tag_trail .t-item a,
.article-data .admin .a-item a {
  height: 35px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.article-data .tag_trail .t-item a:last-child {
  margin-right: 5px;
}

.article-data .tag_trail a:before {
  content: '#';
}

.article .comment {
  display: none;
  margin-top: 10px;
}



/*==========================================*/
/*========== article / font style ==========*/
/*==========================================*/

.article .contents_style {
  margin-bottom: 10px;
}

.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;
  color: var(--sub-color);
}

/*==========================================*/
/*=============== 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;
}

blockquote[data-ke-style='style1']>span {
  font-family: 'Pretendard-Regular' !important;
  line-height: var(--line-height);
}

blockquote[data-ke-style='style2'] {
  padding: 5px 8px;
  padding-right: 0;
  border-left: 5px solid var(--point-color);
  color: var(--font-color) !important;
  line-height: var(--line-height);
}

blockquote[data-ke-style='style3'] {
  padding: 8px;
  border: 0;
  border-radius: var(--radius);
  background-color: var(--sub-bg);
  color: var(--font-color) !important;
  line-height: var(--line-height);
}

/*==========================================*/
/*=========== 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;
}

.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 div.mark {
  height: auto !important;
}

figure.imageslideblock div.mark span {
  margin: 13px 1px 5px !important;
}

figure.imageslideblock figcaption {
  color: var(--sub-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;
  font-size: 1rem;
  line-height: var(--line-height);
  padding: 5px 8px;
  background-color: var(--point-color2);
  font-weight: bold;
  border-radius: var(--radius);
}

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.7rem;
}

div[data-ke-type='moreLess'].open>.btn-toggle-moreless {
  background-color: var(--sub-bg);
}

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.7rem;
}

div[data-ke-type='moreLess'].open .moreless-content {
  padding: 8px;
  margin-top: 5px;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

/*=========================================*/
/*=============== fileblock ===============*/
/*=========================================*/

figure.fileblock {
  width: 250px;
  height: unset;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

figure.fileblock a {
  position: relative;
  height: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
}

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: all 0.3s linear;
}

/*=========================================*/
/*=============== codeblock ===============*/
/*========================================*/

pre[data-ke-type="codeblock"] {
  padding: 8px;
  background-color: #fff;
  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: #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 .contents_style {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: calc(var(--container-width) - 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 8px;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  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;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s linear;
}

.taglog a:before {
  content: '#';
}

.taglog .t-con a:hover {
  letter-spacing: calc(var(--letter) + 0.2px);
  font-weight: bold;
  color: var(--point-color);
  background-color: var(--point-color2);
  box-shadow: 0 0 3.5px var(--point-color);
  transition: all 0.3s linear;
}



/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.notice:not(:last-child) {
  margin-bottom: 10px;
}

.notice {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.notice .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.notice .title-wrap .title {
  display: flex;
  gap: 5px;
  align-items: center;
  font-weight: bold;
  color: var(--point-color);
}

.notice .title-wrap .title .circle {
  width: 7px;
  height: 7px;
  background-color: var(--point-color);
  border-radius: var(--radius);
  position: relative;
  bottom: 1px;
}

.notice .date {
  padding: 2px 7px;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  color: var(--sub-color);
  font-size: 0.9rem;
}

.notice .contents_style {
  margin-left: 12px;
}

.notice .container_postbtn {
  display: none !important;
}



/*======================================*/
/*=============== comment ===============*/
/*======================================*/

.comment-write {
  margin-bottom: 25px;
}

.comment-write .input-write {
  display: flex;
  gap: 5px;
  align-items: center;
  padding-bottom: 10px;
}

.comment-write .input-write input {
  width: calc((100% - 5px) / 2);
  padding: 10px;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
}

.comment-write .text-box {
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.comment-write .text-box textarea {
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px;
  resize: none;
}

.comment-write .input-write input::placeholder,
.comment-write .text-box textarea::placeholder {
  color: var(--sub-color);
}

.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-radius: var(--radius);
}

.comment-write .check {
  text-align: center;
  background-color: var(--point-color2);
  color: #ffffff;
}

.comment-write .check:has(input[type="checkbox"]:checked) {
  color: var(--point-color);
}

.comment-write .check input[type="checkbox"] {
  display: none;
}

.comment-write .check input[type="checkbox"]+label:before {
  content: 'Public';
  line-height: var(--line-height);
  font-weight: bold;
}

.comment-write .check input[type="checkbox"]:checked+label:before {
  content: 'Secret';
  font-weight: bold;
}

.comment-write .submit {
  background-color: var(--point-color2);
}

.comment-write .submit input[type="submit"] {
  font-size: 1rem;
  width: 100%;
  color: var(--point-color);
  font-weight: bold;
  line-height: var(--line-height);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-list>div {
  width: 100%;
}

.comment-list .cmt-item {
  display: flex;
  gap: 10px;
}

.comment-list .reply-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  margin-left: 15px;
}


.comment-list .reply-list .cmt-reply {
  display: flex;
  gap: 10px;
}

.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;
  line-height: 1;
}

.comment-list .wrap .info .circle {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background-color: var(--point-color);
  border-radius: 100%;
  position: relative;
  bottom: 1px;
}

.comment-list .reply-list .cmt-reply .circle {
  background-color: var(--sub-color);
}

.comment-list>div>.cmt-item .name,
.comment-list>div>.cmt-item .name a {
  color: var(--point-color);
}

.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 {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.comment-list .wrap .desc i {
  font-size: 0.85rem;
  color: var(--sub-color);
}

.tistoryProfileLayerTrigger {
  display: none !important;
}



/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/

.c_item:not(:last-child) {
  margin-bottom: 15px;
}

.c_item .sum:not(.cvd .sum) {
  white-space: pre-line;
}

.cn1 .c-content:not(:last-child) {
  margin-bottom: 10px;
}

.cn1 .c-content .title,
.cn2 .c-content .title,
.c_item .title-wrap {
  padding: 10px;
  color: var(--point-color);
  font-weight: bold;
  background-color: var(--point-color2);
  border-radius: var(--radius);
}

.cn1 .c-content .sum {
  margin-top: 10px;
}

.cn1 .c-content .cn_img {
  width: 100%;
}

.cn1 .c-content .cn_img img {
  max-width: 100%;
  margin-top: 10px;
}


.cg1 .c-content {
  grid-template-columns: repeat(var(--cg1col), 1fr);
}

.cg1 .thumb_i img {
  aspect-ratio: var(--cg1th);
}

.cg2 .thumb_i img {
  aspect-ratio: var(--cg2th);
}

.cwz .thumb_i {
  width: var(--cwzwidth);
}

.cwz .thumb_i img {
  aspect-ratio: var(--cwzth);
}

.cwz .list_t {
  width: calc((100% - var(--cwzwidth)) - 10px);
}

.cwz .s-wrap .sum {
  -webkit-line-clamp: var(--cwzsum);
}

.cac .dc-flex .catett {
  display: none;
}

.cac .dc-flex a {
  margin-left: 0;
}

.cct .list_c .thumb_l {
  width: var(--cctwidth);
}

.cct .list_t .s-wrap .sum {
  -webkit-line-clamp: var(--cctsum);
}

.cvd .vd {
  gap: 10px;
}



/*=========================================*/
/*============== media query ==============*/
/*=========================================*/

@media (max-width:767px) {

  #container {
    width: calc(100% - 40px);
    height: calc(100dvh - 40px);
    margin: 20px auto;
  }

  .g1 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .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%;
  }

}

/* - - - BGM 플레이어 관련 - - - */
.mm-bgm{
  position: fixed;
  bottom: 15px; /* 우측상단 원하면 bottom을 top 으로 변경 */
  right: 15px;
  z-index: 9999; /* 맨위로 */
  border: none;
}
/* - - - BGM 플레이어 끝 - - -*/

/* Tiny Bunny - https://www.cursors-4u.com/cursor/tiny-bunny */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/tiny-bunny-60ca4aed-32.webp') 32 32, auto !important;
}
/* End www.Cursors-4U.com Code */

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 999;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/