.elementor-23291 .elementor-element.elementor-element-6ab53f5{--display:flex;}.elementor-23291 .elementor-element.elementor-element-6ab53f5:not(.elementor-motion-effects-element-type-background), .elementor-23291 .elementor-element.elementor-element-6ab53f5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0201014D;}.elementor-23291 .elementor-element.elementor-element-c22a4b2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overlay-opacity:0.5;}.elementor-23291 .elementor-element.elementor-element-c22a4b2::before, .elementor-23291 .elementor-element.elementor-element-c22a4b2 > .elementor-background-video-container::before, .elementor-23291 .elementor-element.elementor-element-c22a4b2 > .e-con-inner > .elementor-background-video-container::before, .elementor-23291 .elementor-element.elementor-element-c22a4b2 > .elementor-background-slideshow::before, .elementor-23291 .elementor-element.elementor-element-c22a4b2 > .e-con-inner > .elementor-background-slideshow::before, .elementor-23291 .elementor-element.elementor-element-c22a4b2 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#0201014A;--background-overlay:'';}body.elementor-page-23291:not(.elementor-motion-effects-element-type-background), body.elementor-page-23291 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://shifthings.com/wp-content/uploads/2026/07/silence.png");}/* Start custom CSS for html, class: .elementor-element-e639d75 *//* 신규 오버레이 — 밝기 낮춤 + 콘텐츠 덮지 않도록 z-index 조정 */
.n-overlay {
  position: absolute; /* fixed → absolute */
  inset: 0;
  background: rgba(0,0,0,0.15); /* 0.30 → 0.15로 크게 낮춤 */
  backdrop-filter: blur(2px);   /* blur도 약하게 */
  z-index: -1; /* 콘텐츠 위로 올라오지 않도록 완전 하단으로 */
}

/* 신규 페이지 */
.n-page {
  position: relative;
  z-index: 1;
  padding: 200px 40px;
}

/* 신규 헤더 */
.n-header {
  text-align: center;
}
.n-header img {
  height: 80px;
   margin-bottom: 20px;
}

/* 신규 타이틀 */
.n-title {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
  color: #f2f6ff;
  margin-bottom: 20px;
}

/* 신규 설명 */
.n-desc {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #93D6FF;
  margin-bottom: 40px;
  line-height: 1.55;
  text-shadow: 0 0 10px rgba(0,0,0,0.45);
}

/* 신규 검색 박스 */
.n-search-box {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.n-search-box input {
  width: 800px;
  max-width: 100%;
  padding: 20px 24px 20px 56px;
  border-radius: 14px;
  border: 1px solid rgba(180,196,220,0.35);
  background: rgba(10,15,25,0.85);
  color: #e8eef7;
  font-size: 20px;
}

.n-search-icon {
  position: absolute;
  left: calc(50% - 800px/2 + 22px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #9aa7c0;
}

/* 신규 인기 검색어 */
.n-popular {
  text-align: center;
  margin-bottom: 30px;
}

.n-popular span {
  display: inline-block;
  margin: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  color: #ffffff; /* ← 텍스트 화이트로 변경 */
}


/* 신규 탭 */
.n-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.n-tab {
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  color: #c3cee3;
  border: 1px solid rgba(255,255,255,0.12);
}

/* 신규 비활성 탭 */
.n-tab.inactive {
  opacity: 0.65;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: #b8c3d9;
}

/* 신규 자동완성 */
.n-autocomplete.hidden {
  display: none;
}

/* 신규 푸터 */
.n-footer {
  margin-top: 80px;
  text-align: center;
  font-size: 20px;
  color: #93D6FF;
}

/* MOBILE — 신규 버전 전용 */
@media (max-width: 768px) {

  .n-page {
    padding: 40px 20px;
  }

  .n-header img {
    height: 55px;
  }

  .n-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .n-desc {
    font-size: 11px;
    margin-bottom: 32px;
    color: #f7faff;
  }

  .n-search-box input {
    font-size: 12px;
    padding: 16px 20px 16px 48px;
  }

  .n-search-icon {
    font-size: 18px;
    left: 18px;
  }

  /* 인기 검색어 모바일 최적화 — 작고 가볍게 */
  .n-popular span {
    font-size: 12px;      /* 14 → 12 */
    padding: 4px 10px;    /* 5px 12px → 4px 10px */
    margin: 3px;          /* 4px → 3px */
  }

  .n-tabs {
    gap: 12px;
    margin-bottom: 16px;
  }

  .n-tab {
    font-size: 10px;
    padding: 1px 16px;
  }

  .n-autocomplete {
    padding: 10px 20px;
  }

  .n-autocomplete-item {
    font-size: 16px;
    padding: 14px 0;
  }

  .n-footer {
    font-size: 18px;
    margin-top: 0px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-8fd1418 *//* =========================================================
   SHIFT Discover Feed
========================================================= */

.shift-discover-feed{
  width:100%;
  margin:40px auto 100px;
}

.shift-discover-item{
  margin-bottom:64px;
}

.shift-discover-image{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:18px;
  background:#111;
}

.shift-discover-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.shift-discover-badges{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;

  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.shift-image-badge{
  display:inline-flex;
  align-items:center;

  padding:8px 13px;
  border-radius:999px;

  background:rgba(0,0,0,.72);
  color:#18BFAE;

  font-size:13px;
  line-height:1;
  font-weight:800;

  backdrop-filter:blur(8px);
}

.shift-image-badge.is-pick{
  background:rgba(0,0,0,.82);
  color:#fff;
}

.shift-discover-title{
  margin:18px 0 10px;
  font-size:28px;
  line-height:1.25;
  font-weight:800;
  word-break:keep-all;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.shift-discover-title a{
  color:#fff;
  text-decoration:none;
}

.shift-discover-desc{
  margin:0;
  font-size:17px;
  line-height:1.55;
  color:rgba(255,255,255,.75);
  word-break:keep-all;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.shift-discover-meta{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:14px;

  font-size:14px;
  color:rgba(255,255,255,.45);
}

.shift-insight-empty{
  text-align:center;
  color:#999;
  padding:60px 0;
}/* End custom CSS */