/* ── 탭 네비게이션 ── */
.dg-tab-nav {display: flex;border-radius: 10px;overflow: hidden;border: 1px solid #e0e0e0;margin-bottom: 1.5rem;}
.dg-tab-nav__item {flex: 1;text-align: center;padding: .7rem 1rem;font-size: .95rem;font-weight: 700;color: #555;background: #fff;text-decoration: none;border-right: 1px solid #e0e0e0;transition: background .15s, color .15s;}
.dg-tab-nav__item:last-child { border-right: none; }
.dg-tab-nav__item.is-active {background: linear-gradient(135deg, #8ca078, #3d5a2e);color: #fff;font-weight: 800;}
.dg-tab-nav__item:hover {background: rgba(61,90,46,.1);color: #2d4a1e;text-decoration: none;}
.dg-tab-nav__item.is-active:hover {background: linear-gradient(135deg, #8ca078, #3d5a2e);color: #fff;}
@media (max-width: 768px) {
	.dg-tab-nav__item { padding: .55rem .5rem; font-size: .85rem; }
}
/* ══════════════════════════════════════════════
   체험 프로그램 안내 — 세이지 그린 통일
   ══════════════════════════════════════════════ */

/* ── 체험 프로그램 탭 (가로 꽉 참) ── */
.exp-tabs {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dce5d8;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}
.exp-tab {
  flex: 1;
  text-align: center;
  padding: .65rem .5rem;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #5a6b52;
  background: #f4f7f2;
  text-decoration: none;
  border-right: 1px solid #dce5d8;
  transition: background .15s, color .15s;
  cursor: pointer;
  white-space: nowrap;
}
.exp-tab:last-child { border-right: none; }
.exp-tab:hover {
  background: #e8efe4;
  color: #3d5a2e;
  text-decoration: none;
}
.exp-tab.active,
.exp-tab.active:hover {
  background: #3d5a2e;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 768px) {
  .exp-tab {
    padding: .5rem .25rem;
    font-size: .75rem;
  }
}

/* ── 콘텐츠 카드 ── */
.exp-content {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 20px rgba(140,176,120,.1);
	margin-bottom: 30px;
	overflow: hidden;
}

/* ── 카드 헤더 (세이지 그린 파스텔) ── */
.exp-card-head {
	position: relative;
	padding: 12px 20px;
	overflow: hidden;
	background: var(--dg-primary-gradient);
}
.exp-card-head .head-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	background: rgba(45,74,30,.10);
	border-radius: 10px;
}
.exp-card-head .head-icon i {
	font-size: 18px;
	color: #2d4a1e;
}
.exp-card-head .section-subtitle {
	display: inline-block;
	font-family: 'Pretendard', sans-serif;
	font-size: 11px; font-weight: 600;
	color: #2d4a1e;
	background: rgba(45,74,30,.12);
	padding: 3px 10px;
	border-radius: 4px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.exp-card-head .section-title {
	font-family: 'Noto Serif KR', serif;
	font-size: 22px; font-weight: 700;
	color: #2d4a1e;
	margin: 0 0 4px;
	letter-spacing: -0.03em;
	line-height: 1.3;
	position: relative;
}
.exp-card-head .section-desc {
	font-family: 'Pretendard', sans-serif;
	font-size: 13px; font-weight: 400;
	color: rgba(45,74,30,.5);
	margin: 0;
	letter-spacing: -0.01em;
}

/* ── 카드 바디 ── */
.exp-card-body {
	padding: 20px 16px;
}
.exp-card-body .sub-title {
	font-family: 'Noto Serif KR', serif;
	font-size: 16px; font-weight: 700;
	color: #2d4a1e;
	margin: 24px 0 0;
	padding-left: 12px;
	border-left: 3px solid #8ca078;
	line-height: 1.3;
}
.exp-card-body .sub-title:first-child {
	margin-top: 0;
}
.exp-card-body .desc-list {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
}
.exp-card-body .desc-list li {
	position: relative;
	padding: 8px 0 8px 28px;
	font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
	font-size: 14.5px;
	line-height: 1.7;
	color: #444;
	border-bottom: 1px solid #f0f0f0;
	letter-spacing: -0.01em;
}
.exp-card-body .desc-list li:last-child {
	border-bottom: none;
}
.exp-card-body .desc-list li::before {
	content: '';
	position: absolute;
	left: 4px; top: 15px;
	width: 8px; height: 8px;
	background: #8ca078;
	border-radius: 50%;
}
.exp-card-body .desc-list li strong {
	color: #2d4a1e;
	font-weight: 600;
}
.exp-card-body .desc-list.price-list li::before {
	background: #f0c36d;
}
.exp-card-body .price-badge {
	display: inline-block;
	font-weight: 600;
	color: #3d5a2e;
}

/* ── 섹션 구분선 ── */
.exp-card-body .section-divider {
	border: none;
	border-top: 1px dashed #e0e0e0;
	margin: 20px 0;
}

/* ── 캐러셀 (Bootstrap 5) ── */
.exp-gallery {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,.10);
	background: #f5f5f5;
	margin-top: 24px;
	max-width: 100%;
}
.exp-gallery .carousel {
	margin-bottom: 0;
	max-width: 100%;
}
.exp-gallery .carousel-inner {
	max-width: 100%;
}
.exp-gallery .carousel-item {
	text-align: center;
	background: #f5f5f5;
	padding: 12px 0;
	max-width: 100%;
}
.exp-gallery .carousel-item img.photo {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	display: block;
}

/* 좌우 컨트롤 */
.exp-gallery .carousel-control-prev,
.exp-gallery .carousel-control-next {
	width: 44px; height: 44px;
	top: 50%; margin-top: -22px; bottom: auto;
	background: rgba(0,0,0,.55) !important;
	border: none; border-radius: 50%;
	opacity: 0;
	transition: opacity .3s ease, transform .2s ease;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.exp-gallery .carousel-control-prev { left: 12px; right: auto; }
.exp-gallery .carousel-control-next { right: 12px; left: auto; }
.exp-gallery:hover .carousel-control-prev,
.exp-gallery:hover .carousel-control-next { opacity: 1; }
.exp-gallery .carousel-control-prev:hover,
.exp-gallery .carousel-control-next:hover {
	transform: scale(1.08);
	background: rgba(0,0,0,.7) !important;
}
.exp-gallery .carousel-control-prev i,
.exp-gallery .carousel-control-next i {
	font-size: 14px; color: #fff;
}
.exp-gallery .carousel-control-prev-icon,
.exp-gallery .carousel-control-next-icon { display: none; }

/* ── 이미지 카운터 ── */
.exp-gallery__counter {
	position: absolute;
	top: 14px; right: 14px;
	z-index: 10;
	background: rgba(0,0,0,.50);
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	font-size: 12px; font-weight: 500;
	padding: 4px 10px;
	border-radius: 12px;
	pointer-events: none;
	letter-spacing: 0.02em;
}

/* ── 하단 썸네일 ── */
.exp-gallery__thumbs {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px 12px;
	overflow-x: auto;
	background: #fff;
}
.exp-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.exp-gallery__thumbs::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.exp-thumb {
	flex: 0 0 auto;
	width: 64px; height: 64px;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	opacity: .55;
	transition: opacity .2s, border-color .2s;
}
.exp-thumb.active {
	border-color: #3d5a2e;
	opacity: 1;
}
.exp-thumb:hover {
	opacity: .85;
}
.exp-thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}

/* ── 탭 전환 애니메이션 ── */
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ── PC 레이아웃 (768px 이상) ── */
@media (min-width: 768px) {
	.exp-card-head .section-title {
		font-size: 28px;
	}
	.exp-card-body {
		padding: 30px 40px;
		display: flex;
		gap: 36px;
		align-items: flex-start;
	}
	.exp-card-body .body-text {
		flex: 1 1 0;
		min-width: 0;
	}
	.exp-card-body .body-gallery {
		flex: 0 0 48%;
		max-width: 48%;
		position: sticky;
		top: 20px;
	}
	.exp-gallery {
		margin-top: 0;
	}
	.exp-gallery .carousel-item {
		padding: 20px 0;
	}
}

/* ── 모바일 ── */
@media (max-width: 767px) {
	.exp-content {
		max-width: 100%;
		overflow: hidden;
	}
	.body-gallery {
		max-width: 100%;
		overflow: hidden;
	}
	.exp-card-body {
		padding: 16px 10px;
		max-width: 100%;
		overflow: hidden;
	}
	.exp-gallery .carousel-item {
		padding: 0;
	}
	.exp-gallery__thumbs {
		justify-content: flex-start;
		padding: 8px 8px 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		max-width: calc((48px * 5) + (6px * 4) + 16px);
		margin: 0 auto;
	}
	.exp-gallery__thumbs::-webkit-scrollbar {
		display: none;
	}
	.exp-thumb {
		width: 48px; height: 48px;
		flex: 0 0 48px;
		scroll-snap-align: start;
	}
	.exp-card-body .desc-list li {
		font-size: 13px;
		padding: 7px 0 7px 22px;
	}
	.exp-card-body .desc-list li::before {
		top: 13px;
		width: 6px; height: 6px;
	}
	.exp-card-body .sub-title {
		font-size: 14px;
	}
	.exp-card-body .price-badge {
		font-size: 13px;
	}
}