@charset "UTF-8";
/*skin start*/
/* font */ 
@import url('https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/static/pretendard.css');


/* CSS Document */
* {
  padding: 0;
  margin: 0; 
  box-sizing: border-box; 
  font-family: 'Pretendard', sans-serif;
  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;
}

img {
  vertical-align: bottom;
}

textarea {
  resize: none;
}

* a:hover {
  color: var(--point2-color); 
  transition: all 0.3s ease;
}

body {
  color: var(--point1-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;
}


/* html */
html {
  background: var(--body-color);
  --border-radius-: var(--border-radius-);
  --btn-radius-: 5px;
  --font1-size: var(--font1-size);
  --font2-size: var(--font2-size);
  --line-height: var(--line-height);
  --padding1-: .5rem;
  --padding2-: 1rem;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --width-: var(--width-);
  --height-: var(--height-);
  --transition-: all 0.3s ease;
  --grid-: var(--grid-);
}  

/* dark-mode toggle */
html[data-theme='light'] {
  --transform-mode: translateX(0px);
  --active-blob: calc(translateY(100%));
  --light-on: flex;
  --light-off: none;
  --tc-filter: invert(100%) hue-rotate(180deg);
  --side-img-light: flex;
  --side-img-dark: none;
}

html[data-theme='dark'] {
  --transform-mode: translateX(14px);
  --active-blob: calc(translateY(50%));
  --tc-filter: invert(0%);
  --side-img-light: none;
  --side-img-dark: flex;
}

button.theme-toggle {
  display: flex;
  cursor:pointer;
}

span.toggle {
  background: var(--point1-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  display: inline-block;
  position: relative;
  width: 32px;
  height: 18px;
}

span.toggle::after {
  background: var(--article-color);
  border-radius: 50%;
  content: '';
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: all ease-in-out 0.2s!important;
  width: 12px;
  height: 12px;
  transform: var(--transform-mode);
}

span.toggle:active::after {
  transition: all ease-in-out 0.2s;
  width: calc(100% - 4px);
  border-radius: 12px;
  transform: var(--active-blob);
} 

/* dark-mode */
#darkmode {
  position: relative;
  width: var(--width-);
  text-align: right;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#darkmode .btn{
  display: flex;
  align-items: center;
  gap: 5px;
}


/* layout */
#main {
  font-size: var(--font1-size);
  line-height: var(--line-height);
  width: 100%;
  height: 100vh;
  gap: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  flex-direction: column;   
}

#mobile-menu {
  display: none;
}

#whole {
  position: relative;
  display: flex;
  flex-direction: column;
  width: var(--width-);
  height: var(--height-);
  background: var(--article-color);
  border: solid 1px var(--border-color);
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  overflow: hidden;
}


/* search */
.search {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--article-color);
  border-radius:  var(--border-radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  padding: 5px;
  justify-content: center;
}

.search-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.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;
  width: calc(100% - 15px);
}

.submit {
  width: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--point1-color);
  cursor: pointer;
}

.submit:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}


/* whole */
#container {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

#container::-webkit-scrollbar { display: none; }

#fake-scrollbar {
  position: fixed; 
  top: calc(var(--whole-top, 100px)); 
  left: calc(var(--whole-right, 100px) + var(--whole-width, 1200px) + 20px); 
  width: 5px;
  height: var(--whole-height, 700px);
  z-index: 999;
}

#fake-scrollbar .scroll-thumb {
  width: 100%;
  background: var(--scroll-color);
  border-radius: 6px;
  position: absolute;
  left: 0;
}

#footer {
  position: relative;
  height: 70px;
  flex-shrink: 0;
  border-top: 1px solid var(--border-color);
  background: var(--article2-color, var(--article-color));
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: visible;  
}

#footer2 {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  border-top: solid 1px var(--border-color);
  position: relative;
}


.footer-inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-menu,
.footer-cate {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  gap: 5px;
  font-weight: bold;
}

.footer-proimg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--border-color);
  border-radius: 50%;
  cursor: pointer;
}

.footer-proimg .proimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: solid 2px var(--article-color);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: 
    opacity 0.5s cubic-bezier(0.4,0,0.2,1), 
    transform 0.32s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}

.footer-proimg:hover .proimg {
  transform: translate(-50%, -50%) scale(1.09);
}

html[data-theme='light'] .footer-proimg .profile-img-light {
  opacity: 1;
  pointer-events: auto;
}
html[data-theme='dark'] .footer-proimg .profile-img-dark {
  opacity: 1;
  pointer-events: auto;
}


/* pop-up */
.back { 
  display:none; 
  position:fixed; 
  z-index:99; 
  width:100%; 
  top:0; 
  left:0; 
  bottom:0; 
  right:0; 
  background:var(--point1op-color);}


.back-xx {
  width: 100%;
  height: 100%;
}

.pop-inner {
  font-size: var(--font1-size);
  position: absolute;
  z-index: 100;
  width: 500px;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  border: solid 1px var(--border-color);
  box-shadow: var(--box-color);
  top: 50%;
  left: 50%;
  text-align: left;
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  padding: 10px;
  color: rgba(39,39,39,1.00);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.xxx {
  text-align: right;
  widows: 100%;
  color: var(--point1-color);
  font-weight: bold;
}

.xxx:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
  cursor: pointer;
} 




.back-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 5px;
}

.back-proimg {
  position: relative;
  flex: 0 0 250px; 
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-proimg img.proimg {
  position: absolute;
  left: 0; top: 0;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}

.back-info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.back-text {
  height: calc(100% - 20px);
}

.back-title {
  color: var(--point1-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.back-blogger {
  color: var(--point2-color);
  margin-bottom: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.back-desc {
  color: var(--text-color);
  height: 190px;
  overflow-y: auto;
}

.back-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  margin-top: 5px;
}

html[data-theme='light'] .profile-img-light {
  opacity: 1;
  pointer-events: auto;
}
html[data-theme='dark'] .profile-img-dark {
  opacity: 1;
  pointer-events: auto;
}


/* footer2 */
.f-info {
  display: flex;
  padding: 5px;
  flex-direction: column;
  width: calc(50% - 69px);
  justify-content: center;
  align-items: center;
}

.f-text2 {
  text-align: center;
}

.f-info2 {
  display: flex;
  padding: 5px;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  align-items: center;
}

.category {
  display: flex;
}

.f-info, .category a {
  font-weight: bold;
}

.f-text1 {
  max-height: 30px;
  overflow-y: auto;
}

#footer2 .proimg {
  position: relative;
  width: 70px;
  height: 70px;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

#footer2 .proimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--article2-color);
  pointer-events: none;
  z-index: 9;
  transition: background 0.25s;
}

#footer2 .proimg:hover::after {
  background: rgba(255,255,255,0.22);
}

#footer2 .proimg:hover {
  cursor: pointer;
}

#footer2 .proimg-img-light,
#footer2 .proimg-img-dark {
  position: absolute;
  left: 0; 
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}

html[data-theme='light'] #footer2 .proimg-img-light {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
html[data-theme='dark'] #footer2 .proimg-img-dark {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.menu {
  margin-right: 10px;
  display: flex;
}

.menu li {
  margin-right: 10px;
}

.menu li:last-child{
  margin-right: 0;
}

.menu, .cate {
  font-weight: bold;
}

.menu-btn, .cate-btn {
  display: flex;
  align-items: center;
}

.menu svg, .cate svg {
  margin-right: 3px;
}


/* category */
.link_tit, .sub_category_list, .c_cnt {
  display: none;
}

.category_list, .menu-list {
  display: none;
  z-index: 99;
  position: absolute;
  width: 25%;
  bottom: 69px;
  background: var(--article-color);
  border: solid 1px var(--border-color);
  right: -1px;
  padding: 10px;
  line-height: 2;
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
}

.cate_li {
  display: flex;
  align-items: center;
}

.link_sub_item
{
  margin-left: 5px;
}

.sub_item {
  margin-left: 5px;
}

.sub_category_list > li > a:before{content:"-";} 

.menu-btn:hover, .cate-btn:hover, .sub_item:hover {
  cursor: pointer;
  color: var(--point2-color); 
  transition: all 0.3s ease;
}


/* list */
.list-name {
  padding: var(--padding1-);
}

.category-name {
  border: solid 1px var(--border-color);
  border-radius: var(--border-radius-);
  padding: var(--padding1-);
  box-shadow: var(--box-color);
  margin-bottom: var(--padding1-);
}

.cate-name {
  font-weight: bold;
}

.cate-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cate-desc {
  text-align: center;
}

.empty {
  padding: var(--padding2-);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* list-gallery */
#list-gallery .list-td,
#list-gallery .summary {
  display: none;
}

#list-gallery .list-lock .thumbnail-info::after {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight: 700;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
  margin-top: -3px;
}

#list-gallery .list-inner,
#cover-gallery .list-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-) , 1fr);
  gap: var(--padding1-);
}

#list-gallery .list-item,
#cover-gallery .list-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  background: var(--article-color);
  transition: box-shadow 0.18s;
}

#list-gallery .thumbnail,
#cover-gallery .thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

#list-gallery .thumbnail img,
#cover-gallery .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  background: var(--article-color);
}

/* hover 시 살짝 확대 */
#list-gallery .list-item:hover .thumbnail img,
#cover-gallery .list-item:hover .thumbnail img {
  transform: scale(1.07);
}

#list-gallery .thumbnail-info,
#cover-gallery .thumbnail-info {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--padding1-);
  background: rgba(0,0,0,0.58);
  color: var(--article-color);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: var(--border-radius-);
  transition: opacity 0.35s;
  font-size: var(--font1-size);
}

#list-gallery .list-item:hover .thumbnail-info,
#cover-gallery .list-item:hover .thumbnail-info {
  opacity: 1;
  pointer-events: auto;
}

#list-gallery .thumbnail-title,
#cover-gallery .thumbnail-title {
  font-size: var(--font2-size);
  font-weight: bold;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#list-gallery .thumbnail-item,
#cover-gallery .thumbnail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

#list-gallery .thumbnail-date,
#cover-gallery .thumbnail-date {
  font-size: 80%;
  opacity: 0.85;
}
#list-gallery .thumbnail-cate,
#cover-gallery .thumbnail-cate {
  font-size: 80%;
  opacity: 0.72;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* list- basic */
#list-basic .thumbnail,
#list-basic .summary {
  display: none;
}

#list-basic .list-lock .list-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

#list-basic .list-inner,
#cover-basic .list-inner {
  display: flex;
  flex-direction: column;
  gap: var(--padding1-);
}

#list-basic .list-item,
#cover-basic .list-item {
  display: block;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  transition: box-shadow 0.18s;
  padding: 8px 15px;
  text-decoration: none;
}

#list-basic .list-td,
#cover-basic .list-td {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#list-basic .list-title,
#cover-basic .list-title {
  font-weight: bold;
  color: var(--point1-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font1-size);
}

#list-basic .list-date,
#cover-basic .list-date {
  color: var(--point2-color);
  opacity: 0.78;
  font-size: 92%;
  text-align: right;
  white-space: nowrap;
}

#list-basic .list-item:hover,
#cover-basic .list-item:hover {
  background: var(--point2-color);
  border: solid 1px var(--point2-color);
  transition: var(--transition-);
}

#list-basic .list-item:hover .list-title,
#list-basic .list-item:hover .list-date,
#cover-basic .list-item:hover .list-title,
#cover-basic .list-item:hover .list-date {
  color: var(--article-color);
  transition: var(--transition-);
}


/* list memo */
/* list-memo */
#list-memo .list-td,
#list-memo .summary-title,
#list-memo .summary-date,
#list-memo .cate-link,
#list-memo .category-name,
#list-memo .thumbnail-cate {
  display: none;
}

#list-memo .list-inner,
.cover-memo .list-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--padding1-);
}

#list-memo .list-lock .thumbnail-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

#list-memo .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

#list-memo .list-item,
.cover-memo .list-item {
  display: flex;
  flex-direction: column;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  transition: box-shadow 0.18s;
  padding: var(--padding1-);
  text-decoration: none;
  gap: 8px;
  color: var(--text-color);
}

#list-memo .thumbnail,
.cover-memo .thumbnail {
  display: flex;
  align-items: center;
  gap: var(--padding1-);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

#list-memo .thumbnail-info,
.cover-memo .thumbnail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  gap: 2px;
}

#list-memo .thumbnail img,
.cover-memo .thumbnail img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--box2-color);
  background: var(--article-color);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

#list-memo .thumbnail img:hover,
.cover-memo .thumbnail img:hover {
  cursor: zoom-in;
}

#list-memo .list-item:hover .thumbnail img,
.cover-memo .list-item:hover .thumbnail img {
  transform: scale(1.10);
}

#list-memo .thumbnail-title,
.cover-memo .thumbnail-title {
  font-size: var(--font1-size);
  font-weight: bold;
  color: var(--point1-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-memo .thumbnail-item,
.cover-memo .thumbnail-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--padding1-);
}

#list-memo .thumbnail-date,
.cover-memo .thumbnail-date {
  font-size: 80%;
  color: var(--point2-color);
  opacity: 0.72;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-memo .thumbnail-cate,
.cover-memo .thumbnail-cate {
  font-size: 80%;
  color: var(--point2-color);
  opacity: 0.72;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-memo .summary-desc,
.cover-memo .summary-desc {
  font-size: var(--font1-size);
  color: var(--text-color);
  margin-top: 2px;
  word-break: break-word;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* 최대 5줄 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-memo .list-item:hover,
.cover-memo .list-item:hover {
  background: var(--point2-color);
  border-color: var(--point2-color);
  transition: var(--transition-);
}

#list-memo .list-item:hover .thumbnail-title,
#list-memo .list-item:hover .thumbnail-date,
#list-memo .list-item:hover .thumbnail-cate,
#list-memo .list-item:hover .summary-desc,
.cover-memo .list-item:hover .thumbnail-title,
.cover-memo .list-item:hover .thumbnail-date,
.cover-memo .list-item:hover .thumbnail-cate,
.cover-memo .list-item:hover .summary-desc {
  color: var(--article-color);
  transition: var(--transition-);
}
/* memo popup */
#memo-img-modal {
  position: fixed; left: 0; top: 0; 
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.memo-img-modal-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: var(--box-color);
  background: var(--article-color);
}
.memo-img-modal-bg {
  position: absolute; inset: 0; width: 100vw; height: 100vh;
  background: transparent;
}


/* list summary */
#list-summary .thumbnail-info,
#list-summary .thumbnail-item,
#list-summary .list-td,
#list-summary .summary-title,
#list-summary .summary-date {
  display: none;
}

#list-summary .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

#list-summary .list-inner,
.cover-summary .list-inner {
  display: grid;
  grid-template-columns: repeat( 2 , 1fr);
  gap: var(--padding1-);
}

#list-summary .list-item,
.cover-summary .list-item {
  display: flex;
  flex-direction: column;
  background: var(--article-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  padding: var(--padding1-);
  text-decoration: none;
  color: var(--text-color);
  gap: var(--padding1-);
  transition: box-shadow 0.18s;
}

#list-summary .thumbnail,
.cover-summary .thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--border-radius-);
}

#list-summary .thumbnail img,
.cover-summary .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

#list-summary .list-item:hover .thumbnail img,
.cover-summary .list-item:hover .thumbnail img {
  transform: scale(1.08);
}

#list-summary .summary-title,
.cover-summary .summary-title,
#list-summary .summary-date,
.cover-summary .summary-date {
  display: inline-block !important;
  font-weight: 700;
  color: var(--point1-color);
  font-size: var(--font1-size);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

#list-summary .summary-title,
.cover-summary .summary-title {
  margin-right: 5px;
}

#list-summary .summary-date,
.cover-summary .summary-date {
  font-weight: 400;
  font-size: 80%;
  color: var(--point2-color);
  opacity: 0.9;
}

#list-summary .summary-desc,
.cover-summary .summary-desc {
  font-size: var(--font1-size);
  color: var(--text-color);
  line-height: 1.5;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-summary .list-item:hover,
.cover-summary .list-item:hover {
  background: var(--point2-color);
  color: var(--article-color);
  transition: var(--transition-);
  border: solid 1px var(--point2-color);
}

#list-summary .list-item:hover .summary-title,
.cover-summary .list-item:hover .summary-title,
#list-summary .list-item:hover .summary-date,
.cover-summary .list-item:hover .summary-date,
#list-summary .list-item:hover .summary-desc,
.cover-summary .list-item:hover .summary-desc {
  color: var(--article-color);
  transition: var(--transition-);
}


/* list - dday */
#list-dday .thumbnail-info,
#list-dday .list-td {
  display: none;
}

#list-dday .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

#list-dday .list-inner,
.cover-dday .list-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--padding1-);
}


#list-dday .list-item,
.cover-dday .list-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--article-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  padding: var(--padding1-);
  text-decoration: none;
  color: var(--text-color);
  gap: var(--padding1-);
  transition: box-shadow 0.18s;
}

#list-dday .thumbnail,
.cover-dday .thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
  border-radius: var(--border-radius-);
  background: var(--point1-color);
}

#list-dday .thumbnail img,
.cover-dday .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

#list-dday .summary,
.cover-dday .summary {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--article-color);
  text-align: center;
  z-index: 2;
  gap: var(--padding2-);
  padding: var(--padding1-);
}

#list-dday .summary-title,
.cover-dday .summary-title {
  font-size: var(--font1-size);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-dday .summary-date,
.cover-dday .summary-date {
  font-size: 1.08em;
  opacity: 0.92;
  order: 3;
}

#list-dday .summary-desc,
.cover-dday .summary-desc {
  order: 2;
  font-weight: 700;
}

#list-dday .list-item:hover .thumbnail img,
.cover-dday .list-item:hover .thumbnail img {
  transform: scale(1.08);
}

#list-dday .list-item:hover,
.cover-dday .list-item:hover {
  transition: var(--transition-);
  background: var(--point2-color);
}

.cover-dday .summary-desc2 {
  order: 3;
}

.cover-dday summary-dday {
  order: 2;
}


/* cover */
.cover-inner {
  padding: var(--padding1-);
}

.cover-inner > .inner {
  margin-bottom: 10px;
}
.cover-inner > .inner:last-of-type {
  margin-bottom: 0;
}

/* cover-notice */
.cover-notice.inner,
.cover-gallery.inner,
.cover-basic.inner,
.cover-memo.inner,
.cover-summary.inner,
.cover-dday.inner,
.cover-swiper.inner {
  padding: var(--padding1-);
  border-radius: var(--border-radius-);
  border: solid 1px var(--border-color);
}

.cover-notice .notice-list {
  display: none;
}

.cover-notice .c-title {
  display: flex;
  gap: var(--padding1-);
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
}

.cover-gallery .c-title,
.cover-basic .c-title,
.cover-memo .c-title,
.cover-summary .c-title,
.cover-dday .c-title,
.cover-swiper .c-title {
  font-weight: 700;
  padding-bottom: var(--padding1-);
  display: flex;
  align-items: center;
  gap: var(--padding1-);
}

.cover-notice .c-title:hover {
  color: var(--point2-color);
  transition: var(--transition-);
}

.cover-notice.open .c-title i {
  transform: rotate(180deg);
  transition: var(--transition-);
}


/* cover swiper */
.swiper {
  width:calc(100% - var(--padding1-)) !important; 
  margin: 0 !important; 
}

.swiper.mySwiper  {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-);
}

.swiper-slide {
  width: 100%;
  background: var(--article-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-);
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius-);
}

.swiper-pagination-bullet {
  background: var(--point1-color) !important; 
  opacity: 100 !important;
}

.swiper-pagination-bullet-active {
   background: var(--point2-color) !important; 
  opacity: 100 !important;
}



/* article */
#article {
  font-size: var(--font2-size);
  color: var(--text-color);
}

#article .article-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px var(--border-color);
  gap: var(--padding1-);
  padding: var(--padding1-);
}

#article .article-title {
  font-weight: 700 ;
  font-size: 15px; 
}

#article .article-date {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 80%;
  color: var(--point2-color);
}

#article .article-cate a {
  display: flex;
  align-items: center;
  font-size: var(--font2-size);
}

#article .article-desc {
  padding: var(--padding2-);
  border-bottom: solid 1px var(--border-color); 
}

blockquote[data-ke-style="style1"] {
  text-align: center;
}

blockquote[data-ke-style='style1'] span:before { 
  content: '❝';  
  display: block; 
  font-size: 2.2em;
  color: var(--point1-color);
  text-align: left;
  margin-top: 10px; 
}

blockquote[data-ke-style='style1'] span:after { 
  content: '❞';
  display: block; 
  font-size: 2.2em;
  color: var(--point1-color);
  text-align: right;
  margin-bottom: 10px;
}


blockquote[data-ke-style='style2'] {
  padding:5px; 
  margin:10px 0;  
  font-size: var(--font2-size); 
  line-height:20px; 
  font-weight: bold;
  text-align: left;
  background: var(--article-color);
  border-left: solid 3px var(--border-color); 
}

blockquote[data-ke-style='style3'] { 
  padding: 5px; 
  margin:10px 0; 
  font-size: var(--font2-size); 
  line-height: 20px; 
  overflow-y: auto;
}

.contents_style table td {
  padding: var(--padding1-);
  border: solid 1px var(--border-color);
}


ul[data-ke-list-type='disc'] > li {
  list-style: none !important;
}

#article .article-desc ul[data-ke-list-type='disc'] > li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
}

#article .article-desc ul[data-ke-list-type='disc'] > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--point1-color);
  border-radius: 50%;
}

#article .article-desc ul[data-ke-list-type='disc'] > li:hover::before {
  background: var(--point2-color);
  transition: var(--transition-);
}


ul[data-ke-list-type='circle'] > li {
  list-style: none !important;
}

#article .article-desc ul[data-ke-list-type='circle'] > li {
  position: relative;
  padding-left: 1.05em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
}

#article .article-desc ul[data-ke-list-type='circle'] > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5.5px; 
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--point1-color);
  background: transparent;
  box-sizing: border-box;
  transition: border-color 0.18s;
}

#article .article-desc ul[data-ke-list-type='circle'] > li:hover::before {
  border-color: var(--point2-color);
}

ol[data-ke-list-type='decimal'] > li {
  list-style: none !important;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
  counter-increment: custom-ol;
}

#article .article-desc ol[data-ke-list-type='decimal'] {
  counter-reset: custom-ol;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li::before {
  content: counter(custom-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--point1-color);
  font-weight: 700;
  font-size: 1em;
  transition: color 0.18s;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li:hover::before {
  color: var(--point2-color);
}

figure[data-ke-type='opengraph'] div.og-text {
  font-size: var(--font1-size) !important;
  padding: var(--padding2-) !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  font-size: var(--font2-size) !important;
}

[data-ke-type="moreLess"] .btn-toggle-moreless::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0d7"; /* ▼ */
  margin-right: 6px;
  font-size: 1em;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), color 0.18s;
  vertical-align: middle;
  transform: rotate(0deg);
}

[data-ke-type="moreLess"].open .btn-toggle-moreless::before {
  /* 같은 content지만, 180도 회전 */
  transform: rotate(180deg);
}

div[data-ke-type='moreLess'].open .moreless-content {
  border: solid 1px var(--border-color);
  background: #eee;
  padding: var(--padding2-);
  border-radius: var(--border-radius-);
}

[data-ke-type="moreLess"] .btn-toggle-moreless:hover::before,
[data-ke-type="moreLess"].open .btn-toggle-moreless::before {
  transform: rotate(180deg);
  color: var(--point2-color);
  transition: var(--transition-);
}

#article .container_postbtn .btn_menu_toolbar {
  border: none !important;
  line-height: inherit !important;
  height: 37px !important;
  margin-left: 0 !important;
  border-left: solid 1px var(--border-color) !important;
  border-radius: 0 !important;
}

#article .container_postbtn {
  padding: 0 !important;
}

#article .container_postbtn .postbtn_like {
  float: unset;
  display: flex;
  flex-direction: row-reverse;
  padding: 0 !important;
  border: none !important;
  border-radius: unset !important;
}

#article .container_postbtn .btn_post{
  background: var(--article-color);
  border-left: solid 1px var(--border-color);
  height: 37px;
  padding: var(--padding1-);
  display: flex;
}

#article .container_postbtn .btn_post .ico_postbtn {
  margin: 0 !important;
  max-width: unset !important;
}

#article .uoc-icon {
  display: flex;
  align-items: center;
}

#article .txt_like.uoc-count {
  display: inline-block;
  min-width: 1.2em;
  text-align: center;
  color: var(--point1-color);
  font-weight: 700;
  margin-left: 3px;
  transition: color 0.18s;
}

#article .uoc-count {
  color: var(--point1-color) !important;
  font-weight: 700;
  margin-left: 3px;
}

#article .uoc-icon.like_on .txt_like.uoc-count {
  color: var(--point2-color) !important;
  font-weight: 700;
}

#article .btn_post.uoc-icon {
  overflow: visible;
}

#article .btn_post .ico_like {
  width: 18px;
  height: 18px;
  margin: 3px 4px 0 0;
  background: none !important;
  position: relative;
  display: inline-block;
  text-indent: 0 !important;
  overflow: visible !important;
  color: var(--point2-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0;
  line-height: 18px;
  vertical-align: middle;
}

#article .btn_post .ico_like::before {
  content: "\f08a";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease;
}

#article .btn_post .ico_like::after {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--point2-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

#article .btn_post .uoc-icon.like_on .ico_like::before {
  opacity: 0;
}

#article .btn_post .uoc-icon.like_on .ico_like::after {
  opacity: 1;
}

#article .btn_post.uoc-icon:focus,
#article .btn_post.uoc-icon:active,
#article .btn_post.sns_btn.btn_share:focus,
#article .btn_post.sns_btn.btn_share:active,
#article .container_postbtn .btn_post:focus,
#article .container_postbtn .btn_post:active {
  outline: none !important;
  box-shadow: var(--box-color) !important;
}

#article .container_postbtn .btn_post .ico_share {
  width: 18px !important; 
  height: 18px !important;
  margin: 0;
  background: none !important;
  position: relative;
  filter: none;
  color: var(--text-color);
  text-indent: 0 !important; 
  overflow: visible !important;
}

#article .container_postbtn .btn_post .ico_share::before {
  content: "\f1e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-size: 16px;
  color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background: none !important;
  text-indent: 0;
  user-select: none;
  pointer-events: none;
}

.comment-btn:hover, 
.tag-btn:hover, 
.related-btn:hover,
#article .btn_post .ico_like:hover::before,
#article .container_postbtn .btn_post .ico_share:hover::before,
#article .container_postbtn .btn_post .ico_etc:hover::before,
.btn_menu_toolbar:hover .txt_state  {
  color: var(--point2-color);
  cursor: pointer;
  transition: var(--transition-);
}

#article .container_postbtn .btn_post .ico_etc {
  background: none !important;
  text-indent: 0 !important;
  overflow: visible !important;  
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0;
  color: var(--text-color);
  display: inline-block;
  line-height: 1;
}

#article .container_postbtn .btn_post .ico_etc::before {
  content: "\f141";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: inherit;
}

#article .footnotes {
  margin: var(--padding2-) 0;
}


/* container_postbtn */
.wrap_btn > button[data-tiara-action-name="글통계_클릭"] {
  display: none !important;
}


/* article btn */
#article .article-paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px var(--border-color);
}

#article .article-prev a,
#article .article-next a {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
}

#article .article-btn {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--border-color);
}

#article .article-btn1 {
  display: flex;
  justify-content: flex-start;
}

#article .comment-btn,
#article .tag-btn,
#article .related-btn {
  padding: var(--padding1-);
  border-right: solid 1px var(--border-color);
  width: 37px;
  height: 37px;
}



/* article btn inner */
.article-btn-inner {
  display: flex;
  flex-direction: column;
}

.article-tag {
  display: none;
  border-bottom: solid 1px var(--border-color);
  padding: var(--padding1-);
}

/* article related */
#article-related {
  display: none;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  padding-bottom: var(--padding1-);
} 

#article-related .rd-text a {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
  font-size: var(--font2-size);
  font-weight: 700;
}

#article-related .rd-text a svg {
  margin-right: 5px;
}

#article-related .rd-text a:hover,
#article-related a:hover .summary-title {
  color: var(--point2-color);
  transition: var(--transition-);
}

#article-related .rd-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  border-bottom: solid 1px var(--border-color);
}

#article-related .rd-inner .c-gwrap {
  box-sizing: border-box;
}

#article-related .c-gwrap {
  position: relative;
}

#article-related .rd-inner .thumbnail{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

#article-related .rd-inner .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

#article-related .summary-title {
  text-align: center;
  font-size: var(--font2-size);
  color: var(--text-color);
  font-weight: 700;
}

#article-related .thumbnail-info {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  padding: 5px 6px;
  transform: translate(-50%, -50%);
  color: var(--article-color);
  font-size: var(--font2-size);
  font-weight: 700;

  text-align: center;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}

#article-related .rd-inner .list-item:hover .thumbnail img {
  transform: scale(1.09);
}

#article-related .rd-inner .list-item:hover .thumbnail-info {
  opacity: 0;
}

/* namecard */
[data-tistory-react-app="Namecard"] {
  order: 4;
}

#article .tt_box_namecard {
  background: var(--article-color) !important;
  color: var(--text-color) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: var(--padding1-) !important;
  min-height: 150px !important;
  align-items: center;
  flex-direction: column-reverse !important;
  justify-content: center !important; 
  gap: 5px;
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g, .tt_txt_g {
  font-size: var(--font2-size) !important;
}

#article .tt_box_namecard .tt_wrap_thumb {
  margin:  0 !important;
}

#article .tt_box_namecard .tt_cont {
  padding: 0 !important;
}

#article .tt_box_namecard .tt_cont a {
  font-size: var(--font2-size);
  font-weight: 700;
}

#article .tt_box_namecard .tt_desc {
  text-align: center;
  padding-top: 0 !Important;
  font-size: var(--font2-size);
}

.tt_box_namecard .tt_btn_subscribe {
  margin-bottom: 0 !important;
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g {
  font-size: var(--font1-size) !important;
}

/* comment */
#comment {
  font-family: 'Pretendard', sans-serif !important;
  display: none;
  border-bottom: solid 1px var(--border-color);
}

#guestbook .tt-list-reply {
  border-bottom: none !important;
}

.tt-list-reply {
  border-bottom: solid 1px var(--border-color) !important;
}

.tt-list-reply:last-of-type {
  border-bottom: none !important;
}

.tt-list-reply > li:last-child {
  border-bottom: none !important;
}

.tt-comment-cont > .tt-area-reply > .tt-list-reply > li.tt-item-reply:has(p.tt_cmt_info){
  background: var(--article-color);
  border-top: solid 1px var(--border-color) !important;
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed{
  margin-right: 0;
  margin-bottom: 0;
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
  font-size: var(--font1-size) !important;
  font-weight: bold;
}

.tt-item-reply .tt_cmt_info {
  margin: 0;
  padding: var(--padding2-) var(--padding2-) 0 var(--padding2-);
  font-family: inherit !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt-box-total {
  order: 1;
  padding: var(--padding1-);
  background: var(--article-color) !important;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  border-bottom: solid 1px var(--border-color);
  align-items: center;
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
}

.tt-comment-cont > form {
  order: 2;
  padding: var(--padding1-);
  background: var(--article-color);
}

ul.tt-list-reply-comment > li.tt-item-reply > form {
  padding: var(--padding1-);
}

.tt-box-total .tt_txt_g::after {
  content:"\f0e0";
  font-family:"Font Awesome 5 Free";
  font-weight: 400;
  color: var(--point1-color);
  font-size: 18px;
}

.tt_txt_g,
.tt_txt_g {
  font-size: 0 !important;
}

.tt-box-total .tt_num_g{
  color: var(--point1-color);
}

.tt-box-textarea .tt-inner-g {
  border-radius: var(--border-radius-) !important;
}

.tt-box-textarea .tt_txt_user {
  display: none;
}

.tt-cmt[data-placeholder]:empty:before {
  content: 'leave a comment..' !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea.tt-input-textarea .tt-inner-g {
  color: var(--point1-color) !important;
  font-size: var(--font2-size) !important;
  border-color: var(--border-color) !important;
}

.tt-thumbnail {
  border-radius: var(--border-radius-) !important;
}

.tt-btn_register:disabled {
  background: var(--article-color) !important;
  border: solid 1px var(--border-color) !important;
  color: var(--point2-color);
}

.tt-btn_register {
  padding: var(--padding1-) !important;
  width: unset !important;
  height:  unset !important;
  border-radius: var(--border-radius-) !important;
  background: var(--point1-color) !important;
  border: solid 1px var(--border-color);
}

.tt-btn_register:hover,
.tt-btn_register:focus {
  background: var(--point2-color) !important;
  border: 1px solid var(--point2-color) !important;
  transition: var(--transition-);
}

.tt-wrap-cmt {
  padding: var(--padding2-);
}

.tt-list-reply-comment > li > .tt-wrap-cmt {
  padding-left: 30px;
}

.rp_general .tt-list-reply-comment > li:first-child > .tt-wrap-cmt {
  padding-top: 0;
}

.tt-wrap-cmt .tt-link-user,
.tt-wrap-cmt .tt_desc {
  font-size: var(--font1-size) !important;
}

.rp_general {
  background: var(--article-color);
  margin: 10px 0 !important;
  border-bottom: solid 1px var(--border-color);
  padding: 0 !important;
}

.tt-item-reply {
  padding: 0 !important;
}

.tt-list-reply li:first-child {
  border-top: none !important;
}

.rp_general {
  border: none;
}

.tt-item-reply .tt-list-reply-comment {
  border-top: none !important;
  margin: 0;
}

.tt-list-reply-comment > .tt-item-reply {
  border-top: none !important;
}

.tt-box-thumb {
  margin-right: 5px;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

.tt-link-comment .tt_num_g, .tt-link-comment .tt_txt_g{
  color: var(--point1-color) !important;
  font-weight: bold;
}

.tt-wrap-cmt .tt-wrap-link-comment {
  padding-left: 5px;
}

li.tt-item-reply.rp_general > .tt-wrap-cmt {
  border-top: solid 1px var(--border-color);
}

.tt-link-comment .tt_txt_g {
  font-size: var(--font1-size) !important;
  padding-top: var(--padding1-);
}

.tt-wrap-cmt .tt_date {
  font-size: var(--font1-size);
  padding-top: var(--padding1-) !important;
  color: var(--point2-color);
}

.tt-area-write .tt-box-account input {
  border-radius: var(--border-radius-) !important;
}


/* protected */
#protected {
  font-size: var(--font2-size);  
  height: 100%;
}

#protected .article-inner {
  background: var(--article-color);
  padding: var(--padding2-);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#protected .article-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

#protected .article-date {
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  flex-direction: row-reverse;
  display: none;
}

#protected .article-title {
  font-weight: 700;

}

#protected .article-cate a{
  display: flex;
  align-items: center;
}

#protected .article-desc {
  text-align: center;
}

.lock-text {
  margin-bottom: 10px;
}

.lock-desc input[type="password"] {
  border: none; 
  font-family: 'Pretendard-Regular'; 
  background: none; 
  border-radius: var(--border-radius-); 
  padding: var(--padding1-);
  color: var(--point1-color);
}

.lock-desc {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
}

.lock-desc input[type="password"]::placeholder{
  color: var(--point2-color);
}

.lock-desc input[type="button"] {
  width: auto;
  font-family: 'Pretendard-Regular';
  background: none; 
  border-radius: var(--border-radius-); 
  padding: var(--padding1-); 
  font-weight: bold;
  color: var(--point1-color);
  border: solid 1px var(--border-color);
}
 
.lock-desc input[type="button"]:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
  background: var(--border-color);
  cursor: pointer;
}


/* tag */
#tag {
  font-size: var(--font2-size);
}

#tag .article-title {
  margin-bottom: 10px;
}

#tag .article-title {
  border-bottom: solid 1px var(--border-color);
  font-weight: 700;
}

#tag .article-title,
#tag .article-desc {
  padding: var(--padding2-);
  background: var(--article-color);
}

#tag .article-desc {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

#tag .article-desc a:before {
  content: "#";
  font-weight: 700;
  margin-right: 1px;
}


/* notice */
#notice .container_postbtn {
  display: none;
}

#notice {
  border-bottom: solid 1px var(--border-color);
  padding: var(--padding1-);
  font-size: var(--font2-size);
  color: var(--text-color);
}

#notice:last-child{
  border-bottom: none;  
}

#notice .article-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--padding1-);
  margin-bottom: var(--padding1-);
}

#notice .article-title {
  font-weight: 700;
}

/* paging */
#paging{
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-paging{
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  height: 30px;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  padding: 0 5px;
}

.num {
  margin: 0 5px;
}

.p-prev a, .p-next a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

#paging .selected{
  color: var(--point2-color);
  font-weight: bold;
}














/* 반응형 */ 
@media (max-width:800px){
  #darkmode {
    position: relative;
    width: 100%;
    right: unset;
    top: unset;
    padding: 0;
    margin-bottom: 10px;
  }
  #main {
    height: auto !important;
    width: 96% !important;
    margin: 15px auto 15px auto;
  }
  #paging {
    margin: 0 5px;
  }
  button.theme-toggle {
    width: 100%;
    justify-content: flex-end;
  }
  #whole {
    width: 100%;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
  } 
  #sidebar1 {
    width: 98%;
    height: auto;
  }
  .side-inner {
    width: 100%;
    position: relative;
    height: auto;
    top: unset;
  }
  #container {
    width: 100%;
    height: auto;
    order: 2;
  }
  .fake-scrollbar {
    display: none;
  }
  .btn svg {
    display: none;
  }
  #footer {
    display: none;
    width: 100%;
    order: 1;
    border-top: none;
    border-bottom: solid 1px var(--border-color);
  }
  #footer2 {
    width: 100%;
    border-bottom: solid 1px var(--border-color);
    border-top: none;
  }
  #mobile-menu .proimg {
    position: relative;
    width: 70px;
    height: 70px;
    overflow: hidden;
    margin: 0 auto 15px auto;
    border-radius: var(--border-radius-);
  }
  #mobile-menu .profile-img-light,
  #mobile-menu .profile-img-dark {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
  }
  html[data-theme='light'] #mobile-menu .profile-img-light {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }
  html[data-theme='dark'] #mobile-menu .profile-img-dark {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }
  .m-menu, .m-cate {
    display: flex;
    gap: 5px;
    font-weight: 700;
  }
  .m-menu {
    margin-bottom: 5px;
  }  
 
  .swiper.mySwiper {
    max-height: 320px;
  }  
  .f-info, .category {
  display: flex;
  }
  .category_list, .menu-list {
    bottom: unset;
    top: 68px;
    width: 50%;
    border-radius: 0 0 var(--radius-) var(--radius-);
  }
  .f-text1 {
    display: none;
  }
  .list-summary .cover-item .thumbnail, #list-summary .list-item .thumbnail{
    height: 157px;
  }
  .back-title {
    margin-top: 5px;
  }
  .pop-inner {
    width: 95% !important;
  }
  .back-profile { 
    flex-direction: column;
  }
  .back-proimg img {
    width: 100%;
  }
  .back-desc {
    max-height: 190px;
    overflow-y: auto;
    height: unset;
  }
  .list-memo .memo-desc, #list-memo .memo-desc {
    line-height: unset;
  }
  .proimg{
    width: 59px;
  }

  #list-gallery .list-inner,
  #cover-gallery .list-inner,
  #list-memo .list-inner,
  .cover-memo .list-inner,
  #list-summary .list-inner,
  .cover-summary .list-inner{
  display: grid;
  gap: var(--padding1-);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  #mobile-menu {
    display: flex;
    flex-direction: column;
    background: var(--article-color);
    width: 100%;
    border: solid 1px var(--border-color);
    border-radius: var(--border-radius-);
    box-shadow: var(--box-color);
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .s_paging {
    display: none;
  }
  #paging {
    gap: 5px;
  }
} 

/* scrollbar & drag */
::-webkit-scrollbar {
  width: 5px; 
}

::-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);
}

/* copyright 삭제는 옵션 구매 후 해주세요!
링크 삭제 금지 */
#copyright a{ 
  position: fixed;
  right: 10px; 
  bottom: 10px; 
  display: flex;
  flex-direction: row-reverse; 
  align-items: center;
  color: var(--point1-color);
  line-height: 1;
}

#copyright .planet-icon-wrap {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 800px;
}

#copyright .planet-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url('https://blog.kakaocdn.net/dn/Fhfej/btsOdIpDkjd/5fCNO20nJxRvnfEQv2yvVK/img.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  image-rendering: auto;
  background-position: center;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

#copyright .planet-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 10px;
  background: radial-gradient(ellipse at center, var(--point1-color) 0%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  animation: ringSpin 8s linear infinite;
  transform-origin: center;
  transform: translate(-50%, -50%) rotateX(75deg);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

@keyframes ringSpin {
  0% {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg);
  }
}

#copyright .copyright-1{ 
  display: flex;
  align-items: center;
  position: relative; 
  font-size: 11.5px; 
  font-weight: bold; 
  width: auto; 
  z-index: 999;
}

#copyright .copyright-2 {
  opacity: 0;
  transition: all 1s;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

#copyright a:hover .copyright-2 {
  opacity: 1;
  color: var(--point1-color);
  transition: all 1s;
}
/* copyright 삭제는 옵션 구매 후 해주세요!
링크 삭제 금지 */


/*youtube*/
.youtube{
  position:relative; 
  width:100%; 
  padding-bottom:56.25%;
}
.youtube iframe{
  position:absolute; 
  width:100%; 
  height:100%;}

/*skin*/
