/* === 셔틀 안내 페이지 === */
.shuttle-page {
	background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
	padding: 60px 20px 100px;
	font-family: 'Pretendard Variable', Pretendard, 'Malgun Gothic', sans-serif;
	color: #1a2942;
}
.shuttle-inner { max-width: 1200px; margin: 0 auto; }

/* Hero */
.shuttle-hero {
	background: linear-gradient(135deg, #1a2942 0%, #2c3e5e 100%);
	color: #fff;
	padding: 50px 40px;
	border-radius: 24px;
	text-align: center;
	margin-bottom: 36px;
	box-shadow: 0 10px 40px rgba(26, 41, 66, 0.18);
}
.shuttle-badge {
	display: inline-block;
	padding: 7px 20px;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: #fff;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	margin-bottom: 18px;
}
.shuttle-title {
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 14px;
	letter-spacing: -0.5px;
}
.shuttle-desc {
	font-size: 16px;
	color: rgba(255,255,255,0.85);
	line-height: 1.7;
	margin: 0 0 22px;
}
.shuttle-desc strong { color: #ffd700; font-weight: 700; }
.shuttle-cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.shuttle-call-pc {
	background: rgba(255,255,255,0.15);
	color: #fff;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	cursor: default;
}
.shuttle-call-mobile {
	display: none;
	background: #ff6b35;
	color: #fff;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* 검색 */
.shuttle-search-box {
	background: #fff;
	border-radius: 20px;
	padding: 28px 32px;
	margin-bottom: 28px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border: 2px solid #e8edf3;
}
.shuttle-search-label {
	font-size: 17px;
	font-weight: 800;
	color: #1a2942;
	margin-bottom: 12px;
}
#shuttle-search-input {
	width: 100%;
	padding: 16px 22px;
	font-size: 17px;
	font-family: inherit;
	border: 2px solid #d0d7e1;
	border-radius: 14px;
	outline: none;
	box-sizing: border-box;
	transition: all 0.2s;
}
#shuttle-search-input:focus {
	border-color: #ff6b35;
	box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}
.shuttle-search-results { margin-top: 18px; }
.search-empty {
	padding: 24px;
	text-align: center;
	color: #6b7280;
	background: #f7f9fb;
	border-radius: 12px;
	font-size: 14px;
}
.search-summary {
	padding: 12px 16px;
	background: #fff5f0;
	border-radius: 10px;
	font-size: 14px;
	color: #1a2942;
	margin-bottom: 14px;
}
.search-summary strong { color: #ff6b35; font-weight: 800; }
.search-block { margin-bottom: 18px; }
.search-block-title {
	font-size: 15px;
	font-weight: 800;
	color: #1a2942;
	margin: 0 0 10px;
	padding-bottom: 8px;
	border-bottom: 2px solid #1a2942;
	display: flex;
	align-items: center;
	gap: 8px;
}
.search-block-title .cnt {
	font-size: 12px;
	font-weight: 700;
	color: #ff6b35;
	background: #fff5f0;
	padding: 3px 9px;
	border-radius: 50px;
}
.search-results-list { display: flex; flex-direction: column; gap: 6px; }
.search-result-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	background: #f7f9fb;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.15s;
	border: 1px solid transparent;
}
.search-result-item:hover {
	background: #fff5f0;
	border-color: #ff6b35;
	transform: translateX(2px);
}
.sr-time {
	min-width: 56px;
	font-size: 14px;
	font-weight: 800;
	color: #ff6b35;
	text-align: center;
}
.sr-main { flex: 1; }
.sr-stop { font-size: 15px; font-weight: 700; color: #1a2942; margin-bottom: 3px; }
.sr-meta { font-size: 12.5px; color: #6b7280; }
.sr-phone {
	background: #1a2942;
	color: #fff;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	font-size: 16px;
}

/* 방향 탭 (등원/하원) */
.shuttle-direction-tabs {
	display: flex;
	gap: 8px;
	background: #e8edf3;
	border-radius: 14px;
	padding: 6px;
	margin-bottom: 18px;
}
.shuttle-dir-tab {
	flex: 1;
	padding: 14px;
	border: none;
	background: transparent;
	font-size: 16px;
	font-weight: 800;
	color: #6b7280;
	border-radius: 10px;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s;
}
.shuttle-dir-tab.active {
	background: #1a2942;
	color: #fff;
	box-shadow: 0 4px 12px rgba(26, 41, 66, 0.2);
}

/* 시간대 탭 */
.shuttle-time-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
.shuttle-time-tab {
	padding: 11px 18px;
	border: 2px solid #d0d7e1;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	color: #4a5566;
	border-radius: 50px;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.15s;
	display: flex;
	align-items: center;
	gap: 7px;
}
.shuttle-time-tab .cnt {
	font-size: 11px;
	font-weight: 700;
	color: #9aa3b0;
	background: #f0f3f7;
	padding: 2px 8px;
	border-radius: 50px;
}
.shuttle-time-tab:hover {
	border-color: #ff6b35;
	color: #ff6b35;
}
.shuttle-time-tab.active {
	background: #ff6b35;
	border-color: #ff6b35;
	color: #fff;
}
.shuttle-time-tab.active .cnt {
	background: rgba(255,255,255,0.25);
	color: #fff;
}

/* 노선 그리드 */
.shuttle-route-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 18px;
}
.shuttle-vehicle {
	background: #fff;
	border-radius: 16px;
	padding: 22px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	border: 1px solid #eef0f4;
}
.shuttle-vehicle-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 12px;
	margin-bottom: 14px;
	border-bottom: 2px solid #1a2942;
	flex-wrap: wrap;
}
.vno {
	background: #1a2942;
	color: #fff;
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 13.5px;
	font-weight: 800;
}
.vdriver {
	font-size: 14.5px;
	font-weight: 700;
	color: #1a2942;
	flex: 1;
}
.vphone {
	background: #ff6b35;
	color: #fff;
	padding: 5px 11px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.shuttle-stops { list-style: none; padding: 0; margin: 0; }
.shuttle-stops li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 7px 0;
	border-bottom: 1px dashed #eef0f4;
	font-size: 13.5px;
}
.shuttle-stops li:last-child { border-bottom: none; }
.stop-time {
	min-width: 48px;
	font-weight: 700;
	color: #ff6b35;
	font-size: 13px;
}
.stop-loc {
	flex: 1;
	color: #4a5566;
	line-height: 1.45;
	word-break: keep-all;
}

/* 안내사항 */
.shuttle-notice {
	margin-top: 40px;
	background: #fff5f0;
	border-radius: 16px;
	padding: 26px 28px;
	border-left: 5px solid #ff6b35;
}
.shuttle-notice h3 {
	font-size: 17px;
	font-weight: 800;
	color: #1a2942;
	margin: 0 0 12px;
}
.shuttle-notice ul {
	margin: 0;
	padding-left: 22px;
	color: #4a5566;
	font-size: 14px;
	line-height: 1.85;
}
.shuttle-notice ul li { margin-bottom: 4px; }
.shuttle-notice a { color: #ff6b35; font-weight: 700; text-decoration: none; }

/* === 모바일 === */
@media (max-width: 768px) {
	.shuttle-page { padding: 30px 14px 70px; }
	.shuttle-hero { padding: 32px 22px; border-radius: 18px; }
	.shuttle-title { font-size: 23px; }
	.shuttle-desc { font-size: 14px; }
	.shuttle-call-pc { display: none; }
	.shuttle-call-mobile { display: inline-block; font-size: 14.5px; padding: 12px 22px; }

	.shuttle-search-box { padding: 20px 18px; border-radius: 16px; }
	.shuttle-search-label { font-size: 15px; }
	#shuttle-search-input { padding: 13px 16px; font-size: 15px; }

	.shuttle-dir-tab { font-size: 14.5px; padding: 12px; }
	.shuttle-time-tab { font-size: 12.5px; padding: 9px 14px; }
	.shuttle-time-tab .cnt { font-size: 10.5px; padding: 1px 7px; }

	.shuttle-route-grid { grid-template-columns: 1fr; gap: 14px; }
	.shuttle-vehicle { padding: 18px 16px; border-radius: 12px; }
	.vno { font-size: 12.5px; padding: 4px 10px; }
	.vdriver { font-size: 13.5px; }
	.vphone { font-size: 11px; padding: 4px 9px; }
	.shuttle-stops li { font-size: 13px; padding: 6px 0; }
	.stop-time { min-width: 42px; font-size: 12px; }

	.shuttle-notice { padding: 20px 18px; }
	.shuttle-notice h3 { font-size: 15px; }
	.shuttle-notice ul { font-size: 13px; padding-left: 18px; }

	.search-result-item { padding: 10px 12px; gap: 10px; }
	.sr-time { min-width: 48px; font-size: 13px; }
	.sr-stop { font-size: 14px; }
	.sr-meta { font-size: 11.5px; }
	.sr-phone { width: 34px; height: 34px; font-size: 14px; }
}
