@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap');

@font-face {
  font-family: 'S-Core Dream';
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/S-CoreDream-8Heavy.woff) format('woff');
  font-display: swap;
}

/* 무한 스크롤 append 시 부드러운 등장 */
.sl-append-in {
  animation: sl-append-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  will-change: transform, opacity;
}

@keyframes sl-append-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* research list */
.research_topbanner {
  background: linear-gradient(90deg, #f5f5f5 0%, #fff 100%);
  padding: 1.875rem 0 1.25rem;
  margin-bottom: 3.125rem;
}

/* research PC: 상단 배너 하단 여백 → 필터·리스트 상단 패딩으로 이동 */
@media screen and (min-width: 1025px) {
  .research_wrap .research_topbanner {
    margin-bottom: 0;
  }
  .research_wrap .prd_layout .prd_filter,
  .research_wrap .prd_layout .prd_cont {
    padding-top: 3.125rem;
  }
}

.research_topbanner .research_topswiper {
  gap: 0;
  flex-wrap: unset;
}
.research_topbanner .research_topswiper .item {
  aspect-ratio: 1 / 0.6;
  width: calc((100% - 0.625rem * 2) / 3);
  background: #000;
}
.research_topbanner .research_topswiper .item .bgbox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: var(--transition);
}
.research_topbanner .research_topswiper .item .bgbox .new_icon {
  position: absolute;
  left: -0.313rem;
  top: -0.313rem;
  width: 3.75rem;
}
.research_topbanner .research_topswiper .item .txtbox {
  padding: 1.875rem 1.875rem 0;
}
.research_topbanner .research_topswiper .item .txtbox .title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.research_topbanner .research_topswiper .item .txtbox .bottom .point {
  font-size: 0.875rem;
  letter-spacing: -0.02em;
}
.research_topbanner .research_topswiper .item .imgbox {
  width: 45%;
  max-width: 16.688rem;
}
.research_topbanner .research_topswiper .item:hover .bgbox::after {
  opacity: 0.2;
}
.research_topbanner .research_topswiper .item:hover .imgbox {
  transform: scale(1.2);
  max-width: 19.563rem;
}
.research_topbanner .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.625rem;
}
.research_topbanner .controls .prev_btn,
.research_topbanner .controls .next_btn {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  margin: 0;
  width: 2.125rem;
  height: unset;
  aspect-ratio: 1 / 1;
  background: no-repeat center / contain;
}
.research_topbanner .controls .prev_btn {
  background-image: url(../img/research_prev.png);
  margin-right: 1.188rem;
}
.research_topbanner .controls .next_btn {
  background-image: url(../img/research_next.png);
  margin-left: 1.188rem;
}
.research_topbanner .controls .pagination {
  position: relative;
  left: unset;
  top: unset;
  bottom: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  line-height: 150%;
  text-align: center;
  color: #333333;
  width: unset;
}
.research_topbanner .controls .pagination .swiper-pagination-current {
  min-width: 0.938rem;
  text-align: center;
  color: #333333;
}
.research_topbanner .controls .pagination .swiper-pagination-total {
  min-width: 0.938rem;
  text-align: center;
}
.research_topbanner .controls .play_btn {
  background: url(../img/research_pause.png) no-repeat center/contain;
  width: 2rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: var(--transition);
}
.research_topbanner .controls .play_btn.stop {
  background-image: url(../img/research_play.png);
}

.prd_layout .prd_cont .research_listbox .item .bgbox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: var(--transition);
}
.prd_layout .prd_cont .research_listbox .item .txtbox {
  padding: 1.25rem;
}
.prd_layout .prd_cont .research_listbox .item .imgbox {
  width: 51%;
}
.prd_layout .prd_cont .research_listbox .item:hover .bgbox::after {
  opacity: 0.2;
}
.prd_layout .prd_cont .research_listbox .item:hover .imgbox {
  width: 50%;
}

/* research detailview — 중앙 카드 + 어두운 스크림 (전체 화면 밀착 완화) */
.research_detailview_modal.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.research_detailview_modal .modal_close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 30;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.research_detailview_modal .modal_close:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.16);
}

.research_detailview_modal .modal_close .icon {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
  flex-shrink: 0;
  color: #334155;
  pointer-events: none;
}

.research_detailview_modal .modal_close:hover .icon {
  color: #0f172a;
}

.research_detailview_modal .modal_box {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: scale(0.97) !important;
  width: min(50rem, 96vw);
  max-width: 100%;
  max-height: min(92vh, 52rem);
  height: auto;
  margin: 0 !important;
  /* 좌우 prev/next 미니 배너(absolute)가 잘리지 않도록 visible — 스크롤은 .modal_body에만 */
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 0.75rem;
  background: transparent;
  /* 열릴 때 .modal.show 와 함께 더해지는 그림자(전환으로 서서히 진해짐) */
  box-shadow:
    0 8px 24px -6px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(148, 163, 184, 0.08);
  scroll-behavior: smooth;
  opacity: 0;
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  overscroll-behavior: contain;
}

.research_detailview_modal.modal.show .modal_box {
  opacity: 1;
  transform: scale(1) !important;
  margin-top: 0 !important;
  box-shadow:
    0 25px 50px -12px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(148, 163, 184, 0.12);
}

/* AJAX 로드 완료 후 등장: 메인 카드 → prev → next 순 페이드업(살짝 상승) */
@keyframes research-modal-layer-in {
  from {
    opacity: 0;
    transform: translateY(0.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 좌우 미니 배너: 기본 translateY(-50%) 유지하면서 아래에서 살짝 올라오게 */
@keyframes research-modal-layer-in-side {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 0.75rem));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.research_detailview_modal.modal.show .modal_box.research-modal-content--enter {
  transition: none !important;
}

.research_detailview_modal.modal.show .modal_box.research-modal-content--enter .modal_body {
  animation: research-modal-layer-in 0.46s cubic-bezier(0.34, 1.2, 0.64, 1) 0s both;
}

.research_detailview_modal.modal.show .modal_box.research-modal-content--enter .min_bannerbox.left {
  animation: research-modal-layer-in-side 0.46s cubic-bezier(0.34, 1.2, 0.64, 1) 0.14s both;
}

.research_detailview_modal.modal.show .modal_box.research-modal-content--enter .min_bannerbox.right {
  animation: research-modal-layer-in-side 0.46s cubic-bezier(0.34, 1.2, 0.64, 1) 0.28s both;
}

@media (prefers-reduced-motion: reduce) {
  .research_detailview_modal.modal.show .modal_box.research-modal-content--enter .modal_body,
  .research_detailview_modal.modal.show .modal_box.research-modal-content--enter .min_bannerbox.left,
  .research_detailview_modal.modal.show .modal_box.research-modal-content--enter .min_bannerbox.right {
    animation: none;
    opacity: 1 !important;
  }

  .research_detailview_modal .modal_box {
    transition: opacity 0.2s ease, transform 0.2s ease !important;
  }

  .research_detailview_modal.modal.show .modal_box.research-modal-content--enter .modal_body {
    transform: none !important;
  }

  .research_detailview_modal.modal.show .modal_box.research-modal-content--enter .min_bannerbox.left,
  .research_detailview_modal.modal.show .modal_box.research-modal-content--enter .min_bannerbox.right {
    transform: translateY(-50%) !important;
  }
}

/* 리서치 모달 로딩: 카드 프레임(그림자·테두리·고정폭) 없이 스크림 위에 Lottie만 */
.research_detailview_modal.modal.show.research-modal--loading .modal_box {
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
  opacity: 1 !important;
  flex: 0 0 auto !important;
}

.research_detailview_modal.research-modal--loading .research-modal-loading-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.research_detailview_modal.research-modal--loading .research-modal-loading-shell dotlottie-wc {
  display: block;
  width: min(150px, 42.5vw) !important;
  height: min(150px, 42.5vw) !important;
  max-width: 150px;
  max-height: 150px;
  opacity: 0.2;
}

.research_detailview_modal .modal_box::-webkit-scrollbar {
  width: 6px;
}
.research_detailview_modal .modal_box::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 999px;
}

.research_detailview_modal .modal_box > .modal_body {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.1);
}

.research_detailview_modal .modal_body {
  width: 100%;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .research_detailview_modal .modal_box {
    transform: none !important;
    transition: opacity 0.2s ease;
  }
  .research_detailview_modal.modal.show .modal_box {
    transform: none !important;
  }
}

.research_detailview_modal .modal_body .share_btn_top {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.research_detailview_modal .modal_body .share_btn_top:hover {
  background: rgba(15, 23, 42, 0.5);
}

.research_detailview_modal .modal_body .share_btn_top img {
  width: 1rem;
  height: 1rem;
  display: block;
}

.research_detailview_modal .modal_body .topbanner {
  position: relative;
  width: 100%;
  height: 15.625rem;
}
.research_detailview_modal .modal_body .topbanner .bgbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeA {
  background: #a97b63;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeB {
  background: #7ebe8f;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeC {
  background: #79bad8;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeD {
  background: #d27c8f;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeE {
  background: #7e8abe;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeF {
  background: #4a5ebd;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeG {
  background: #e3c521;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeH {
  background: #eb9614;
}
.research_detailview_modal .modal_body .topbanner .bgbox .bg.typeI {
  background: #969696;
}
.research_detailview_modal .modal_body .topbanner.end .bgbox .bg {
  background: #969696;
}
.research_detailview_modal .modal_body .topbanner .bgbox .img,
.research_detailview_modal .modal_body .topbanner .bgbox .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.research_detailview_modal .modal_body .topbanner .bgbox .video {
  opacity: 0.8;
}
.research_detailview_modal .modal_body .topbanner .txtbox {
  position: relative;
  padding: 1.875rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.research_detailview_modal .modal_body .topbanner .txtbox .badgebox {
  display: flex;
  align-items: center;
  gap: 0.313rem;
  margin-bottom: 0.313rem;
}
.research_detailview_modal .modal_body .topbanner .txtbox .badgebox .badge {
  height: 1.313rem;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 100%;
  text-transform: uppercase;
  border-radius: 0.188rem;
  padding: 0 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .badgebox
  .badge.dday {
  background: rgba(50, 71, 250, 0.88);
  color: #ffffff;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .badgebox
  .badge.cate {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(184, 197, 255, 0.7);
  color: #fff;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .badgebox
  .badge.typeA {
  background: #f44336;
  color: #fff;
}
.research_detailview_modal .modal_body .topbanner .txtbox .title {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.research_detailview_modal .modal_body .topbanner .txtbox .infobox {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.research_detailview_modal .modal_body .topbanner .txtbox .infobox .item {
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.research_detailview_modal .modal_body .topbanner .txtbox .infobox .item .tit {
  width: 3.75rem;
}
.research_detailview_modal .modal_body .topbanner .txtbox .infobox .item .desc {
  flex: 1;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .infobox
  .item
  .desc.point {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #feba69;
  display: flex;
  align-items: center;
  gap: 0.188rem;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .infobox
  .item
  .desc.point
  .icon {
  width: 0.75rem;
}
.research_detailview_modal .modal_body .topbanner .txtbox .infobox .dday_box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  letter-spacing: 0;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .infobox
  .dday_box
  .dday_item {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #fff;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .infobox
  .dday_box
  .dday_item
  .num {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 100%;
  color: #fff;
  padding: 0.313rem;
  background: #f44336;
  border-radius: 0.188rem;
  overflow: hidden;
  text-align: center;
}
.research_detailview_modal
  .modal_body
  .topbanner
  .txtbox
  .infobox
  .dday_box
  .dday_item
  .txt {
  margin-left: 1px;
  font-weight: 400;
}
.research_detailview_modal .modal_body .topbanner .imgbox {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 32%;
  max-width: 14.688rem;
  margin-left: auto;
  transition: var(--transition);
}
.research_detailview_modal .modal_body .topbanner .imgbox.ver2 {
  width: 24%;
  max-width: 10.625rem;
}

.research_detailview_modal .survey_box {
  padding: 2.5rem;
  max-height: 29.188rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.research_detailview_modal .survey_box::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.research_detailview_modal .survey_box::-webkit-scrollbar-thumb {
  background: #ccc;
}
.research_detailview_modal .survey_box::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.research_detailview_modal .survey_item {
  width: 100%;
  position: relative;
}
.research_detailview_modal .survey_item .titbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.563rem;
}
.research_detailview_modal .survey_item .titbox .badge {
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #333;
  padding: 0.375rem 0.875rem;
  background: #f5f5f5;
  border-radius: 10rem;
}
.research_detailview_modal .survey_item .titbox .tit {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #333;
}
.research_detailview_modal .survey_item .optbox {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}
.research_detailview_modal .survey_item .optbox .radio_box {
  position: relative;
}
.research_detailview_modal .survey_item .optbox .radio_box .input_radio {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
}
.research_detailview_modal .survey_item .optbox .radio_box .label_radio {
  width: 100%;
  height: 2.75rem;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 0 0.938rem 0 3.625rem;
  border-radius: 0.313rem;
  border: 1px solid #f5f5f5;
  overflow: hidden;
  transition: var(--transition);
}
.research_detailview_modal .survey_item .optbox .radio_box .label_radio:hover {
  background: #fff;
  box-shadow:
    0.25rem 0.75rem 2.25rem 0 rgba(0, 0, 0, 0.09),
    0 0 2px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid #ccc;
}
.research_detailview_modal
  .survey_item
  .optbox
  .radio_box
  .input_radio:checked
  + .label_radio {
  font-weight: 700;
  color: #fff;
  background: #3247fa;
  border: 1px solid #3247fa;
}

.research_detailview_modal .survey_item .resultbox {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.research_detailview_modal .survey_item .resultbox .item {
  position: relative;
  width: 100%;
  height: 4.625rem;
  background: #fff;
  border: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.25rem 0.625rem;
  border-radius: 0.313rem;
  overflow: hidden;
}
.research_detailview_modal .survey_item .resultbox .item .number {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: #333;
}
.research_detailview_modal .survey_item .resultbox .item .tit {
  font-weight: 400;
  font-size: 0.813rem;
  line-height: 130%;
  color: #333;
  flex: 1;
}
.research_detailview_modal .survey_item .resultbox .item .percent {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 100%;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.313rem;
}
.research_detailview_modal .survey_item .resultbox .item .percent .bold {
  font-weight: 400;
  font-size: 0.875rem;
}
.research_detailview_modal .survey_item .resultbox .item .gauge {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.625rem;
  box-shadow: inset 1px 2px 2px 0 rgba(0, 0, 0, 0.07);
  background: #f5f5f5;
}
.research_detailview_modal .survey_item .resultbox .item .gauge .bar {
  width: var(--gauge);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #898989;
}
.research_detailview_modal .survey_item .resultbox .item.on {
  box-shadow: inset 1px 2px 2px 0 rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(50, 71, 250, 0.45);
}
.research_detailview_modal .survey_item .resultbox .item.on .number {
  font-weight: 900;
  color: #3247fa;
}
.research_detailview_modal .survey_item .resultbox .item.on .tit {
  font-weight: 700;
  color: #3247fa;
}
.research_detailview_modal .survey_item .resultbox .item.on .percent {
  color: #3247fa;
}
.research_detailview_modal .survey_item .resultbox .item.on .percent .bold {
  font-weight: 700;
}
.research_detailview_modal .survey_item .resultbox .item.on .gauge .bar {
  background: #3247fa;
}

.research_detailview_modal .survey_item .alert_txt {
  display: flex;
  justify-content: flex-end;
  gap: 0.313rem;
  font-size: 0.75rem;
  line-height: 100%;
  color: #333;
  margin-top: 0.625rem;
}
.research_detailview_modal .survey_item .alert_txt .icon {
  width: 0.75rem;
}
.research_detailview_modal .modal_btnbox {
  display: flex;
  margin-top: 0;
  flex-shrink: 0;
  border-top: 1px solid #e8ecf4;
  background: #f8fafc;
  overflow: hidden;
}
.research_detailview_modal .modal_btnbox .btn {
  padding: 1.125rem 1rem;
  min-height: 3.25rem;
  font-weight: 700;
  font-size: 0.938rem;
  line-height: 1.2;
  text-align: center;
  border: none;
  transition:
    background 0.28s ease,
    color 0.22s ease,
    filter 0.28s ease,
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s ease,
    opacity 0.22s ease;
  border-radius: 0;
  cursor: pointer;
}
.research_detailview_modal .modal_btnbox .btn.full {
  flex: 1;
}
.research_detailview_modal .modal_btnbox .btn.typeA {
  background: linear-gradient(180deg, #2a3de8 0%, #3247fa 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(50, 71, 250, 0.22);
}
.research_detailview_modal .modal_btnbox .btn.typeA:hover:not(:disabled) {
  filter: brightness(1.06);
  color: #fff;
  box-shadow: 0 8px 26px rgba(50, 71, 250, 0.32);
}
.research_detailview_modal .modal_btnbox .btn.typeA:disabled {
  background: #cbd5e1 !important;
  color: #64748b !important;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
}
.research_detailview_modal .modal_btnbox .btn.typeB {
  color: #475569;
  background: #f1f5f9;
  border-right: 1px solid #e2e8f0;
}
.research_detailview_modal .modal_btnbox .btn.typeB:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.research_detailview_modal .modal_btnbox .btn.typeB + .btn.typeA {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.research_detailview_modal .modal_box .ban_swiper {
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.research_detailview_modal .modal_box .ban_swiper .swiper-slide {
  display: flex;
  height: unset;
  align-items: center;
  padding: 3.125rem 0;
}
/* 이전/다음: 흰 카드(.modal_body) 밖 · modal_box 기준으로 좌우에 배치
   좌: [prev][peek 카드] — 카드가 모달에 인접 / 우: [peek 카드][next] — 동일(거울대칭) */
.research_detailview_modal .min_bannerbox {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  z-index: 5;
  pointer-events: auto;
  flex-direction: row;
  transform: translateY(-50%);
}
.research_detailview_modal .min_bannerbox.left {
  right: 100%;
  margin-right: 0.75rem;
  left: auto;
}
.research_detailview_modal .min_bannerbox.right {
  left: 100%;
  margin-left: 0.75rem;
  right: auto;
}
.research_detailview_modal .min_bannerbox .prev_btn,
.research_detailview_modal .min_bannerbox .next_btn {
  width: 2.5rem;
  height: unset;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: no-repeat center / 55% auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.research_detailview_modal .min_bannerbox .prev_btn:hover,
.research_detailview_modal .min_bannerbox .next_btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.16);
}
.research_detailview_modal .min_bannerbox .prev_btn {
  background-image: url(../img/ban_prev.png);
}
.research_detailview_modal .min_bannerbox .next_btn {
  background-image: url(../img/ban_next.png);
}
.research_detailview_modal .min_banner {
  position: relative;
  border-radius: 0.5rem;
  box-shadow:
    0.25rem 0.75rem 2.25rem 0 rgba(0, 0, 0, 0.09),
    0 0 2px 0 rgba(0, 0, 0, 0.08);
  width: 11.25rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  z-index: 10;
  cursor: pointer;
}
.research_detailview_modal .min_banner .bgbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.research_detailview_modal .min_banner .bgbox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: var(--transition);
}
.research_detailview_modal .min_banner .bgbox .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.research_detailview_modal .min_banner .bgbox .bg.typeA {
  background: #a97b63;
}
.research_detailview_modal .min_banner .bgbox .bg.typeB {
  background: #7ebe8f;
}
.research_detailview_modal .min_banner .bgbox .bg.typeC {
  background: #79bad8;
}
.research_detailview_modal .min_banner .bgbox .bg.typeD {
  background: #d27c8f;
}
.research_detailview_modal .min_banner .bgbox .bg.typeE {
  background: #7e8abe;
}
.research_detailview_modal .min_banner .bgbox .bg.typeF {
  background: #4a5ebd;
}
.research_detailview_modal .min_banner .bgbox .bg.typeG {
  background: #e3c521;
}
.research_detailview_modal .min_banner .bgbox .bg.typeH {
  background: #eb9614;
}
.research_detailview_modal .min_banner .bgbox .bg.typeI {
  background: #969696;
}
.research_detailview_modal .min_banner.end .bgbox .bg {
  background: #969696;
}
.research_detailview_modal .min_banner .bgbox .img,
.research_detailview_modal .min_banner .bgbox .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.research_detailview_modal .min_banner .bgbox .video {
  opacity: 0.8;
}
.research_detailview_modal .min_banner .txtbox {
  position: relative;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.research_detailview_modal .min_banner .txtbox .badgebox {
  display: flex;
  align-items: center;
  gap: 0.313rem;
  margin-bottom: 0.313rem;
}
.research_detailview_modal .min_banner .txtbox .badgebox .badge {
  height: 1.313rem;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 100%;
  text-transform: uppercase;
  border-radius: 0.188rem;
  padding: 0 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.research_detailview_modal .min_banner .txtbox .badgebox .badge.dday {
  background: rgba(50, 71, 250, 0.88);
  color: #ffffff;
}
.research_detailview_modal .min_banner .txtbox .badgebox .badge.cate {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(184, 197, 255, 0.7);
  color: #fff;
}
.research_detailview_modal .min_banner .txtbox .badgebox .badge.typeA {
  background: #f44336;
  color: #fff;
}
.research_detailview_modal .min_banner .txtbox .title {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1rem;
}
.research_detailview_modal .min_banner .txtbox .bottom {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.research_detailview_modal .min_banner .txtbox .bottom .point {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #feba69;
  display: flex;
  align-items: center;
  gap: 0.188rem;
}
.research_detailview_modal .min_banner .txtbox .bottom .point .icon {
  width: 0.813rem;
}
.research_detailview_modal .min_banner .txtbox .bottom .bar {
  background: rgba(255, 255, 255, 0.5);
  width: 1px;
  height: 0.75rem;
}
.research_detailview_modal .min_banner .txtbox .bottom .people {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #fff;
}
.research_detailview_modal .min_banner:hover .bgbox::after {
  opacity: 0.2;
}

/* research complete */
.research_min_modal.complete .modal_box {
  padding: 2.156rem 1.875rem;
}
.research_min_modal.complete .complete_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.research_min_modal.complete .complete_box .topbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
}
.research_min_modal.complete .complete_box .topbox .member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.313rem;
}
.research_min_modal.complete .complete_box .topbox .member .icon {
  width: 2.25rem;
}
.research_min_modal.complete .complete_box .topbox .member .name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  color: #333;
}
.research_min_modal.complete .complete_box .topbox .title {
  font-size: 0.875rem;
  line-height: 130%;
  color: #000;
}
.research_min_modal.complete .complete_box .survey_info {
  width: 100%;
  box-shadow:
    0.25rem 0.75rem 2.25rem 0 rgba(0, 0, 0, 0.09),
    0 0 2px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 0.313rem;
  padding: 1.25rem 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  overflow: hidden;
}
.research_min_modal.complete .complete_box .survey_info .item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.313rem;
  font-size: 0.875rem;
  line-height: 86%;
  color: #898989;
}
.research_min_modal.complete .complete_box .survey_info .item .tit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.research_min_modal.complete .complete_box .survey_info .item .tit::before {
  content: "";
  width: 0.25rem;
  aspect-ratio: 1 / 1;
  display: inline-block;
  background: #898989;
  border-radius: 50%;
  margin: 0 0.25rem;
}
.research_min_modal.complete .complete_box .survey_info .item .desc {
  font-weight: 700;
  color: #3247fa;
}

/* 반응형 */
/* PC */
@media screen and (max-width: 1680px) {
  .prd_layout .prd_cont .research_listbox .item {
    width: calc((100% - 0.938rem * 3) / 4);
  }
}

@media screen and (max-width: 1200px) {
  .research_topbanner .research_topswiper {
    overflow: visible;
  }
  .research_topbanner .research_topswiper .item {
    width: 30rem;
  }
}

@media screen and (max-width: 1080px) {
  .prd_layout .prd_cont .research_listbox .item {
    width: calc((100% - 0.938rem * 2) / 3);
  }
}

/* --------------------------------------------------------------------------
   Figma 55:4536 — PC 필터: 100p 빠른적립 행 (Frame 14017)
   -------------------------------------------------------------------------- */
.prd_filter .ft_box .ft_item .ft_list .item.item--point-fast {
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 8px 15px;
  overflow: hidden;
  border: none;
  box-shadow:
    0 2px 10px rgba(103, 129, 164, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.prd_filter .ft_box .ft_item .ft_list .item.item--point-fast::before {
  z-index: 0;
  opacity: 1 !important;
  /* 밝은 스톱 제거 — 흰 글씨 대비(가독성) 우선 */
  background: linear-gradient(
    118deg,
    #1a2d7a 0%,
    #2438a8 22%,
    #25379a 48%,
    #2a3de8 76%,
    #3247fa 100%
  ) !important;
  border-radius: 10px;
}

.prd_filter .ft_box .ft_item .ft_list .item.item--point-fast:hover::before {
  opacity: 1 !important;
  background: linear-gradient(
    118deg,
    #1e34a3 0%,
    #25379a 32%,
    #2a3de8 68%,
    #3d52f0 100%
  ) !important;
}

.prd_filter .item.item--point-fast .check_box,
.prd_filter .item.item--point-fast .count {
  position: relative;
  z-index: 1;
}

/* common.css 라벨·카운트 #333 대비: 행 전체 흰 글씨 + 음영 */
.prd_filter .ft_box .ft_item .ft_list .item.item--point-fast .check_box .label {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.5);
}

.prd_filter .item.item--point-fast .count {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.45);
}

.prd_filter .item.item--point-fast .count .arrow {
  filter: brightness(10);
}

.prd_filter .item.item--point-fast .check_box .label .txt {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.5);
  font-weight: 500;
}

.prd_filter .item.item--point-fast.on .check_box .label .txt {
  font-weight: 700;
}

.prd_filter .item.item--point-fast .check_box .input {
  background-color: rgba(255, 255, 255, 0.95);
  background-image: none;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.prd_filter .item.item--point-fast .check_box .input:checked {
  background-image: url(../img/checkbox_on.png);
  background-color: #ffffff;
}

.prd_filter .item.item--point-fast .item--point-fast__coin {
  display: flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.prd_filter .item.item--point-fast .item--point-fast__coin img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* Figma 55:4688 — 배너 (PC: 사이드바 + 본문 하단) */
.research-figma-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
}

.research-figma-banner__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 131px;
  width: 100%;
  padding: 24px 20px;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.research-figma-banner__bg {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background-color: #f0f0f0;
  background-image: url(/renewal/img/research_figma_banner_bg.png);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.research-figma-banner__overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  /* 왼쪽 카피 영역만 살짝 밀도 — 원본 이미지가 밝은 편이라 약하게 */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 38%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}

.research-figma-banner__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 68%;
}

.research-figma-banner__line1 {
  margin: 0;
  font-family: 'Do Hyeon', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.39px;
  color: var(--brand-primary, #3247fa);
}

.research-figma-banner__line2 {
  margin: 0;
  font-family: 'Do Hyeon', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.39px;
  color: #121212;
}

.research-figma-banner__sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.39px;
  color: #333333;
}

/* 카테고리 색 뱃지 — Figma 11×11 라운드 사각 */
.prd_filter .ft_box .ft_item .ft_list .item .check_box .label .color {
  width: 11px;
  height: 11px;
  border-radius: 5.5px;
}

/* --------------------------------------------------------------------------
   리서치 리스트 카드 (Figma 59:4736) — .research_listbox .item
   -------------------------------------------------------------------------- */
.research_listbox .item .txtbox .badgebox .research-badge-dday-pill {
  height: 1.275rem;
  padding: 0 0.375rem;
  border-radius: 0.183rem;
  background: #ffffff;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.research_listbox .item .txtbox .badgebox .research-badge-urgent {
  height: 1.275rem;
  padding: 0 0.375rem;
  border-radius: 0.183rem;
  background: #f44336;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.research_listbox .item .txtbox .title.research-list-title--figma {
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: -0.0085em;
  margin-bottom: 1rem;
}

.research_listbox .item .txtbox .bottom.research-list-bottom--figma {
  align-items: start;
  flex-direction: column;
  gap: 0.625rem;
}

.research_listbox .item .txtbox .research-card__points-strip {
  position: relative;
  width: 100%;
  min-height: 1.375rem;
}

.research_listbox .item .txtbox .research-card__points-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  max-width: 7.5625rem;
  height: 1rem;
  border-radius: 0.625rem 0 0 0.625rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.research_listbox .item .txtbox .research-list-points-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.research_listbox .item .txtbox .research-list-points-icon {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.25));
}

.research_listbox .item .txtbox .research-list-points-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.research_listbox .item .txtbox .research-list-points-icon--crown img {
  width: 1.4375rem;
  height: 1.375rem;
}

.research_listbox .item .txtbox .research-list-points-icon--rank img {
  filter: drop-shadow(0 2.5px 1px rgba(0, 0, 0, 0.25));
}

.research_listbox .item .txtbox .research-list-points-glow {
  filter: drop-shadow(0 1px 0 #0d154d) drop-shadow(0 2px 1px rgba(0, 0, 0, 0.25));
}

.research_listbox .item .txtbox .research-list-points-value {
  display: inline-block;
  font-family: 'S-Core Dream', 'Pretendard', sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.2;
  letter-spacing: -0.011em;
  background: linear-gradient(180deg, #ffe88c 0%, #f3c12a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform: skewX(-10deg);
}

.research_listbox .item .txtbox .research-list-deal-label {
  display: inline-block;
  font-family: 'S-Core Dream', 'Pretendard', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-left: 0.25rem;
  background: linear-gradient(103.4deg, #ffffff 71%, #e7e9ef 104%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
  transform: skewX(-10deg);
}

/* 신청 마감 아이템 회색 처리 */
.research_listbox .item.end {
  filter: grayscale(1);
  opacity: 0.55;
  cursor: default;
}
.research_listbox .item.end .link {
  cursor: default;
  pointer-events: none;
}
