/**
 * 통합플랫폼 허브 — Nate 골격(1200px) 레이아웃 SSOT
 * 콘텐츠·라벨은 portal SSOT — 구조·정렬·슬롯만 고정
 */

body.nt-integration-hub[data-nt-device="desktop"] {
  /* 뉴스 그룹 1200px 골격 SSOT — max 1200 · 좁은 뷰포트는 비율 유지 축소 (모바일 추종) */
  --ihub-page-w: min(1200px, 100vw);
  --ihub-main-w: calc(var(--ihub-page-w) * 850 / 1200);
  --ihub-side-w: calc(var(--ihub-page-w) * 330 / 1200);
  --ihub-gap-w: calc(var(--ihub-page-w) * 20 / 1200);
  --ihub-main-col: calc(var(--ihub-page-w) * 680 / 1200);
  --ihub-side-col: calc(var(--ihub-page-w) * 170 / 1200);
  --ihub-mid-banner-w: calc(var(--ihub-page-w) * 660 / 1200);
  --ihub-thumb-w: calc(var(--ihub-page-w) * 170 / 1200);
  --ihub-thumb-gap: 15px;
  --ihub-area-gap: 20px;
  --ihub-inner-gap: 15px;
  --ihub-divider-pad: 10px;
  --ihub-header-h: 211px;
  --ihub-banner-h: calc(var(--ihub-page-w) * 140 / 1200);
  --ihub-banner-gap: 20px;
  --ihub-banner-fade-ms: 600ms;
  --ihub-banner-fade-interval: 5000ms;
  --ihub-ad02-h: calc(var(--ihub-side-w) * 190 / 330);
  --ihub-kwd-strip-w: calc(var(--ihub-page-w) * 287 / 1200);
  --ihub-body-top: calc(var(--ihub-header-h) + var(--ihub-banner-gap) + var(--ihub-banner-h) + var(--ihub-banner-gap));
  --ihub-text-col-w: calc(var(--ihub-main-col) - var(--ihub-thumb-w) - var(--ihub-inner-gap));
  --ihub-pick-pad: 5px;
  --ihub-pick-gap: 10px;
  /* 330 − 좌우패딩(5×2) − 썸간여유(10) → 2열 균등 */
  --ihub-pick-thumb-w: calc((var(--ihub-side-w) - 2 * var(--ihub-pick-pad) - var(--ihub-pick-gap)) / 2);
  --ihub-pick-thumb-h: var(--ihub-pick-thumb-w);
  --ihub-pick-thumb: var(--ihub-pick-thumb-w);
  /* 상단18 + 제목31 + 리스트10 + 썸 + 타이틀47 + 하단20 */
  --ihub-pick-box-min-h: calc(18px + 31px + 10px + var(--ihub-pick-thumb-h) + 47px + 20px);
  /* Nate 원본 Biz 추천검색어 썸 — 125×72 가로형, 텍스트 gap 18px */
  --ihub-rank-thumb-w: 125px;
  --ihub-rank-thumb-h: 72px;
  --ihub-rank-thumb-gap: 18px;
  --ihub-rank-row-h: 72px;
  --ihub-issue-kw-row-h: 27px;
  --ihub-issue-kw-visible: 5;
  --ihub-news-row-gap: 12px;
}

/* ── 페이지 셸 ── */
body.nt-integration-hub[data-nt-device="desktop"] #mainContainer {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: var(--ihub-page-w);
  margin: 0 auto;
  overflow-x: clip;
}

body.nt-integration-hub[data-nt-device="desktop"] #container {
  width: 100%;
  max-width: var(--ihub-page-w);
  margin: 0 auto;
}

body.nt-integration-hub[data-nt-device="desktop"] #header {
  position: relative;
  width: 100%;
  max-width: var(--ihub-page-w);
  height: var(--ihub-header-h);
  margin: 0 auto;
  z-index: 4;
  /* border-bottom 1px이 header-h 밖으로 밀려 배너 좌표가 1px 표류하는 것 방지 */
  box-sizing: border-box;
}

/* ── 광고 오버레이(메인배너·우측상단) — 문서흐름과 분리, 좌표만 SSOT ── */
body.nt-integration-hub[data-nt-device="desktop"] #adContainer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--ihub-page-w);
  height: 0;
  z-index: 2;
  pointer-events: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #adContainer .area_ad01,
body.nt-integration-hub[data-nt-device="desktop"] #adContainer .area_ad02 {
  pointer-events: auto;
}

body.nt-integration-hub[data-nt-device="desktop"] #adContainer .area_ad03,
body.nt-integration-hub[data-nt-device="desktop"] #adContainer .area_ad04,
body.nt-integration-hub[data-nt-device="desktop"] #adContainer .area_ad06,
body.nt-integration-hub[data-nt-device="desktop"] #adContainer .area_adual {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad01 {
  top: calc(var(--ihub-header-h) + var(--ihub-banner-gap));
  left: 0;
  width: var(--ihub-page-w);
  height: var(--ihub-banner-h);
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad01 #NateBiRolling,
body.nt-integration-hub[data-nt-device="desktop"] .area_ad01 #NateBiRolling a,
body.nt-integration-hub[data-nt-device="desktop"] .area_ad01 #NateBiRolling img {
  display: block;
  width: var(--ihub-page-w);
  max-width: var(--ihub-page-w);
  height: var(--ihub-banner-h);
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad02 {
  top: var(--ihub-body-top);
  right: 0;
  width: var(--ihub-side-w);
  height: var(--ihub-ad02-h);
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad02 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── 배너 슬롯 비율 SSOT — 가로에 따라 세로 자동 · 전후 영역 flow 연동 ── */
body.nt-integration-hub .ihub-banner-aspect {
  --ihub-ad-w: 1;
  --ihub-ad-h: 1;
  display: block;
  width: 100%;
  position: relative;
  aspect-ratio: var(--ihub-ad-w) / var(--ihub-ad-h);
  height: auto;
  max-height: none;
  overflow: hidden;
  box-sizing: border-box;
}

body.nt-integration-hub .ihub-banner-aspect > .ihub-banner-fade,
body.nt-integration-hub .ihub-banner-aspect > .bnr-slot,
body.nt-integration-hub .ihub-banner-aspect > .ihub-ad-placeholder,
body.nt-integration-hub .ihub-banner-aspect.ihub-banner-fade,
body.nt-integration-hub .ihub-banner-aspect.bnr-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

body.nt-integration-hub .ihub-mob-ad-slot.ihub-banner-aspect {
  height: auto;
}

body.nt-integration-hub .ihub-mob-ad-slot.ihub-banner-aspect > .ihub-ad-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

/* ── 배너 슬롯 페이드 (1건=정적 · 2건+=롤링) ── */
body.nt-integration-hub .ihub-banner-fade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.nt-integration-hub .ihub-banner-fade__item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity var(--ihub-banner-fade-ms) ease;
  pointer-events: none;
  z-index: 0;
}

body.nt-integration-hub .ihub-banner-fade__item.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

body.nt-integration-hub .ihub-banner-fade__item.is-entering {
  opacity: 1;
  z-index: 2;
}

body.nt-integration-hub .ihub-banner-fade__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad01 #NateBiRolling .ihub-banner-fade,
body.nt-integration-hub[data-nt-device="desktop"] .area_ad01 #NateBiRolling .ihub-banner-fade__item {
  width: var(--ihub-page-w);
  max-width: var(--ihub-page-w);
  height: var(--ihub-banner-h);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad02 .ihub-banner-fade {
  width: 100%;
  height: var(--ihub-ad02-h);
}

body.nt-integration-hub[data-nt-device="desktop"] .ihub-mid-banner .ihub-banner-fade {
  width: 100%;
  height: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad10 .ihub-banner-fade {
  width: 100%;
  height: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .bizCnt .adBox {
  aspect-ratio: 168 / 97;
  width: 168px;
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] .bizCnt .adBox .ihub-banner-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .bizCnt .adBox .ihub-banner-fade__item > span {
  display: block;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-ad .ihub-banner-fade {
  width: 100%;
  height: 100%;
}

body.nt-integration-hub[data-nt-device="mobile"] #rollingList > li {
  transition: opacity var(--ihub-banner-fade-ms) ease;
}

body.nt-integration-hub[data-nt-device="desktop"] {
  overflow-x: clip;
  max-width: 100vw;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_sktad02 {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="desktop"] #content {
  display: grid;
  grid-template-columns: var(--ihub-main-w) var(--ihub-gap-w) var(--ihub-side-w);
  width: 100%;
  max-width: var(--ihub-page-w);
  margin: 0 auto;
  /* 배너 위 20px + 배너 140px + 배너 아래 20px — 아래 gap 누락 시 본문이 배너에 1px까지 붙음 */
  padding-top: calc(var(--ihub-banner-gap) + var(--ihub-banner-h) + var(--ihub-banner-gap));
  row-gap: var(--ihub-area-gap);
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > hr,
body.nt-integration-hub[data-nt-device="desktop"] #content > h2 {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .area_auth {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .area_news {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .area_contents {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .container {
  display: contents;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar {
  grid-column: 3;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  gap: var(--ihub-area-gap);
  width: var(--ihub-side-w);
  align-self: start;
  box-sizing: border-box;
  /* 우측상단 광고(area_ad02)가 absolute로 이 자리에 앉음 — 쇼핑탭이 광고와 겹치지 않게 예약 */
  padding-top: calc(var(--ihub-ad02-h) + var(--ihub-area-gap));
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar > .area_shopping {
  flex: 0 0 auto;
  width: 100% !important;
  margin: 0;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  height: auto;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar > .area_shopping_today {
  flex: 0 0 auto;
  display: block !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  width: 100%;
  min-height: var(--ihub-pick-box-min-h);
  margin: 0;
  padding: 18px var(--ihub-pick-pad) 20px;
  border: 1px solid #e5e5e5;
  border-top: none;
  background-color: #fbfbfb;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today h4 {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #333;
  text-indent: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .paging_slide {
  position: absolute;
  top: 18px;
  right: var(--ihub-pick-pad);
  margin: 0;
  padding: 0 49px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #999;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .paging_slide em {
  font-weight: 700;
  color: #777;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .paging_slide .prev,
body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .paging_slide .next {
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  background: #eee center center no-repeat;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .paging_slide .prev {
  right: 25px;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .paging_slide .next {
  right: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .list_prod {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--ihub-pick-gap);
  width: 100%;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .list_prod li {
  flex: 0 0 var(--ihub-pick-thumb);
  width: var(--ihub-pick-thumb);
  max-width: var(--ihub-pick-thumb);
  margin: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .list_prod .link {
  display: block;
  color: #61646e;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .thumb_img,
body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .thumb_img img {
  display: block;
  width: var(--ihub-pick-thumb-w);
  height: var(--ihub-pick-thumb-h);
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_shopping_today .tit {
  display: block;
  min-height: 40px;
  margin: 7px 5px 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #666;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ihub-sidebar .area_ranking {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  align-self: auto;
  padding-left: 0;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] #content .area_issue {
  grid-column: 1;
  grid-row: 3;
  width: 100%;
  align-self: start;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > #divShortForm,
body.nt-integration-hub[data-nt-device="desktop"] #content > .short-form-content {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .ad_area_bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--ihub-gap-w);
  width: 100%;
  margin-top: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > .area_quick {
  grid-column: 1 / -1;
}

body.nt-integration-hub[data-nt-device="desktop"] #content > #divMallMenu {
  grid-column: 1 / -1;
  display: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #container > #footer {
  width: var(--ihub-page-w);
  margin: 0 auto;
  clear: both;
}

/* ── 헤더: 로고·GNB·인기검색어 ── */
body.nt-integration-hub[data-nt-device="desktop"] #container #header,
body.nt-integration-hub[data-nt-device="desktop"] .area_ignb,
body.nt-integration-hub[data-nt-device="desktop"] .area_gnb {
  width: var(--ihub-page-w);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_gnb {
  width: calc(var(--ihub-page-w) - var(--ihub-kwd-strip-w));
}

body.nt-integration-hub[data-nt-device="desktop"] .area_gnb ul > li {
  margin: 0 8px 0 0;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_gnb ul > li > a {
  font-size: 15px;
  letter-spacing: -0.5px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_bi h1.bi.ihub-brand,
body.nt-integration-hub[data-nt-device="desktop"] .area_bi h1.bi.ihub-brand a {
  top: 68px;
  left: 0;
  width: auto;
  max-width: 142px;
  height: auto;
  background: none;
  text-indent: 0;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] .ihub-brand-logo,
body.nt-integration-hub[data-nt-device="desktop"] .area_bi .ihub-brand-logo {
  display: block;
  max-width: 142px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.nt-integration-hub[data-nt-device="desktop"] #gnbMorePanel.ihub-gnb-more {
  position: absolute;
  top: var(--ihub-header-h);
  left: 0;
  z-index: 10;
  width: var(--ihub-page-w);
  border: 1px solid #d4d4d4;
  background: #fff;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #gnbMorePanel.ihub-gnb-more .gnb_more_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 20px 12px;
}

body.nt-integration-hub[data-nt-device="desktop"] #gnbMorePanel.ihub-gnb-more ul {
  flex: 1 1 25%;
  min-width: 180px;
  margin: 0;
  padding: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #gnbMorePanel.ihub-gnb-more ul li {
  margin: 0 0 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

body.nt-integration-hub[data-nt-device="desktop"] #gnbMorePanel.ihub-gnb-more .btn_close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: auto;
  height: auto;
  padding: 4px 10px;
  font-size: 15px;
  line-height: 1.5;
  text-indent: 0;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
}

body.nt-integration-hub[data-nt-device="desktop"] #keywordRank.area_rtkwd.type_alone {
  top: 182px;
  right: var(--ihub-kwd-strip-w);
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone {
  top: 182px;
  right: 0;
  width: var(--ihub-kwd-strip-w);
  height: 29px;
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone h3.type_biz {
  position: static;
  top: auto;
  left: auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 118px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  float: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone .kwd_list.type_biz {
  position: relative;
  top: auto;
  left: auto;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 20px;
  margin: 0;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone .kwd_list.type_biz ol {
  margin: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone .kwd_list.type_biz ol li {
  height: 20px;
  line-height: 20px;
  margin: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone .kwd_list.type_biz ol li p {
  display: flex;
  align-items: center;
  height: 20px;
  margin: 0;
  padding: 0 0 0 20px;
  line-height: 20px;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone .kwd_list.type_biz ol li .num {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
}

body.nt-integration-hub[data-nt-device="desktop"] #bizRank.area_biz.type_alone .kwd_list.type_biz ol li a {
  display: block;
  height: 20px;
  line-height: 20px;
  font-size: 15px;
  color: #222;
  overflow: visible;
  white-space: nowrap;
}

/* ── 뉴스 블록: 탭 + 670|180 ── */
body.nt-integration-hub[data-nt-device="desktop"] .area_news {
  width: var(--ihub-main-w);
  padding-bottom: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .menu {
  position: relative;
  top: auto;
  left: auto;
  width: var(--ihub-main-w);
  height: auto;
  min-height: 24px;
  margin: 0 0 var(--ihub-inner-gap) 0;
  display: flow-root;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .menu h4 {
  float: left;
  margin: 0 18px 0 0;
  height: 20px;
  font-size: 15px;
  line-height: 1.33;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content {
  width: var(--ihub-main-w);
  /* twin 고정 height 468px·relative 해제 — 통합허브는 자동 높이, nav는 area_news 기준 */
  position: static;
  height: auto;
  margin-top: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_news {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .tabCnt {
  position: relative;
  flex: 0 0 var(--ihub-main-col);
  width: var(--ihub-main-col);
  max-width: var(--ihub-main-col);
  margin: 0;
  padding: 0 var(--ihub-gap-w) 0 0;
  box-sizing: border-box;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
  min-height: 100%;
}

/* 구분선 | — 콘텐츠 660 끝에서 10px, bizCnt 앞 10px (패딩 20px 중앙) */
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .tabCnt::after {
  content: "";
  position: absolute;
  top: 0;
  right: var(--ihub-divider-pad);
  width: 1px;
  height: 100%;
  background-color: #eaeaea;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  float: none !important;
  flex: 0 0 var(--ihub-side-col);
  width: var(--ihub-side-col);
  max-width: var(--ihub-side-col);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ihub-inner-gap);
  text-align: center;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeyword {
  position: relative;
  width: 168px;
  margin: 0 0 var(--ihub-area-gap);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt h4 {
  display: block;
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  text-indent: 0;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList {
  position: relative;
  width: 168px;
  height: calc(var(--ihub-issue-kw-row-h) * var(--ihub-issue-kw-visible));
  margin: 8px 0 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  list-style: none;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 7px 0 0;
  overflow: hidden;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .slide-content {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  width: 100%;
  transform: none;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li.is-rolling .ik,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li.is-rolling .num_rank {
  font-weight: 700;
  color: #f83030;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li a {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin-left: 8px;
  padding: 0;
  font-size: 14px;
  color: #3b3b3b;
  height: auto;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .num_rank {
  display: flex;
  align-items: center;
  flex: 0 0 10px;
  width: 10px;
  margin-top: -1px;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  text-align: left;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .txt_rank {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .fc {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 4px;
  padding: 0 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.84px;
  color: #777;
  text-align: center;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .fc::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 14px;
  background-image: url("//main.nateimg.co.kr/img/v7/set_main_20250923.png");
  background-repeat: no-repeat;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .fc.up::before {
  top: 4px;
  background-position: -124px -201px;
  width: 10px;
  height: 10px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .fc.down::before {
  top: 4px;
  background-position: -114px -201px;
  width: 10px;
  height: 10px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .fc.same::before {
  left: 5px;
  top: 6px;
  background-position: -264px -119px;
  width: 16px;
  height: 8px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .isKeywordList li .fc.new::before {
  top: -5px;
  left: 0;
  background-position: -207px -182px;
  width: 24px;
  height: 12px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .btn_more_wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  margin: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .btn_more_wrap .btn_more {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  text-indent: -9999px;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Ccircle cx='7.5' cy='7.5' r='6.5' fill='none' stroke='%23999' stroke-width='1'/%3E%3Ctext x='7.5' y='11' text-anchor='middle' font-size='10' fill='%23999'%3E?%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .adBox {
  position: relative;
  width: 168px;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  align-self: center;
  text-align: center;
  overflow: visible;
  text-align: center;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .adBox:empty {
  display: none;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .adBox a {
  display: block;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .adBox a > span {
  display: block;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .adBox .thumb {
  display: block;
  height: 97px;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .adBox .thumb img {
  display: block;
  width: 168px;
  height: 97px;
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .adBox .title {
  display: block;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: #222;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .todayBox {
  position: relative;
  width: 168px;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e6e6ea;
  background-color: #f6f6fa;
  text-align: left;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .todayBox .cmBox2,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .todayBox .cmBox2 a {
  display: block;
  width: 168px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .todayBox .thumb {
  display: block;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .todayBox .thumb img {
  display: block;
  width: 168px;
  height: 138px;
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .todayBox h3 {
  position: absolute;
  top: 10px;
  left: 15px;
  width: auto;
  height: auto;
  font-size: 15px;
  line-height: 1.35;
  color: #222;
  text-indent: 0;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .bizCnt .todayBox .svcLink li {
  font-size: 15px;
  text-align: left;
}

/* ── 뉴스 2행(썸+텍스트5) + 하단 가로 3썸 — Nate D-C2 ── */
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .ihub-news-rows {
  display: flex;
  flex-direction: column;
  gap: var(--ihub-news-row-gap);
  flex: 1 1 auto;
  width: 100%;
  max-width: calc(var(--ihub-main-col) - 2 * var(--ihub-divider-pad));
  margin: 0;
  min-height: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .ihub-news-row {
  display: flex;
  flex: 0 0 auto;
  gap: var(--ihub-inner-gap);
  align-items: flex-start;
  width: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content ul.type_thumb.ihub-news-row-thumb {
  flex: 0 0 var(--ihub-thumb-w);
  width: var(--ihub-thumb-w);
  display: block;
  margin: 0;
  padding: 0;
  float: none;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content ul.type_thumb.ihub-news-row-thumb li {
  float: none;
  width: var(--ihub-thumb-w);
  margin: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .ihub-news-text-col {
  flex: 1 1 auto;
  min-width: 0;
  width: var(--ihub-text-col-w);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content ul.type_text {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  float: none;
  clear: none;
  margin: -5px 0 0;
  padding: 0 0 6px;
  overflow: visible;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content ul.type_text li {
  position: relative;
  float: none;
  width: 100%;
  min-height: 0;
  margin: 2px 0 6px;
  padding: 0;
  line-height: 20px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content ul.type_text li a {
  position: relative;
  display: block;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
  word-break: break-word;
  line-height: 20px;
  color: #222;
}

/* ── 뉴스 하단: 가로 3썸(170×3 + gap 15) ── */
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content ul.ihub-news-bottom-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--ihub-thumb-gap);
  flex: 0 0 auto;
  width: 100%;
  max-width: calc(var(--ihub-main-col) - 2 * var(--ihub-divider-pad));
  margin: var(--ihub-inner-gap) 0 0;
  margin-top: auto;
  padding: 0;
  float: none;
  clear: both;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content ul.ihub-news-bottom-row li {
  flex: 0 0 var(--ihub-thumb-w);
  width: var(--ihub-thumb-w);
  margin: 0;
  float: none;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .type_thumb.type02 a,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .type_thumb.type01 a {
  position: relative;
  display: block;
  width: var(--ihub-thumb-w);
  min-height: 138px;
  height: auto;
  overflow: visible;
  font-size: 15px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .type_thumb .thumb_img {
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .type_thumb .thumb_img,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .type_thumb .thumb_img img {
  display: block;
  width: var(--ihub-thumb-w);
  height: 97px;
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .type_thumb.type02 .txt,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .type_thumb.type01 .txt {
  display: block;
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.38;
  color: #222;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
  word-break: break-word;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  min-height: 0;
  max-height: none;
  height: auto;
}

/* 미드배너 — 660px 콘텐츠열(탭Cnt 폭) 아래 */
body.nt-integration-hub[data-nt-device="desktop"] .area_news > .ihub-mid-banner {
  display: block;
  width: var(--ihub-mid-banner-w);
  max-width: calc(var(--ihub-main-col) - 2 * var(--ihub-divider-pad));
  margin: var(--ihub-inner-gap) 0 0 0;
  clear: both;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] .ihub-mid-banner a,
body.nt-integration-hub[data-nt-device="desktop"] .ihub-mid-banner img {
  display: block;
  width: 100%;
  max-width: var(--ihub-mid-banner-w);
  height: 100%;
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .tabCnt {
  flex: 0 0 var(--ihub-main-col);
  width: var(--ihub-main-col);
  max-width: var(--ihub-main-col);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .tabCnt ul.type_text,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .tabCnt .ihub-news-rows,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .tabCnt ul.ihub-news-bottom-row {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .rankBox {
  position: relative;
  width: 100%;
  margin: 0 0 var(--ihub-inner-gap);
  overflow: visible;
  display: flow-root;
  flex: 0 0 100%;
  order: 1;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .rankBox .tit {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .list_rank {
  float: left;
  width: calc(50% - 12px);
  margin: 0 24px 0 0;
  padding: 5px 0 9px;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .list_rank:nth-of-type(2n) {
  margin-right: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .list_rank li {
  float: none;
  width: 100%;
  padding: 0 0 4px;
  line-height: 20px;
  overflow: visible;
}

/* 랭킹뉴스 탭 — 텍스트 전용·제목 전체 표시 */
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content.type_rank .list_rank .link_rank {
  display: block;
  font-size: 15px;
  color: #222;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  text-overflow: clip;
}

/* 원본에서 안 보이는 보조 요소 — 고정높이 클리핑 대체 */
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content .content_recommend,
body.nt-integration-hub[data-nt-device="desktop"] .area_news .content > #newsNotice {
  display: none;
}

/* 뉴스 롤링 내비 — 원본처럼 뉴스박스 상단 우측(사진·텍스트 구간 우상단) */
body.nt-integration-hub[data-nt-device="desktop"] .area_news .nav#newsOptBtn {
  position: absolute;
  top: 0;
  right: calc(var(--ihub-side-col) + var(--ihub-gap-w));
  z-index: 2;
  display: flex;
  align-items: center;
}

/* ── 판·이슈UP ── */
body.nt-integration-hub[data-nt-device="desktop"] .area_contents {
  width: var(--ihub-main-w);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_contents .menu,
body.nt-integration-hub[data-nt-device="desktop"] .area_contents .content {
  width: 100%;
}

/* 원본 2열(325px/730px) 비율을 850px 폭에 맞춰 확장 — 홀수열 margin 50px 유지 */
body.nt-integration-hub[data-nt-device="desktop"] .area_contents .content .ctList li {
  width: 400px;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue {
  --ihub-issue-cols: 4;
  --ihub-issue-col-gap: 18px;
  --ihub-issue-item-w: calc((var(--ihub-main-w) - (var(--ihub-issue-cols) - 1) * var(--ihub-issue-col-gap)) / var(--ihub-issue-cols));
  width: var(--ihub-main-w) !important;
  box-sizing: border-box;
  padding: var(--ihub-area-gap) 0 0;
  border-top: 1px solid #7e7e7e;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .issue-swiper {
  min-height: 0 !important;
  height: auto;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .swiper-wrapper,
body.nt-integration-hub[data-nt-device="desktop"] .area_issue .swiper-slide.content {
  height: auto !important;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .content .content-list {
  column-gap: var(--ihub-issue-col-gap);
  row-gap: var(--ihub-area-gap);
  width: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .content .content-list li {
  width: var(--ihub-issue-item-w) !important;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .content .content-list.type-tv li {
  width: var(--ihub-issue-item-w) !important;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .content .content-list li .thumb {
  height: calc(var(--ihub-issue-item-w) * 126 / 169);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .content .content-list.type-tv li .thumb {
  height: calc(var(--ihub-issue-item-w) * 98 / 174);
}

body.nt-integration-hub[data-nt-device="desktop"] .area_issue .content .content-list.type-shop li .thumb {
  height: calc(var(--ihub-issue-item-w) * 120 / 169);
}

/* ── 우측하단 Biz 추천검색어(사진+텍스트) — vendor float·72px 고정 겹침 차단 ── */
body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking {
  isolation: isolate;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking h3 {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .menu {
  margin: 0;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .menu h4 {
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 var(--ihub-area-gap) 4px;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  text-align: left;
  color: #333;
  text-indent: 0;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .content {
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .content ul.type_thumb {
  margin: 0;
  padding: 0;
  overflow: visible;
  clear: both;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: var(--ihub-rank-row-h);
  max-height: none !important;
  margin: 0 0 var(--ihub-area-gap);
  padding: 0 !important;
  overflow: visible !important;
  contain: layout;
  clear: both;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li:last-child {
  margin-bottom: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li a {
  display: grid !important;
  grid-template-columns: var(--ihub-rank-thumb-w) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: var(--ihub-rank-thumb-gap);
  row-gap: 4px;
  align-items: start;
  height: auto !important;
  min-height: var(--ihub-rank-row-h);
  max-height: none !important;
  overflow: visible !important;
  text-decoration: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li span {
  min-width: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li .thumb {
  position: relative;
  float: none !important;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: var(--ihub-rank-thumb-w);
  height: var(--ihub-rank-thumb-h);
  margin: 0 !important;
  overflow: hidden;
  flex-shrink: 0;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li .thumb img {
  display: block;
  width: var(--ihub-rank-thumb-w);
  height: var(--ihub-rank-thumb-h);
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li .text {
  display: block;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 13px 0 0 !important;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.5px;
  color: #333;
  overflow: visible;
  white-space: normal !important;
  word-break: break-word;
  text-overflow: clip;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  max-height: none;
  height: auto;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li .desc {
  display: block;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  padding: 0 !important;
  font-size: 15px;
  line-height: 1.35;
  color: #999;
  overflow: hidden;
  white-space: nowrap !important;
  text-overflow: ellipsis;
}

body.nt-integration-hub[data-nt-device="desktop"] #ihubSidebar .area_ranking .type_thumb li.commercial .text {
  color: #3f7dee;
}

/* ── 쇼핑 사이드(330) — 4탭 쇼핑·온딜·나눔·공공 (vendor 탭·서브메뉴 SSOT) ── */
body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall {
  position: relative;
  width: var(--ihub-side-w);
  max-width: var(--ihub-side-w);
  min-height: 400px;
  padding-top: 31px;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .tab {
  position: absolute;
  top: 0;
  width: 82px;
  height: 31px;
  border-right: 1px solid #e2e2e2;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall #mall1Title {
  left: 0;
  border-left: 1px solid #e2e2e2;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall #mall2Title {
  left: 84px;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall #mall3Title {
  left: 167px;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall #mall4Title {
  left: 250px;
  width: 81px;
  border-right: 1px solid #e2e2e2;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .tab .link {
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  color: #666;
  text-align: center;
  text-decoration: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall1shop #mall1Title .link,
body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall2shop #mall2Title .link,
body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall3shop #mall3Title .link,
body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall4shop #mall4Title .link {
  font-weight: 700;
  color: #3b3b3b;
  background-color: #fff;
  border-bottom: 1px solid #fff;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall {
  display: none;
  width: var(--ihub-side-w);
  max-width: var(--ihub-side-w);
  overflow: hidden;
  padding: 23px 0 3px;
  border: 1px solid #e2e2e2;
  border-top: none;
  background-color: #fff;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall1shop #mall1Box,
body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall2shop #mall2Box,
body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall3shop #mall3Box,
body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall.mall4shop #mall4Box {
  display: block;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .txtlist {
  display: block;
  height: 21px;
  margin: 0 0 0 12px;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .txt_li {
  position: relative;
  float: left;
  padding: 0 6px 0 5px;
  font-size: 15px;
  line-height: 18px;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .txt_li::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 1px;
  height: 12px;
  border-right: 1px solid #dcdcdd;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .txt_li:last-child::before {
  display: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .txt_li a {
  color: #666;
  text-decoration: none;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .txt_li.first a strong {
  color: #666;
  font-weight: 700;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .imglist {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 27px 0 0;
  overflow: hidden;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .img_li {
  float: left;
  width: calc((var(--ihub-side-w) - 12px) / 3);
  box-sizing: border-box;
  padding: 0 2px;
  text-align: center;
}

body.nt-integration-hub[data-nt-device="desktop"] #shopitemMall .shopmall .imglist .txt {
  font-size: 15px;
  line-height: 1.35;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
}

/* ── 숏폼 8열(사진+텍스트) ── */
body.nt-integration-hub[data-nt-device="desktop"] #divShortForm.short-form-content {
  width: var(--ihub-page-w);
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="desktop"] #divShortForm .best-shortform-wrap {
  width: 100%;
  height: auto;
  min-height: 258px;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] #divShortForm .best-shortform {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 254px;
  margin: 0;
  padding: 0;
  gap: var(--ihub-inner-gap);
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] #divShortForm .best-shortform li {
  flex: 0 0 calc((var(--ihub-page-w) - 7 * var(--ihub-inner-gap)) / 8);
  width: calc((var(--ihub-page-w) - 7 * var(--ihub-inner-gap)) / 8);
  height: auto;
  min-height: 274px;
  margin: 0;
  overflow: visible;
}

body.nt-integration-hub[data-nt-device="desktop"] #divShortForm .best-shortform li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] #divShortForm .best-shortform .thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  flex: 0 0 auto;
}

body.nt-integration-hub[data-nt-device="desktop"] #divShortForm .best-shortform .subject {
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 6px;
  min-height: 88px;
  max-height: none;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  display: block;
}

/* ── 하단 광고 850+330 (좌 단일 배너 · 우 배너) ── */
body.nt-integration-hub[data-nt-device="desktop"] .area_ad09 {
  flex: 0 0 var(--ihub-main-w);
  width: var(--ihub-main-w) !important;
  float: none !important;
  height: auto;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad09 .ihub-banner-fade {
  width: 100%;
  height: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad09 .ihub-banner-fade__item img,
body.nt-integration-hub[data-nt-device="desktop"] .area_ad09 > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad09 .ihub-banner-slot-empty,
body.nt-integration-hub[data-nt-device="desktop"] .area_ad10 .ihub-banner-slot-empty {
  display: block;
  width: 100%;
  height: 100%;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad10 {
  flex: 0 0 var(--ihub-side-w);
  width: var(--ihub-side-w) !important;
  float: none !important;
  margin: 0 !important;
  height: auto;
}

body.nt-integration-hub[data-nt-device="desktop"] .area_ad10 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── 공지 마키 2행 ── */
body.nt-integration-hub[data-nt-device="desktop"] #footer .footer-notice-row {
  position: relative;
  width: var(--ihub-page-w);
  margin: 0 auto;
  padding-bottom: 8px;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer .notice.notice-marquee {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer .notice.notice-marquee h3 {
  position: static;
  flex: 0 0 auto;
  margin: 0 var(--ihub-divider-pad) 0 0;
  padding-right: var(--ihub-divider-pad);
  font-size: 15px;
  line-height: 1.5;
  text-indent: 0;
  width: auto;
  height: auto;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer .notice.notice-marquee h3::after {
  content: "|";
  margin-left: var(--ihub-divider-pad);
  color: #d0d0d0;
  font-weight: 400;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer .notice-marquee-track {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 22px;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer .notice-marquee-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ihub-notice-marquee 28s linear infinite;
  will-change: transform;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer .notice-marquee-inner a {
  display: inline-block;
  padding: 0 var(--ihub-divider-pad);
  font-size: 15px;
  color: #333;
  white-space: nowrap;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer .notice-marquee-inner a + a::before {
  content: "|";
  margin-right: var(--ihub-divider-pad);
  color: #d0d0d0;
}

body.nt-integration-hub[data-nt-device="desktop"] #footer a.view_all {
  position: static;
  display: block;
  width: auto;
  margin: 8px 0 0 auto;
  padding: 0;
  height: auto;
  font-size: 15px;
  line-height: 1.5;
  text-align: right;
  border: 0;
  color: #222;
}

@keyframes ihub-notice-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══ 모바일(m.nate) — 간격: vendor SSOT 밀집 (원본 .mt1 li margin 없음 · bl 42px) ══ */
body[data-nt-device="mobile"] {
  --ihub-area-gap: 8px;
  --ihub-inner-gap: 8px;
  overflow-x: hidden;
  max-width: 100%;
}

body[data-nt-device="mobile"] #headerWrap,
body[data-nt-device="mobile"] .blockNavi {
  max-width: 100%;
  overflow-x: hidden;
}

/* 모바일 메뉴 13개(GNB SSOT) — 좁은 화면은 가로 스크롤(스크롤바 숨김은 vendor) */
body[data-nt-device="mobile"] .blockNavi .navTab {
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body[data-nt-device="mobile"] .blockNavi .navTab li {
  flex: 0 0 auto;
}

body[data-nt-device="mobile"] .blockNavi .navTab li a {
  display: block;
  padding: 0 10px;
  white-space: nowrap;
}

body[data-nt-device="mobile"] .section.FIELD,
body[data-nt-device="mobile"] section > .section.FIELD {
  margin-bottom: var(--ihub-area-gap);
}

body[data-nt-device="mobile"] .section.FIELD:last-child,
body[data-nt-device="mobile"] .ct1 > .section.FIELD:last-of-type {
  margin-bottom: 0;
}

body[data-nt-device="mobile"] .section .thd {
  margin-bottom: 0;
}

body[data-nt-device="mobile"] .slider_scroll .isList {
  gap: var(--ihub-inner-gap);
}

body[data-nt-device="mobile"] .slider_scroll .pt1 a > span:last-child,
body[data-nt-device="mobile"] .mpt1 .pt2 a > span:last-child {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.4;
}

body[data-nt-device="mobile"] .slider_scroll .iBox img,
body[data-nt-device="mobile"] .mpt1 .pt2 .iBox img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* vendor: .mt1 li 에 margin 없음 — border-bottom만. integration margin 제거 */
body[data-nt-device="mobile"] .mt1 li {
  margin-bottom: 0;
}

body[data-nt-device="mobile"] .srchWrap h1 a .ihub-brand-logo {
  display: block;
  max-width: 120px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap .srchInner h1 a .ihub-mob-search-symbol {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap .srchInner {
  padding-left: 52px;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap .srchInner h1 a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 8px 0 8px 15px;
  width: 30px;
  height: 30px;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap .srchBox {
  height: 48px;
  border: 0;
  background: rgba(255, 255, 255, 0.85);
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap .srchBox .field-wrap {
  height: 48px;
  padding: 0 48px 0 0;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap .srchBox .field-wrap .type-text {
  width: calc(100% - 12px);
  margin: 13px 0 0;
  font-size: 16px;
  line-height: 22px;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap .srchBox .type-btn {
  width: 48px;
  height: 46px;
}

body[data-nt-device="mobile"] .srchWrap h1 a:has(.ihub-brand-logo) .logo,
body[data-nt-device="mobile"] .srchWrap h1 a:has(.ihub-mob-search-symbol) .logo {
  display: none !important;
  background: none !important;
  text-indent: 0;
}

/* 모바일 헤더 — 통합헤더(uh) 햄버거 SSOT · 좌측 Nate my 폐기 */
body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .hdaside .my,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .hdaside .my {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .hdaside .ihub-mob-ham--uh-ssot,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .hdaside .ihub-mob-ham--uh-ssot {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 9;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .hdaside .uh-btn-hamburger,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .hdaside .uh-btn-hamburger {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 6px;
  font-size: var(--fs-base, 16px);
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
}

/* Nate 허브는 하단 uh 탭바 미사용 — 드로어만 SSOT */
body.nt-integration-hub[data-uh-hub-menu="1"] .uh-mobile-tabbar {
  display: none !important;
}

/* 모바일 헤더 — 배경 롤링(M-H-BANNER) vs 헤더 AD(M-H-AD) 충돌 방지 SSOT
 * 1) 동일 mainBgWrap 안 세로 스택(flex-column) — 롤링 absolute 오버레이 금지
 * 2) 롤링 #rollingList = 3:1(720×240) 대형 · AD #ad_header = Nate .mainBn.big 소형 53px
 *    본문 gap = Nate .kkoad 대형 100px (aspect 축소 금지)
 * 3) AD hook_zone OFF → #ad_header 미출력 + --ihub-mob-head-ad-h:0 (srchWrap 빈공간 제거)
 * 4) 관리 분리: 롤링=ihub_mob_header · AD=지능형배너 ihub_mob_top */
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-header-stack {
  --ihub-mob-head-ad-h: 0px;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap {
  display: flex !important;
  flex-direction: column !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  width: 100% !important;
  aspect-ratio: unset !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  background: #e8eef2;
  z-index: 1;
}

/* vendor special-day 고정 175px/104px — 롤+헤더AD 높이에 맞춰 검색·헤더 동기화 */
body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .header,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .special-day .header {
  height: auto !important;
  min-height: calc(var(--ihub-mob-roll-h) + var(--ihub-mob-head-ad-h) + 71px) !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .special-day .srchWrap,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .special-day .srchWrap {
  padding-top: calc(var(--ihub-mob-roll-h) + var(--ihub-mob-head-ad-h) - 71px) !important;
  height: auto !important;
  min-height: calc(var(--ihub-mob-roll-h) + var(--ihub-mob-head-ad-h) + 71px) !important;
  box-sizing: border-box !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list {
  position: relative !important;
  flex: 0 0 auto;
  width: 100% !important;
  height: var(--ihub-mob-roll-h, calc(100vw / 3)) !important;
  aspect-ratio: 3 / 1;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list > li,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list > li {
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap a,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1 .template,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1 .template {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1::before,
body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1::after,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1::before,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1::after {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .ihub-mob-ad-slot#ad_header {
  position: static;
  flex: 0 0 auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 4;
  width: 100%;
  min-height: 0;
  margin: 0;
  background: rgba(245, 245, 245, 0.92);
}

/* Nate .mainBn.big — 기기 고정 53px (720 비율 축소로 27px 되는 것 방지) */
body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .ihub-mob-ad-slot#ad_header.ihub-mob-head-ad-strip {
  aspect-ratio: unset;
  height: 53px;
  min-height: 53px;
  max-height: 53px;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .ihub-mob-ad-slot#ad_header .ihub-ad-placeholder,
body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .ihub-mob-ad-slot#ad_header .ihub-banner-fade,
body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .ihub-mob-ad-slot#ad_header img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1 .template img,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1 .template img,
body.nt-integration-hub[data-nt-device="mobile"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1 .template img.ihub-mob-roll-img,
body.nt-integration-hub[data-uh-hub-menu="1"] #headerWrap .mainBgWrap .rolling-list li .rollingWrap.type-1 .template img.ihub-mob-roll-img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* srchword 접힘 롤: vendor 정밀 geometry(rankFold h=40 창) 유지 —
   margin-top 추가 시 창이 rankFold clip 밖으로 밀려 키워드가 안 보임 */

/* 모바일 광고 슬롯 — m.nate .mainBn { margin: 9px 0 } 영역 사이 간격 */
body[data-nt-device="mobile"] .mainBn.ihub-mob-ad-gap {
  margin: 9px 0;
}

/* Nate .kkoad — 기기 고정 100px (720 비율 축소로 ~54px 되는 것 방지) */
body[data-nt-device="mobile"] .mainBn.ihub-mob-ad-gap.ihub-banner-aspect,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-ad-slot.ihub-mob-ad-gap.ihub-banner-aspect {
  aspect-ratio: unset;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
}

body[data-nt-device="mobile"] .mainBn.ihub-mob-ad-gap a,
body[data-nt-device="mobile"] .mainBn.ihub-mob-ad-gap img,
body[data-nt-device="mobile"] .mainBn.ihub-mob-ad-gap .ihub-ad-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-nt-device="mobile"] .mainBn.ihub-mob-ad-gap .ihub-ad-placeholder {
  min-height: 0;
}

/* 레거시 전역 — gap 외 슬롯 */
body[data-nt-device="mobile"] .mainBn.ihub-mob-ad:not(.ihub-mob-ad-gap) {
  margin: 0 0 var(--ihub-area-gap);
}

body[data-nt-device="mobile"] .mainBn.ihub-mob-ad:not(.ihub-mob-ad-gap) a,
body[data-nt-device="mobile"] .mainBn.ihub-mob-ad:not(.ihub-mob-ad-gap) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-nt-device="mobile"] .shopBox.FIELD {
  margin-bottom: var(--ihub-area-gap);
}

body[data-nt-device="mobile"] #footer .footer {
  padding-top: var(--ihub-area-gap);
}

/* ── m.nate 쌍둥이: 추천뉴스 lt1_11 + 더보기 버튼 ── */
body[data-nt-device="mobile"] .mt1 .lt1_11 {
  position: relative;
  margin: 0 15px;
  border-bottom: 1px solid #ededed;
}

body[data-nt-device="mobile"] .mt1 .lt1_11:last-child {
  margin-bottom: 10px;
  border-bottom: 0;
}

body[data-nt-device="mobile"] .mt1 .lt1_11 a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 8px 0;
  overflow: hidden;
  box-sizing: border-box;
  text-decoration: none;
}

body[data-nt-device="mobile"] .mt1 .lt1_11 .iBox {
  position: relative;
  flex: 0 0 94px;
  width: 94px;
  height: 70px;
  margin-right: 12px;
  overflow: hidden;
}

body[data-nt-device="mobile"] .mt1 .lt1_11 .iBox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-nt-device="mobile"] .mt1 .lt1_11 .tBox {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.35;
  letter-spacing: -0.5px;
  overflow: hidden;
}

body[data-nt-device="mobile"] .mt1 .lt1_11 .tBox .txt {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  color: #222;
  overflow: visible;
  word-break: break-word;
  white-space: normal;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
}

body[data-nt-device="mobile"] .mt1 .lt1_11 .tBox .brc {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  color: #838383;
}

body[data-nt-device="mobile"] .section.FIELD .thd.st1 {
  border-bottom: 1px solid #ededed;
}

body[data-nt-device="mobile"] .section.FIELD .thd.st1 h2 {
  margin: 0;
  padding: 18px 15px 12px;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: #000;
}

body[data-nt-device="mobile"] .section.FIELD [data-nt-rec-more] {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 14px;
  padding: 12px 10px;
  border: 1px solid #ededed;
  border-top: 0;
  background: #f9faf9;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: #666;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

body[data-nt-device="mobile"] .section.FIELD [data-nt-rec-more] span {
  margin-left: 6px;
  color: #999;
}

body[data-nt-device="mobile"] .mt1 .lt1_1 a .tit,
body[data-nt-device="mobile"] .mt1 .lt2.ep a .tit,
body[data-nt-device="mobile"] .slider_scroll .pt1 a > span:last-child,
body[data-nt-device="mobile"] .mpt1 .pt1_2 a .iBox + span .tit,
body[data-nt-device="mobile"] .mpt1 .pt2 a > span:last-child,
body[data-nt-device="mobile"] .srchword .rank ol li a {
  font-size: var(--fs-sm, 15px);
}

/* ── 모바일 콘텐츠 패리티 (데스크 전용 구역 · pan/issueUP/shop 등) ── */
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mpt1::after {
  content: "";
  display: table;
  clear: both;
}

/* 콘텐츠 영역 목록 — 들여쓰기 금지 (헤더 .thd 15px 좌측과 동일 정렬) */
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt2_2,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt2_5,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .bl .lt2_2,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt1_11 {
  margin-left: 0;
  margin-right: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt2_2 a,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt2_5 a,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .bl .lt2_2 a {
  margin-left: 0;
  padding-left: 15px;
  padding-right: 15px;
  text-indent: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt1_11 a {
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  padding-right: 15px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt2_2 .mt2 > .lt1 {
  margin-left: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .mt1 .lt2_2 .mt2 > .lt1 a {
  margin-left: 0;
  padding-left: 15px;
}

/* 콘텐츠 탭바 — srchword(.rankOpen) 키워드 UI와 분리; vendor .srchTab li{width:100%} 무효화 */
body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper > .srchTab,
body.nt-integration-hub[data-nt-device="mobile"] [data-nt-mob-issue-up="1"] > .srchTab,
body.nt-integration-hub[data-nt-device="mobile"] .shopBox[data-nt-mob-shop] > .srchTab {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid #ebebeb;
}

body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper > .srchTab::-webkit-scrollbar,
body.nt-integration-hub[data-nt-device="mobile"] [data-nt-mob-issue-up="1"] > .srchTab::-webkit-scrollbar,
body.nt-integration-hub[data-nt-device="mobile"] .shopBox[data-nt-mob-shop] > .srchTab::-webkit-scrollbar {
  display: none;
}

body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper > .srchTab > li,
body.nt-integration-hub[data-nt-device="mobile"] [data-nt-mob-issue-up="1"] > .srchTab > li,
body.nt-integration-hub[data-nt-device="mobile"] .shopBox[data-nt-mob-shop] > .srchTab > li {
  flex: 0 0 auto;
  float: none !important;
  width: auto !important;
  height: 40px;
  line-height: 40px;
  border-bottom: 0;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper > .srchTab > li > a,
body.nt-integration-hub[data-nt-device="mobile"] [data-nt-mob-issue-up="1"] > .srchTab > li > a,
body.nt-integration-hub[data-nt-device="mobile"] .shopBox[data-nt-mob-shop] > .srchTab > li > a {
  display: block;
  padding: 0 14px;
  height: 40px;
  line-height: 40px;
  font-size: var(--fs-sm, 15px);
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper > .srchTab > li.on > a,
body.nt-integration-hub[data-nt-device="mobile"] [data-nt-mob-issue-up="1"] > .srchTab > li.on > a,
body.nt-integration-hub[data-nt-device="mobile"] .shopBox[data-nt-mob-shop] > .srchTab > li.on > a {
  font-weight: 700;
  color: #5e6bf6;
  box-shadow: inset 0 -2px 0 #5e6bf6;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content [data-nt-mob-pan-more],
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content [data-nt-mob-issue-more],
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content [data-nt-mob-today-more],
body.nt-integration-hub[data-nt-device="mobile"] .shopBox [data-nt-mob-today-more] {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 14px;
  padding: 12px 10px;
  border: 1px solid #ededed;
  border-top: 0;
  background: #f9faf9;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: #666;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content [data-nt-mob-pan-more] span,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content [data-nt-mob-issue-more] span,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content [data-nt-mob-today-more] span,
body.nt-integration-hub[data-nt-device="mobile"] .shopBox [data-nt-mob-today-more] span {
  margin-left: 6px;
  color: #999;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .ad_area_bottom .area_ad09,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .ad_area_bottom .area_ad10 {
  margin-bottom: 8px;
}

/* ── 레거시: 데스크탑 DOM 패리티 (폐기 예정 — ihub-mob-content로 이관) ── */
body.nt-integration-hub[data-nt-device="mobile"] .nHide {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .section.FIELD,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .ihub-mob-parity-news,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .ihub-mob-parity-biz,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .ihub-mob-parity-issue,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .ihub-mob-parity-shop,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .ihub-mid-banner,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .ad_area_bottom,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > #divContentsUpper,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > #divShortForm,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > #divQuickMenu,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity > .footer-notice-row {
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="mobile"] .mainContainer.f2,
body.nt-integration-hub[data-nt-device="mobile"] .conWrap#content {
  max-width: 100%;
  overflow-x: hidden;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity * {
  max-width: 100%;
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-semantic .search_keyword {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-semantic .search_keyword a {
  font-size: var(--fs-sm, 15px);
  color: #475569;
  text-decoration: none;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 999px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-hotkw .area_rtkwd,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_rtkwd {
  width: 100%;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .ihub-news-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .ihub-news-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .ihub-news-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .ihub-news-bottom-row .thumb_img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news #newsTabMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news #newsTabMenu h4 {
  margin: 0;
  font-size: var(--fs-sm, 15px);
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news #newsTabMenu h4.on a {
  font-weight: 800;
  color: #0f172a;
}

/* 뉴스 탭: 기본=뉴스 피드만, 랭킹 탭=rankBox만 (nHide SSOT + belt-and-suspenders) */
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news #newsContType:not(.type_rank) .rankBox {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news #newsContType.type_rank .ihub-news-rows {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .rankBox .list_rank {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .rankBox h4 {
  font-size: var(--fs-sm, 15px);
  margin: 0 0 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .bizCnt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divContentsUpper .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divContentsUpper .menu h4 {
  margin: 0;
  font-size: var(--fs-sm, 15px);
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .content-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .content-list img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .mall1shop .imglist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .mall1shop .imglist img,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .bizCnt img,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-hotkw img {
  max-width: 100%;
  height: auto;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .ihub-banner-fade,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .ihub-banner-fade img {
  max-width: 100%;
  width: 100% !important;
  height: auto !important;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_ranking .type_thumb {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_ranking .type_thumb li a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_ranking .thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divShortForm {
  max-width: 100%;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divShortForm .best-shortform-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divShortForm .best-shortform {
  display: flex;
  gap: 10px;
  width: max-content;
  max-width: none;
  overflow-x: visible;
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  scroll-snap-type: x mandatory;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divShortForm .best-shortform li {
  flex: 0 0 120px;
  scroll-snap-align: start;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divShortForm .thumb img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_quick ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_quick a {
  display: block;
  text-align: center;
  padding: 10px 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: var(--fs-sm, 15px);
  text-decoration: none;
  color: #0f172a;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .ad_area_bottom img,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .ihub-mid-banner img {
  width: 100%;
  height: auto;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .footer-notice-row {
  overflow: hidden;
  font-size: var(--fs-sm, 15px);
}

/* 데스크탑 크롬 숨김 · 패널 초기 상태 (JS initMobParity 전 FOUC 방지) */
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .content_recommend,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #newsOptBtn,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #newsNotice,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #breakingNews,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .overlay_ticker {
  display: none !important;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .isKeyword {
  overflow: hidden;
  max-height: 140px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .isKeywordList {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .isKeywordList li {
  font-size: var(--fs-sm, 15px);
  line-height: 28px;
  height: 28px;
  padding: 0;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .isKeywordList .slide-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .isKeywordList .num_rank {
  flex-shrink: 0;
  width: 20px;
  font-weight: 700;
  color: #e11d48;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .isKeywordList a {
  color: #0f172a;
  text-decoration: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divContentsUpper .ctList {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divContentsUpper .ctList li {
  width: 100% !important;
  max-width: 100%;
  float: none;
  margin: 0 0 10px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divContentsUpper .ctList .desc {
  font-size: var(--fs-sm, 15px);
  color: #64748b;
  margin-top: 4px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #divContentsUpper .ctList .link {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  max-width: 100%;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .menu-list li {
  flex: 0 1 auto;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .menu-list .link {
  display: block;
  padding: 6px 10px;
  font-size: var(--fs-sm, 15px);
  text-decoration: none;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  white-space: nowrap;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .menu-list li.on .link {
  font-weight: 700;
  color: #0f172a;
  border-color: #94a3b8;
  background: #f8fafc;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .sec_nav {
  margin-bottom: 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .area_issue .sec-title {
  font-size: var(--fs-lg, 18px);
  font-weight: 800;
  margin-bottom: 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity [data-nt-issue-swiper="1"] [data-nt-issue-slide] {
  display: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity [data-nt-issue-swiper="1"] [data-nt-issue-slide="0"] {
  display: block;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall .shopmall {
  display: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall.mall1shop #mall1Box,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall.mall2shop #mall2Box,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall.mall3shop #mall3Box,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall.mall4shop #mall4Box {
  display: block;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall .tab {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall .tab li {
  flex: 1 1 auto;
  min-width: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall .tab .link {
  display: block;
  padding: 8px 6px;
  font-size: var(--fs-sm, 15px);
  text-align: center;
  text-decoration: none;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #shopitemMall .tab li.on .link {
  font-weight: 700;
  color: #0f172a;
  border-color: #94a3b8;
  background: #f8fafc;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #ihubShoppingToday [data-nt-pick-page]:not([data-nt-pick-page="0"]) {
  display: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #ihubShoppingToday .list_prod {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity #ihubShoppingToday .list_prod img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .ad_area_bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .ad_area_bottom .area_ad09,
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity .ad_area_bottom .area_ad10 {
  width: 100%;
  max-width: 100%;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-hotkw .area_rtkwd .kwd_list {
  width: 100%;
  height: 20px;
  overflow: hidden;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-hotkw .area_rtkwd .kwd_list ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-hotkw .area_rtkwd .kwd_list li {
  font-size: var(--fs-sm, 15px);
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .type_text {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .type_text li {
  font-size: var(--fs-sm, 15px);
  line-height: 1.45;
  padding: 4px 0;
  border-bottom: 1px solid #f1f5f9;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-parity-news .ihub-news-row-thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

body[data-nt-device="mobile"] .srchword .rank ol li a {
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  word-break: break-word;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  display: block !important;
  max-height: none !important;
  min-height: 0 !important;
}

/* ══ 모바일 허브 6건 수정 (PICK·간격·AD·마키·제목·기자PICK) ══ */

/* 2. PICK → 콘텐츠 패리티 간격 */
body.nt-integration-hub[data-nt-device="mobile"] #news_area[data-nt-mob-news-block] {
  margin-bottom: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] #news_area[data-nt-mob-news-block] > .section.FIELD {
  margin-bottom: 6px;
}

body.nt-integration-hub[data-nt-device="mobile"] #news_area[data-nt-mob-news-block] > .section.FIELD:last-child {
  margin-bottom: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content {
  margin-top: 0;
  padding-top: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content > .mainBn.ihub-mob-ad-slot:first-child {
  margin-top: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper.section.FIELD {
  margin-top: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper .bl {
  margin-top: 0;
}

body.nt-integration-hub[data-nt-device="mobile"] #divContentsUpper .bl .lt2_2 a {
  height: auto;
  min-height: 42px;
  line-height: 1.35;
  padding: 8px 15px;
  white-space: normal;
  text-overflow: clip;
  overflow: visible;
}

/* 목록 텍스트행 — vendor .mt1 .lt2_2 a(11+10px) 대비 소폭만 밀집, 제목 줄바꿈 허용 */
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mt1 .lt2_2 a,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mt1 .lt2_5 a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.35;
}

/* 3. AD 슬롯 — AD 뱃지·플레이스홀더 (비율은 .ihub-banner-aspect SSOT) */
body[data-nt-device="mobile"] .ihub-mob-ad-slot {
  position: relative;
  min-height: 0;
  background: #f5f5f5;
  overflow: hidden;
}

body[data-nt-device="mobile"] .ihub-ad-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 3;
  padding: 2px 6px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  pointer-events: none;
}

body[data-nt-device="mobile"] .ihub-ad-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: repeating-linear-gradient(
    -45deg,
    #ececec,
    #ececec 8px,
    #f5f5f5 8px,
    #f5f5f5 16px
  );
}

/* 4. 공지 마키 — 모바일 */
body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .footer-notice-row {
  padding: 12px 15px;
  margin-bottom: var(--ihub-area-gap);
  box-sizing: border-box;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .notice.notice-marquee {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .notice.notice-marquee h3 {
  position: static;
  flex: 0 0 auto;
  margin: 0 10px 0 0;
  padding-right: 10px;
  font-size: 15px;
  line-height: 1.5;
  text-indent: 0;
  width: auto;
  height: auto;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .notice.notice-marquee h3::after {
  content: "|";
  margin-left: 10px;
  color: #d0d0d0;
  font-weight: 400;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .notice-marquee-track {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 22px;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .notice-marquee-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ihub-notice-marquee 28s linear infinite;
  will-change: transform;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .notice-marquee-inner a {
  display: inline-block;
  padding: 0 10px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
}

body.nt-integration-hub[data-nt-device="mobile"] .ihub-mob-content .notice-marquee-inner a + a::before {
  content: "|";
  margin-right: 10px;
  color: #d0d0d0;
}

/* 5. 제목 생략 금지 — #mainContainer 전역 (모바일) · 데스크탑 뉴스·랭킹 썸은 .area_news/.area_ranking 규칙 */
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mt1 .lt2_2 a,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mt1 .lt2_5 a,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .bl .lt2_2 .tBox,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mt1 .lt1_11 .tBox .txt,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .isList .pt1 a .tit,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .isList .pt1 a .iBox + span,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mpt1 .pt2 a > span:last-child,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mpt1 .pt2 a .tit,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mt1 .tit {
  display: block !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  word-break: break-word;
  -webkit-box-orient: unset !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  max-height: none !important;
  height: auto !important;
}

body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mt1 .lt2_2,
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .bl .lt2_2 {
  overflow: visible;
}

/* 6. 기자 PICK — 썸네일 노출 */
body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mpt1.t2 .pt2 a .iBox {
  display: block;
  position: relative;
  margin: 0;
  padding-top: 68.95%;
  overflow: hidden;
  border-radius: 6px;
  background: #f7f8fb;
}

body.nt-integration-hub[data-nt-device="mobile"] #mainContainer .mpt1.t2 .pt2 a .iBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
