.elementor-18414 .elementor-element.elementor-element-4d5f6fa{--display:flex;--min-height:100px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-18414 .elementor-element.elementor-element-4d5f6fa:not(.elementor-motion-effects-element-type-background), .elementor-18414 .elementor-element.elementor-element-4d5f6fa > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF00;}.elementor-18414 .elementor-element.elementor-element-6ba89a1{width:var( --container-widget-width, 1905px );max-width:1905px;--container-widget-width:1905px;--container-widget-flex-grow:0;}.elementor-18414 .elementor-element.elementor-element-6ba89a1 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-18414 .elementor-element.elementor-element-701be05{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 24px;--row-gap:0px;--column-gap:24px;--margin-top:20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-18414 .elementor-element.elementor-element-b021909{width:var( --container-widget-width, 1322px );max-width:1322px;--container-widget-width:1322px;--container-widget-flex-grow:0;}.elementor-18414 .elementor-element.elementor-element-b021909 > .elementor-widget-container{margin:0px 0px 0px 048px;padding:0px 064px 0px 064px;}@media(max-width:767px){.elementor-18414 .elementor-element.elementor-element-4d5f6fa{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-18414 .elementor-element.elementor-element-6ba89a1 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-18414 .elementor-element.elementor-element-701be05{--margin-top:30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-18414 .elementor-element.elementor-element-b021909 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}@media(min-width:768px){.elementor-18414 .elementor-element.elementor-element-4d5f6fa{--content-width:1905px;}.elementor-18414 .elementor-element.elementor-element-701be05{--content-width:1905px;}}/* Start custom CSS for html, class: .elementor-element-6ba89a1 */:root{
  --nkc-black:#000;
  --nkc-black-900:#0f0f0f;
  --nkc-black-800:#1A1A1A;
  --nkc-grey-400:#b3b3b3;
  --nkc-grey-600:rgba(255,255,255,.56);
  --nkc-grey-700:rgba(255,255,255,.35);
  --nkc-border:rgba(255,255,255,.08);

  --gap-sm:16px;
  --gap-md:24px;
  --gap-lg:32px;

  --panel-width:22rem;         /* ≈ 352px */

  --dur-fast:.18s;
  --dur-mid:.25s;
  --half-offset: 200px;
   --navbar-h: 50px;        /* 헤더 기본 높이 */
  --navbar-h-sticky: 68px;
}
body{
  padding-top: var(--navbar-h);
  transition: padding-top var(--dur-mid);
}

/* 3) 헤더가 .is-sticky 일 때 패딩 줄이기 */
body.nav--shrunk{
  padding-top: var(--navbar-h-sticky);
}

#navbar_container {
  position: fixed;
  inset: 0 0 auto 0;
  height: 100px;
  z-index: 100;
  background: #fff;
  box-shadow: none;
  transition:
    background var(--dur-mid),
    box-shadow var(--dur-mid);
}
#navbar_container.is-sticky {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  height: 68px; 
}
/* 기본(투명 헤더) 상태: 아주 옅은 흰색 */


/* ───────── Nav 내부 레이아웃 ───────── */
/* 1️⃣ 공통 정의 – border 존재(연한 흰색), 부드러운 전환 */
.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  background: none;

  /* 경계선: 기본은 흰색 6 % 불투명 */
  border-bottom: 1.5px solid #e1e1e1; 
  transition: border-color .25s;  /* 색상만 자연스럽게 바뀌도록 */
}

/* 2️⃣ 스크롤 후(sticky) – 어두운 선으로만 색상 덮어쓰기 */
#navbar_container.is-sticky .navbar__container {
   border-bottom-color: #d0d0d0;
}



/* ───────── 왼쪽 섹션: 햄버거 버튼 ───────── */
.navbar-section--left {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  margin-left: var(--gap-lg);
}

/* ───────── 로고 (중앙 정렬) ───────── */
.navbar__logo--link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.navbar__logo--link img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* 듀얼 로고(스크롤 전/후) */
.navbar__logo--link .logo--white {
  display: block;
}
.navbar__logo--link .logo--black {
  display: none;
}
#navbar_container.is-sticky .logo--white {
  display: none;
}
#navbar_container.is-sticky .logo--black {
  display: block;
}
#navbar_container.is-sticky .navbar__logo--link img {
  height: 56px;
}

/* ───────── 햄버거 버튼 ───────── */
.navbar-button--square {
  padding: 10px 8px;
  border: none;
  border-radius: 5px;
  background: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background var(--dur-fast);
}
/* ───────── 768px 이하(모바일) ───────── */
@media (max-width: 768px) {

  /* 1) 버튼이 들어 있는 래퍼 자체를 왼쪽에 붙이기 */
  .navbar-section--left { margin-left: 20px; }

  /* 2) 버튼과 화면 사이 여백도 0으로 */
  .navbar-button--square { padding-left: 0; }
}

.navbar-button--square:hover {
  background: #efefef;
}

/* 버튼 내부 아이콘 색상 */
.navbar-button--square svg {
  color: #222;
  transition: color var(--dur-fast);
}
#navbar_container.is-sticky .navbar-button--square svg {
  color: #222;
}

/* =============================================================
   ┃ 2. Mega-menu 컨테이너 & 딤(오버레이)
============================================================= */

/* ───────── Mega-menu 패널 ───────── */
.nav-menu__container {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(880px, 96vw, 1000px);
  max-width: 100vw;
height: 100dvh;
height: calc(var(--vh, 1vh) * 100);
  background: var(--nkc-black);
  color: #fff;
  border-right: 1px solid var(--nkc-black-800);
  z-index: 102;
  display: flex;
  flex-direction: column;
 overflow-y: hidden;             overscroll-behavior: contain; 
  transform: translateX(-110%);
  transition:
    transform .35s cubic-bezier(.65, .05, .36, 1);
}
.nav-menu__container[aria-hidden="false"] {
  transform: translateX(0);
}

/* ───────── 딤/오버레이 ───────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.64);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================================
   ┃ 3. 메뉴 헤드 (닫기 · 검색)
============================================================= */

/* ───────── 헤더 바 전체 ───────── */
.menu-head {
  position: relative;
  flex-shrink: 0;
  height: 99px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--nkc-black);
  background: #000;
  padding: 0 var(--gap-md);
}

/* ───────── 닫기 버튼 패널 ───────── */
.menu-close {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--nkc-black-800);
}
.menu-close__button {
  background: inherit;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 12px;
  transition: background var(--dur-fast);
}
.menu-close__button:hover {
  background: #222;
}

/* ───────── 검색 패널 ───────── */
.menu-search {
  flex: 1;
  display: flex;
  align-items: center;
}
.menu-search__content {
    flex:1 1 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  height: 99px;
  margin-left: var(--gap-md);
}
.menu-search__search-button {
  background: inherit;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.menu-search__search-button:hover {
  background: #1a1a1a;
}

.menu-search__input,
input[type=search] {
    width:100%; flex:1 1 auto; min-width:0;
       
  max-width: 100vw;
  background: #000 !important;
  color: #fff !important;
  caret-color: #fff !important;
  border: none;
  outline: none;
  box-shadow: none;
  font: 600 1.1rem/1 Pretendard, sans-serif;
  padding: 10px 16px;
  border-radius: 8px;
  box-sizing: border-box;
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    box-shadow var(--dur-fast);
}
.menu-search__input,
input[type="search"] {
  border: none !important;        /* 크롬·파폭 */
  outline: none !important;       /* 포커스 테두리 */
  box-shadow: none !important;    /* iOS·사파리 테두리 대용 */
  -webkit-appearance: none;       /* 사파리 기본 테두리 제거 */
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.menu-search__input::placeholder,
input[type=search]::placeholder {
  color: #b3b3b3;
  opacity: .8;
}
.menu-search__input:not(:focus),
input[type=search]:not(:focus) {
  caret-color: transparent !important;   /* 포커스 안 됐을 때 커서 완전 숨김 */
}

.menu-search__input:focus,
input[type=search]:focus {
  caret-color: #fff !important;          /* 포커스(클릭) 때만 흰색 커서 */
}

.menu-head,
.menu-search,
.menu-search__content {
  background: #000 !important;
}

/* =============================================================
   ┃ 4. 메뉴 바디 (2‑패널)
============================================================= */

/* ───────── 메뉴 바디 전체 (2패널 구조) ───────── */
.menu-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  overscroll-behavior: contain;
}

/* ───────── 좌측: 카테고리 패널 ───────── */
.category-panel {
  width: var(--panel-width);
  min-width: 240px;
  max-width: 28rem;
  background: var(--nkc-black-900);
  border-right: 1px solid var(--nkc-border);
  display: flex;
  flex-direction: column;
}
.category-panel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.category-panel__body,
.category-item-panel {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;   /* ← iOS 모멘텀 스크롤 활성 */
  overscroll-behavior: contain;        /* 체인 방지(기존 유지) */
}

/* 카테고리 버튼 */
.category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0 var(--gap-md) 0 calc(var(--gap-md) + 8px);
  font: 500 24px/64px Pretendard, sans-serif;
  letter-spacing: .4px;
  color: var(--nkc-grey-400);
  background: transparent;
  transition:
    background var(--dur-fast),
    color var(--dur-fast);
  cursor: pointer;
  user-select: none;
  text-decoration: none !important;
}
.category:hover {
  background: #333;
  color: #fff;
}
.category.active {
  background: #232323;
  color: #fff;
}

/* 카테고리 화살표 */
.category__arrow {
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
  opacity: .35;
  transition:
    opacity var(--dur-fast),
    transform var(--dur-fast);
}
.category__arrow svg {
  width: 8px;
  height: 14px;
}
.category:hover .category__arrow {
  opacity: 1;
  transform: translateX(4px);
}
.category.active .category__arrow {
  opacity: 1;
  transform: none;
}

/* 카테고리 타이틀 */
.category__title {
  text-decoration: none !important;
}

/* ───────── 우측: 카테고리 아이템 패널 ───────── */
.category-item-panel {
  flex: 1;
  min-width: 0;
  background: var(--nkc-black);
  padding: 34px var(--gap-lg);
  overflow-y: auto;
  width: 1800px;
  max-width: calc(100vw - var(--panel-width) - 1rem);
  display: none;
}
.category-item-panel.is-active {
  display: block;
}

/* 패널 헤더 및 뒤로가기 */
.panel-header {
  display: none;
  margin-bottom: 32px;
}
.panel-back {
  background: none;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 16px/1 Pretendard, sans-serif;
  cursor: pointer;
  padding: 0;
  transition: color var(--dur-fast);
}
.panel-back:hover {
  color: #6bc1ff;
}

/* ───────── 카테고리 아이템 리스트 ───────── */
.category-item__listing {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  border-radius: 7px;
  transition: background var(--dur-fast);
}
.category-item:hover {
  background: #181818;
}

/* 썸네일 */
.category-item__thumbnail {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #232323;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-item__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 컨텐츠(텍스트) */
.category-item__content {
  font: 900 16px/1 Pretendard, sans-serif;
  color: #fff;
}

/* =============================================================
   ┃ 5. 소셜 푸터
============================================================= */

/* ───────── 푸터 전체 ───────── */
.menu-body__footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: 20px var(--gap-lg);
  border-top: 1px solid var(--nkc-border);
  background: var(--nkc-black);
  min-height: 62px;
}

/* ───────── 소셜 아이콘 버튼 ───────── */
.social-media__item {
  background: none;
  border: none;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.social-media__item svg {
  width: 22px !important;
  height: 20px !important;
}
.social-media__item:hover {
  background: #161616;
}
.social-media__item:hover svg {
  fill: #fff;
}

/* =============================================================
   ┃ 6. 반응형 (Tablet · Mobile)
============================================================= */

/* ───────── 1040px 이하 (PC ~ 태블릿) ───────── */
@media (max-width: 1040px) {
  .nav-menu__container {
    width: 100vw !important;
  }
  .category-panel {
    width: clamp(200px, 30vw, 240px);
  }
  .category-item-panel {
    width: calc(100vw - clamp(200px, 30vw, 240px));
    padding: 24px 8px;
  }
  .menu-search__input,
  input[type=search] {
    width: 220px;
  }
}


/* ───────── 1023.98px 이하 (태블릿 이하) ───────── */
@media (max-width: 1023.98px) {
  /* 헤더: 세로 스택 */
  .menu-head {
    flex-direction: column;
    height: auto;
    padding: 0;
  }
  /* 닫기(X) 버튼 라인 */
  .menu-close {
    width: 100%;
    height: 72px;
    border: none;
   justify-content: flex-start;
   margin-left: 20px;
  }
  .menu-close__button {
    padding: 0;
  }
  /* 검색 라인 */
  .menu-search {
    width: 100%;
  }
  .menu-search__content {
    height: 72px;
    margin-left: 0;
    padding: 0 12px;
    border-top: 1px solid var(--nkc-border);
  }
  .menu-search__input {
    width: 100%;
  }
  /* 카테고리 행 크기 */
  .category {
    height: 72px;
    padding: 0 24px;
    font: 400 24px/72px Pretendard, sans-serif;
    letter-spacing: .2px;
  }
  /* Back 헤더 노출 */
  .panel-header {
    display: flex;
    height: 72px;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid var(--nkc-border);
  }
  .panel-back svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
  }
  /* 단열 레이아웃 (세로 쌓기) */
  .menu-body {
    flex-direction: column;
  }
  .category-panel,
  .category-item-panel,
  .menu-body__footer,
  .nav-menu__container {
    width: 100vw !important;
    left: 0 !important;
    max-width: 100vw !important;
  }
  .category-item-panel {
    padding: 20px 10px;
  }
  .menu-search__input,
  input[type=search] {
    width: 90vw;
  }
}

/* ───────── 480px 이하 (모바일) ───────── */
@media (max-width: 480px) {
  .category-item__content {
    font-size: 15px;
  }
  .category-item__thumbnail {
    width: 114px;
    height: 114px;
  }
 input[type=search] {
    width: 290px;
    max-width: 100vw;
  }
  .navbar__logo--link img {
    height: 56px;  
}
}
/* =============================================================
   ┃ 7. 전역 리셋
============================================================= */
html, body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
padding-inline:0;
  overflow-x: hidden;
  box-sizing: border-box;
}
body {
  font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
}
.globalnav-root {
  z-index: 100 !important;
}
.navigation-menu {
  outline: none !important;
}
/* 링크 전역: 밑줄 제거 */
.category,
.category:visited,
.category__title,
.category__title:visited {
  text-decoration: none !important;
}

/* ========================================
   1) WebKit(Chrome · Edge · Safari 등)
======================================== */
.category-panel__body,
.category-item-panel {
  /* 기본값: 얇은 오버레이 느낌 */
  scrollbar-width: thin;                 /* ← Firefox용(아래 2번)도 함께 처리 */
  scrollbar-gutter: stable;              /* 내용 흔들림 방지 */

  /* 색상 변경(선택) */
  --scroll-track:  var(--nkc-black-800); /* 트랙 */
  --scroll-thumb:  #6bc1ff;              /* 엄지(thumb) */
}

/* 세로 스크롤바 공통 */
.category-panel__body::-webkit-scrollbar,
.category-item-panel::-webkit-scrollbar {
  width: 10px;          /* 굵기 */
}
/* 트랙(배경) */
.category-panel__body::-webkit-scrollbar-track,
.category-item-panel::-webkit-scrollbar-track {
  background: var(--scroll-track);
}
/* 엄지(thumb) */
.category-panel__body::-webkit-scrollbar-thumb,
.category-item-panel::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb);
  border-radius: 6px;
  border: 2px solid var(--scroll-track); /* padding 효과 */
  transition: background-color .18s;
}
/* 호버 시 강조 */
.category-panel__body:hover::-webkit-scrollbar-thumb,
.category-item-panel:hover::-webkit-scrollbar-thumb {
  background-color: #91d4ff;
}

/* ========================================
   2) Firefox 전용(앞서 지정한 색상을 그대로 사용)
======================================== */
@supports (scrollbar-color: red blue) {
  .category-panel__body,
  .category-item-panel {
    scrollbar-color: var(--scroll-thumb) var(--scroll-track); /* thumb · track */
    scrollbar-width: thin;           /* none | thin | auto  */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b021909 *//* ────────────── 전체 컨테이너 ────────────── */
.nkc-content-container {
  overflow: clip;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Noto Sans KR', 'Noto Sans';
}
.nkc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

/* ────────────── 사이드바(About) ────────────── */
.nkc-sidebar {
  width: 100%;
  max-width: 350px;
  flex: 0 0 33.3333%;
  margin-bottom: 2rem;
}
.nkc-nav-list {
  padding: 0;
  list-style: none;
  margin: 0 0 1.5em 0;
}
.nkc-nav-header {
  border-bottom: 1px solid #d5e0e8;
  font-size: 1em;
  font-color: #1414;
  font-weight: 700;
  padding-bottom: 0;
  margin-bottom: 6px;
}
.nkc-nav-header span {
  border-bottom: 3px solid #d5e0e8;
  padding-bottom: 8px;
  display: inline-block;
}
.nkc-nav-item {
  border-bottom: 1px solid #d5e0e8;
  padding: 0.85em 0;
}
.nkc-nav-item a {
  color: #0065f2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nkc-nav-item a:hover {
  color: #174fa6;
}

/* ────────────── 메인 타이틀 ────────────── */
.nkc-page-title {
  display: block;
  font-size: 3em;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #162345;
  margin: 0 0 .1em 0;
  line-height: 1.13;
  font-family: 'Noto Sans KR', 'Noto Sans'
}

/* ────────────── 기사 리스트 ────────────── */
.nkc-media-articles-list-content {
  flex: 1 1 66.6666%;
  min-width: 0;
}

.nkc-media-list {
  margin-bottom: 2.5em;
}

.nkc-media-article {
  padding: 2.1em 0 0.9em 0;
  border-top: 1.5px solid #dbe6ef;
}
.nkc-media-article:first-child {
  border-top: none;
}
.nkc-media-articles-list-content {
  max-width: 696px;  /* ← 기사 전체 폭을 제한 */
}
.nkc-media-link {
  display: block;
  color: #19254b;
  font-weight: 800;
  font-size: 1.17em;
  line-height: 1.48;
  margin-bottom: 0.7em;
  text-decoration: none;
  transition: color 0.18s;
  word-break: break-word;        max-width: 100%;  
  white-space: normal !important; /* 줄바꿈 강제 */
}


.nkc-media-link:hover {
  color: #1a49b7;
}

.nkc-media-meta {
  display: flex;
  gap: 1.3em;
  color: #a0b0c0;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
}
.nkc-media-type {
  font-weight: 700;
  margin-right: 1em;
}
.nkc-media-date {
  color: #a0b0c0;
  font-weight: 400;
}

/* ────────────── 페이징 바 (정확한 px 고정) ────────────── */
.nkc-pagination-container {
  display: flex;
  width: 100%;
  max-width: 696px;         /* 이미지 느낌의 콤팩트 사이즈 */
  margin: 2.5em auto 1.5em auto;
  border: 1.5px solid #dbe6ef;
  background: #fff;
  box-sizing: border-box;
  /* 불필요한 padding, float, position 제거 */
  padding: 0;
  position: static;
  float: none;
}

.nkc-pagination-direction,
.nkc-pagination-info {
  min-width: 0;
  max-height: 92.32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  box-sizing: border-box;
  padding: 0;              /* 여백 없음 */
}
.nkc-pagination-prev,
.nkc-pagination-next {
  flex: 0 0 92.39px;     /* 고정 */
}
.nkc-pagination-info {
  flex: 1 1 0;        /* 남은 공간 모두 차지 */
}

.nkc-pagination-prev {
  color: #111;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
  
}
.nkc-pagination-info {
  color: #c3d3e1;
  border-left: 1px solid #dbe6ef;
  border-right: 1px solid #dbe6ef;
  font-weight: 500;
}
.nkc-pagination-next {
  color: #c3d3e1;
  font-weight: 800;
  cursor: not-allowed;
  border-left: 1px solid #dbe6ef;
  text-decoration: none;
  transition: color 0.2s;
}

.nkc-pagination-prev:hover {
  color: #1a49b7;
}

/* 모바일 대응 */
@media (max-width: 600px) {
  .nkc-pagination-container {
    max-width: 100%;
    min-width: 0;
  }
  .nkc-pagination-direction,
  .nkc-pagination-info {
    font-size: 1em;
    height: 40px;
  }
}


/* ────────────── 반응형 ────────────── */
@media (max-width: 1024px) {
  .nkc-row {
    flex-direction: column;
    gap: 2rem;
  }
  .nkc-sidebar,
  .nkc-media-articles-list-content {
    max-width: 100%;
    width: 100%;
    flex: 1 1 100%;
  }
  .nkc-pagination-container {
    width: 100%;
    min-width: 0;
  }
  .nkc-pagination-prev,
  .nkc-pagination-next {
    width: 18vw;
    min-width: 65px;
    max-width: none;
  }
  .nkc-pagination-info {
    width: auto;
    min-width: 0;
    max-width: none;
    flex: 1 1 0;
  }
}

@media (max-width: 600px) {
  .nkc-content-container {
    padding: 0 0;
  }
  .nkc-page-title {
    font-size: 2em;
    margin-bottom: 1em;
  }
  .nkc-media-link {
    font-size: 1em;
  }
  .nkc-media-article {
    padding: 1.3em 0 0.5em 0;
  }
  .nkc-pagination-container,
  .nkc-pagination-direction,
  .nkc-pagination-info {
    font-size: 1.03em;
    min-height: 44px;
    height: 44px;
  }
  .nkc-nav-header,
  .nkc-nav-item {
    padding-bottom: 7px;
    font-size: 0.95em;
  }
  .nkc-sidebar {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .nkc-pagination-container {
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    border-width: 1px;
  }
  .nkc-pagination-direction,
  .nkc-pagination-info {
    font-size: 0.95em;
    height: 40px;
    max-height: 40px;
    padding: 0;
  }
  .nkc-pagination-prev,
  .nkc-pagination-next {
    flex: 0 0 60px;    /* ← 더 작게 */
    min-width: 60px;
    max-width: 60px;
  }
  .nkc-pagination-info {
    flex: 1 1 0;
    min-width: 0;
    border-left: 1px solid #dbe6ef;
    border-right: 1px solid #dbe6ef;
    font-size: 0.95em;
  }
}


@media (max-width: 480px) {
  .nkc-media-meta {
    gap: 0.7em;
    font-size: .75em;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-701be05 */.elementor-template-full-width .e-con.e-flex > .e-con-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
}/* End custom CSS */