@charset "utf-8";

@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
/* 마우스 커서 */
/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/cursors/cur-9/cur835.cur), auto !important;} /* End https://www.cursors-4u.com */
* {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  box-sizing: border-box;
  list-style: none;
  line-height: var(--line-height);
  letter-spacing: 0;
  font-family: 'Pretendard-Regular';
}

html {
  background-color: var(--skin-bg);
  font-size: var(--font-size);
  color: var(--font-color);
  text-decoration: none;
  scroll-behavior: smooth;
}

body.fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.fade.loaded {
  opacity: 1;
}

input,
textarea,
button,
::placeholder {
  border-radius: 0;
  border: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  font-size: 1rem;
  color: var(--font-color);
  letter-spacing: 0;
}

a,
a:link,
a:visited,
a:active {
  color: var(--font-color);
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
}

#content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: var(--scroll-bg);
}

#content::-webkit-scrollbar-thumb {
  width: 10px;
  height: 10px;
  background-color: var(--scroll-th);
}

[class*=" xi-"],
[class^=xi-],
.fa-solid,
.fa-regular {
  font-size: 1rem;
  line-height: var(--line-height) !important;
}




/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  width: var(--content-width);
  margin: 200px auto 50px;
  background: #fff;
  border: var(--skin-border);
  box-shadow: var(--skin-shadow);
}

#content {
  height: var(--content-height);
  padding: 10px;
  overflow-y: scroll;
}

#top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 5px;
  z-index: 100;
}





/*===========================================*/
/*=============== top(header) ===============*/
/*===========================================*/

#top .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}

#top .button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

#top .button i {
  font-size: 0.9rem;
}

#top img {
  width: 15px;
}

#tool {
  padding: 0 8px 3px;
  border-bottom: var(--border);
}

#tool {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  position: relative;
}

.box {
  display: none;
  position: absolute;
  width: 100px;
  border: var(--border);
  border-top: 0;
  background: var(--drop-bg);
  padding-left: 20px;
  top: calc(100% + 1px);
  box-shadow: 2px 2px 3px var(--shadow-color);
  z-index: 100;
}

.box>li>a,
.box>li>span {
  transition: 0.5s;
}

.box>li>a:hover,
.box>li>span:hover {
  font-weight: bold;
  color: var(--point-color);
  transition: 0.5s;
}

.fbox li,
.mbox li {
  padding: 5px 0;
}

.fbox li:not(:last-child),
.mbox li:not(:last-child) {
  border-bottom: var(--border);
}

.fbox {
  margin-left: -8px;
  border-left: 0;
  z-index: 101;
}

.cbox {
  z-index: 102;
}

.mbox {
  z-index: 103;
}

.vbox {
  padding: 0;
  z-index: 104;
}

.vbox .imgwrap {
  padding: 5px;
}

.vbox img {
  width: 100%;
}





/*======================================*/
/*=============== pop-up ===============*/
/*======================================*/

.pop {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  transform: translate(-50%, -50%);
  border: var(--skin-border);
  background: #fff;
  box-shadow: var(--skin-shadow);
  z-index: 99999;
}

.pop .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: var(--border);
  padding: 8px;
}

.pop .background {
  padding: 10px;
  background: var(--drop-bg);
}

.search .background {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop .form {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  width: 75%;
}

.pop .submit {
  width: 23%;
}

.pop .form input {
  width: 135px;
  padding: 3px;
  background: #fff;
  border: var(--border);
}

.pop .submit input {
  width: 100%;
  padding: 3px 0;
  background: var(--sub-bg);
  border: var(--border);
}

.pop img {
  width: 100%;
}

.pop .talk {
  text-align: center;
  margin-top: 8px;
}





/*========================================*/
/*=============== category ===============*/
/*========================================*/

.link_tit {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: 100%;
  padding: 5px 0;
  border-bottom: var(--border);
}

.link_tit>.c_cnt,
.category_list .c_cnt {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.category_list>li:not(:last-child) {
  border-bottom: var(--border);
}

.category_list>li>a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 5px 0;
}

.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: 3px;
  width: calc(100% - 20px);
  padding: 5px 0;
}

.category_list>li>.has-sub>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  aspect-ratio: 1;
}

.category_list>li>.has-sub>.icn>i {
  font-size: 0.8rem;
}

.sub_category_list>li {
  border-top: var(--border);
}

.sub_category_list>li>a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 5px 0;
}

.sub_category_list>li>a>.cname {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.sub_category_list>li>a>.cname::before {
  content: "-";
  margin-right: 1.5px;
}

.cname {
  transition: 0.5s;
}

.cname:hover {
  font-weight: bold;
  color: var(--point-color) !important;
  transition: 0.5s;
}

.category_list i.xi-new-o {
  display: none;
}





/*======================================*/
/*=============== paging ===============*/
/*======================================*/

.paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.paging a {
  padding: 5px;
}





/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/
.empty_con {
  width: 100%;
  height: calc(100% - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.empty_con i {
  margin-right: 3px;
}

#list_n> :not(.n1),
#list_g1> :not(.g1),
#list_g2> :not(.g2),
#list_wz> :not(.wz1),
#list_m> :not(.m1) {
  display: none;
}

.list_w>div:not(.wz1, .m1) .sum {
  display: none;
}

.list_w .xi-lock,
.list_w .xi-new-o {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.list_w .list_t .title .t-icon {
  display: flex;
  gap: 2px;
}

.thumb_i {
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.n1 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.n1 .list_c {
  width: 100%;
}

.n1 .list_c .list_t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}


.n1 .list_c .list_t .title {
  display: flex;
  align-items: center;
  gap: 3px;
  transition: 0.5s;
}

.n1 .list_c:hover .list_t>.title {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}


.g1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 10px;
  row-gap: 15px;
}

.g1 .list_c {
  width: calc((100% - 30px) / 4);
}

.g1 .list_c .thumb_i {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 5px;
}

.g1 .list_t {
  text-align: center;
}

.g1 .list_t .title {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 3px;
}

.g1 .list_t .title .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.g1 .list_t .date {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.g1 .list_c:hover .list_t .title .text {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}



.g2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.g2 .list_c {
  width: calc((100% - 10px) / 2);
}

.g2 .list_c .thumb_l {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.g2 .thumb_i {
  width: 33%;
}

.g2 .list_t {
  width: calc((100% - 33%) - 10px);
}

.g2 .list_t .title {
  display: inline;
  transition: 0.5s;
}

.g2 .list_t .title .t-icon {
  display: inline;
  margin-left: 3px;
}

.g2 .list_c:hover .list_t .title {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}



.wz1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wz1 .list_c .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.wz1 .thumb_i {
  width: calc(27% - 10px);
}

.wz1 .wz-flex {
  width: calc(73% + 10px);
  padding: 10px 0;
}

.wz1 .wz-flex .list_t {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.wz1 .wz-flex .list_t .title {
  display: flex;
  align-items: center;
  gap: 3px;
  width: calc(100% - 65px);
}

.wz1 .wz-flex .list_t .title .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.wz1 .wz-flex .list_t .date {
  width: 60px;
  text-align: right;
  font-size: 0.9rem;
  color: var(--sub-color);
}

.wz1 .wz-flex .sum {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--wz-sum);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: justify;
}

.wz1 .list_c:hover .list_t .title .text {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}



.m1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.m1 .list_t .title {
  display: none;
}

.m1 .list_t .date {
  margin-bottom: 10px;
  transition: 0.5s;
}

.m1 .sum {
  text-align: justify;
}

.m1 .list_c:hover .list_t .date {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}





/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.entry .article .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.entry .article .title_wrap .title {
  font-weight: bold;
}

.entry .article .title_wrap .date {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.entry .article-desc {
  margin-bottom: 30px;
}

.entry .tag_trail {
  width: 100%;
  margin-bottom: 5px;
}

.entry .tag_trail .tags a:before {
  content: '#';
}

.entry .detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.action_trail a>span {
  font-weight: bold;
}





/*==========================================*/
/*========== article / font style ==========*/
/*==========================================*/

.ny 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 5px !important;
}

figure.imagegridblock,
#tt-body-page figure.imagegridblock {
  margin: 0 auto !important;
}

figure.imagegridblock .image-container>span {
  margin-top: 0 !important;
}

figure.imageblock.alignCenter>figcaption,
figure.imagegridblock>figcaption {
  font-size: 1rem !important;
  padding-bottom: 10px;
}





/*==========================================*/
/*=============== blockquote ===============*/
/*==========================================*/

.ny blockquote {
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--font-color) !important;
}

blockquote,
blockquote p {
  font-size: 1rem !important;
}

blockquote[data-ke-style='style1'] {
  text-align: center;
  margin: 10px 0;
}

blockquote[data-ke-style='style1']:before {
  content: '\f10d';
  font-size: 1.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}

blockquote[data-ke-style='style1']>span {
  font-family: 'Pretendard-Regular' !important;
}

blockquote[data-ke-style='style2'] {
  padding: 5px 10px;
  padding-right: 0;
  border-left: var(--border);
  border-left-width: 5px;
  margin: 10px 0;
}

blockquote[data-ke-style='style3'] {
  padding: 10px;
  border: var(--border);
  background-color: var(--sub-bg);
  margin: 10px 0;
}





/*==========================================*/
/*=========== video Optimization ===========*/
/*==========================================*/

.ny iframe {
  max-width: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}





/*=========================================*/
/*========== article / list-type ==========*/
/*=========================================*/

ul[data-ke-list-type='disc'],
ul[data-ke-list-type='circle'],
ol[data-ke-list-type='decimal'] {
  padding-left: 15px;
}





/*=========================================*/
/*============ image Slideshow ============*/
/*=========================================*/

figure.imageslideblock.alignCenter {
  margin: 0 auto 10px;
}

figure.imageslideblock div.image-container {
  position: relative;
  width: 100% !important;
  height: unset !important;
  padding-bottom: 100%;
  min-width: unset;
  max-width: unset;
  min-height: unset;
  max-height: unset;
  align-items: unset;
}

figure.imageslideblock div.image-container span.image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}

figure.imageslideblock div.image-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto !important;
}

figure.imageslideblock figcaption {
  color: var(--font-color);
  font-size: 1rem;
  padding-top: 0;
  min-height: unset;
}





/*========================================*/
/*=============== moreless ===============*/
/*========================================*/

div[data-ke-type="moreLess"] {
  margin: 10px 0;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  width: fit-content;
  color: var(--font-color);
  font-size: 1rem;
  line-height: 1.4rem;
  padding: 5px 8px;
  border: var(--border);
  background-color: var(--sub-bg);
}

div[data-ke-type='moreLess']:not(.open)>.btn-toggle-moreless::before {
  content: "\e914";
  font-family: 'xeicon' !important;
}

div[data-ke-type='moreLess'].open>.btn-toggle-moreless::before {
  content: "\e91b";
  font-family: 'xeicon' !important;
}

div[data-ke-type='moreLess'].open .moreless-content {
  padding: 10px;
  margin-top: 10px;
  background-color: var(--main-bg);
  border: var(--border);
}





/*=========================================*/
/*=============== fileblock ===============*/
/*=========================================*/

figure.fileblock {
  margin: 10px 0;
  width: 200px;
  height: unset;
  border: var(--border);
  overflow: hidden;
}

figure.fileblock a {
  position: relative;
  height: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}


figure.fileblock .image {
  position: relative;
  background: none;
  margin: 0;
  width: auto;
  height: auto;
}

figure.fileblock .image:after {
  content: "\eaa7";
  font-family: 'xeicon' !important;
  font-size: 28px;
  padding: 15px 10px;
}

figure.fileblock .desc {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  width: calc(100% - 50.5px);
  padding: 15px 10px;
  padding-left: 0;
}

figure.fileblock .filename {
  color: var(--font-color);
  font-size: 1rem;
  height: auto;
  margin: 0;
}

figure.fileblock .name {
  max-width: 95%;
  height: auto;
  font-weight: bold;
}

figure.fileblock .size {
  font-size: 0.85rem;
  color: var(--sub-color);
  height: auto;
  margin: 0;

}

figure.fileblock a::after {
  display: none;
}

figure.fileblock a>.down {
  display: block;
  width: 100%;
  border-top: var(--border);
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px;
  background-color: var(--sub-bg);
}

figure.fileblock a>.down>span:after {
  content: "\eb7c";
  font-family: 'xeicon' !important;
  font-size: 1rem;
}

figure.fileblock a>.down>span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

figure.fileblock a:hover .down {
  letter-spacing: 2px;
  color: var(--point-color);
  transition: 0.5s;
}





/*=========================================*/
/*=============== codeblock ===============*/
/*========================================*/

pre[data-ke-type="codeblock"] {
  padding: 10px;
  margin: 10px 0;
  background-color: var(--main-bg);
  border: var(--border);
}

pre[data-ke-type="codeblock"]>code {
  font-family: 'Pretendard-Regular';
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-bg);
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-th);
  border: 0;
}





/*=========================================*/
/*=========== protected article ===========*/
/*=========================================*/

.protect {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 50px);
}

.article_p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.article_p input {
  padding: 3px;
  background: #fff;
  border: var(--border);
}

.article_p .pwinput {
  width: 100px;
}

.article_p .submit {
  background-color: var(--sub-bg);
}





/*======================================*/
/*=============== taglog ===============*/
/*======================================*/

.taglog {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 15px;
}

.taglog a {
  transition: 0.5s;
}

.taglog a:hover {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}






/*======================================*/
/*=============== notice ===============*/
/*======================================*/

#content .n_entry {
  margin-bottom: 30px;
}

#content .n_entry:nth-last-of-type(2) {
  margin-bottom: 0;
}

.n_entry .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.n_entry .title_wrap .title {
  font-weight: bold;
}

.n_entry .title_wrap .date {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.n_entry .container_postbtn {
  display: none !important;
}





/*=========================================*/
/*================ comment ================*/
/*=========================================*/

.comment_o {
  display: none;
  margin-top: 10px;
}

.tistoryProfileLayerTrigger {
  display: none !important;
}

.comment_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}

.comment .bottom-box {
  margin-top: 10px;
  padding-left: 15px;
}

.comment .bottom-box>div:not(:last-child) {
  margin-bottom: 10px;
}

.comment .flex-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.comment .flex-bottom {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comment .flex-bottom .name {
  font-weight: bold;
}

.comment .flex-bottom .date {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.comment .flex-bottom .date a {
  display: none;
}

.comment .redel {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comment textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  resize: none;
  background-color: var(--sub-bg);
  border: var(--border);
  margin-bottom: 10px;
}

.comment .write-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.comment .write-input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  width: 50%;
}

.comment .write-input input {
  width: calc((100% - 10px) / 2);
  padding: 5px;
  border-radius: var(--radius);
  background-color: var(--content-bg);
  border: var(--border);
}

.comment .check-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: 10px;
}

.comment .check-box>div {
  width: 50px;
  background-color: #fff;
  border: var(--border);
}

.comment .check {
  text-align: center;
  padding: 5px;
}

.comment .check input[type="checkbox"] {
  display: none;
}

.comment .check input[type="checkbox"]+label:before {
  content: '공개';
  color: var(--font-color);
  line-height: var(--line-height);
}

.comment .check input[type="checkbox"]:checked+label:before {
  content: '비밀';
  font-weight: bold;
}

.comment .submit input[type="submit"] {
  font-size: 1rem;
  width: 100%;
  padding: 5px;
  color: var(--font-color);
  font-weight: bold;
  background: var(--sub-bg);
  line-height: var(--line-height);
}





/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/

.cover_wrap .c_item:not(:last-child) {
  margin-bottom: 30px;
}



.cn .cn_content .title_wrap {
  margin-bottom: 10px;
  font-weight: bold;
}

.cn .cn_content .cn_img {
  width: 100%;
}

.cn .cn_content .cn_img img {
  width: 100%;
  margin-bottom: 10px;
}




.cl .title_wrap {
  margin-bottom: 15px;
  font-weight: bold;
}

.cl .cl_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cl .list_c a.thumb_l {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cl .list_c .title {
  transition: 0.5s;
}

.cl .list_c .date {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.cl .list_c:hover .title {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}



.cg .title_wrap {
  margin-bottom: 10px;
  font-weight: bold;
}

.cg .cg_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.cg .list_c {
  width: calc((100% - 30px) / 4);
}

.cg .list_t,
.cg .sum {
  display: none;
}



.cwz .title_wrap {
  margin-bottom: 10px;
  font-weight: bold;
}

.cwz .cwz_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cwz .list_c .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.cwz .thumb_i {
  width: calc(27% - 10px);
}

.cwz .wz-flex {
  width: calc(73% + 10px);
  padding: 10px 0;
}

.cwz .wz-flex .list_t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cwz .wz-flex .list_t .title {
  transition: 0.5s;
}

.cwz .wz-flex .list_t .date {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.cwz .wz-flex .sum {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--cwz-sum);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: justify;
}

.cwz .list_c:hover .list_t .title {
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 0.2px;
  transition: 0.5s;
}






/*======================================*/
/*=============== mobile ===============*/
/*======================================*/

@media (max-width:767px) {
  #container {
    width: 90%;
    margin: 5%;
  }

  .pop {
    width: 250px;
  }

  .pop .form input {
    width: 100px;
  }

  #content {
    height: auto;
    max-height: calc(100% - 110px);
  }

  .g1 .list_c,
  .cg .list_c {
    width: calc((100% - 10px) / 2);
  }

  .g2 .list_c {
    width: 100%;
  }

  .g2 .thumb_i,
  .wz1 .thumb_i,
  .cwz .thumb_i {
    width: 100px;
  }

  .g2 .list_t,
  .wz1 .wz-flex,
  .cwz .wz-flex {
    width: calc(100% - 110px);
  }

  .cwz .wz-flex .list_t .title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .wz1 .wz-flex .sum,
  .cwz .wz-flex .sum {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: inherit;
  }
}





/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 13px;
  bottom: 10px;
  font-family: 'Pretendard-Regular';
  font-size: 12px;
  color: var(--font-color);
  letter-spacing: 1px;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/