@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;
  line-height: var(--line-height) !important;
}

b{
  font-weight: bold;
}

.mobile {
  display: none;
}

#l-side .m-btn {
  display: none;
}

/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  margin: 120px auto;
  width: var(--skin-width);
  height: var(--skin-height);
  border: var(--border);
  border-radius: var(--radius);
  background-color: #fff;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
}

#l-side {
  width: var(--side-width);
  height: 100%;
  background-color: var(--sub-bg-light);
  border-right: var(--border);
}

#content {
  position: relative;
  width: calc(100% - var(--side-width));
  height: 100%;
  overflow-y: auto;
}

/*=========================================*/
/*=============== left-side ===============*/
/*=========================================*/

#l-side .top {
  width: 100%;
  height: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: var(--border);
}

#l-side .top .circle {
  display: flex;
  gap: 5px;
}

.side-con {
  width: 100%;
  height: calc(100% - 40px);
  overflow-y: scroll;
  padding: 10px;
}

.side-con .profile {
  margin-bottom: 10px;
}

.side-con .profile a {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 5px;
  border: var(--border);
  border-radius: var(--radius);
}

.side-con .profile .info .na-flex {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
}

.side-con .profile .info .na-flex .nick {
  font-weight: bold;
}

.side-con .profile .info .na-flex .account {
  color: var(--sub-color);
}

.side-con .profile .info .hl {
  color: var(--point-color);
  font-weight: bold;
  font-size: 0.95rem;
}

.search {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  padding-left: 10px;
  margin-bottom: 10px;
  background-color: var(--sub-bg-deep);
  border-radius: var(--radius);
}

.search input {
  width: 85%;
  line-height: 1.0;
  margin-top: 0.5px;
}

.cate,
.menu {
  margin-bottom: 10px;
}

.cate .cate-name,
.menu .menu-name,
.link .link-name {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--sub-color);
  font-weight: bold;
  margin-bottom: 5px;
}

.menu ul,
.link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: 13px;
}

.menu ul>li,
.link ul>li {
  width: 100%;
  transition: 0.5s;
}

.menu ul>li>a,
.link ul>li>a {
  display: inline-block;
  width: 100%;
}

.menu ul>li:hover>a,
.link ul>li:hover>a {
  font-weight: bold;
  letter-spacing: 0.2px;
  color: var(--point-color) !important;
  transition: 0.5s;
}

/*========================================*/
/*=============== category ===============*/
/*========================================*/

.tt_category>li {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: 13px;
}

.link_tit {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  width: 100%;
  transition: 0.5s;
}

.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: 0.5s;
}

.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;
  gap: 5px;
  padding: 5px 10px;
  margin-top: 5px;
  background-color: var(--sub-bg-deep);
  border-radius: var(--radius);
}

.sub_category_list>li {
  width: 100%;
}

.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.2px;
  font-weight: bold;
  color: var(--point-color) !important;
  transition: 0.5s;
}

.category_list i.xi-new-o {
  display: none;
}

/*======================================*/
/*=============== paging ===============*/
/*======================================*/

#content .paging {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 40px;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.confirm {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 10px;
  border-bottom: var(--border);
}

.confirm .c_title .bold {
  font-weight: 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% - 100px);
  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 {
  padding: 10px;
  height: calc(100% - 40px);
  overflow-y: scroll;
}

.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 .list_c {
  transition: 0.5s;
}

.n1 .list_c:not(:last-child) {
  border-bottom: var(--border);
}

.n1 .list_t {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  padding: 15px 10px;
}

.n1 .list_c:first-child .list_t {
  padding-top: 10px;
}

.n1 .list_c:last-child .list_t {
  padding-bottom: 10px;
}

.n1 .list_t .title {
  display: flex;
  align-items: center;
  gap: 3px;
  width: calc(100% - 80px);
}

.n1 .list_t .title>span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  transition: 0.5s;
}

.n1 .list_c:hover .list_t .title span {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

.n1 .list_c .list_t .date {
  color: var(--sub-color);
}

.n1 .thumb_i,
.n1 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_n2 ===============*/
/*=======================================*/

.n2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.n2 .list_c {
  width: calc((100% - 10px) / 2);
  padding: 15.5px 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: #fff;
  transition: 0.5s;
}

.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: 0.5s;
}

.n2 .list_c:hover .list_t .title span {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

.n2 .list_c .list_t .dc-flex {
  display: flex;
  align-items: center;
  gap: 3px;
}

.n2 .list_c .list_t .dc-flex .date {
  color: var(--sub-color);
}

.n2 .list_c .list_t .dc-flex .date::after {
  content: '·';
  margin-left: 3px;
}

.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: 10px;
}

.g1 .list_c {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border: var(--border);
  border-radius: var(--radius);
}

.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-image: linear-gradient(to bottom, #00000000, #00000088);
}

.g1 .list_c .list_t .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  color: #fff;
}

.g1 .xi-lock,
.g1 .xi-new-o,
.g1 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_g2 ===============*/
/*=======================================*/

.g2 {
  display: grid;
  grid-template-columns: repeat(var(--g2col), 1fr);
  gap: 10px;
}


.g2 .list_c {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.g2 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g2th);
  object-fit: cover;
  border-bottom: var(--border);
}

.g2 .list_t {
  padding: 10px;
  text-align: center;
}

.g2 .list_t .title {
  display: flex;
  gap: 2.5px;
  justify-content: center;
  width: 100%;
}

.g2 .list_t .title .text {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.g2 .list_c:hover .list_t .title .text {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

.g2 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_g3 ===============*/
/*=======================================*/

.g3 {
  display: grid;
  grid-template-columns: repeat(var(--g3col), 1fr);
  gap: 10px;
}

.g3 .list_c {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 10px;
}

.g3 .thumb_i {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.g3 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g3th);
  object-fit: cover;
}

.g3 .list_t {
  margin-top: 10px;
  text-align: center;
}

.g3 .list_t .title {
  display: flex;
  gap: 2.5px;
  justify-content: center;
  width: 90%;
  margin: 0 5%;
}

.g3 .list_t .title .text {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.g3 .list_c:hover .list_t .title .text {
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}

.g3 .list_c .list_t .date {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.g3 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_g4 ===============*/
/*=======================================*/

.g4 {
  display: grid;
  grid-template-columns: repeat(var(--g4col), 1fr);
  gap: 10px;
}

.g4 .list_c {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 10px;
}

.g4 .list_c .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.g4 .thumb_i {
  width: 33%;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
}

.g4 .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--g4th);
  object-fit: cover;
}

.g4 .list_t {
  width: calc(66% - 10px);
}

.g4 .list_t .title {
  display: inline;
}

.g4 .list_t .title .text {
  display: inline;
  font-weight: bold;
  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 .date {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.g4 .sum {
  display: none;
}

/*=======================================*/
/*=============== list_cd ===============*/
/*=======================================*/

.cd {
  display: grid;
  grid-template-columns: repeat(var(--cdcol), 1fr);
  gap: 10px;
}

.cd .list_c {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
}

.cd .list_c .thumb_l {
  display: flex;
  flex-direction: column;
}

.cd .thumb_i {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 10px;
}

.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;
  color: var(--sub-color);
  font-size: 0.9rem;
}

.cd .list_t .dc-flex .date::after {
  content: '·';
}

.cd .s-wrap {
  padding-left: 7px;
  border-left: 3px solid var(--point-color);
}

.cd .s-wrap .sum {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--cdsum);
  -webkit-box-orient: vertical;
  transition: 0.5s;
}

.cd .list_c:hover .list_t .title {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

.cd .list_c:hover .s-wrap .sum {
  color: var(--sub-color);
  transition: 0.5s;
}

/*=======================================*/
/*=============== list_wz ===============*/
/*=======================================*/

.wz {
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}

.wz .list_c {
  width: 100%;
  padding: 15px 10px 15px 0;
  border-bottom: var(--border);
}

.wz .list_c:first-child {
  padding-top: 5px;
}

.wz .list_c:last-child {
  padding-bottom: 5px;
  border-bottom: 0;
}

.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);
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.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: 3px;
  padding-left: 7px;
  border-left: 3px solid var(--point-color);
}

.wz .s-wrap .sum {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--wzsum);
  -webkit-box-orient: vertical;
  transition: 0.5s;
}

.wz .list_c:hover .list_t .title {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

.wz .list_c:hover .s-wrap .sum {
  color: var(--sub-color);
  transition: 0.5s;
}

/*=======================================*/
/*=============== list_ct ===============*/
/*=======================================*/

.ct {
  display: flex;
  flex-direction: column;
  gap: 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: 10px;
  width: var(--ctwidth);
}

.ct .list_c .thumb_i:hover~.list_t .title,
.ct .list_c .list_t:hover .title {
  letter-spacing: 0.2px;
  color: var(--point-color);
  transition: 0.5s;
}

.ct .list_c .thumb_i:hover~.list_t .s-wrap .sum,
.ct .list_c .list_t:hover .s-wrap .sum {
  color: var(--sub-color);
  transition: 0.5s;
}

.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;
  transition: 0.5s;
}

.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;
  transition: 0.5s;
}

.ct .list_c .date {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.9rem;
  color: var(--sub-color);
  margin: 5px 15px 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(--ct-color1);
}

.ct .list_c:nth-child(even) .thumb_l>div {
  background-color: var(--ct-color2);
}

.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(--ct-color1) 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(--ct-color2);
}

.ct .thumb_i:has(img[src=""]) {
  display: none;
}

/*=======================================*/
/*=============== list_mm ===============*/
/*=======================================*/

.mm {
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}

.mm .list_c {
  width: 100%;
  padding: 15px 10px 15px 0;
  border-bottom: var(--border);
}

.mm .list_c:first-child {
  padding-top: 5px;
}

.mm .list_c:last-child {
  padding-bottom: 5px;
  border-bottom: 0;
}

.mm .thumb_l {
  display: flex;
  gap: 10px;
}

.mm .thumb_i {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
}

.mm .thumb_i img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.mm .list_t {
  width: calc(100% - 50px - 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;
  transition: 0.5s;
}

.mm .list_t .account {
  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_c:hover .list_t .nickname {
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}

/*=======================================*/
/*=============== list_vd ===============*/
/*=======================================*/

.vd {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vd .list_c {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.vd .list_c .thumb_i {
  display: none;
}

.vd .list_t .thumb_l {
  width: 100%;
}

.vd .list_t {
  padding: 10px;
}

.vd .list_t .title {
  display: flex;
  align-items: center;
  gap: 2.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 .s-wrap {
  border-top: var(--border);
}

.vd .youtube-player {
  padding: 10px;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.vd .sum-text {
  padding: 10px;
  border-top: var(--border);
}

/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.article:has(.article-scroll) {
  width: 100%;
  height: 100%;
}

.article .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background-color: #fff;
  border-bottom: var(--border);
  z-index: 10;
}

.article .title-wrap .title {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.article .title-wrap .data-btn {
  position: relative;
}

.article .title-wrap .data-btn .data-con {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: 150px;
  height: auto;
  background-color: var(--sub-bg-light);
  border: var(--border);
  border-radius: var(--radius);
  z-index: 10;
  overflow: hidden;
}

.data-con i {
  color: var(--sub-color);
}

.data-con>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-bottom: var(--border);
  background-color: #fff;
}

.data-con>div>a{
  width: calc(100% - 15px);
}

.data-con .tag_trail span a {
  display: inline-block;
  padding-right: 3px;
}

.data-con .tag_trail a:before {
  content: '#';
}

.data-con .admin-ed {
  margin-top: 8px;
  border-top: var(--border);
}

.data-con .admin-del {
  border-bottom: 0;
}

.article .article-scroll {
  width: 100%;
  height: calc(100% - 40px);
  overflow-y: auto;
}

.contents_style {
  padding: 10px;
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 10px;
}

.article-footer .action_trail {
  padding: 5px 8px;
  background-color: #fff;
  border: var(--border);
  border-radius: var(--radius);
  font-weight: bold;
}

.container_postbtn * {
  line-height: var(--line-height);
}

.article .tt-box-total {
  display: none;
}

.article .tt-comment-cont {
  display: none;
}

.article .tt-comment-cont.dp_flex {
  display: flex;
}

.article .tt-comment-cont>form {
  padding: 0 10px 10px !important;
}

.article .tt-area-write {
  margin-bottom: 0 !important;
  margin-top: 0;
  padding: 0;
}

/*==========================================*/
/*========== 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;
}

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);
}

blockquote[data-ke-style='style3'] {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--sub-bg);
}

/*==========================================*/
/*=========== 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-light);
}

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);
  border-radius: var(--radius);
  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);
  border-radius: var(--radius);
}

/*=========================================*/
/*=============== fileblock ===============*/
/*=========================================*/

figure.fileblock {
  width: 250px;
  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.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-deep);
  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);
  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 .data-con .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;
}

.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);
  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 .title-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  padding: 0 10px;
  background-color: #fff;
  border-bottom: var(--border);
}

.taglog .title-wrap .bold {
  font-weight: bold;
}

.taglog .title-wrap .count {
  color: var(--sub-color);
}

.taglog .title-wrap .count::before {
  content: '+';
  margin-right: 1.5px;
}

.taglog .t-con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.taglog .t-con a {
  display: block;
  width: calc((100% - 50px) / 6);
  padding: 10px 5px;
  border: var(--border);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: var(--radius);
  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-light);
  color: var(--point-color);
  transition: 0.5s;
}

/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.n-title-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  padding: 0 10px;
  border-bottom: var(--border);
}

.n-title-wrap .bold {
  font-weight: bold;
}

.n-title-wrap .count {
  color: var(--sub-color);
}

.n-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100% - 40px);
  padding: 10px;
  overflow-y: auto;
}

.notice {
  border: var(--border);
  border-radius: var(--radius);
  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 .contents_style {
  padding: 0;
}

.notice .container_postbtn {
  display: none !important;
}

.notice:hover .title-wrap .title {
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}

/*======================================*/
/*=============== comment ===============*/
/*======================================*/

.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;
}

.article .tt-comment-cont {
  padding: 0;
}

.tt-box-total {
  width: calc(var(--skin-width) - var(--side-width) - 2px);
  height: 40px;
  padding: 0 10px !important;
  border-top-right-radius: var(--radius);
  background-color: #fff;
  border-bottom: var(--border) !important;
  display: flex;
  align-items: center;
  gap: 3px;
  position: fixed;
  z-index: 10;
}

.tt-box-total .tt_txt_g {
  font-weight: bold;
}

.tt-box-total .tt_num_g {
  padding: 0 !important;
  color: var(--sub-color) !important;
}

.tt-box-total .tt_num_g::before {
  content: '+';
  margin-right: 3px;
}

.tt-box-write .tt-xe-label-text {
  font-size: 0 !important;
}

.tt_ico_lock {
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
  padding: 10px;
}

/*----- write form -----*/
.tt-comment-cont>form {
  order: 2;
}

.tt-btn-cancel {
  height: 30px !important;
  width: 50px !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
}

.tt-area-write {
  display: block !important;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 40px;
}

.tt-list-reply-comment .tt-area-write {
  /*답글 입력폼*/
  padding: 10px 10px 0;
  margin-top: 0 !important;
}

.tt-area-write .tt-box-account {
  border: var(--border);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  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: 10px !important;
  padding: 10px;
  border: var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  background-color: #fff;
}

/* 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 10px 0 0 !important;
  border: unset !important;
  border-radius: unset !important;
  text-align: justify;
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar {
  background: #fff;
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar-thumb {
  background: 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: #fff;
  margin-top: 0 !important;
  margin-right: 10px !important;
  justify-content: center;
}

.tt-box-write .tt-xe-input-helper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
}

.tt-box-write .tt_img_area_reply {
  background-image: none !important;
}

.tt-btn_register {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px !important;
  height: 30px;
  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 {
  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);
}

ul.tt-list-reply>li.tt-item-reply>.tt-wrap-cmt {
  padding: 0;
}

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;
}

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: 0 !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 a.tt-link-user::before {
  content: 'Re : ';
}

.tt-wrap-cmt .tt-box-content {
  width: 100% !important;
}

.tt-wrap-cmt .tt-box-meta {
  padding: 10px;
  border-bottom: var(--border);
  gap: 2.5px;
  margin-bottom: 0 !important;
}

.tt-wrap-cmt .tt-box-meta a {
  font-weight: bold;
  overflow: visible !important;
}

.tt-wrap-cmt .tt-box-meta span {
  display: none;
  margin-left: 0 !important;
}

.tt_item_secret .tt-wrap-cmt .tt-box-meta span {
  display: inline-block;
}

.tt-wrap-cmt .tt-box-meta span i {
  font-size: 0.9rem !important;
  color: var(--sub-color) !important;
}

.tt-wrap-cmt .tt-box-meta .tt_img_area_reply {
  background-image: none !important;
}

.tt-wrap-cmt .tt-wrap-desc {
  padding: 10px;
}

.tt-wrap-cmt .tt-wrap-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  padding-top: 0;
}

.tt-wrap-cmt .tt_date {
  padding: 0 !important;
  color: var(--sub-color) !important;
  font-size: 0.9rem !important;
}

.tt-wrap-cmt .tt-wrap-link-comment {
  padding-left: 0 !important;
}

.tt-link-comment .tt_txt_g {
  padding-top: 0 !important;
  color: var(--sub-color) !important;
  font-size: 0.9rem !important;
  font-weight: bold;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

.tt-wrap-cmt .tt-box-modify {
  top: 9px !important;
  right: 5px !important;
}

.tt-wrap-cmt .tt-box-modify button.tt_img_area_reply {
  background-image: none !important;
}

.tt-button-modify {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.tt-list-modify {
  top: 18px !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: 1rem !important;
  line-height: var(--line-height) !important;
  font-family: "PyeojinGothic" !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;
  gap: 3px;
}

.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 .tt_cmt_info .tt_img_area_reply {
  background-image: none !important;
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed {
  width: fit-content;
  height: 1rem;
  margin: 0 !important;
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed i {
  font-size: 0.9rem !important;
}

.tt-link-comment .tt_num_g {
  display: none;
}

/*----- prev more comment -----*/
.tt_btn_prev_more {
  padding: 10px !important;
  margin-bottom: 10px !important;
  border: var(--border) !important;
  border-radius: var(--radius);
}

/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/

.cover_wrap {
  padding: 10px;
}

.c_item:not(:last-child) {
  margin-bottom: 20px;
}

.c-title-wrap {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cn1 .c-content {
  border: var(--border);
  border-radius: var(--radius);
}

.cn1 .c-content:not(:last-child) {
  margin-bottom: 10px;
}

.cn1 .c-content {
  padding: 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);
  border-radius: var(--radius);
  overflow: hidden;
}

.cn2 .c-content .cn_img img {
  width: 100%;
}

.cn2 .c-content .list_t {
  padding: 10px;
  margin-bottom: 10px;
  border: var(--border);
  border-radius: var(--radius);
}

.cn2 .c-content .list_t .title {
  margin-bottom: 3px;
  font-weight: bold;
}

.cl1 .c-content {
  border: var(--border);
  border-radius: var(--radius);
}

.cg1 .c-content {
  grid-template-columns: repeat(var(--cg1col), 1fr);
}

.cg1 .thumb_i img {
  aspect-ratio: var(--cg1th);
}

.cg2 .c-content {
  grid-template-columns: repeat(var(--cg2col), 1fr);
}

.cg2 .thumb_i img {
  aspect-ratio: var(--cg2th);
}

.cg3 .c-content {
  grid-template-columns: repeat(var(--cg3col), 1fr);
}

.cg3 .thumb_i img {
  aspect-ratio: var(--cg3th);
}

.cg4 .c-content {
  grid-template-columns: repeat(var(--cg4col), 1fr);
}

.cg4 .thumb_i img {
  aspect-ratio: var(--cg4th);
}

.ccd .c-content {
  grid-template-columns: repeat(var(--ccdcol), 1fr);
}

.ccd .thumb_i img {
  aspect-ratio: var(--cdth);
}

.cwz .c-content {
  display: flex;
  flex-direction: column;
  border: var(--border);
  border-radius: var(--radius);
}

.cwz .c-content {
  padding: 0;
}

.cwz .list_c:first-child {
  padding-top: 0;
}

.cwz .list_c:last-child {
  padding-bottom: 0;
}

.cwz .list_c {
  padding: 10px !important;
}

.cwz .thumb_i {
  width: var(--cwzwidth);
}

.cwz .thumb_i img {
  aspect-ratio: var(--cwzth);
}

.cwz .list_t {
  width: calc((100% - var(--cwzwidth)) - 10px);
}


.cct .c-content {
  border: var(--border);
  border-radius: var(--radius);
  padding: 10px 10px;
}

.cct .list_c .thumb_l {
  width: var(--cctwidth);
}

.cct .list_t .s-wrap .sum {
  -webkit-line-clamp: var(--cctsum);
}

.cct .thumb_l>div {
  background-color: var(--cct-color1);
}

.cct .list_c:nth-child(even) .thumb_l>div {
  background-color: var(--cct-color2);
}

.cct .list_t:before {
  border-color: transparent var(--cct-color1) transparent transparent;
}

.cct .list_c:nth-child(even) .list_t:before {
  border-color: transparent transparent transparent var(--cct-color2);
}

.cmm {
  border: var(--border);
  border-radius: var(--radius);
}

.cmm .mm {
  padding: 0;
}

.cmm .list_c:first-child {
  padding: initial;
}

.cmm .list_c {
  width: 100%;
  padding: 15px 10px !important;
  border-bottom: var(--border);
}


/*=========================================*/
/*============== media query ==============*/
/*=========================================*/

@media (max-width:767px) {

  #container {
    width: calc(100% - 40px);
    height: auto;
    margin: 20px auto 100px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #container .top {
    width: 100%;
    height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: var(--border);
  }

  #container .top .circle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  #container .top .circle {
    display: flex;
    gap: 5px;
  }

  .mobile {
    position: fixed;
    bottom: 10px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 990;
  }

  .mobile>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: var(--border);
    border-radius: 100%;
  }

  .topbtn.show {
    opacity: 1;
    visibility: visible;
  }

  #l-side {
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    z-index: 99;
    transition: 0.5s;
  }

  #l-side .side-con {
    height: 100%;
    padding: 15px;
  }

  .slide {
    left: 0 !important;
    transition: 0.5s;
  }

  #content {
    width: 100%;
    height: auto;
  }

  .paging {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .paging a {
    padding: 0 10px 10px;
  }

  .n2 .list_c .list_t .dc-flex {
    flex-wrap: wrap;
    gap: 0;
    font-size: 0.9rem;
  }

  .n2 .list_c .list_t .dc-flex .catett {
    order: 1;
  }

  .n2 .list_c .list_t .dc-flex .date {
    order: 2;
    width: 100%;
  }

  .n2 .list_c .list_t .dc-flex .date::after {
    content: "";
    margin: 0;
  }

  .g1,
  .cg1 .c-content,
  .g2,
  .cg2 .c-content,
  .g3,
  .cg3 .c-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .g4,
  .cg4 .c-content {
    grid-template-columns: none;
  }

  .cd,
  .ccd .c-content {
    grid-template-columns: none;
  }

  .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%;
  }

  .taglog .t-con a {
    width: calc((100% - 30px) / 4);
  }

  .tt-box-total {
    position: relative;
    width: 100%;
  }

  .tt-area-write {
    margin-top: 0;
  }

  .empty_con,
  .protect {
    height: 500px;
  }

}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/