/* 찾아오시는 길 페이지 스타일 */

/* Page Banner */
.page-banner {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding-left: 120px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.2) 1px, transparent 1px),
        linear-gradient(0deg, rgba(7, 28, 81, 0.3), rgba(7, 28, 81, 0.3)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-size: 4px 4px, 100% 100%, 100% 100%;
    mix-blend-mode: normal;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-family: 'Elice Digital Baeum', 'Pretendard', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.location-page {
    min-height: calc(100vh - 340px);
    background: #ffffff;
}

.location-container {
    margin: 0 auto;
    padding: 80px 120px;
}

/* 섹션 공통 스타일 */
.map-section,
.transportation-section,
.public-transport-section {
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    color: #1C1B1F;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2px solid #333;
}

/* 지도 섹션 스타일 */
.map-section {
    margin-bottom: 80px;
}

.map-wrapper {
    margin-bottom: 32px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 500px;
}

/* 연락처 정보 스타일 */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #F8F9FA;
    padding: 32px;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-label {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    min-width: 80px;
}

.info-value {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

/* 교통수단 안내 스타일 */
.route-info {
    margin-bottom: 32px;
}

.route-title {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 12px;
}

.route-list {
    list-style: none;
    padding-left: 0;
}

.route-list li {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.route-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: 700;
}

/* 대중교통 안내 스타일 */
.bus-info {
    margin-top: 24px;
}

.bus-number {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 24px;
}

/* 시간표 테이블 스타일 */
.timetable {
    width: 50%;
    overflow-x: auto;
    margin-top: 24px;
}

.timetable table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #9CC4E4;
}

.timetable th {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #3270A9;
    padding: 12px 8px;
    border: 1px solid #9CC4E4;
    text-align: center;
    background: #E4F1FA;
}

.timetable .th-sequence {
    width: 60px;
}

.timetable .th-main {
    font-weight: 700;
    font-size: 15px;
}

.timetable .th-sub {
    width: 120px;
}

.timetable .th-note {
    width: 100px;
}

.timetable tbody td {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    padding: 10px 8px;
    border: 1px solid #9CC4E4;
    text-align: right;
    background: #ffffff;
}

.timetable tbody .td-sequence {
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.timetable tbody .td-note {
    font-size: 12px;
    line-height: 1.4;
    vertical-align: middle;
    text-align: center;
}

.timetable tbody td.highlight {
    background: #EDFAE6;
    color: #3070A8;
    font-weight: 600;
}
