/* 오시는 길 페이지 스타일 */
.directions-page {
	min-height: 100vh;
}

.directions-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.directions-header {
	text-align: center;
	margin-bottom: 40px;
}

.directions-title {
	font-size: 32px;
	font-weight: bold;
	color: #0c599e;
	margin-bottom: 10px;
}

.directions-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
}

.info-content {
	display: grid;
	/* grid-template-columns: 1fr 1fr; */
	grid-template-columns: 1fr ;
	gap: 40px;
	margin-top: 40px;
}

/* 지도 영역 */
.map-section {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
    border: 1px solid #d9d9d9;
}

.map-container {
	position: relative;
	width: 100%;
	height: 600px;
}

.root_daum_roughmap {
	width: 100% !important;
	height: 600px !important;
	max-width: 100%;
	overflow: hidden;
}

.root_daum_roughmap svg {
	width: 100% !important;
	height: 600px !important;
	max-width: 100%;
	position: relative !important;
	left: 0 !important;
	top: 0 !important;
	transform: none !important;
}

.root_daum_roughmap .map {
    border-radius: 12px;
}

/* 연락처 정보 */
.contact-section,
.transport-section {
	width: 100%;
}

.contact-info,
.transport-info {
	background-color: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.contact-title,
.transport-title {
	font-size: 20px;
	font-weight: bold;
	color: #0c599e;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #0c599e;
	flex-shrink: 0;
}

.contact-item-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e9ecef;
	flex-shrink: 0;
}

.contact-icon {
	width: 40px;
	height: 40px;
	background-color: #0c599e;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.contact-icon i {
	font-size: 16px;
}

.contact-details h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 0 0 5px 0;
}

.contact-details p {
	font-size: 15px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

.transport-item {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e9ecef;
	flex-shrink: 0;
}

.transport-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
	flex-grow: 1;
}

.transport-item h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 0 0 8px 0;
}

.transport-item p {
	font-size: 16px;
	color: #666;
	margin: 0 0 5px 0;
	line-height: 1.5;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
	.directions-page {
		padding: 20px 0;
	}

	.directions-container {
		padding: 0 15px;
	}

	.directions-title {
		font-size: 24px;
	}

	.directions-subtitle {
		font-size: 14px;
	}

	.info-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.map-container {
		height: 400px;
	}

	.root_daum_roughmap {
		height: 400px !important;
	}

	.root_daum_roughmap svg {
		height: 400px !important;
	}

	.contact-info,
	.transport-info {
		padding: 20px;
	}

	.contact-title,
	.transport-title {
		font-size: 18px;
	}

	.contact-icon {
		width: 35px;
		height: 35px;
	}

	.contact-icon i {
		font-size: 14px;
	}

	.transport-item p {
		font-size: 15px;
	}

	.contact-item-box {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-item:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}
}

/* 클릭 가능한 텍스트 스타일 */
.clickable-text {
	cursor: pointer;
	transition: color 0.3s ease;
}

.clickable-text:hover {
	color: #0c599e !important;
	text-decoration: underline;
}

/* 전화번호 링크 스타일 */
.phone-link {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.phone-link:hover {
	color: #0c599e;
	text-decoration: underline;
}

/* Font Awesome 아이콘을 위한 기본 스타일 */
.fas {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
