@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;
}

* {
  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(--bg);
  font-size: var(--font-size);
  color: var(--font-color);
  text-decoration: none;
  scroll-behavior: smooth;
}

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

body.fade.loaded {
  opacity: 1;
}

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

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

img {
  vertical-align: bottom;
}

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

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

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





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

#container {
  position: relative;
  width: var(--content-width);
  margin: 120px auto 150px;
}

#content {
  padding: 15px;
  border-radius: var(--radius);
  background: var(--main-bg);
  border: var(--border);
}

#header {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
}

.paging {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.paging a>i {
  padding: 10px;
}





/*==========================================*/
/*================= header =================*/
/*==========================================*/

#header .music {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 10px;
  gap: 10px;
}

#header .profile {
  width: 30%;
  margin-right: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
  transition: 0.7s;
}

#header .profile a {
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

#header .profile:hover a {
  transform: scale(1.2);
  transition: 0.7s;
}

#header .title_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  width: calc(70% - 10px);
}

#header .title_wrap .nick {
  font-size: 0.9rem;
  color: var(--sub-color);
}

#header .title_wrap .tt {
  font-weight: bold;
  transition: 0.7s;
}

#header .title_wrap .tt:hover {
  color: var(--point);
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.line {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--main-bg);
}

.line .black {
  position: absolute;
  top: 0;
  width: var(--play);
  height: 3px;
  background-color: var(--point);
}

.line .cc {
  position: absolute;
  top: -1px;
  left: var(--play);
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--point);
}

.play {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 65%;
  margin: 10px auto 0;
}

.play i {
  font-size: 1.7rem;
  color: var(--font-color);
}

.play i.xi-pause {
  font-size: 3rem;
}

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

.elemental li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 30px) / 4);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
  transition: 0.7s;
}

.elemental li>a,
.elemental li>div {
  padding: 10px 0;
  transition: 0.7s;
}

.elemental .search input {
  width: 100%;
  text-align: center;
  padding: 0 10px;
}

.elemental .search input::placeholder {
  transition: 0.7s;
}

.elemental li:hover>a,
.elemental li:hover>div,
.elemental li:hover input::placeholder {
  color: var(--point);
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}





/*==========================================*/
/*============= category, menu =============*/
/*==========================================*/

.catewrap {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 99999;
}

.catewrap-in {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.catewrap .cate {
  width: calc((100% - 10px) / 2);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  padding: 10px;
  border: var(--border);
}

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

.catewrap .menu,
.catewrap .link {
  width: 100%;
  border-radius: var(--radius);
  background: var(--main-bg);
  padding: 10px;
  margin-bottom: 10px;
  border: var(--border);
}

.catewrap .catett {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-items: flex-start;
  align-items: center;
  gap: 3px;
  margin-bottom: 5px;
}

.catewrap .catett span {
  font-weight: bold;
}

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

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

.category_list>li {
  padding: 5px;
  border-bottom: var(--border);
}

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

.category_list>li>.has-sub {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.category_list>li>.has-sub>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}

.category_list>li>.has-sub>.icn {
  display: flex;
  align-items: center;
  height: var(--line-height);
}

.sub_category_list {
  padding-left: 10px;
}

.sub_category_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  color: var(--sub-color);
  font-size: 0.9rem;
}

.sub_category_list>li>a::before {
  content: '-';
}

.menu_list>li,
.link_list>li {
  padding: 5px;
  border-bottom: var(--border);
}

.menu_list>li:first-child,
.link_list>li:first-child {
  border-top: var(--border);
}





/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.empty_con {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
}

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

#list_n> :not(.n1),
#list_g> :not(.gal1),
#list_a> :not(.gal2) {
  display: none;
}

.list_w .sum {
  display: none;
}

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

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

.n1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.n1 .list_c {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--content-bg);
  border: var(--border);
}

.n1 .list_c .thumb_l .list_t {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.n1 .list_c .thumb_l .list_t .title {
  display: flex;
  align-items: center;
  gap:3px;
  font-weight: bold;
}

.n1 .list_c .thumb_l .list_t .date {
  color: var(--sub-color);
}

.n1 .list_c .thumb_l .thumb_i {
  display: none;
}

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

.gal1 .list_c {
  position: relative;
  width: calc((100% - 10px) / 2);
  padding: 10px;
  border-radius: var(--radius);
  background: var(--content-bg);
  border: var(--border);
}

.gal1 .list_c .thumb_i {
  width: 100%;
  border-radius: var(--radius);
}

.gal1 .list_t {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  padding: 5px;
  text-align: center;
  background: #ffffff88;
}

.gal1 .list_t .title {
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gal1 .list_t i{
  display: none;
}

.gal2 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 15px;
}

.gal2 .list_c {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--content-bg);
  border: var(--border);
}

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

.gal2 .thumb_i {
  width: 30%;
  border-radius: var(--radius);
  border: var(--border);
}

.gal2 .list_t {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}

.gal2 .list_t .title {
  display: flex;
  align-items: center;
  gap:3px;
  font-weight: bold;
}

.gal2 .list_t .nick {
  font-size: 0.9rem;
}





/*=========================================*/
/*================ 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 {
  color: var(--sub-color);
}

.entry .article .ny {
  margin-bottom: 10px;
}

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

.entry .article .detail .d-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entry .article .detail .action_trail a {
  display: inline-block;
  font-weight: bold;
}

.entry .article iframe {
  width: 100%;
  border: 0 !important;
}





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

.ny p>a {
  font-weight: bold;
  color: var(--point-color);
}

/*hyperlink*/

h2,
h2[data-ke-size] {
  line-height: calc(var(--line-height) * 1.3);
}

h3,
h3[data-ke-size] {
  line-height: calc(var(--line-height) * 1.25);
}

h4,
h4[data-ke-size] {
  line-height: calc(var(--line-height) * 1.2);
}

p[data-ke-size='size18'] {
  line-height: calc(var(--line-height) * 1.1);
}

p[data-ke-size='size16'] {
  line-height: var(--line-height);
}

p[data-ke-size='size14'] {
  line-height: calc(var(--line-height) * 0.9);
}





/*==========================================*/
/*=============== imageblock ===============*/
/*==========================================*/

figure.imageblock.alignCenter {
  margin: 0 auto 5px !important;
}

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

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

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





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

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

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

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

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

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

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

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





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

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

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

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





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

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





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

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

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

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

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

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





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

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

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

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

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

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





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

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

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

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

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

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

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

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

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

}

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

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

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

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

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





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

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

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

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

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





/*=========================================*/
/*================ protect ================*/
/*=========================================*/

.protect {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1;
}

.article_p .ment {
  padding-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.article_p .pwinput {
  display: inline-block;
  width: 120px;
  padding: 10px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--content-bg);
  border: var(--border);
}





/*==========================================*/
/*================ tag list ================*/
/*==========================================*/

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

.taglog a {
  width: calc((100% - 30px) / 4);
  padding: 10px 5px;
  border-radius: var(--radius);
  background-color: var(--content-bg);
  border: var(--border);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  transition: 0.7s;
}

.taglog a:hover {
  font-weight: bold;
  color: var(--point);
  transition: 0.7s;
}





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

.n_entry {
  border-radius: var(--radius);
}

.n_entry:not(:last-child) {
  margin-bottom: 20px;
}

.n_entry .title_wrap {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 10px;
}





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

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

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

.comment .cmt-wrap {
  padding: 15px;
  border-radius: var(--radius);
  background-color: var(--content-bg);
  border: var(--border);
}

.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-top .name {
  display: flex;
  align-items: center;
  font-weight: bold;
}

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

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

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

.comment .write-input input {
  width: calc((100% - 10px) / 2);
  padding: 10px;
  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: 60px;
  padding: 10px;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
}

.comment .check {
  text-align: center;
}

.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: 11px;
  width: 100%;
  color: var(--font-color);
  font-weight: bold;
  background: #00000000;
  line-height: var(--line-height);
}





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

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

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

.cover_notice .in {
  padding: 10px;
  border-radius: var(--radius);
  background: var(--content-bg);
  border: var(--border);
}

.cover_notice .in:not(:last-child) {
  margin-bottom: 20px;
}

.cover_notice .title_wrap {
  margin-bottom: 5px;
}

.cover_notice .txt {
  text-align: justify;
}

.cover_notice .n-img {
  max-width: 100%;
  margin-bottom: 10px;
}

.cover_notice .n-img img {
  width: 100%;
}

.cover_gallery {
  padding: 10px;
  border-radius: var(--radius);
  background: var(--content-bg);
  border: var(--border);
}

.cover_gallery .in {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cover_gallery .list_c {
  position: relative;
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  overflow: hidden;
}

.cover_gallery .list_c:nth-child(2n) {
  margin-right: 0;
}

.cover_gallery .thumb_i {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: var(--border);
}

.cover_gallery .list_t {
  display: none;
  position: absolute;
  bottom: 0;
  padding: 5px;
  width: 100%;
  background: #ffffff88;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cover_list {
  padding: 10px;
  border-radius: var(--radius);
  background-color: var(--content-bg);
  border: var(--border);
}

.cover_list .list_c {
  padding: 10px;
  border-bottom: var(--border);
}

.cover_list .list_c:first-child {
  border-top: var(--border);
}





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

@media (max-width:767px) {
  body {
    overflow-x: hidden;
  }

  #container {
    margin: 10% auto 10%;
    width: 80%;
  }
}



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

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

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

/* ===== 카테고리+메뉴 / 배너 반반 정렬 ===== */
.catewrap-in {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px; /* 1열-2열 간격 */
}

/* 왼쪽(카테고리+메뉴) / 오른쪽(배너) 50%씩 */
.catewrap-in .left {
  width: 51%;
}

.catewrap-in .link {
  width: 49%;
}

/* 카테고리와 메뉴 사이 간격 */
.left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 카테고리/메뉴 제목 영역 */
.catewrap-in .catett {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  margin-bottom: 6px;
}

/* 카테고리와 메뉴 폭 맞춤 */
.catewrap-in .cate,
.catewrap-in .menu {
  width: 100%;
}

/* ===== 배너 영역 ===== */
  display: flex;
  flex-direction: column; /* 세로 나열 */
  gap: 3px;               /* 배너 간격 조절 가능 */
  padding: 0;
  margin: 0;
  overflow-y: auto;        /* 세로 스크롤 */
  overflow-x: hidden;      /* 가로 스크롤 제거 */
  max-height: calc(130px * 4 + 6px * 3); /* 한 화면에 4개 표시 */
  width: 130px;            /* 배너 가로폭 조절 가능 */
}

.banner_list li {
  list-style: none;
  width: 80%;           /* li 폭 = banner_list 폭 */
  flex: 0 0 auto;        /* li 높이 자동 */
}

.banner_list a {
  /* 이미지를 감싸는 a 태그를 블록 요소로 변경하여 중앙 정렬이 가능하게 함 */
  display: block;
}

.banner_list img {
   width: 150px; /* 배너 영역의 최대 너비(또는 원하는 너비) */
   max-width: 100%; /* 부모 요소(li) 너비를 초과하지 않도록 */
   height: auto; /* 높이를 자동으로 조절하여 비율 유지 */
   display: block;
   margin: 0 auto; /* 중앙 정렬 */
   object-fit: contain; /* 이미지 비율 유지 및 잘림 방지 (배경이 있다면 채워지지 않은 부분에 배경색 표시) */
   
   border-radius: 10px;
   transition: transform 0.2s ease;
}

/* 'all article'을 표시하는 요소를 정확히 숨깁니다. */
.cate .link_tit {
    display: none !important;
}
