@charset "utf-8";

/* ==========================================================================
   찾아오시는 길 콘텐츠 레이아웃 스타일 (오픈 럭셔리 스타일 통합본)
   ========================================================================== */

/* 기본 컨테이너 구조 세팅 */
.location-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

/* 타이틀 브리핑 구역 */
.location-title-wrap {
    text-align: center;
    padding: 60px 0 30px;
}
.location-sub-tag {
    font-size: 1.15rem;
    color: #00796b;
    font-weight: 600;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 12px;
}
.location-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #001a35;
    letter-spacing: -1.5px;
}

/* 초역세권 핵심 지표 (3분할 와이드 플랫 카드) */
.traffic-highlight-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}
.traffic-stat-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 26, 53, 0.04);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.traffic-stat-card:hover {
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 2rem;
    color: #00796b;
    margin-bottom: 10px;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 850;
    color: #001a35;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-desc {
    font-size: 1rem;
    color: #718096;
}

/* 대형 지도 컨테이너 */
.map-viewport-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 26, 53, 0.08);
    margin-bottom: 60px;
    border: 1px solid #edf2f7;
}

/* 기본 이미지 프레임 백업 (필요시 사용) */
.location-image-wrap {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}
.location-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* 하단 메타 정보 패키지 카드 / 테이블 구조 */
.info-flex-card, .location-info-table {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-top: 4px solid #001a35;
}

/* 안내 정보 행 레이아웃 (정렬 기준 상단 고정 및 오타 수정) */
.location-info-item {
    border-bottom: 1px solid #edf2f7; /* 잘못된 7자리 색상 코드 오타 수정 */
    padding: 24px 15px;
    display: flex;
    align-items: flex-start !important; /* 위아래 높이를 상단 라인 기준으로 철저히 고정 */
}
.location-info-item:last-child {
    border-bottom: none;
}

/* 정보 라벨 (아이콘 + 타이틀) */
.info-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #001a35;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-label i {
    font-size: 1.3rem;
    color: #00796b; /* 하이라이트 감성에 맞춰 포인트 딥그린/블루 계열 매칭 */
}

/* 정보 본문 내용 */
.info-value {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
}
.info-value strong {
    color: #000;
    font-weight: 700;
}

/* 원장님 추가 요청: 주소 아래 삽입되는 실물 그래픽 약도 프레임 세팅 */
.location-visual-map-wrap {
    max-width: 760px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 26, 53, 0.07);
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    margin-top: 15px;
}
.location-visual-map-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.location-visual-map-wrap img:hover {
    transform: scale(1.025); /* 마우스 오버 시 부드럽게 미세 확대되는 스케일 모션 */
}

/* 모바일 반응형 뷰포트 완벽 대응 */
@media (max-width: 767px) {
    .traffic-highlight-row { 
        flex-direction: column; 
        gap: 15px;
    }
    .map-viewport-wrapper { 
        height: 320px; 
    }
    .info-flex-card, .location-info-table { 
        padding: 25px 15px; 
    }
    .location-info-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
}