header {
	max-width: 1200px; margin: 0 auto 10px auto; padding: 0;
}



/* ── 네비게이션 ── */
.inter-nav {
	/*background-color: #333;*/
	position: relative;
	z-index: 100;
}

.inter-nav-bar {
	position: relative;
	z-index: 2;
	/*background-color: #333;*/
}

.inter-nav-bar > .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inter-nav-menu {
	display: flex;
	align-items: center;
	height: 44px;
}

.inter-nav-menu > li {
	height: 100%;
	display: flex;
	align-items: center;
}

.inter-nav-menu > li > a {
	display: flex;
	align-items: center;
	padding: 0 14px;
	height: 100%;
	color: #444;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.01em;
	transition: color 0.3s;
	cursor: pointer;
	white-space: nowrap;
}

.inter-nav-menu > li:first-child > a {
	padding: 0;
}

/*
.inter-nav-menu > li > a:hover {
	color: #fff;
}



.nav-hamburger {
	color: #333 !;
}


.nav-hamburger i {
	font-size: 18px !important;
	color: #333;
}

.inter-nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #ccc;
	font-size: 13px;
	height: 44px;
}

.inter-nav-right a {
	color: #ccc;
	transition: color 0.3s;
}

.inter-nav-right a:hover {
	color: #fff;
}

/* ── 드롭다운 외부 컨테이너 (열기/닫기) ── */
.inter-dropdown {
	position: absolute;
	top: 44px;
	left: 0;
	width: 100%;
	background-color: #fff;
	border-top: 1px solid #e0e0e0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	z-index: 1;
	overflow: hidden;
	height: 0;
	transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 패널 컨테이너 ── */
.inter-dropdown-scroll {
}

/* ── 전체보기 패널 스크롤 ── */
.dp-0 .dropdown-inner {
	position: relative;
	display: block;
	overflow: hidden;
	max-height: 500px;
}

.dp0-inner-scroll {
	/*display: flex;*/
	display: grid;
	grid-template-columns: repeat(6,1fr);
	gap: 30px;
	flex-wrap: wrap;
	padding: 20px 18px 20px 0;
	overflow-y: scroll;
	overflow-x: hidden;
	max-height: 500px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	box-sizing: border-box;
}

.dp0-inner-scroll::-webkit-scrollbar {
	display: none;
	width: 0;
}

/* ── 커스텀 스크롤바 ── */
.dp0-scrollbar-track {
	position: absolute;
	right: 0;
	top: 10px;
	bottom: 10px;
	width: 4px;
	background: #f0f0f0;
	border-radius: 4px;
}

.dp0-scrollbar-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	background: #bbb;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
	min-height: 24px;
}

.dp0-scrollbar-thumb:hover {
	background: #999;
}

/* ── 개별 패널 ── */
.dropdown-panel {
	display: none;
}

.dropdown-panel.active {
	display: block;
}

.dropdown-inner {
	display: flex;
	gap: 50px;

	/*padding: 30px 40px 40px;*/
	padding: 20px 0;

	max-width: 1280px;
	/*border: 1px solid #aaa;*/
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}


.dropdown-inner-column {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 50px;

  /*padding: 30px 40px 40px;*/
  padding: 20px 0;

  max-width: 1280px;
  /*border: 1px solid #aaa;*/
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}


/* ── 드롭다운 내부 스타일 ── */
.dropdown-col {
	border-left: 1px solid #e0e0e0;
	padding: 0 25px;
}

.dropdown-col:first-child {
	border-left: none;
	padding: 0;
}

.dropdown-col h3 {
	font-size: 14px;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 12px 0;
}

.dropdown-col ul li a {
	display: block;
	padding: 4px 0;
	color: #1d1d1f;
	font-size: 14px;
	/*font-weight: 700;*/
	transition: color 0.2s;
}

.dropdown-col ul li a:hover {
	color: #0066cc;
}

.dropdown-col ul.big-links li a {
	font-size: 15px;
	font-weight: 700;
	padding: 3px 0;
	color: #1d1d1f;
}

.dropdown-col ul.big-links li a:hover {
	color: #0066cc;
}

.dropdown-col ul.small-links li a {
	font-size: 14px;
	font-weight: 400;
	color: #555;
}

.dropdown-col ul.small-links li a:hover {
	color: #0066cc;
}

.dropdown-divider {
	width: 1px;
	background-color: #e0e0e0;
	align-self: stretch;
}


/* ── dp-1 명함 슬라이더 레이아웃 ── */
.dp1-layout {
  display: flex;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
  align-items: flex-start;
}

.dp1-slider-area {
  flex: 1;
  min-width: 0;
}

.dp1-swiper {
  width: 100%;
  position: relative;
}

.dp1-slide {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.dp1-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border-radius: 6px 6px 0 0;
}

.dp1-slide-overlay {
  height: 56px;
  padding: 8px 12px;
  background: #f8f8f8;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  box-sizing: border-box;
}

.dp1-slide-title {
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 3px;
  line-height: 1.3;
}

.dp1-slide-desc {
  color: #666;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
}

.dp1-pagination,
.dp2-pagination {
  position: absolute !important;
  bottom: 64px !important;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
}

.dp1-pagination .swiper-pagination-bullet,
.dp2-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.dp1-pagination .swiper-pagination-bullet-active,
.dp2-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.dp1-links-area {
  flex: 4;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-content: start;
}

.dp1-links-area .dropdown-col {
  border-left: 1px solid #e0e0e0;
  padding: 0 20px;
}

.dp1-links-area .dropdown-col:first-child {
  border-left: none;
  padding-left: 0;
}

.dp1-links-area .dropdown-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 10px;
}

/* ── 배경 오버레이 ── */
.inter-nav-overlay {
	position: fixed;
	top: 150px;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
	z-index: 99;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.inter-nav-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

/* ── 헤더 상단 바 ── */
.header-top { padding: 12px 0; }
.header-top-right { display: flex; justify-content: flex-end; gap: 20px; }
.header-logout-btn { border: none; background: none; }

/* ── 헤더 메인 행 ── */
.header-main { display: flex; justify-content: space-between; align-items: center; }
.header-brand { display: flex; align-items: center; gap: 10px; }
.header-logo { font-weight: 700; }

/* ── 헤더 검색 ── */
.header-search-wrap {
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  gap: 10px;
}
.header-search-input { width: 420px; border: none; }

/* ── 네비게이션 이벤트 링크 ── */
.nav-event-link { color: #0066cc; font-weight: 700; font-size: 16px; }

/* ── 전체보기 드롭다운 ── */
.dp0-content { padding: 30px 0; }
.dp0-container { width: 1280px; margin: 0 auto; }
.dp0-search-wrap {
  width: 60%;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dp0-search-input { width: 96%; border: none; padding: 0; }
.dp0-inner { gap: 30px; flex-wrap: wrap; }

/* ── 드롭다운 카테고리 아이템 ── */
.dp-cat-title { font-weight: 700; }
.dp-cat-list { font-size: 13px; }
.mb-section { margin-bottom: 20px; }


