@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: 'Pretendard-Regular';
  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 {
  font-size: var(--font1-size);
  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-);
  line-height: var(--line-height);
}  


/* 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;
}

.theme-toggle {
  position: relative;
  font-size: var(--font1-size);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle .icon {
  display: none;
  color: var(--point1-color);
}

.theme-toggle .icon:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

[data-theme="light"] .icon-moon {
  display: inline-block;
}

[data-theme="light"] .icon-sun {
  display: none;
}

[data-theme="dark"] .icon-sun {
  display: inline-block;
}

[data-theme="dark"] .icon-moon {
  display: none;
}

.theme-transition {
  transition: background-color 0.3s, color 0.3s;
}


/* layout */

#header {
  position: fixed;
  transition: transform 0.4s ease;
  top: 0px;
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: space-between;
  padding: 1em;
  background: var(--article-color);
  z-index: 999;
  border-top: solid 5px var(--border-color);
  box-shadow: var(--box-color);
}


/* header */
.h-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin a:hover {
 color: var(--point2-color);
 transition: all 0.3s ease;
}

/* nav */
.nav { flex: 1; }

#menu-toggle {
  background: none; 
  border: none; 
  cursor: pointer;
  font-size: var(--font1-size);
  padding: 0; 
  color: var(--point1-color);
}

#menu-toggle:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

/* SIDE MENU & CLOSE BUTTON */
#side-menu {
  position: fixed;
  top: 0; left: 0;
  width: var(--side-menu-width);
  height: 100%;
  background: var(--point2-color);
  box-shadow: var(--box-color);
  padding-top: 56px; /* 헤더 높이만큼 패딩 */
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  font-size: var(--font1-size);
  transition:
    transform var(--transition-duration) var(--transition-ease),
    opacity   var(--transition-duration) var(--transition-ease);
  z-index: 1001;
}

#side-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* close */
#side-menu .menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: var(--font1-size);
  cursor: pointer;
  color: var(--point1-color);
}

#side-menu .menu-close:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

#side-menu .menu-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 10px;
}


#side-menu .menu-list a {
 text-decoration: none;
 font-size: var(--font1-size);
}


/* category */
.c_cnt {
  font-weight: bold;
  color: var(--point2-color);
}

.cate-list {
  padding: 0 10px 0 10px;
  margin: 0 auto;
}

.cate-list a {
  display: block;
}

.cate_li:hover .sub_item {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

.category_list > li {
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  margin: .5rem 0;
  background: var(--article-color);
}

.link_tit {
  padding: 10px;
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  background: var(--article-color);
  font-weight: bold;
}

.icon-category {
  transition: transform 0.4s ease;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.link_tit:hover .icon-category {
  transform: rotate(90deg);
}


 .category_list a {
  padding: 10px;
  border-radius: var(--border-radius-);
}

.cate_li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub_item {
  cursor: pointer;
  padding-right: 15px;
}

.sub_category_list {
  display: none;
}

.sub_category_list > li > a:before{
  content: '-';
  padding-left: 10px;
}

.cate-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0 10px;
  margin-bottom: 0.5rem;
}

.cate-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-);
  display: block;
  box-shadow: var(--box-color);
}

.cate-img2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin: -36px 0 10px 25px;
  position: relative;
  z-index: 2;
  background: var(--article-color);
  padding: 3px;
  border: solid 3px var(--point2-color);
  }

.cate-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.cate-text {
 padding: .5rem;
 margin: 10px;
 background: var(--article-color);
 border-radius: var(--border-radius-);
 box-shadow: var(--box-color);
}

.cate-blogger {
  font-weight: bold;
}


/* overlay */
#menu-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-duration) var(--transition-ease);
  z-index: 1000;
}

#menu-overlay.open {
  opacity: 1;
  visibility: visible;
}


/* bgm */
:root {
  --toggle-size: 24px;
  --toggle-margin: 8px;
  --bgm-panel-width: 260px;
  --bgm-panel-padding: 5px;
  --bgm-title-size: 1rem;
  --bgm-volume-width: 80px;
  --bgm-progress-height: 4px;
  --bgm-status-size: 0.9rem;
  --side-menu-width: 300px;
  --transition-duration: 0.5s;
  --transition-ease: ease-out;
}

#bgm-toggle {
  z-index: 999;
  cursor: pointer;
  color: var(--point1-color);
}

#bgm-toggle:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

#bgm-panel {
  position: absolute;
  top: 70px;
  right: var(--toggle-margin);
  width: var(--bgm-panel-width);
  background: var(--point1-color);
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
    transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  z-index: 999;
  overflow: hidden;
}

#bgm-panel.showing {
  visibility: visible;
  transition-delay: 0s; /* 즉시 보이게 */
}

#bgm-panel.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.bgm-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bgm-panel-padding);
  background-color: var(--article-color);
}

.bgm-title {
  font-size: var(--font1-size);
  color: var(--bgm-title-color);
  font-weight: bold;
}

#bgm-volume {
  -webkit-appearance: none;
  width: var(--bgm-volume-width);
  height: var(--bgm-progress-height);
  background: var(--point2-color);
  border-radius: 2px;
  outline: none;
}
/* WebKit: 진행된 부분만 gradient로 채우기 */
#bgm-volume::-webkit-slider-runnable-track {
  height: var(--bgm-progress-height);
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--point1-color) 0%,
    var(--point1-color) var(--_pct),
    var(--point2-color) var(--_pct),
    var(--point2-color) 100%
  );
}

/* WebKit 핸들 스타일 */
#bgm-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--point2-color);
  border: none;
  border-radius: 50%;
  margin-top: calc((var(--bgm-progress-height) - 12px) / 2);
  cursor: pointer;
}

/* Firefox: 전체 트랙 배경 */
#bgm-volume::-moz-range-track {
  background: var(--point2-color);
  height: var(--bgm-progress-height);
  border-radius: 2px;
}

/* Firefox: 진행된 부분만 point1-color로 */
#bgm-volume::-moz-range-progress {
  background: var(--point1-color);
  height: var(--bgm-progress-height);
  border-radius: 2px;
}

/* Firefox 핸들 스타일 */
#bgm-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--point2-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#bgm-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: var(--bgm-panel-padding);
  background: var(--article-color);
}

#prev-track,
#play-pause,
#next-track {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font1-size);
  color: var(--bgm-title-color);
  padding: 2px 6px;
}

#bgm-progress {
  -webkit-appearance: none;
  width: 100%;
  height: var(--bgm-progress-height);
  background: var(--point2-color);
  border-radius: 2px;
  outline: none;
  display: block; 
}

#bgm-progress::-webkit-slider-runnable-track {
  height: var(--bgm-progress-height);
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--point2-color) 0%,
    var(--point2-color) var(--_pct),
    var(--article-color) var(--_pct),
    var(--article-color) 100%
  );
} 

#bgm-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

/* Filled part (Firefox) */
#bgm-progress::-moz-range-progress {
  background: var(--point1-color);
  height: var(--bgm-progress-height);
  border-radius: 2px;
}

/* Track (Firefox) */
#bgm-progress::-moz-range-track {
  background: var(--point2-color);
  height: var(--bgm-progress-height);
  border-radius: 2px;
}

#bgm-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--point1-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* 상태창 */
#bgm-status {
  font-size: var(--font1-size);
  color: var(--bgm-status-color);
  text-align: center;
  padding: var(--bgm-panel-padding);
  background: var(--article-color);
}

/* user */
#user-toggle {
  cursor: pointer;
}
#user-panel {
  font-size: var(--font1-size);
  position: absolute;
  top: 70px;
  right: var(--toggle-margin);
  width: var(--bgm-panel-width);
  padding: var(--bgm-panel-padding);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  z-index: 999;
}

#user-panel.showing {
  visibility: visible;
  transition-delay: 0s;
}

#user-panel.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.user-link {
  background: var(--article-color);
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
}

.user-title {
  padding: .5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}

.user-linklist li a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
}

.user-linklist i {
  font-size: var(--font1-size);
}

.user-img {
  position: relative;
  width: 100%;
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  overflow: hidden;
  margin-top: 1rem;
}

.d-day {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--point2-color);
  color: white;
  padding: 4px 8px;
  border-radius: var(--border-radius-);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.user-img:hover .d-day {
  opacity: 1;
  transform: translateY(0);
}

.user-img img {
  width: 100%;
  transition: transform 0.3s ease;
}

.user-img img:hover {
  transform: scale(1.05);
}

.user-notice{
  background: var(--article-color);
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  margin-top: 1rem;
}

.user-article {
  padding: .5rem;
}


/* banner */
#banner-toggle {
  cursor: pointer;
}

#banner-panel {
  font-size: var(--font1-size);
  position: absolute;
  top: 70px;
  right: var(--toggle-margin);
  width: var(--bgm-panel-width);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.3s ease,
  transform 0.3s ease,
  visibility 0s linear 0.3s;
  z-index: 999;
}

.banner, .banner2 {
  background: var(--article-color); 
  box-shadow: var(--box-color);
  padding: .5rem;
  border-radius: var(--border-radius-);
}

.banner2 {
  margin-top: .5rem;
}

#banner-panel.showing {
  visibility: visible;
  transition-delay: 0s;
}

#banner-panel.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.banner-img{
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

.banner-img img {
  max-width: 100%;  
}

.banner-img a:nth-of-type(n+2) {
  margin-top: 5px;
}

.banner-img a {
  display: block;
}

.banner-text {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}


/* tooltip */
#menu-toggle  {
  margin-left: 10px;
}

#bgm-toggle, #menu-toggle, #admin-toggle,
#user-toggle, #banner-toggle {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

#bgm-toggle::after,
#menu-toggle::after,
#admin-toggle::after,
#user-toggle::after,
#banner-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 140%; 
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--point1-color);
  color: #fff;
  padding: 4px 8px;
  border-radius: var(--border-radius-);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-size: var(--font1-size);
  z-index: 100;
}

#bgm-toggle::before,
#menu-toggle::before,
#admin-toggle::before,
#user-toggle::before,
#banner-toggle::before {
  content: '';
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.theme-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 170%; 
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--point1-color);
  color: #fff;
  padding: 4px 8px;
  border-radius: var(--border-radius-);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-size: var(--font1-size);
  z-index: 100;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  top: 160%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}

#bgm-toggle:hover::after,
#bgm-toggle:hover::before,
#menu-toggle:hover::after,
#menu-toggle:hover::before,
.theme-toggle:hover::after,
.theme-toggle:hover::before,
#admin-toggle:hover::after,
#admin-toggle:hover::before,
#user-toggle:hover::after,
#user-toggle:hover::before,
#banner-toggle:hover::after,
#banner-toggle:hover::before
 {
  opacity: 1;
}


/* header-bg */
#header-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider .slide {
  position: absolute;
  top: 0; left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  }

.slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-nav {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.slider-nav button {
  background: none;
  border: none;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.slider-nav button.active {
  opacity: 1;
}

.slider-nav svg {
  width: 16px;
  height: 16px;
  fill: var(--point1-color);
}


#main-wrap {
  display: flex;
  width: var(--width-width);
  gap: 40px;
  padding: 1rem;
  line-height: var(--line-height)
}


/* btn */
.scroll-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  transform: translateX(-50%);
  background: var(--point1-color);
  border: none;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--point2-color);
  z-index: 3;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
}

.scroll-btn:hover {
  background: var(--point2-color);
  color: var(--point1-color);
  transition: all 0.3s ease;
}


/* sidebar */
#sidebar {
  overflow: hidden;
  font-size: var(--font1-size);
  opacity: 0;
  transition: opacity 0.6s ease;
  flex: 2;
  position: sticky;
  top: 40%;
  transform: translateY(-50%);
  align-self: flex-start;
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  height: fit-content;
}

#sidebar.visible {
  opacity: 1;
}

/* profile */
.blog-info {
  padding: 5px;
  background: var(--article-color);
}

.blogger {
  margin-bottom: 5px;
  font-weight: bold;
}

.side-img {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.profile-img-light,
.profile-img-dark {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* 다크모드 or 라이트모드일 때 해당 이미지만 보이게 */
html[data-theme='light'] .profile-img-light {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

html[data-theme='dark'] .profile-img-dark {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.blogmenu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

#content {
  flex: 8;
  font-size: var(--font1-size);
  color: var(--text-color);
  border-radius: var(--border-radius-);
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* search */
.search {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--point2-color);  
  padding: 10px;
  justify-content: center;
}

.search-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.search input::placeholder {
  color: var(--article-color);
}

.search input{
  color: var(--article-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;
}


/*side-toolbar*/
.side-tb, .side-tb2 {
  width: 100%;
  display: flex;  
  background: var(--point1-color);
  align-items: center;
  padding: .5rem 0 0 0 ;
}

.tb-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .3rem;
  padding: .5rem;
}

.tb-btn1, .tb-btn2, .tb-btn3 {
 width: 10px;
 height: 10px;
 border-radius: 50%;
 background: var(--point2-color);
}

.tb-title {
  font-weight: bold;
  color: var(--point1-color);
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  padding: .5rem;
}


/* list */
.empty {
  width: 100%;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 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: 10px;
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0 ;
}

.list-cate {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-right: 5px;
}

@keyframes sparkle {
  0%, 100% {
    color: var(--point1-color);
  }
  50% {
    color: var(--text-color);
  }
}

@keyframes sparkle2 {
  0%, 100% {
    color: var(--point1-color);
    border-bottom-color: var(--point1-color);
  }
  50% {
    color: var(--point2-color);
    border-bottom-color: var(--point2-color);
  }
}

.list-cate:hover .cate-conform,
.list-cate:hover .cate-conform svg,
.tb-title a:hover {
  animation: sparkle 1.0s infinite ease-in-out; 
}

#list-basic .list-item:hover,
.list-basic .cover-item:hover,
#list-memo .list-item:hover,
.list-memo .cover-item:hover,
#list-gallery .list-item:hover .thumbnail-title,
.list-gallery .cover-item:hover,
.list-summary .cover-item:hover,
#list-summary .list-item:hover,
.list-dday .cover-item:hover,
#list-dday .list-item:hover{
  animation: sparkle2 1.0s infinite ease-in-out; 
}


/* lock */
.thumbnail-title.locked::before {
  content: "\f023"; /* Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 4px;
}

.cate-info{
  font-size: var(--font1-size);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
}

.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(--point1-color);
}

.list-inner {
  height: 100%;
}

.list-container {
  overflow: hidden;
}

/* list-toolbar */
.list-container .side-tb,
.list-basic.inner .side-tb {
  padding: .5rem 0 0 0;
}

.list-container .tb-btn,
.list-basic.inner .tb-btn {
  padding: .5rem;
}

/* list-basic */
.cover-container {
 padding: 0;
}

#list-basic {
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
}

#list-basic {
  margin-bottom: 0;
}

#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;
  position: relative;
}
 
.inner:first-child .cover-title{
  border-top: none;
}

.cover-title {
  padding: 10px;
  text-align: left;
  color: var(--point1-color);
  font-weight: bold;
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
}

#list-basic .list-date {
  width: 100px;
  text-align: right;
}

.list-basic .list-date{
  width: 100px;
  text-align: right;
}

#list-basic .list-lock .list-title::after{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

#list-basic .list-item,
.list-basic .cover-item{
  display: block;
  position: relative;
  padding: 10px;
  width: 100%; 
}

.list-basic .cover-wrap:last-child .cover-item, 
#list-basic .list-wrap:last-child .list-item {
  border-bottom: none;
}


.list-basic .cover-wrap:last-child .cover-item {
  border-bottom: none;
}

#list-basic .list-title,
.list-basic .list-title  {
  display: -webkit-box; 
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 20px;
  text-align: left;
  font-weight: bold;
  transition: padding-left 0.4s ease;
  padding-left: 0;
}

#list-basic .list-title {
  width: calc(100% - 50px); 
}

.list-basic .list-title{
  width: calc(100% - 100px); 
}

#list-basic .title-icon,
.list-basic .title-icon {
  display: inline-flex;
  opacity: 0;
  transform: translateX(-6px);
  width: 0;
  overflow: hidden;
  transition: opacity 0.4s ease,
    transform 0.4s ease,
    width 0.4s ease;
}

/* hover */
#list-basic .list-item:hover .title-icon,
.list-basic .cover-wrap:hover .title-icon {
  opacity: 1;
  transform: translateX(0);
  width: auto;
  overflow: visible;
}

/*  hover */
#list-basic .list-item:hover .list-title,
.list-basic .cover-wrap:hover .list-title {
  padding-left: 6px; 
}

/* list-memo */
#list-memo .side-tb {
  display: none;
}

#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 .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

#list-memo .list-inner,
.list-memo .cover-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-), 1fr);
  gap: var(--padding1-);
}

.list-memo .cover-inner {
  padding: var(--padding1-);
}


.list-memo .cover-item, 
#list-memo .list-item{
  display: block;
  position: relative;
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  background: var(--article-color);
  overflow: hidden;
  transition: box-shadow 0.18s;
}

.list-memo .memo,
#list-memo .memo {
  position: relative;
}

.list-memo .memo-info{
  margin: 10px;
  width: calc(100% - 20px);
  background: var(--article-color);
  border-radius: var(--border-radius-);
}

#list-memo .memo-info {
  display: flex;
  align-items: center;
  width: calc(100% - 50px);  
}

#list-memo .thumbnail {
  order: 2;
  width: 100%;
  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;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px; 
  width: 100%; 
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.list-memo .memo-item img,
#list-memo .memo-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

#list-memo .memo-title {
  background: var(--point2-color);
  padding: var(--padding1-);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  max-width: calc(100% - 30px);
}

#list-memo .memo-title-text {
  flex: 1 1 0;
  min-width: 0; 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  color: var(--point1-color);  
  font-weight: 700;
}

.list-memo .memo-title{
  padding: 5px;
  font-weight: bold;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-memo .memo-date {
  padding: 5px;
  display: flex;
  align-items: center;
}

#list-memo .memo-date {
  color: var(--point2-color);
  white-space: nowrap;
  flex-shrink: 0;
  padding: .5rem .75rem;
  display: flex;
  align-items: center;
}

.list-memo .memo-date svg,
#list-memo .memo-date svg {
  margin-right: 5px;
}

.list-memo .memo-desc,
#list-memo .memo-desc {
  line-height: 1.7;
  padding: 5px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
  -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;
} 

.popup-title.locked::before {
  content: "\f023"; /* FontAwesome 자물쇠 아이콘 */
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 3px;
}

.list-memo .cover-wrap:hover,
#list-memo .list-wrap:hover {
  transition: all 0.3s ease;
}




/* popup-overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* 기본 숨김 */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/* popup-content */
.popup-content {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: var(--border-radius-);
  overflow: hidden;
  box-shadow: var(box-shadow);
}

.popup-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 70vh;
  cursor: pointer;
  background: #fff;
}

.popup-title {
  padding: .5rem;
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  font-weight: bold;
}

.memo-title img {
  transition: transform 0.4s ease-in-out;
  transform: scale(1);
}

.memo-title img:hover {
  transform: scale(1.1);
}
/* list-gallery */
#list-gallery .memo, #list-gallery .summary, #list-gallery .info {display: none;}

.list-memo .side-tb2 {
  padding: 0;
}
.list-gallery .side-tb2 {
  flex-direction: column;
  padding: 0;
}

#list-gallery .side-tb {
  display: none;
}

#list-gallery .tb-btn {
  flex-shrink: 0;
}

#list-gallery .list-inner{
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

#list-gallery .thumbnail-info {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
}

#list-gallery .thumbnail-title {
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  font-weight: bold;
}

#list-gallery .thumbnail-date {
  color: var(--point2-color);
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

#list-gallery .thumbnail-date svg{
  margin-right: 5px;
}

.list-gallery .cover-inner{
  display: flex;
  flex-wrap: wrap;
  padding: var(--padding1-);
}

#list-gallery .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

#list-gallery .list-inner,
.list-gallery .cover-inner {
  display: grid;
  grid-template-columns: repeat( var(--grid-) , 1fr); 
  gap: var(--padding1-); 
}

#list-gallery .list-wrap,
.list-gallery .cover-wrap {
  float: none;
  width: 100%; 
  margin: 0; 
  background: var(--point1-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
}


.list-gallery .cover-item{
  display: block;
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  overflow: hidden;
}


#list-gllery .list-item{
  display: block;
}

.list-gallery .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#list-gallery .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-);
}

#list-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 img,
#list-gallery .thumbnail img {
  width:100%;
  -webkit-transform: scale(1); 
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background: var(--article-color);
  opacity: 1;
}  

.list-gallery .thumbnail-text,
#list-gallery .thumbnail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.list-gallery .thumbnail-icon,
#list-gallery .thumbnail-icon {
  padding: 5px;
  border: solid 1px var(--border-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.list-gallery .thumbnail-title{
  flex-grow: 1;
  margin: .5rem;
  font-weight: bold;
  width: calc(100% - 1rem);
  border-radius: var(--border-radius-);
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: .5rem;
  background: var(--article-color);
}


#list-gallery .thumbnail-title{
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: .5rem;
}

.list-gallery .cover-item:hover img,
#list-gallery .list-item:hover img,
.list-dday .cover-item:hover img{
  animation: shimmer 1.2s infinite ease-in-out;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}


.list-gallery .cover-item:hover .thumbnail:before, 
#list-gallery .list-item:hover .thumbnail:before {
  opacity: 0;
}

.list-gallery .cover-item:hover .thumbnail:after,
#list-gallery .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;
  font-size: 1rem;
  top: 50%;  
  left: 50%;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
  display: flex; 
  justify-content: center; 
  align-items: center;
}


 #list-gallery .list-lock .thumbnail:before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight: 700;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex; 
  justify-content: center; 
  align-items: center;
  width: 10px;
  height: 10px;
  z-index: 1;
  color: var(--point1-color);
  transition: all 0.3s ease;
}


#list-gallery .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-gallery .list-title,
#list-gallery .list-title{
  font-weight: bold;
  width: 100%; 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* list-summary */
#list-summary .memo, #list-summary .info, #list-summary .side-tb,
#list-summary .summary-dday {display: none;}

#list-summary .list-inner,
.list-summary .cover-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-), 1fr);
  gap: var(--padding1-);
}




.list-summary .cover-inner {
  padding: var(--padding1-);
}

#list-summary .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

.list-summary .cover-wrap,
#list-summary .list-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.18s;
}

.list-summary .cover-item,
#list-summary .list-item {
  display: flex;
  flex-direction: column;  
  overflow: hidden;
  height: 100%;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

.list-summary .cover-item .thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

#list-summary .list-item .thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

#list-summary .list-item .thumbnail img {
  width: 100%;
}

#list-summary .thumbnail-info {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
}

#list-summary .thumbnail-title {
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  font-weight: bold;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: .5rem;
  text-align: center;
}

#list-summary .thumbnail-date {
  color: var(--point2-color);
  display: flex;
  align-items: center;
}

#list-summary .thumbnail-date svg {
  margin-right: 5px;
}

.list-summary .cover-wrap .thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#list-summary .list-wrap .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#list-summary .list-wrap .side-tb2 {
  position: relative;
  z-index: 2; 
}

.list-summary .cover-wrap:hover img,
#list-summary .list-wrap:hover img{
	animation: shimmer 1.2s infinite ease-in-out;
}


.list-summary .summary,
#list-summary .summary {
  display: flex;
  width: 100%;
  order: 2;
  padding: .5rem;
  flex-direction: column;
  justify-content: space-between;
}

.list-summary .summary-info,
#list-summary .summary-info{
  margin-bottom: .5rem;
  order: 1;
  display: flex;
  justify-content: space-between;
}

.list-summary .side-tb2 {
  padding: 0;
}

.list-summary .summary-title2{
  background: var(--article-color);
  margin: .5rem;
  width: calc(100% - 1rem);
  border-radius: var(--border-radius-);
  font-weight: bold;
  padding: 5px;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

#list-summary .summary-title {
  width: calc(100% - 70px);
  overflow: hidden;
  display: -webkit-box;
  font-weight: bold;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
}

.list-summary .summary-desc,
#list-summary .summary-desc {
  order: 2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -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-playlist */
#list-dday .memo, #list-dday .info,
#list-dday .side-tb, #list-dday .summary-desc, #list-dday .thumbnail-date{
  display: none;
} 

#list-dday .list-inner,
.list-dday .cover-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-), 1fr);
  gap: var(--padding1-);
}

.list-dday .cover-inner {
  padding: var(--padding1-);
}

#list-dday .list-container{
  background:none;
  border: none;
}
 
#list-dday .cate-folder{
  border: solid 1px var(--border-color);
  background: var(--article-color);

  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  margin-bottom: 10px;
}

.list-dday .cover-wrap,
#list-dday .list-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.18s;
}

.list-dday .cover-wrap{
  position: relative;
  background: var(--point1-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

#list-dday .thumbnail-info {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
}

#list-dday .list-item {
  position: relative;
  width: 100%; 
  background: var(--point1-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  display: block;
  overflow: hidden;
}

#list-dday .thumbnail-title {
  padding: .5rem;
  background: var(--point2-color); 
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  font-weight: bold;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-dday .thumbnail,
#list-dday .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
}


.list-dday .thumbnail img,
#list-dday .thumbnail img {
  width:100%;
  -webkit-transform: scale(1); 
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background: var(--article-color);
  opacity: 1;
}  


.list-dday .summary{
  width: 100%;
  text-align: center;
  overflow: hidden;
} 

.list-dday .side-tb2 {
  padding: 0;
}

.list-dday .cover-title {
  padding: 10px;
  text-align: left;
  color: var(--point1-color);
  font-weight: bold;
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
}

.list-dday .list-dday-title {
  background: var(--article-color);
  margin: .5rem;
  width: calc(100% - 1rem);
  border-radius: var(--border-radius-);
  font-weight: bold;
  padding: 5px;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

#list-dday .summary
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: var(--point2-color);
  background: var(--point1op-color);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#list-dday .list-item:hover .summary {
  opacity: 1;
  visibility: visible;
}

#list-dday .summary-info{
  padding: 10px;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column-reverse;
}

.list-dday .summary-info{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  background: var(--point1op-color);
  color: var(--point2-color);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: var(--font1-size);
  line-height: 1.4;
  max-width: 80%;
  display: flex;
  flex-direction:column-reverse;
}

.list-dday .summary-desc {
  font-weight: bold;
}

.list-dday .summary-title,
#list-dday .summary-title{
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
}

#list-dday .summary-dday {
  font-weight: bold;
}

.list-dday .summary-date,
#list-dday .summary-date{
  text-align: right;
  display: none;
  width: 100%;
}

#list-dday .summary-date{
  text-align: right;
  margin-top: 5px;
}

#list-dday .list-item:hover {
  color: var(--point2-color);
}



/* paging */
#paging{
  display: flex;
  align-items: center;
  justify-content: center;  
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  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(--border-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(--border-radius-);
  background: var(--point2-color);
}

.bar-line1, .bar-line2, .bar-line3{
  background: var(--point1-color);
  height: 4px;
  border-radius: var(--border-radius-);
}

.prog:not(:first-child) {margin-top: 10px;}

.favorite-img{
  position: relative;
  width: 100%;
}

.favorite-img img {
  width: 100%;  
}


/* cover - notice */
.cover-container .inner{
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  overflow: hidden;  
  margin-bottom: 10px;
} 
 
.cover-container .inner:last-of-type{
  margin-bottom: 0;
}

.notice .cover-inner {
  padding: 10px;
  text-align: center;
}

.notice .notice-img {
  position: relative; 
  width: 100%; 
  text-align: center;
}

.notice .notice-img img {
  max-width: 100%;
  border-radius: var(--border-radius-);
}

.notice .cover-title:first-child {
  border-top: none;
}

/* swiper */
.c-swiper.inner {
  width: 100%;
}

.swiper {
  width: 100%;
  height: auto;
  position: relative;
}

.swiper.mySwiper {
  width: 100%;
  max-height: 600px; /* 이미지 슬라이드 height */
}

/* 슬라이드 이미지가 세로 비율이 많다면 
aspect-ratio: 3 / 4 로 변경해주세요 */
.swiper-slide {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
 
.swiper-pagination-bullet{
  background: var(--point1-color) !important;
}

/* article */
.postbtn_like .wrap_btn_share, .container_postbtn .btn_post .ico_share{
  width: 0 !important;
}

#article {
  font-size: var(--font2-size);
  color: var(--text-color);
}

#article .side-tb {
  justify-content: space-between;
}

.article-flex {
  display: flex;
}

.article-title {
  padding: .5rem;
  background: var(--point2-color);
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  color: var(--point1-color);
  font-weight: bold;
}

.atticle-item, .article-desc, .article-paging{
  background: var(--article-color);
  padding: 10px;
}

#article .btn_menu_toolbar{
  display: none !important;
}

#article .article-wrap {
  background: var(--point1-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
}

.article-tag{
  display: none;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  padding: 10px;
  margin-bottom: 5px;
}

.article-tag a::before {
   content: '#'; margin-right: 3px;
}


/* article - desc */
.article-cate a{
  display: flex;
  padding-right: .5rem;
  justify-content: flex-end;
  align-items: center;
  color: var(--point2-color);
}

.article-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.article-date svg {
  margin-right: 5px;
}

.article-date {
  display: flex;
  margin-left: 5px;
  align-items: center;
  color: var(--point2-color);
}

.article-paging {
  font-weight: bold;
  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']{
  text-align: center;
}

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: var(--font1-size);
  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(--font1-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;
  padding: 5px 0;
  justify-content: space-between;
}

.btn-item {
  display: flex;
}

.comment-btn, .related-btn, .tag-btn {
  display: flex;
  align-items: center;
  padding: 5px;
  color: var(--point1-color);
  font-weight: bold;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

.comment-btn, .tag-btn{
  margin-right: 5px;
}

.container_postbtn .postbtn_like{
  padding: 0 !important;
  border: solid 1px var(--border-color) !important;
  background: var(--article-color) !important;
  border-radius: var(--border-radius-) !important;
  box-shadow: var(--box-color) !important;
  color: var(--point1-color) 
}

.container_postbtn{
  padding: 0 !important;
  margin: 10px 0;
}

.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 {
  transition: all 0.3s ease-in-out; 
  cursor: pointer;
  color: var(--point2-color);
}


/*article-related*/
#article-related {
  display: none;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  margin-bottom: 5px;
}

#article-related .list-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}

#article-related .list-wrap{
  float: left;
  width: calc((100% - 15px) / 4);
  margin: 0 5px 0 0;
  position: relative;
  border-radius: var(--border-radius-);
  overflow: hidden;
}

#article-related .list-wrap:nth-child(4n){
  margin-right: 0;
}

#article-related .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-);
}

#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: var(--article-color);
  opacity: 1;
}  

#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: center; 
  color: var(--point1-color);
  font-weight: bold;
  flex-direction: column;
}

#article-related .thumbnail-title {
  text-overflow: ellipsis; 
  display: -webkit-box;
  line-height: 22px;
  -webkit-line-clamp: 3; 
  text-align: center; 
  -webkit-box-orient: vertical;  
  width: 100%;
  overflow: hidden;
  padding: 5px;
  color: var(--article-color);
}

#article-related .list-wrap .thumbnail:hover .thumbnail-info,
#article-related .list-wrap .thumbnail:focus .thumbnail-info{
  opacity: 1; 
  transition: all 0.3s ease;
}

#article-related .list-item:hover img{
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
  opacity: .5;
}

#article-related .list-item:hover .thumbnail:after {
  width: 100%;
}

#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; 
}

/* namecard */
[data-tistory-react-app='Namecard']{
  order: 4;
}

.tt_box_namecard{
  margin: 5px 0 0 0 !important;
  background: var(--article-color) !important;
  border-radius: var(--border-radius-) !important;
  box-shadow: var(--box-color) !important;
  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: 5px !important;
  border-radius: var(--border-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(--border-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;
  padding-top: 10px;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

#guestbook {
  padding: 10px 5px;
}

#guestbook .tt-box-total,
#guestbook .tt-comment-cont > form,
#guestbook .tt-list-reply > li {
  background: var(--article-color);
}

.tt-wrap-cmt .tt_desc, .tt-wrap-cmt .tt-link-user{
  font-family: 'Pretendard-Regular';
  font-size: var(--font-size) !important;
  color: var(--text-color) !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt-box-total {
  order: 1;
  padding: 10px;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
}

.tt-comment-cont > form {
  order: 2;
  padding: 10px;
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  margin-bottom: 5px !important; 

}

.tt-txt-mention{
  background: transparent !important;
}

.tt-item-reply > form {
  padding: 10px;
}

.tt_txt_g {
  font-size: 0 !important;
}

.tt-box-total .tt_txt_g::after {
  content:"\f4ad";
  font-family:"Font Awesome 5 Free";
  font-weight:700;
  color: var(--point1-color);
  font-size: 15px;
  margin:0 5px;
}

.tt-box-total {
  display: flex;
  justify-content: flex-end;
  padding: 10px !important;
  margin-bottom: 10px;
}

.tt-box-total .tt_num_g{
  color: var(--point1-color);
}

.tt-box-textarea .tt-inner-g {
  border: solid 1px var(--point2-color) !important;
  padding: 5px !important; 
  background: var(--article-color);
  border-radius: var(--border-radius-)!important;
}

.tt-item-reply {
  padding: 0 !important;
  border: none !important;
  margin: 5px 0;
}

.tt-list-reply > li {
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
}

.tt-list-reply-comment .tt-wrap-cmt{
  border-radius: 0 0 var(--border-radius-);
  border-top: none !important;
}

.tt-list-reply-comment .tt-item-reply{
  margin: 0 !important;
}

.tt-list-reply {
  display: flex;
  flex-direction: column-reverse;
}

.tt-wrap-cmt {
  padding: 10px;
}


.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; 
  color: var(--point1-color);
}

.tt-list-modify li {
  border-top: unset !important;
}

.tt-wrap-cmt .tt-list-modify{
  border: solid 1px var(--border-color) !important;
  border-radius: var(--border-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: none !important;
  color: var(--point2-color) !important;
}

.tt-area-write .tt-box-account input::placeholder{
  color: var(--point2-color) !important;
}

.tt-area-write .tt-box-account input {
  background: var(--point1-color) !important;
  border-radius: var(--border-radius-) !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(--border-color); 
  font-size: var(--font-size) !important;
  padding: 5px;
  line-height: 25px !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(--border-color); 
}
 
 
/* notice */
#notice {
  color: var(--text-color);
  background: var(--point1-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
  margin: 10px 0;
}

#notice:first-child{
  margin-top: 0;
}

#notice .container_postbtn{
  margin-top: 10px;
  display: none !important;
}

#notice .article-info {
  margin-bottom: 0;
  padding: 10px;
}

#notice .article-desc{
  padding: 10px;
}

/* protected */

#protected {
  border-radius: var(--border-radius-) var(--border-radius-) 0 0;
  box-shadow: var(--box-color);
  overflow: hidden;  
}

#protected .article-info {
  display: flex;
  margin-bottom: 0;
  flex-direction: row;
}

#protected .article-title {
  background: var(--point2-color);
  padding: .5rem; 
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#protected .article-inner {
  padding: 10px;
  background: var(--article-color);
}

#protected .article-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
  min-height: 500px;
}

#protected .article-cate{
  margin-left: 5px;
}

.protected-desc {
  color: var(--point1-color);
  font-weight: bold;
}

.protected-password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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(--border-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; 
  width: auto;
  font-family: 'Pretendard-Regular';
  background: none; 
  border-radius: var(--border-radius-); 
  padding: 3px; 
  font-weight: bold;
  color: var(--point1-color);
}
 
.protected-password input[type="button"]:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}


/* tag */
#tag {
  background: var(--point1-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
}

#tag .article-title {
  padding: 10px;
  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;
  background: var(--article-color);
}

.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; 
} 

#article .txt_state {
  font-size: 0;
  display: none;
  width: 0;
  height: 0;
  font-style: inherit;
  margin: 0;
  font-weight: bold;
  text-align: center;
} 


/* 반응형 */ 
@media (max-width: 800px) {
  #main-wrap {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    width: 100%;
  }
  #sidebar {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  #sidebar {
    width: 100%;
    position: static;
    transform: none;
    margin-bottom: 0;
  }
  .scroll-btn {
    display: none;
  }
  #content {
    width: 100%;
    min-height: unset;
  }
  /* 슬라이드 반응형 */
  #header-bg {
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .slide-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .slide {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
  }
  .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .slider-nav {
    justify-content: center;
    padding: 8px 0;
    gap: 8px;
  }
  .slider-nav button {
    width: 12px;
    height: 12px;
  }
  .slider-nav svg {
    width: 12px;
    height: 12px;
  }
  .banner-img {
    display: flex;
    flex-direction: column;
  }
  .banner-img a + a {
    margin-top: 5px;
  }
  .user-img img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .bgm-title-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  #bgm-volume {
    width: 100%;
  }
  .cate-img {
    margin: 0;
    aspect-ratio: 4/3;
  }
  .cate-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .cate-img2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  /* list */
  #list-gallery .thumbnail-date,
  #list-summary .thumbnail-date {
    display: none;
  }
  #list-gallery .thumbnail-info,
  #list-summary .thumbnail-info,
  #list-dday .thumbnail-info {
    width: calc(100% - 65px);
  } 
  #protected .article-cate {
    display: none;
  }
  #list-gallery .list-inner, 
  .list-gallery .cover-inner,
  #list-memo .list-inner, 
  .list-memo .cover-inner,
  #list-summary .list-inner, 
  .list-summary .cover-inner,
  #list-dday .list-inner, 
  .list-dday .cover-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--padding1-);
  }
  #list-memo .memo-date {
    display: none;
  }
}

/* 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);
}

/* 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*/
