@charset "UTF-8";

/*skin start*/

/* font */
@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;
}


/* CSS Document */
* {
  padding: 0;
  margin: 0; 
  box-sizing: border-box; 
  font-family: inherit;
  outline: none; 
  font-size: inherit; 
  line-height: inherit; 
  word-break:break-all;
}

a { 
  text-decoration: none; 
  background: transparent; 
  color: var(--point1-color); 
}

ul, li, ol {
  list-style: none; 
  padding:0; 
  margin: 0;
}

input:focus, textarea:focus, ::placeholder {
  outline: none; 
  border: none;
}

button {
  padding: 0; 
  border:0; 
  background: transparent;
  cursor: pointer;
}

img {
  vertical-align: bottom;
 }

textarea {
  resize: none;
 }

* a:hover {
  color: var(--point2-color); transition: all 0.3s ease;
  }

html {
  background: var(--body-color);
 }
 
body {
  color: var(--text-color);
  overflow-x: hidden;
  }


/* loading*/
#loading { 
  width: 100%; 
  height: 100%; 
  top: 0; 
  left: 0; 
  background: #ffffff;
  position: fixed; 
  display: none;
  z-index: 999; 
  opacity: 0.9;
}

#loading > img {
  display: none; 
  width: 70px; 
  height: 70px; 
  margin: auto;
}


/* layout */
/* 폰트 사이즈 변경 font-size: 숫자px / 글자간격 조절 line-height 숫자px 조절해주시면 됩니다.*/
html {
  --radius-: 3px;
  --font-size: 12px;
  --line-height: 15px;
}  

 #whole {
  font-family: 'Pretendard-Regular', -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size: var(--font-size); 
  line-height: var(--line-size); 
  position: relative;
  margin: 0 auto 30px auto;
  top: 10px;
  width: 1300px;
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-areas: "sidebar1 container sidebar2";
}


/* header */
#header{
  font-family: 'Pretendard-Regular';
  position: fixed;
  width: 1300px;
  height: 50px;
  top: 0;
  display: flex;
  z-index: 99;
  overflow: hidden;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50% , 0);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background:#fff;
  border: solid 1px var(--border-color);
}

.header-info{
  display: flex;
  align-items: center;
  font-weight: 700;
  margin: 10px;
}

.header-logo{
  position: relative;
  margin-right: 3px;
}

.header-title {
  font-weight: bold;
  font-size: 15px;
}

.search {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-);
  overflow: hidden;
  font-size: var(--font-size);
  margin: 10px 10px 10px 0;
}

.search input::placeholder {
  color: var(--point1-color);
}

.search input{
  color: var(--point2-color);
  padding: 0 3px;
  border: none;
  font-family: 'Pretendard-Regular';
  background: none;
  letter-spacing: 1.5px;
}

.submit {
  background: var(--point1-color);
  height: 100%;
  width: 27px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.search {
  border: solid 1px var(--border-color)
}

.header-menu{
  position: relative;
  float: left;
  height: 1px;
  top: 364px;
}

nav.header-mlist, .open nav.header-mlist {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav.header-mlist {
  position: relative;
  margin-top: -22px;
  height: 20px;
  line-height: 20px;
  z-index: 99;
  display: flex;
}
 
.open{	
  position: relative;
  z-index: 99;	
  top: 0px;
}

.open nav.header-mlist{
  margin-top: 10px;	
  z-index: 99;
}

.header-mlist li a {
  display: flex; 
  width: 29px; 
  height: 29px; 
  align-items: center;
  justify-content: center; 
  border-radius: var(--radius-);
  margin-right: 5px;
  background: var(--point2-color);}

.header-mlist li a:hover{
  background: var(--point1-color);
  color: var(--point2-color);
  transition: all 0.3s ease;
}  

#header-tooltip {
  cursor:pointer; 
  color:white; 
  text-align:center;
}


/* content */
#content {
  font-family: 'Pretendard-Regular';
  position: relative;
  overflow: hidden;
  margin: 60px auto 0 auto;
  width: 1300px;
  height: 400px;
  border-radius: var(--radius-);
  font-size: var(--font-size);
  background-repeat: no-repeat;
  background-position: center;  
  border: solid 1px var(--border-color);
  background-size: cover;
}

.content-side{
  width: 400px;
  height: 400px;
  background: var(--point1-color);
}

.content-info1, .content-info2 {
  display: flex;
  height: 200px;
  overflow: hidden;
  border-right: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
}

.content-info1 .content-img img{
  border-right: solid 1px var(--border-color);
}

.content-img {
  position: relative;
  width: 50%;
  overflow: hidden;
  border-right: var(--border-color);
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text {
  color: var(--point2-color);
  width: 50%;
  background: #fff;   
}

.content-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  padding: 5px;
  height: 25px;
  border-bottom: solid 1px var(--border-color);
}

.profile-inner {
  display: flex;
  border-bottom: solid 1px var(--border-color);
}

.profile-title {
  width: 70px;
  text-align: center;
  padding: 3px;
  border-right: solid 1px var(--border-color);
  color: var(--point1-color);
}

.profile-desc {
  width: calc(100% - 70px);
  text-align: center;
  padding: 3px;
}

.profile-more {
  padding: 5px;
  overflow-y: auto;
  height: 75px;
}

.content-info2 .content-text{
  border-right: solid 1px var(--border-color);
}

.content-menu {
  display: flex;
  height: 43px;
}

.content-menu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  padding: 5px;
  border-right: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
}

.content-menu span{
  width: 100%;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.content-etc {
  height: calc(100% - 43px - 43px - 25px);
}

.content-tag {
  display: flex;
  height: calc(100% - 25px);
  overflow-y: auto;
  flex-wrap: wrap;
  padding: 5px;
}

.content-tag li {
  display: flex;
  align-items: center;
  margin-right: 3px;
}

.content-tag li:last-of-type{
  margin-right: 0;
}

.link-title {
  padding: 5px;
  text-align: center;
}

.link-list{
  display: flex;
  justify-content: center;
  padding: 5px;
}

.link-list li {
  position: relative;
  width: 20px;
  height: 20px;
}

.link-list li a {
  display: block;
  width: 16px;
  height: 16px;
}
 .content-menu a:last-child {
   border-right: none;
}


/* sidebar */
aside#sidebar1 {
  grid-area: sidebar1;
  width: 100%;
}

.sidebar-inner1{
  position: sticky;
  top: 60px;
  width: 300px;
}

.sidebar-inner2{
  position: sticky;
  top: 60px;
  width: 280px;
}

.info-inner {
  background: #fff;
  overflow-y: hidden;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
} 

.info-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 3px;
  color: var(--point1-color);
  border-bottom: solid 1px var(--border-color);
}

.info-title {
  display: flex;
  padding: 10px;
  align-items: center;
}

.i-img {
  position: relative;
}

.i-img img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-);
}

.i-blogger {
  margin-left: 5px;
}

.i-name{
  font-weight: bold;
  color: var(--point1-color);
}

.i-id {
  display: flex;
  align-items: center;
  color: var(--point2-color);
}

.info-desc {
  padding: 5px;
  color: var(--point1-color);
  border-top: solid 1px var(--border-color);
}

.side-menu{
  background: #fff;
  overflow-y: hidden;
  border-radius: var(--radius-);
  margin-top: 15px;
  border: solid 1px var(--border-color);
}

.menu-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-weight: bold;
  color: var(--point1-color);
  border-bottom: solid 1px var(--border-color);
}

/* category */
.sub_category_list, .link_tit {
  display: none;
}

.c_cnt{
  margin-left: 5px;
  font-weight: bold;
  color: var(--point2-color);
}

.cate_li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
}

.category_list {
  overflow-y: auto;
}

.category_list li a {
  display: flex;
  padding: 6px;
}

.sub_item{
  color: var(--point2-color);
  cursor: pointer;
}

.sub_category_list > li > a:before{
  content:"-"; 
  margin-right: 5px;
}

.phbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px;
  height: 80px;
}

.phbtn li {
  display: flex;
  width: calc(50% - 5px);
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--point2-color);
}

.fa-toggle-on {
  color: var(--point1-color);
}

.fa-toggle-off {
  color: var(--point2-color)
}

.m-link {
  padding: 10px;
  display: flex;
  justify-content: center;
}

.m-free {
  padding: 10px;
  color: var(--point1-color);
}

.m-link li a {
  display: block;
  margin: 0 10px;
}

aside#sidebar2{
  grid-area: sidebar2;
  width: 100%;
}


/* container */
#container {
  grid-area: container;
  width: 700px;
  overflow-y: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wrap{
  height: auto;
  overflow-y: auto;
}


/* paging */
#paging{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: solid 1px var(--border-color);
  border-radius: var(--radius-);
  margin-top: 10px;
}

.num{
  margin: 0 5px;
}

.p-prev a, .p-next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-);
}

#paging .selected{
  color: var(--point2-color);
  font-weight: bold;
}

.info-prog {
  padding: 10px;
}

.prog-txt{
  float: right;
  text-transform: uppercase;
  color: var(--point2-color);
}

.prog-name{
  text-transform: uppercase;
  color: var(--point1-color);
  font-weight: bold;
}

.prog-bar{
  width: 100%;
  height: 4px;
  margin-top: 2px;
  border-radius: var(--radius-);
  background: var(--point2-color);
}

.bar-line1, .bar-line2, .bar-line3{
  background: var(--point1-color);
  height: 4px;
  border-radius: var(--radius-);
}

.prog:not(:first-child) {margin-top: 10px;}

.favorite-img{
  position: relative;
  width: 100%;
}

.favorite-img img {
  width: 100%;  
}
 

/* list */
.empty {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 10px 10px 10px;
  color: var(--point2-color);
  justify-content: center;
}

.list-inner::first-letter{
  content: '';
  display: block;
  clear: both;
  margin: 0;
  padding: 0;
}

.cate-folder{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  border-bottom: solid 1px var(--border-color);
}

.list-cate {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.cate-info{
  font-size: 13px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.cate-desc {
  margin-top: 2px;
  color: var(--point2-color);
}

.cate-conform{
  display: flex;
  align-items: center;
  font-weight: bold;
}

.cate-conform svg{
  margin-right: 5px;
}

.cate-count{
  color: var(--point2-color);
}

.list-inner {
  height: 100%;
}


/* list-basic */
.cover-container, .list-container {
  background: #fff;
  border: solid 1px var(--border-color);
  border-radius: var(--radius-);
}

#list-basic .thumbnail, #list-basic .summary, #list-basic .memo{
  display: none;
}

.list-basic .cover-wrap,
#list-basic .list-wrap {
   display: block;
 }

.list-basic .info, 
#list-basic .info {
  width: 100%; 
  display: flex; 
  flex-direction: row; 
  justify-content: space-between;
  align-items: center;
}
 
#list-basic .list-title {
  width: calc(100% - 50px); 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
 
.cover-title {
  padding: 10px;
  border-bottom: solid 1px var(--border-color);
  text-align: center;
  color: var(--point1-color);
  font-weight: bold;
}

.cover-container .inner:not(:first-child) .cover-title {
  border-top: solid 1px var(--border-color);
}

#list-basic .list-date {
  width: 100px;
  text-align: right;
}

.list-basic .list-title{
  width: calc(100% - 100px); 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}


.list-basic .list-date{
  width: 100px;
  text-align: right;
}

#list-basic .list-lock .list-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

.list-basic .cover-wrap a,
#list-basic .list-item{
  display: block;
  padding: 10px;
  width: calc(100% - 20px);
  margin: 10px;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
}

.list-basic .cover-item:hover,
#list-basic .list-item:hover {
  letter-spacing: 2px;
  border: solid 1px var(--point2-color);
  transition: all 0.3s ease;
}


/* list-memo */
#list-memo .thumbnail, #list-memo .summary, #list-memo .info {
  display: none;
}

.list-memo .cover-inner::after {
  content: ''; display: block; clear: both; margin: 0; padding: 0;
}

.list-memo .cover-inner{
  padding: 10px 10px 0 10px;
}

#list-memo .list-inner{
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
}

.list-memo .memo,
#list-memo .memo {
  height: 120px;
}

.list-memo .memo-info,
#list-memo .memo-info {
  display: flex;
  align-items: center;
}

#list-memo .thumbnail {
  order: 2;
  width: 100%;
  height: calc(100% - 120px);
  position: relative;
  overflow: hidden;
}

#list-memo .thumbnail img {
  position: absolute;
  width: 100%;
  
  /* 이미지 위치 */
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
}

.list-memo .memo-item,
#list-memo .memo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.list-memo .memo-user,
#list-memo .memo-user {
  position: relative;
  width: 30px;
}

.list-memo .memo-user img,
#list-memo .memo-user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.list-memo .memo-title,
#list-memo .memo-title {
  width: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  margin-left: 3px;
  overflow-y: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.list-memo .memo-date,
#list-memo .memo-date {
  width: 70px;
  text-align: right;
}

.list-memo .memo-desc,
#list-memo .memo-desc {
  padding-top: 5px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;  
}

#list-memo .list-lock .memo-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

.list-memo .cover-wrap,
#list-memo .list-wrap{  
  float: left;
  width: calc((100% - 10px) / 2);
  margin: 0 10px 10px 0;
  position: relative;
}

.list-memo .cover-wrap:nth-child(2n),
#list-memo .list-wrap:nth-child(2n){
  margin-right: 0;
}

.list-memo .cover-item, 
#list-memo .list-item{
  display: block;
  flex-direction: column;
  padding: 10px;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color)
}

.list-memo .cover-item:hover,
#list-memo .list-item:hover {
  border: solid 1px var(--point2-color); 
}

#list-memo .memo-title {
  font-weight: bold;
}

#list-memo .memo-title span {
  color: var(--point2-color);  
  margin-top: 3px;
  font-weight: normal;
}


/* list-gallery */
#list-gallery .memo, #list-gallery .summary, #list-gallery .info {display: none;}

.list-gallery .cover-inner::after {
  content: ''; 
  display: block; 
  clear: both; 
  margin: 0; 
  padding: 0;
}


.list-gallery .cover-inner,
#list-gallery .list-inner{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
}

.list-gallery .cover-wrap,
#list-gallery .list-wrap{
  float: left;
  width: calc((100% - 20px) / 3);
  margin: 0 10px 10px 0;
  position: relative;
}

.list-gallery .cover-wrap:nth-child(3n),
#list-gallery .list-wrap:nth-child(3n){
  margin-right: 0;
}

.list-gallery .cover-item,
#list-gllery .list-item{
  display: block;
}

.list-gallery .thumbnail, 
#list-gallery .thumbnail,
#article-related .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-);
  }

.list-gallery .thumbnail img,
#list-gallery .thumbnail img,
#article-related .thumbnail img {
  width:100%;
  -webkit-transform: scale(1); 
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background: #fff;
}  

#list-gallery .thumbnail-info,
#article-related .thumbnail-info {
  padding: 10px;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  position: absolute; 
  top: 0; 
  left: 0; 
  border-radius: var(--radius-);
  opacity: 0;
  transition: 0.3s; 
  display: flex; 
  align-items: center; 
  justify-content: flex-start; 
  color: var(--point1-color);
  font-weight: bold;
  flex-direction: column;
}

.list-gallery .thumbnail-info,
#article-related  .thumbnail-info{
  padding: 10px;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  position: absolute; 
  top: 0; 
  left: 0; 
  border-radius: var(--radius-);
  opacity: 0;
  transition: 0.3s; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  color: var(--point1-color);
  font-weight: bold;
  flex-direction: column;
}

.list-gallery .thumbnail-date {
  color: #fff;
  text-align: right;
  width: 100%;
  font-weight: normal;
}

.list-gallery .thumbnail-title,
#list-gallery .thumbnail-title,
#article-related .thumbnail-title {
  text-overflow: ellipsis; 
  display: -webkit-box;
  line-height: 22px;
  -webkit-line-clamp: 3; 
  text-align: left; 
  -webkit-box-orient: vertical;  
  width: 100%;
  overflow: hidden;
  padding: 5px;
  color: #fff;
}

.list-gallery .cover-wrap .thumbnail:hover .thumbnail-info,
.list-gallery .cover-wrap .thumbnail:focus .thumbnail-info,
#list-gallery .list-wrap .thumbnail:hover .thumbnail-info, 
#list-gallery .list-wrap .thumbnail:focus .thumbnail-info,
#article-related .list-wrap .thumbnail:hover .thumbnail-info,
#article-related .list-wrap .thumbnail:focus .thumbnail-info{
  opacity: 1; 
  transition: all 0.3s ease;
}

.list-gallery .cover-item:hover img,
#list-gallery .list-item:hover img,
#article-related .list-item:hover img{
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
}

.list-gallery .cover-item:hover .thumbnail:before, 
#list-gallery .list-item:hover .thumbnail:before,
#article-related .list-item:hover .thumbnail:before {
  opacity: 0;
}

.list-gallery .cover-item:hover .thumbnail:after,
#list-gallery .list-item:hover .thumbnail:after,
#article-related .list-item:hover .thumbnail:after {
  width: 100%;
}
 
#list-gallery .list-lock .thumbnail-info::after {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  position: absolute;
  bottom: 12px;
  right: 10px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}


 #list-gallery .list-lock .thumbnail:before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  position: absolute; 
  display: flex; 
  justify-content: center; 
  align-items: center;
  bottom: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  opacity: 1;
  z-index: 1;
 color: var(--point2-color);
 transition: all 0.3s ease;
}


#list-gallery .list-wrap .thumbnail:after,
#article-related .list-wrap .thumbnail:after {
 z-index: 99; 
 width: 0; 
 height: 6px; 
 position: absolute;
 left: 0; 
 top: 0; 
 content: ""; 
 -webkit-transition: all 0.3s ease-in-out; 
 transition: all 0.3s ease-in-out; 
}
 

/* list-summary */
#list-summary .memo, #list-summary .info, #list-summary .thumbnail-info {display: none;}

.list-summary .cover-inner,
#list-summary .list-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.list-summary .cover-wrap,
#list-summary .list-wrap{
  float: left;
  width: 100%;
  position: relative;
  margin-top: 10px;
}

.list-summary .cover-wrap:first-child,
#list-summary .list-wrap:first-child{
  margin-top: 0;
}

.list-summary .cover-item,
#list-summary .list-item {
  display: flex;
  border: solid 1px var(--border-color);
  border-radius: var(--radius-);
  overflow: hidden;
}

.list-summary .cover-item .thumbnail,
#list-summary .list-item .thumbnail {
  width: 180px;
  order: 2;
  overflow: hidden;
  position: relative;
}

.list-summary .cover-wrap .thumbnail img,
#list-summary .list-wrap .thumbnail img{
  width: 100%;
  -webkit-transform: scale(1); 
  background: #fff;
  transform: scale(1);	
  -webkit-transition: .5s ease-in-out; 
  transition: .5s ease-in-out;
}

.list-summary .cover-item:hover img,
#list-summary .list-item:hover img{
  -webkit-transform: scale(1.1); 
  transform: scale(1.1);
}

.list-summary .summary,
#list-summary .summary {
  display: flex;
  width: calc(100% - 180px);
  order: 1;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.list-summary .summary-info,
#list-summary .summary-info{
  order: 2;
  display: flex;
  justify-content: space-between;
}

.list-summary .summary-title,
#list-summary .summary-title {
  width: calc(100% - 70px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
}

.list-summary .summary-desc,
#list-summary .summary-desc {
  order: 1;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;  
  line-height: 1.5;
}

#list-summary .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}


.list-summary .cover-item:hover,
#list-summary .list-item:hover {
  border: solid 1px var(--point2-color);
  transition: all 0.3s ease-in-out;
}


/* cover - notice */
.notice .cover-inner {
  padding: 10px;
  text-align: center;
}

.notice .notice-desc {
  margin-top: 10px;
}

.notice .notice-img {
  position: relative; 
  width: 100%; 
  text-align: center;
}

.notice .notice-img img {
  max-width: 100%;
}

.notice .cover-title {
  border-top: solid 1px var(--border-color);
}

.notice .cover-title:first-child {
  border-top: none;
}

/* swiper */
.c-swiper.inner {
  width: 100%;
}

.swiper {
  width: 100%; height: 100%;
}

.swiper.mySwiper  {
  padding: 5px; width: 100%; max-height: 500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.swiper-slide img {
  display: block; 
  width: 100%; 
  object-fit: cover; 
  height: 100%;
  border-radius: var(--radius-);
}

.swiper-pagination-bullet{
  background: var(--point1-color) !important;
}


/* article */
.postbtn_like .wrap_btn_share, .container_postbtn .btn_post .ico_share{
  width: 0 !important;
}


#article .article-wrap {
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
}

.article-tag{
  display: none;
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
  padding: 10px;
  margin-bottom: 5px;
}

.article-tag a::before {
   content: '#'; margin-right: 3px;
}


/* article - desc */
.article-wrap {
  padding: 10px;
}

.article-cate a{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.article-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.article-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--point1-color);
}

.article-date {
  margin-top: 5px;
  color: var(--point2-color);
}

.article-paging {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.article-paging a:hover {
  font-weight: bold;
  transition: all 0.3s ease-in-out; 
}


/* article - tt */
.footnotes {
  margin: 10px 0;
}

.footnote a {
  color: var(--point1-color) !important;
}

blockquote[data-ke-style='style1'] span:before{
  content: ''; 
  display: block; 
  background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0; 
  padding-top: 25px; 
  transform: rotate(0deg);
  margin-top: 10px; 
}

blockquote[data-ke-style='style1'] span:after{
  content: ''; 
  display: block; 
  background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0; 
  padding-top: 25px; 
  transform: rotate(180deg); 
  margin-bottom: 10px;
}

 blockquote[data-ke-style='style2'] {
  padding:5px; 
  margin:10px 0;  
  font-size: 12px; 
  line-height:20px; 
  font-weight: bold;
  text-align: left; 
  background: #fff;
  border-left: solid 7px var(--border-color);
  border-right: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
  border-top: solid 1px var(--border-color);
}

 blockquote[data-ke-style='style3'] {
 padding: 5px; 
 margin:10px 0; 
 font-size: var(--font-size); 
 line-height: 20px; 
 overflow-y: auto;
 border-radius: 5px;
 border: solid 1px var(--border-color);
 }

 blockquote[data-ke-style='style3'] img {
  width: 100%;
}

 blockquote p  {
  font-size: var(--font-size) !important;
}

ul[data-ke-list-type='disc'], ul[data-ke-list-type='circle'],ol[data-ke-list-type='decimal'] {
  padding-left: 10px;
  margin: 10px 0;
}

ul[data-ke-list-type='disc'] li::marker, ul[data-ke-list-type='circle'] li::marker, ol[data-ke-list-type='decimal'] li::marker  {
  color: var(--point1-color);
}

figure.imageslideblock div.mark {
  height: 22px !important;
}

figure.imageslideblock div.mark span {
  margin: 10px 1px !important;
}

figure.imageslideblock figcaption{
  color: var(--point1-color);
  font-weight: bold;
}

.contents_style table td{
  padding: 5px;
}


/* article-btn */
#btn-inner{
  display: flex;
  flex-direction: column;
}

.article-btn {
  display: flex;
  margin: 10px 0;
  justify-content: space-between;
}

.btn-item {
  display: flex;
}

.comment-btn, .related-btn, .tag-btn {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 5px;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
  color: var(--point1-color);
  font-weight: bold;
}

.comment-btn, .tag-btn{
  margin-right: 5px;
}

.container_postbtn .postbtn_like{
  background: #fff;
  padding: 0 !important;
  border-radius: var(--radius-) !important;
  border: solid 1px var(--border-color) !important;
  color: var(--point1-color);
}

.container_postbtn{
  padding: 0 !important;
}

.container_postbtn button:focus, .layer_post button:focus,.layer_tooltip button:focus {
    outline: none !important;
}

.comment-btn:hover, .related-btn:hover, .tag-btn.tag-btn:hover {
  border: solid 1px var(--point2-color);
  transition: all 0.3s ease-in-out; 
  cursor: pointer;
  color: var(--point2-color);
}


/*article-related*/
#article-related {
  display: none;
  width: 100%;
}

#article-related .list-inner {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
  margin: 5px 0;
}

#article-related .list-wrap{
  float: left;
  width: calc((100% - 30px) / 4);
  margin: 0 10px 10px 0;
  position: relative;
}

#article-related .list-wrap:nth-child(4n){
  margin-right: 0;
}


/* namecard */
[data-tistory-react-app='Namecard']{
  order: 4;
}

.tt_box_namecard{
  margin: 5px 0 0 0 !important;
  background: #fff !important;
  border: solid 1px var(--border-color);
  border-radius: var(--radius-);
  min-height: 120px !important;
  justify-content: center !important;
  align-items: center;
}

.tt_box_namecard .tt_cont{
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tt_box_namecard .tt_wrap_thumb {
  margin: 10px !important;
  border-radius: var(--radius-) !important;
}

#article .tt_txt_g {
  font-size: var(--font-size) !important;
  color: var(--point1-color) !important;
}

.tt_box_namecard .tt_btn_subscribe{
  margin-top: 10px !important;
  margin-bottom: 0px !important;
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-) !important;  
}

.tt_box_namecard .tt_btn_subscribe:hover{
  border: solid 1px var(--point2-color)!important;
  color: var(--point2-color) !important;
  transition: all 0.3s ease-in-out; 
}

#article .tt_box_namecard .tt_btn_subscribe:hover .tt_txt_g{
  color: var(--point2-color) !important;
}


/* comment */
#comment {
  display: none;
  margin: 5px 0;
}

.tt-wrap-cmt .tt_desc, .tt-wrap-cmt .tt-link-user{
  font-family: 'Pretendard-Regular';
  font-size: var(--font-size) !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt-box-total {
  order: 1;
  padding: 10px;
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
}

.tt-comment-cont > form {
  order: 2;
  border-bottom: solid 1px var(--border-color);
  padding: 5px 10px 10px 10px;
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--point1-color);
  margin-bottom: 5px !important; 
}

.tt_txt_g {
  font-size: 0 !important;
}

.tt-box-total .tt_txt_g:before {
  content:"\f4ad";
  font-family:"Font Awesome 5 Free";
  font-weight:700;
  color: var(--point1-color);
  font-size: 15px;
}

.tt-box-total {
  display: flex;
  justify-content: flex-end;
  padding: 10px !important;
  border-bottom: solid 1px var(--border-color)!important;
  margin-bottom: 5px;
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--point1-color);
}

.tt-box-total .tt_num_g{
  background: #fff;
  color: var(--point1-color);
}

.tt-box-textarea .tt-inner-g {
  border: solid 1px var(--point2-color) !important;
  padding: 5px !important; 
}

.tt-item-reply {
  padding: 0 !important;
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--point1-color) !important;
  margin: 5px 0;
}

.tt-list-reply {
  display: flex;
  flex-direction: column-reverse;
}

.tt-item-reply .tt-list-reply-comment{
  border-top: unset !important;
}

.tt-list-reply-comment > li{
  border: unset !important;
}

.tt-wrap-cmt {
  padding: 10px;
}

.tt-list-reply-comment li{
  border-top: solid 1px var(--border-color) !important;
  border-radius: unset !important;
}

.tt-item-reply .tt-list-reply-comment{
  margin: 0 !important;
}

.tt-box-thumb {
  margin-right: 10px !important;
}

.tt-list-reply{
  border-bottom: none !important;
}

.tt-btn_register:disabled{
  background: var(--point2-color)!important;
  border: solid 1px var(--point2-color)!important;
}

.tt-btn_register{
  background: var(--point1-color)!important;
  border: solid 1px var(--point1-color)!important;
}

.tt-btn_register:hover {
  background: var(--point2-color)!important;
  border: solid 1px var(--point2-color)!important;
  transition: all 0.3s ease-in-out; 
}

.tt-list-modify li {
  border-top: unset !important;
}

.tt-wrap-cmt .tt-list-modify{
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-)!important;
  top: 20px !important;
  right: 5px !important;
}

.tt-wrap-cmt .tt-list-modify a {
  color: var(--point1-color) !important;
}

.tt-wrap-cmt .tt-list-modify a:hover{
  background: var(--point2-color)!important;
}

.tt-wrap-cmt .tt_date{
  padding-top: 5px !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea .tt-cmt[contenteditable='true']:empty::before{
  content: 'leave a comment' !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea div {
  color: var(--point1-color) !important;
  font-family: 'Pretendard-Regular';
  font-size: var(--font-size) !important;
}

.tt-wrap-cmt .tt-link-user:hover{
 color: var(--point1-color);
 transition: all 0.3s ease-in-out; 
}

.tt-comment-cont > .tt-area-reply > .tt-list-reply > li.tt-item-reply:has(p.tt_cmt_info) {
  order: 1;
}

.tt-item-reply .tt_cmt_info .tt_txt_g{
  font-size: var(--font-size) !important;
}

.tt-item-reply .tt_cmt_info{
  margin: 10px 10px 0 10px !important;
  font-family: inherit !important;
}

.tt-item-reply .tt_cmt_info .tt_txt_g{
  color: var(--point1-color)!important;
  font-weight: bold;
}

.tt-wrap-cmt .tt-wrap-link-comment{
  padding-top: 5px;
  padding-left: 5px !important;
}

.tt-link-comment .tt_txt_g{
  font-size: var(--font-size) !important;
  padding-top: 0 !important;
}

.tt-link-comment .tt_num_g, .tt-link-comment .tt_txt_g{
  color: var(--point1-color) !important;
  font-weight: bold;
}

.tt-area-write .tt-box-account input {
  border: solid 1px var(--point2-color) !important;
  color: var(--point2-color) !important;
}

.tt-area-write .tt-box-account input::placeholder{
  color: var(--point2-color) !important;
}


div[data-ke-type='moreLess'] .btn-toggle-moreless{
  border-radius: 5px;
}

div[data-ke-type='moreLess'].open .btn-toggle-moreless{
   border-radius: 5px 5px 0 0;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
  border: solid 1px var(--point1-color) ;
  font-size: var(--font-size) !important;
  padding: 5px;
  line-height: 23px !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless  {
  color: var(--point1-color);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless:hover {
  border: solid 1px var(--point2-color); 
  color:  var(--point2-color);
}

div[data-ke-type='moreLess'].open .moreless-content{
  margin:0; 
  padding:5px; 
  overflow: hidden;
  border-radius: 0 5px 5px 5px;
  border: solid 1px var(--point2-color); 
}


/* notice */
#notice {
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
  margin: 10px 0;
  padding: 10px;
}

#notice .container_postbtn{
  margin-top: 10px;
}


/* protected */
#protected .article-inner {
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
  padding: 10px;
}

#protected .article-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
  min-height: 500px;
}

.protected-desc {
  color: var(--point1-color);
  font-weight: bold;
}

.protected-password {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px var(--border-color);
}

.protected-password input[type="password"] {
  height: 30px; 
  border: none; 
  font-family: 'Pretendard-Regular'; 
  background: none; 
  border-radius: var(--radius-); 
  padding: 3px; 
  width: calc(100% - 30px);
  color: var(--point1-color);
}

.protected-password input[type="password"]::placeholder{
  color: var(--point2-color);
}

.protected-password input[type="button"] {
  height: 30px; 
  border:none; 
  font-family: 'Pretendard-Regular';
  background: none; 
  border-radius: var(--radius-); 
  padding: 3px; 
  font-weight: bold;
  color: var(--point1-color);
}


/* tag */
#tag {
  background: #fff;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
}

#tag .article-title {
  padding: 10px;
  border-bottom: solid 1px var(--border-color);
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#tag .article-title svg{
  margin-left: 5px;
}

.tag-wrap a:before{
  content: "#"; 
  font-weight:bold; 
  margin-right: 1px;
} 

.tag-wrap{  
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tag-wrap a{  
  padding: 5px;
}

/* postbtn 구독버튼 */
.postbtn a {
  position: relative;
  font-size: 13px;
  margin-left: 3px;
}

.postbtn a:after{
  content:"\f013"; 
  position: absolute;
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  left: 0;
  background: #fff;
  z-index: 9;
}

.btn_menu_toolbar.btn_subscription {
  border-radius: 20px;
  color: var(--point1-color);
  margin-left: 3px;
  font-size: 13px;
}
 
.btn_menu_toolbar.btn_subscription::before {
  float: left;
  color: var(--point1-color);
}

.btn_menu_toolbar.btn_subscription:hover {
  color: var(--point2-color);
  transition: all 0.3s ease-in-out; 
} 

.txt_state {
  font-size: 0;
  display: none;
  width: 0;
  height: 0;
  font-style: inherit;
  margin: 0;
  font-weight: bold;
  text-align: center;
}


/* scrollbar & drag */
::-webkit-scrollbar {
  width: 5px; display: none;
}

::-webkit-scrollbar-track {
  background-color: var(--scrollbg-color); 
}

::-webkit-scrollbar-thumb {
  border-radius: 0; 
  background-color: var(--scroll-color);
}

::-webkit-scrollbar-button {
  display: none; 
}

::selection{
  color:var(--dragtext-color); 
  background:var(--drag-color);
}

/* 반응형 */ 
 @media (max-width:800px){
 #whole{width: 100% !important; height: auto !important; overflow: hidden;
 margin: 0 auto 50px auto; display: flex; flex-direction: column;
 align-items: center;}
 #header, #content {width: 98%;}
 #header {justify-content: space-between;}
 .content-info2 {border-bottom: none !important;}
 #content, .content-link {height: auto !important;}
 .content-side {width: 100% !important; height: 100% !important;
 display: flex; flex-direction: column; overflow: hidden;
 background-image: none !important;}
 .content-info1, .content-info2, .profile-title {border-right: none !important;}
 .content-info1, .content-info2 {width: 100%;}
 #sidebar {margin-right: 0; margin: 10px 0;}
 #container {width: 98% !important; height: auto !important; order: 2;}
 .s-category {height: auto !important;}
 .s-search {overflow: hidden;}
 aside#sidebar1 {width: 98%; order: 1;}
 aside#sidebar2 {width: 98%; order: 3;}
 .sidebar-inner1, .sidebar-inner2 {position: relative; top: 0; width: 100%;}
 /*가로배열*/
 .search {display: none;}
 .profile, .tag-desc li a, .comment-edit, .article-prev, .article-next
 .comment-date {display: flex; flex-direction: row; align-items: center;}
 .comment-edit a {margin-right: 5px;}
 .menu {margin-top: 0;}
 #paging {padding: 5px;}
 #m-paging {width: 100%; left: 0;
 display: flex; justify-content: space-between;}
 .p-prev a, .p-next a {border: none !important; margin-bottom: 0;
  width: auto !important; height: auto !important;}
  #footer {margin-bottom: 15px;}
  .h-btn1 i, .h-btn2 i, .h-text a {font-size: 20px;}
  .h-text img {width: 20px; height: 20px;}
  .swiper.mySwiper {max-height: 320px;}
 } 
 

/* copyright 삭제는 옵션 구매 후 해주세요! */
 #copyright a{position: fixed;  left: 10px; bottom: 10px; display: flex;
 flex-direction: row; align-items: center;}
 .copyright-1{ position: relative; font-size: 11.5px; font-weight: bold; 
  width: auto; z-index: 999;}
 .copyright-2{ opacity:0; margin-left: 3px; transition: all 1s;}
 .copyright-1:hover + .copyright-2{ opacity:1; }


/*youtube*/
 .youtube{position:relative; width:100%; padding-bottom:56.25%;}
 .youtube iframe{position:absolute; width:100%; height:100%;}
