/* ── 오시는길 페이지 (피그마 시안 기준 정밀 보정 2026-04-17) ── */

.location-page .page-title,
.location-page .page-desc,
.location-page .img-area {
    display: none !important;
}
.location-page h4.section-title {
    display: none !important;
}

/* 연락처 테이블: 피그마 Group 2 (1320x180, border-top #000 1px, border-bottom #DDD 1px) */
.location-info-table {
   
    margin: 0 auto 74px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
	justify-content:space-between;
	gap:20px;
}
.location-info-cols {
    display: flex;
    align-items: flex-start;
}
.location-col-group > div {
    display: flex;
    align-items: flex-start;
}


/* 레이블 (피그마: 본문dt - SUIT 700 18px, line-height 2.778em, #000) */
.location-info-label {
    font-family: 'SUIT', sans-serif;
    font-weight: 700;
    color: #000;
    background: transparent;
    padding: 0;
    display: block;
	flex: 0 0 145px;
}
/* 값 (피그마: 본문dd - SUIT 400 18px, line-height 2.778em, #000) */
.location-info-value {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;
    color: #000;
    padding: 0;
    display: block;
	flex:1;
}

.location-col-group span {display:block; padding:12px 0;}
/* 빠른 길 찾기 버튼 (피그마: btn/btn-contents, bg #159DD4, radius 30px, padding 16px 24px, x=1185 y=63) */
.btn-map-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #159dd4;
    color: #fff !important;
    font-family: 'SUIT', sans-serif;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-map-detail:hover {
    background: #1280b0;
    color: #fff;
    text-decoration: none;
}

/* location-info-row 이전 구조 대응 (하위 호환) */
.location-info-row {
    display: none;
}
.location-btn-area {
    display: none;
}

/* 지도 영역 (피그마: 1320x500, bg #D9D9D9) */



/* ── 반응형 ── */
@media (max-width: 1400px) {
    .location-info-table {
        max-width: 100%;
    }

}
@media (max-width: 992px) {
    
    .location-info-table {
        flex-direction: column;
		gap:0;
        align-items: flex-start;
    }
    .location-info-cols {
        flex-direction: column;
        gap: 20px;
    }
    .location-col-group {
        flex-direction: row;
        gap: 20px;
    }
    .location-col-group:first-child {
        margin-right: 0;
    }
    .location-col-group:first-child .location-info-label,
    .location-col-group:nth-child(2) .location-info-label {
        width: auto;
        margin-right: 16px;
    }
    .location-col-group:first-child .location-info-value,
    .location-col-group:nth-child(2) .location-info-value {
        width: auto;
    }
    .btn-map-detail {
        align-self: flex-start;
        margin-left: 0;
		margin-top:20px;
    }

}
