@charset "utf-8";
/* Mypage Style
   ========================================================================== */
/* Mypage Profile Section */
.mypage-profile {
}
.mypage-profile .stat-info {
  position: relative; /*color-scheme: only light;*/
}
.mypage-profile .stat-info .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
  border-radius: 1.6rem;
}
.mypage-profile .stat-info .bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -50%;
  left: 0;
  right: 0;
  background-color: #984db8; /* background: radial-gradient(ellipse at center 98%, rgb(251 218 244) 15%, rgb(237 183 235) 35%, rgb(152 77 184) 100%); */
  background: radial-gradient(ellipse at center 180%, #fbdaf4 0%, #984db8 100%);
}
.mypage-profile .stat-info .bg .img-1 {
  position: absolute;
  top: -2.5rem;
  left: -4.7rem;
  width: 23.9rem;
  height: 13.8rem;
  background: url(../../imgs/contents/mypage/mypage_profile_bg.svg?v=1) no-repeat
    center / contain;
}
.mypage-profile .stat-info .bg .img-2 {
  position: absolute;
  bottom: -2.5rem;
  right: 3rem;
  width: 11.2rem;
  height: 11.2rem;
  background: url(../../imgs/contents/mypage/mypage_profile_bg_1.svg?v=1) no-repeat
    center / contain;
}

.mypage-profile .stat-info .info {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
}
.mypage-profile .stat-info .info .avatar {
    overflow: hidden;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  /* background: url(../../imgs/common/avatar/avatar_bg.png) no-repeat center /
    contain;
  background-color: hsl(0, 0%, 100%); */
  background-color: var(--color-purple-50);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.03);
}

.mypage-profile .stat-info .info .tit {
  text-transform: capitalize;
  margin-left: 2rem;
  color: #000;
  font-size: 2.4rem;
  font-weight: 600;
  text-shadow:
    2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px 0px 0 #fff,
    0px 2px 0 #fff,
    -2px 0px 0 #fff,
    0px -2px 0 #fff;
  filter: drop-shadow(0 4px 18px #fff);
  animation: blinking-name 2s steps(1) infinite;
  /* display: inline-block;
  transform: skewY(-20deg); */
}
@keyframes blinking-name {
  50% {
    color: var(--color-secondary-800);
  }
  /* 66% {color: #006add;} */
}
.mypage-profile .stat-info .info .btns {
  margin-left: 1rem;
  margin-top: 0.2rem;
}
/* .mypage-profile .stat-info .info .btns .btn-icon-only {}
.mypage-profile .stat-info .info .btns .btn-icon-only:hover {}
.mypage-profile .stat-info .info .txt-score {} */

/* Explore Zone */
.explore-zone {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  margin-bottom: 50px;
}

.explore-zone .tit {
  position: absolute;
  top: 8rem;
  left: -4rem;
  opacity: 0.4;
  display: inline-block;
  margin-left: 2rem;
  vertical-align: middle;
}

/* 3개 복제 요소 공통 스타일 */
.explore-zone .tit .txt-clone {
  position: absolute;
  top: 30px;
  left: 0;
  white-space: nowrap;
  text-transform: capitalize;
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow:
    2px 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff,
    2px 0px 0 #fff, 0px 2px 0 #fff, -2px 0px 0 #fff, 0px -2px 0 #fff;
  filter: drop-shadow(0 4px 18px #fff);
  /* 📐 20도 기울기 축 설정 */
  transform: skewY(-15deg); 
  /* ⚙️ 속성 추가: 전체 사이클 6초 */
  animation: 
    blinking-name 2s steps(1) infinite,
    move-diagonal-20deg 6s linear infinite;
  /* 🌟 핵심 치트키: 대기 시간(delay) 동안 0% 시점의 위치(화면 밖)에 미리 가 있도록 설정 */
  animation-fill-mode: none, backwards; 
}

/* ⏱️ 3분할 딜레이 세팅 (정박자 순환) */
.explore-zone .tit .clone1 {
  animation-delay: 0s, 0s;
}
.explore-zone .tit .clone2 {
  animation-delay: 0s, 2s; /* 2초 동안 왼쪽 화면 밖에서 대기하다가 출발 */
}
.explore-zone .tit .clone3 {
  animation-delay: 0s, 4s; /* 4초 동안 왼쪽 화면 밖에서 대기하다가 출발 */
}
/* 📐 20도 대각선 이동 키프레임 */
@keyframes move-diagonal-20deg {
  0% {
    /* 시작 지점: 영역 왼쪽 바깥 아래 */
    transform: skewY(-20deg) translate(-70px, -30px);
  }
  100% {
    /* 끝 지점: 영역 오른쪽 바깥 위 */
    transform: skewY(-20deg) translate(360px, -50px);
  }
}

.section-title {
  /* white-space: nowrap;
  text-transform: capitalize;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow:
    2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000,
    2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000;
  filter: drop-shadow(0 4px 18px #000);
  animation: blinking-name 2s steps(1) infinite; */
}

.explore-zone .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
  border-radius: 1.6rem;
}
.explore-zone .bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -50%;
  left: 0;
  right: 0;
  background-color: var(
    --gray-100
  ); /* background: radial-gradient(ellipse at center 98%, rgb(251 218 244) 15%, rgb(237 183 235) 35%, rgb(152 77 184) 100%); */
  background: radial-gradient(
    ellipse at center 180%,
    var(--indigo-100) 0%,
    var(--indigo-700) 100%
  );
}
.explore-zone .bg .img-1 {
  position: absolute;
  top: -1.8rem;
  left: -0.7rem;
  width: 184px;
  height: 195px;
  background: url(/assets/imgs/contents/main/explore_zone_01.png) no-repeat
    center / contain;
  opacity: 0.5;
}
.explore-zone .bg .img-2 {
  position: absolute;
  bottom: -3.5rem;
  right: -3rem;
  width: 26.2rem;
  height: 22.2rem;
  background: url(/assets/imgs/contents/main/explore_zone_02.png) no-repeat
    center / contain;
  opacity: 0.5;
}
.swiper-wrapper {
}

.searchbar-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 20px;
}
.searchbar {
  position: relative;
  --bar-height: 50px; /* 여기서 높이만 바꾸면 라운드도 자동 반영 */
  height: var(--bar-height);
  width: 100%;
  border-radius: calc(var(--bar-height) / 2);
  max-width: 560px;
  padding: 0 calc(var(--bar-height) / 2) 0 calc(2 * 5rem);;
  margin: auto 20px;
  border: none;
  background-color: #fff;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow:
    0 5px 10px rgba(0, 0, 0, 0.05),
    0 10px 10px rgba(0, 0, 0, 0.03);
}
.searchbar input[type="text"] {
  position: relative;
  outline: none;
  border: none;
  height: 100%;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  background-color: #fff;
}
/* .searchbar input[type="text"]::placeholder {
    color: #a0a0a0;
    font-weight: 300;
} */
.searchbar form,
.searchbar fieldset {
  height: 100%;
}
.searchbar .search-btn {
  position: absolute;
  height: 100%;
  top: 0;
  left: 10px;
  width: 60px;
  border-radius: calc(var(--bar-height) / 2);
  display: flex;
  justify-content: center;
  background-color: #fff;
  color: var(--gray-900);
}
[data-theme="dark"] .searchbar .search-btn {
  color: var(--color-gray-900);
}
[data-theme="dark"] .searchbar .search-btn:hover {
  color: var(--color-gray-900);
}
[data-theme="dark"] .searchbar .search-btn .svg-icon {
  width: 26px;
  height: 26px;
}

.searchbar .search-clear-btn {
  position: absolute;
  height: 100%;
  top: 0;
  right: 10px;
  width: 60px;
  border-radius: calc(var(--bar-height) / 2);
  display: flex;
  justify-content: center;
  background-color: #fff;
  color: var(--gray-900);
}
[data-theme="dark"] .searchbar .search-clear-btn {
  color: var(--color-gray-900);
}
[data-theme="dark"] .searchbar .search-clear-btn:hover {
  color: var(--color-gray-900);
}
[data-theme="dark"] .searchbar .search-clear-btn .svg-icon {
  width: 26px;
  height: 26px;
}

/* keyword */
.keyword-wrap {
}
.keyword-slide {
  overflow: hidden;
  width: 100%;
}
.keyword-slide .swiper-wrapper {
  transition-timing-function: linear !important; /* 롤링이 끊기지 않게 함 */
}
.keyword-slide .swiper-wrapper .swiper-wrapper {
  justify-content: center;
  align-items: center;
}
.keyword-slide .swiper-wrapper .swiper-slide {
  display: flex;
  gap: 1.2rem;
  width: auto;
  height: auto;
  align-items: center;
}
.keyword-slide .swiper-wrapper .swiper-slide a {
  position: relative;
  display: block;
  padding: 1rem 3.5rem 1rem 2.1rem;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--gray-900);
  font-weight: 600;
  border-radius: 2.6rem;
  box-shadow: inset 0 0.1rem 1rem 0 rgba(0, 0, 0, 0.03);
  background: no-repeat right 10px center / 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg fill='%236F6F6F' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 17.5c-.2 0-.4-.1-.5-.2-.3-.3-.3-.8 0-1.1l5.7-6.1-5.8-6.2c-.3-.3-.3-.8.1-1.2.3-.3.8-.3 1.1 0l6.3 6.7c.3.3.3.8 0 1.1l-6.3 6.7c-.2.2-.4.3-.6.3z'/%3E%3C/svg%3E");
}
.keyword-slide .swiper-wrapper .swiper-slide a:active {
  filter: brightness(0.96);
  transform: scale(0.95);
  transition:
    transform 0.15s ease-in-out,
    filter 0.2s ease-in-out,
    background-color 0.2s;
}
.keyword-slide .swiper-wrapper .swiper-slide a.active::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 6px;
  width: 24px;
  height: 22px;
  padding: 0;
  background: url(/assets/imgs/icons/icon_checked_wavy_circle.svg) no-repeat
    center center / contain;
  cursor: pointer;
  pointer-events: none;
  transition: background-image 0.2s;
  transform: translateY(-50%);
}

.keyword-slide .swiper-wrapper .swiper-slide img {
  vertical-align: middle;
}
.keyword-wrap .swiper-controller {
  margin: 0.5rem 0 0 2rem;
}
.keyword-wrap .swiper-controller .btn-controller {
  width: 22px;
  height: 22px;
  border: none;
  background: #fff url(/assets/imgs/icons/icon_play_stop.svg) no-repeat center
    center / 22px;
  border-radius: 50%;
}
.keyword-wrap .swiper-controller .btn-controller.on {
  background: #fff url(/assets/imgs/icons/icon_play_circle.svg) no-repeat center
    center / 22px;
}
.keyword-slide .swiper-wrapper .swiper-slide [class^="item"] {
  flex-shrink: 0;
}
[data-theme="dark"] .keyword-slide .swiper-wrapper .swiper-slide a {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.signin-group-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: var(--k-gnb-height) 0 var(--k-gnb-height);
  min-height: 100vh;
  line-height: 1.6;
  word-break: keep-all;
  background: url(../../images/content/login/ClaudeMonet298128.webp) no-repeat
    center center / contain;
  background-size: cover;
}
.signin-group-wrap::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.9)
  );
  opacity: 0.3;
}
.signin-group {
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  width: 1366px;
  margin: 0 var(--k-layout-padding) 0;
}
.signin-group .signin-title {
  flex: 1;
  display: flex;
  justify-content: center;
}
.signin-group .signin-title h2 {
  max-width: 540px;
  overflow: hidden;
  font-size: calc(2.5 * 1rem);
  line-height: calc(1.4 * (1 + (1 - 4) / 25));
  font-weight: bold;
  color: #fff;
}
.signin-group .signin-title .txt-source {
  position: absolute;
  left: 20px;
  bottom: -50px;
  font-size: 24px;
  font-weight: bold;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #5363fd, #fff 45%, #fff 76%, #fff);
  background-color: #000 0%;
}
/* .signin-group .signin-title .txt-link {margin-top: 30px;} */

/* .signin {width:500px; padding: 50px; border-radius: 6px; background-color: #fff; box-shadow: 0 2px 4px -1px rgb(0 0 0 / 6%), 2px 6px 13px 0 rgb(0 0 0 / 7%);}
.signin > .title {color: #0e081e; font-size: 18px; font-weight: 600;} */

/* @media (max-height: 670px) {
    .signin-group-wrap { min-height: 670px;}
} */
div.signup-form .k-form-input {
  border-color: #cbb1e2;
  background-color: #fff;
}
.signin-formbox {
  padding: 1rem 0 3rem;
}
.signin-formbox .k-text-field-label {
  display: flex;
  align-items: center;
  padding: 7px 0;
}
.signin-formbox .k-text-field-label a {
  margin-left: auto;
  font-weight: normal;
  color: #694be7;
}
.signin-formbox .k-form-input {
  border-radius: 0.8rem;
}
.signin-formbox .k-text-field ~ .k-text-field {
  margin-top: 20px;
}

.signin-formbox .k-form-text {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
}
.signin-formbox .k-form-text a {
  margin-left: 5px;
  color: #694be7;
}
.signin .k-input-error {
  border-color: #fac5dc;
  background-color: #fff;
  transition: all 0.2s;
}
.signin .k-input-error:focus {
  border-color: #e179a7;
}

.signin-formbox .svg-icon {
  width: 20px;
  height: 20px;
  vertical-align: top;
}
.signin-formbox .svg-icon path {
  fill: #0e081e;
}
.k-text-field-putin-btn {
  position: relative;
}
.k-text-field-putin-btn .k-btn-icon {
  position: absolute;
  right: 2px;
  top: 40px;
}
.signin-formbox .btn-password-show {
  border-color: transparent;
  background-color: transparent;
}
.signin-formbox .btn-password-show path {
  fill: #785ac9;
}
.signin-formbox .btn-password-show .svg-icon:last-child {
  display: none;
}
.signin-formbox .btn-password-show.active .svg-icon:first-child {
  display: none;
}
.signin-formbox .btn-password-show.active .svg-icon:last-child {
  display: block;
}

.signin .k-text-chk .k-checkbox,
.signin .k-text-chk .k-radio {
}
.signin .k-checkbox,
.signin .k-radio {
  display: block;
  margin: 0 0 8px 0;
  background: #fff;
  color: #000;
  text-align: left;
  line-height: 1.3rem;
  cursor: pointer;
}
.signin .k-checkbox svg path,
.signin .k-radio svg path {
  stroke: #7352ff;
}
.signin .k-checkbox svg,
.signin .k-radio svg {
  left: 5px;
  margin-top: -8px;
  width: 14px;
  height: 14px;
}
.signin .k-checkbox label,
.signin .k-radio label {
  width: 100%;
  font-size: 15px;
  padding: 2px 0 0 32px;
}
.signin .k-checkbox input[type="checkbox"],
.signin .k-radio input[type="radio"],
.signin .k-checkbox label::before,
.signin .k-radio label::before {
  width: 24px;
  height: 24px;
  border-width: 2px;
}
.signin .k-checkbox .k-input-error ~ label::before,
.signin .k-checkbox .k-radio label::before {
  border-color: #e81887;
}
.signin .k-checkbox input[type="checkbox"]:checked ~ label::before,
.signin .k-radio input[type="radio"]:checked ~ label::before {
  border-color: #8062ff;
}

/* .k-form-submit-wrap {display: flex; align-items: center;}
.k-form-submit-wrap > p {position: relative;} */
.signin .k-form-submit {
  display: flex;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.signin .k-form-submit > .k-btn {
  font-size: 17px;
  line-height: 18px;
  font-weight: bold;
  letter-spacing: 0;
}

.signup {
  width: 540px;
}

.sns-login {
  margin-top: 30px;
}
.sns-login .tit {
  position: relative;
  color: rgb(124, 124, 125);
  line-height: 1;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: -0.26px;
  text-align: center;
}
.sns-login .tit::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 100%;
  height: 1px;
  background: #dedede;
}
.sns-login .tit > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 14px;
  background-color: #fff;
}
.sns-login > .sns-nav {
  position: relative;
  padding: 28px 0 20px;
  display: flex;
  justify-content: center;
}
.sns-login > .sns-nav::after {
  content: "";
  display: block;
  clear: both;
}
.sns-login > .sns-nav strong {
  font-weight: bold;
}
.sns-login > .sns-nav > a {
  float: left;
  width: 110px;
  position: relative;
  display: block;
  padding: 60px 0 0;
  line-height: 1.2;
  font-size: 15px;
  letter-spacing: -0.42px;
  color: #4c4c4c;
  text-align: center;
  text-transform: capitalize;
}
.sns-login > .sns-nav > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  vertical-align: top;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
}
.sns-login > .sns-nav > .btn-sns-google::before {
  box-shadow: 0px 0px 0px 1px #e7e7e9 inset;
  background-color: #fff;
  background: #fff url(../../images/common/ico/icon_goog.svg) no-repeat center
    center / 26px;
}
/* .sns-login > .sns-nav > .btn-sns-kakao::before {} */
/* .sns-login > .sns-nav > .btn-sns-facebook::before {} */
.sns-login > .sns-nav > .btn-sns-apple::before {
  background-color: #000;
  background: #000 url(../../images/common/ico/icon_apple.svg) no-repeat center
    47% / 18px;
}

/* Post View Hero */
.post-view-hero {
  position: relative;
  width: auto;
  max-width: 1440px;
  min-height: auto;
  margin: 0 auto;
  margin-bottom: 0;
  padding: 2rem 0;
  overflow: hidden;
}
.post-view-hero .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 1.6rem;
}
.post-view-hero .bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -50%;
  left: 0;
  right: 0;
  background-color: var(
    --gray-100
  ); /* background: radial-gradient(ellipse at center 98%, rgb(251 218 244) 15%, rgb(237 183 235) 35%, rgb(152 77 184) 100%); */
  background: radial-gradient(
    ellipse at center 180%,
    var(--indigo-100) 0%,
    var(--indigo-700) 100%
  );
}
.post-view-hero .bg .img-1 {
  position: absolute;
  top: -1.8rem;
  left: -0.7rem;
  width: 184px;
  height: 195px;
  background: url(/assets/imgs/contents/main/explore_zone_01.png) no-repeat
    center / contain;
  opacity: 0.5;
}
.post-view-hero .bg .img-2 {
  position: absolute;
  bottom: -3.5rem;
  right: -3rem;
  width: 26.2rem;
  height: 22.2rem;
  background: url(/assets/imgs/contents/main/explore_zone_02.png) no-repeat
    center / contain;
  opacity: 0.5;
}

.post-view-header {max-width: 1024px; margin: 0 auto; display: flex; justify-content: space-between;}
.post-view-header .user-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: inset 0 0.1rem 1rem 0 rgba(0, 0, 0, 0.03);
  background-color: var(--color-purple-50);
  box-shadow:
  0 5px 10px rgba(0, 0, 0, 0.05),
  0 10px 10px rgba(0, 0, 0, 0.03);
  /* background: radial-gradient(ellipse at center 98%, rgb(251 218 244) 15%, rgb(237 183 235) 35%, rgb(152 77 184) 100%); */
  /* background: radial-gradient(
    ellipse at center 180%,
    var(--indigo-100) 0%,
    var(--indigo-700) 100%
  ); */
}
.post-view-header .item-info {display: flex;  align-items: center;}
.post-view-header .item-name {display: flex; align-items: center; gap: 2rem; font-size: 16px; letter-spacing:0; font-weight: 500; color: var(--color-white);/*text-transform: capitalize;*/}
.post-view-header .item-author {display: flex; align-items: center; font-weight: 400; font-size: 14px; text-transform: capitalize;}
.post-view-header .item-author .user {font-size: var(--font-size-16); font-weight: 500; 
    /* text-shadow:
    2px 2px 0 #4547a9,
    2px -2px 0 #4547a9,
    -2px 2px 0 #4547a9,
    -2px -2px 0 #4547a9,
    2px 0px 0 #4547a9,
    0px 2px 0 #4547a9,
    -2px 0px 0 #4547a9,
    0px -2px 0 #4547a9; */
  }
.post-view-toolbar {position: relative; display: flex; align-items: center; gap: 0.8rem; font-size: var(--font-size-12); margin-left: auto;}

.post-view-toolbar .btn-item-count-likes {position: relative; transition: all 0.3s; color: #ff5959; padding: 0 1rem;}
.post-view-toolbar .btn-item-count-likes .svg-icon {width: 20px; height: 20px;}
.post-view-toolbar .btn-item-count-likes .text:empty {display: none;}
.post-view-toolbar .btn-item-count-likes .svg-icon path:nth-child(1) {opacity: 1;}
.post-view-toolbar .btn-item-count-likes .svg-icon path:nth-child(2) {opacity: 0; transform: scale(0.2); transform-origin: center;}
.post-view-toolbar .btn-item-count-likes.active .svg-icon path:nth-child(1) {opacity: 0;}
.post-view-toolbar .btn-item-count-likes.active .svg-icon path:nth-child(2) {opacity: 1; transform: scale(1); transition: all 0.5s cubic-bezier(0.3, 2.8, 0.6, 0.5);}

.post-view-toolbar .btn-item-count-comments {position: relative; transition: all 0.3s; color: var(--color-purple-700); padding: 0 1rem;}
.post-view-toolbar .btn-item-count-comments .svg-icon {width: 20px; height: 20px;}
.post-view-toolbar .btn-item-count-comments .text:empty {display: none;}

.post-view-date {display: flex; justify-content: center; margin: 20px 0 10px; line-height: 1; color: var(--color-base-500); font-weight: 300;}
.post-view-title {display: flex; justify-content: center; margin: 10px 0; text-transform: capitalize; text-align: center;
  text-transform: capitalize;
  color: var(--color-base-800);
  font-size: 3rem;
  letter-spacing: -1px;
  /* font-weight: 600; */
  /* text-shadow:
    2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px 0px 0 #fff,
    0px 2px 0 #fff,
    -2px 0px 0 #fff,
    0px -2px 0 #fff; */
  /* filter: drop-shadow(1px 1px 0px #8484c8); */
}
.post-view-info {display: flex; justify-content: center; align-items: center; }
.btn-item-visit { text-transform: capitalize; background: var(--gradient-primary); color: #fff; transition: all .3s cubic-bezier(.4, 0, .2, 1);}
.btn-item-visit:hover,
.btn-item-visit:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(99,102,241,.2);
    color: #fff;
    text-decoration: none
}
.btn-item-visit:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,hsla(0,0%,100%,.2),transparent);
    transition: left .5s ease
}
.btn-item-visit:hover:before,
.btn-item-visit:hover:focus {
    left: 100%
}


/* Section View */
/* .section-view-zone {padding: 2.5rem 0; margin: 0 calc(-1 * var(--body-padding-side));} */
/* .post-view-content {background: url(/assets/imgs/contents/site/view_bg.png) repeat center;} */
.section-view-zone {margin: 2.5rem 0 0; /*margin: 0 calc(-1 * var(--body-padding-side));*/ margin-bottom: 100px;}
.section-view .builder-edit-section img {width:100%}

/* ========================================================
   💻 데스크톱 기본 스타일 (오버레이 숨김)
   ======================================================== */
.section-view-zone {
  display: flex;
  /* min-height: calc(100vh - 60px); */
  /* overflow: hidden; */
  position: relative;
}
.section-view {
  max-width: 1440px; margin: 0 auto; 
  flex: 1;
  /* min-height: calc(100vh - var(--header-height)); */
  background: #f9f9f9;
  transition: flex 0.3s ease-in-out;
}
.side-panel {
  position: relative;
  width: 0;
  min-width: 0;
  background: var(--body-background-color);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.side-panel .side-content {
  width: 400px;
  padding: 20px 0;
  box-sizing: border-box;
}
.side-panel.active {
  margin-left: 1rem;
  width: 400px;
  overflow: visible;
  /* box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05); */
}

/* 🌟 데스크톱에서는 오버레이 기본 비활성화 */
.side-overlay {
  display: none;
}

.side-body {height:100%; padding: 0 20px; overflow-x:hidden; overflow-y:auto; will-change:scroll-position; -webkit-overflow-scrolling:auto; -ms-overflow-style: none;}
.side-body::-webkit-scrollbar{-webkit-appearance:none;width:10px}
.side-body::-webkit-scrollbar-thumb{border-radius:5px;background-color:rgba(116, 113, 117, 0.6);-webkit-box-shadow: 0 0 1px rgba(116, 113, 117, 0.6)}

.side-panel-close {display: none; position:absolute; z-index:10; top:-16px; left:-19px; background-color: var(--color-base); transition: background  300ms ease; border-color: var(--color-base-200);}
.side-panel-close:hover,
.side-panel-close:focus {background-color: var(--color-base-50);}
.side-panel-close:hover::before,
.side-panel-close:hover::after {background-color:var(--color-base-700);}
.side-panel-close::before,
.side-panel-close::after {display:inline-block; content:""; display:block; position:absolute; top:14px; left:8px; height:2px; width: 44%; background-color:var(--color-base-400);; font-size:0; line-height:0; transform: rotate(0); transition:all 0.2s ease-out;}
.side-panel-close::before {transform: rotate(45deg);}
.side-panel-close::after {transform: rotate(-45deg);}

.side-content {padding: 2rem;}
.side-content .title {display: flex; justify-content:space-between; align-items: center; padding: 0 20px; margin-right: 2px; font-weight: 500; font-family: Haas Grot Text R Web; text-transform: capitalize;}
/* .side-content-toolbar {} */
.side-content-toolbar .btns {display: flex; align-items: center; gap: 0.4rem; line-height: 1; color: var(--color-purple-700)}

@media screen and (max-width: 1440px) {
    /* .section-view {padding: 2.5rem 0;} */
}

/* ========================================================
   📱 1024px 이하일 때: fixed 변신 및 오버레이 활성화
   ======================================================== */
@media screen and (max-width: 1024px) {
  .section-view {
    flex: none;
    width: 100%;
  }

  .side-panel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    z-index: 950; /* 🌟 오버레이(.side-overlay)보다 위에 뜨도록 z-index 조절 */
    box-shadow: none;
    transition: transform 0.3s ease-in-out; 
    transform: translateX(0); 
  }

  .side-panel .side-content {
    width: 100%;
    height: 100%;
    /* overflow-y: auto; */
  }

  .side-panel.active {
    margin-left: 0;
    width: 350px;
    transform: translateX(-350px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  }

  /* 🌟 1024px 이하에서 작동할 오버레이 기본 레이아웃 정의 */
  .side-overlay {
    display: block; /* 미디어쿼리 내부에서 활성화 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4); /* 화면을 어둡게 할 딤드(Dimmed) 처리 */
    z-index: 940; /* 사이드바 본체보다는 아래, 일반 본문보다는 위 */
    
    /* 자연스러운 페이드인 효과를 위한 세팅 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  /* 🌟 오버레이가 활성화 되었을 때 부드럽게 나타남 */
  .side-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .side-panel-close {top:5px;}
}
@media screen and (max-width: 480px) {
    /* .section-view-zone {margin-left: -1.6rem; margin-right: -1.6rem;} */
    .explore-zone {
        margin-bottom: 0;
    }
    .side-panel {
        width: 86%;
        right: -86%;
    }
    .side-panel.active {
        width: 86%;
        right: -86%;
        transform: translateX(-100%);
    }
}
/* .side-panel {
  position: fixed;
  top: 0;
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 1050;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.side-panel.left {
  left: 0;
  transform: translateX(-100%);
}
.side-panel.right {
  right: 0;
  transform: translateX(100%);
}
.side-panel.active {
  transform: translateX(0);
}
.side-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1040;
}
.side-overlay.active {
  opacity: 1;
  visibility: visible;
} */
 

@media screen and (max-width: 1440px) {
    .post-view-hero {padding: 2rem;}
}

/* @media screen and (max-width: 1024px) {
    .signin-group .signin-title h2 {font-size: calc(2 * 1rem); line-height: calc(1.4 * (1 + (1 - 4)/25));}
} */
@media screen and (max-width: 767px) {
  .searchbar {
    padding: 0 calc(var(--bar-height) / 2) 0 calc(2 * 2.6vw + 5rem);
  }
  .post-view-header .item-name {gap: 1rem;}
  .post-view-hero .bg .img-1 {
    transform: rotate(65deg) scale(0.6, 0.6);
    top: -5.8rem;
    left: 34%;
  }
  .post-view-hero .bg .img-2 {
    transform: scale(0.5, 0.5);
    bottom: -5.5rem;
    right: -10rem;
  }

}



.post-comments-image {margin: 20px; min-height: 40px; display: flex; align-items:center; justify-content: center; text-align: center; }

.post-comments-form {padding: 15px 0 10px;}
.comment-textarea {position: relative; display: block; width: 100%; height: 66px; padding: 10px; font-size: var(--font-size-13); line-height: 1.3; border: 1px solid var(--color-gray-300); border-radius: 3px; resize: none; scroll-padding-block: 3px; transition: all 0.15s ease-out;}
.comment-textarea.disabled {height: 3.4rem; line-height: 1; font-size: var(--font-size-12); overflow: hidden; text-align: center;}
.comment-textarea:hover,
.comment-textarea:focus {border-color: var(--color-gray-500);}
.comment-textarea:disabled {border-color: var(--color-base-100);}
.comment-action {margin-top: 10px; text-align: right; }

.post-comments {padding-bottom: 15px;}
.post-comments-list {
    padding-bottom: 20px;
}
.post-comments-list > .item {position: relative; display: flex; flex-direction:row; gap: 14px; margin: 20px 0px;}
.post-comments-list > .item > .user-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: inset 0 0.1rem 1rem 0 rgba(0, 0, 0, 0.03);
    background-color: var(--color-purple-50);
    box-shadow: inset 0 0 0 1px rgba(177, 177, 177, 0.15), inset 0 2px 4px rgba(177, 177, 177, 0.1);
}
.post-comments-list > .item > .user-avatar > img {width: 70%; height: 70%;}
.post-comments-list > .item > .item-info {flex: 1; margin-top: 3px;}
.post-comments-list > .item > .item-info .item-name {display: flex; align-items:center; color: var(--color-base-800); font-size: var(--font-size-12); font-weight: 600;}
.post-comments-list > .item > .item-info .item-name .time-ago {color: #b5b5b5; font-size: var(--font-size-11); font-weight: normal;}
.post-comments-list > .item > .item-info .item-name .time-ago::before {display:inline-block; content:"·"; margin: 0 6px; font-size: var(--font-size-12);}
.post-comments-list > .item > .item-info .item-content {flex:1; margin-top: 6px; color: var(--color-base-700); font-size: var(--font-size-13); line-height: 1.4;}

.post-comments-list > .item .item-btns {display: flex; gap: 6px;}
.post-comments-list > .item .item-btns button {color: var(--color-base-500); font-weight: 400;}
[data-theme="dark"] .post-comments-list > .item .item-btns button {color: var(--color-gray-300);}
.post-comments-list > .item .item-btns .btn-comments-ellipsis .svg-icon {width: 14px; height: 14px; color: var(--color-purple-700)}
.post-comments-list > .item .item-btns .btn-reply .svg-icon {width: 14px; height: 14px; color: var(--color-base-900)}
.post-comments-list > .item .item-btns button.btn-comments-flag {color: var(--color-gray-500)}

/* post-comments-list, reply-list 에서 동일하게 보여줌 */
.post-comments-list .item .item-btns .list {display: none; z-index: 1; position: absolute; top: 28px; left: 100%; transform: translateX(-95%); width: 100px; padding: 5px 10px; border-radius: 6px; line-height: 1; background-color: rgba(255,255,255,1); transition: all 0.5s ease-in-out; box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 2px 6px 16px 0 rgba(0,0,0,0.1);}
.post-comments-list .item .item-btns .list.active {display: block;}
.post-comments-list .item .item-btns .list nav {margin-top: 0;}
.post-comments-list .item .item-btns .list .triangle {overflow: hidden; position: absolute; top:-8px; left:86%; transform: translateX(-50%); width: 14px; height: 8px;}
.post-comments-list .item .item-btns .list .triangle::before {position: absolute; top:4px; left:2px; display: block; line-height: 0; font-size: 0; content:''; width: 8px; height: 8px; transform: rotate(-135deg); border-right: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; background-color: rgba(255,255,255,1);}
.post-comments-list .item .item-btns .list button {width: 100%; justify-content: start;}

.reply-list .reply-list {padding-left: 10px;} 
.reply-list > .item {display: flex; flex-direction:row; flex-wrap: wrap; gap: 14px; position: relative; margin: 20px 0 20px 44px; }
.reply-list > .item .item {display: flex; flex-direction:row; flex-wrap: wrap; width: 100%; position: relative; margin-top: 20px;}
.reply-list > .item > .user-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: inset 0 0.1rem 1rem 0 rgba(0, 0, 0, 0.03);
    background-color: var(--color-purple-50);
    box-shadow: inset 0 0 0 1px rgba(177, 177, 177, 0.15), inset 0 2px 4px rgba(177, 177, 177, 0.1);
}
.reply-list > .item > .user-avatar > img {width: 70%; height: 70%;}
.reply-list > .item > .item-info {flex: 1; margin-top: 3px;}
.reply-list > .item > .item-info .item-name {display: flex; align-items:center; color: var(--color-base-800); font-size: var(--font-size-12); font-weight: 600;}
.reply-list > .item > .item-info .item-name .time-ago {color: #b5b5b5; font-size: var(--font-size-11); font-weight: normal;}
.reply-list > .item > .item-info .item-name .time-ago::before {display:inline-block; content:"·"; margin: 0 6px; font-size: var(--font-size-12);}
.reply-list > .item > .item-info .item-content {flex:1; margin-top: 6px; color: var(--color-base-700); font-size: var(--font-size-13); line-height: 1.4;}

.reply-list > .item .item-btns {display: flex; gap: 6px;}
.reply-list > .item .item-btns button {color: var(--color-base-500); font-weight: 400;}
[data-theme="dark"] .reply-list > .item .item-btns button {color: var(--color-gray-300);}
.reply-list > .item .item-btns .btn-comments-ellipsis .svg-icon {width: 14px; height: 14px; color: var(--color-purple-700)}
.reply-list > .item .item-btns .btn-reply .svg-icon {width: 14px; height: 14px; color: var(--color-base-900)}
.reply-list > .item .item-btns button.btn-comments-flag {color: var(--color-gray-500)}


.detail-reply-form {margin: 0 0 10px 44px;}
.detail-reply-form .reply-textarea {position: relative; display: block; width: 100%; height: 66px; padding: 10px; font-size: var(--font-size-13); line-height: 1.3; border: 1px solid var(--color-gray-300); border-radius: 3px; resize: none; scroll-padding-block: 3px; transition: all 0.15s ease-out;}
.detail-reply-form .reply-textarea:hover,
.detail-reply-form .reply-textarea:focus {border-color: var(--pink-400);}
.detail-reply-form .reply-action {margin-top: 10px; text-align: right; }




.builder-edit-video {
    display: flex;
    /* line-height: 1; */
}
.builder-edit-video video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover
}
.video-progress-container {
    position: relative;
    width: 100%;
    height: 100%
}
.builder-edit-video:hover .mute-toggle {opacity: 1}
.mute-toggle {
    display: flex;
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 20px;
    transition: opacity .2s ease;
    opacity: 0;
}
.mute-toggle.visible {
    opacity: 1
}
.mute-toggle .mute-button .svg-mute {display: block;}
.mute-toggle .mute-button .svg-mute-off {display: none;}
.mute-toggle .mute-button.active .svg-mute {display: none;}
.mute-toggle .mute-button.active .svg-mute-off {display: block;}

.mute-toggle .mute-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px 2px rgba(13,12,34,.05);
    color: #3d3d4e;
    cursor: pointer
}


.progress-bar-container {
    display: flex;
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
    cursor: pointer
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* transition: width .2s linear; */
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
    border-radius: 0 0 0 6px;
    background: #feba57
}


.upload-progress-bar {
    display: none;
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 4px;
    background: rgba(234,76,137,.6);
}

.builder-edit-element.builder-edit-media {display: flex; justify-content: center; overflow: hidden;}
.builder-container h2 {font-size: 32px; font-weight: 700; line-height: 38px; font-family: Poppins, 'Nunito Sans', Noto Sans KR;}
/* 
.builder-edit-container .builder-edit-section .insert-block-btn-container.active {opacity: 1;}
.builder-edit-container .builder-edit-section .insert-block-btn-container.active .insert-block-btn {width:34px !important; padding: 4px !important; color: #694be7; border: 2px solid #694be7;}
.builder-edit-container .builder-edit-section .insert-block-btn-container.active .button-text {display: none !important; color: #694be7;}
.builder-edit-container .builder-edit-section .insert-block-btn-container.active .insert-block-btn:hover {width:auto !important; padding: 0 16px !important; color: #694be7 !important; border: 2px solid #694be7 !important;}
.builder-edit-container .builder-edit-section .insert-block-btn-container.active .insert-block-btn:hover .button-text {display: block !important; color: #694be7 !important;}


.builder-edit-container .builder-edit-section:last-child .insert-block-btn-collapsed,
.builder-edit-container .builder-edit-section .insert-block-btn-container.active .insert-block-btn-collapsed {width:auto; padding: 0 16px} 
.builder-edit-container .builder-edit-section:last-child .insert-block-btn-collapsed .button-text,
.builder-edit-container .builder-edit-section .insert-block-btn-container.active .insert-block-btn-collapsed .button-text {display:block;}  */

.builder-edit-container [contenteditable="true"] {
    word-wrap: break-word;
    /* white-space: break-spaces; */
    white-space: normal;
}

.builder-edit-section {
    position: relative;
    margin: 24px 0;
    -webkit-transition: max-width 200ms ease;
    transition: max-width 200ms ease
}
.builder-edit-section:first-child {
    margin: 0;
}

@media (min-width: 768px) {
    .builder-edit-section {
        width:100%;
    }
}

/* .builder-edit-block {
    position: relative;
    min-height: 32px;
    width: calc(100% - 32px);
    max-width: 990px;
    -webkit-transition: max-width 200ms ease;
    transition: max-width 200ms ease
}
.builder-edit-block:before {
    content: "";
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: -16px;
    left: -16px;
    transform: scale(1);
    transform-origin: center;
    transition: .15s cubic-bezier(.22,1,.36,1);
    border: 2px solid rgba(79,60,201,.3);
    border-radius: 12px;
    opacity: 0;
    pointer-events: none
} */


