/* 섹션 기본 레이아웃 (딥블루 배경 및 전체 가로 확장) */
        .location-section {
            width: 100%;
            max-width: 100% !important;
            padding: 80px 20px;
        }

        /* 중앙 정렬 컨테이너 (좌우 2단 그리드 배치) */
        .location-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 60px;
            align-items: center;
        }

        /* 좌측 텍스트 및 버튼 영역 */
        .location-left .badge {
            font-size: 13px;
            font-weight: 500;
            color: #8da4ef;
            margin-bottom: 8px;
            display: block;
        }
        .location-left .sub-title {
            font-size: 14px;
            font-weight: 600;
            color: #cbd5e1;
            margin-bottom: 12px;
            display: block;
        }
        .location-left h2 {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        /* 위치 상세 정보 리스트 */
        .location-info-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }
        .location-info-item {
            display: flex;
            gap: 12px;
            font-size: 14px;
            color: #a0aec0;
            line-height: 1.6;
        }
        .location-info-item strong {
            color: #fff;
            font-weight: 600;
            min-width: 70px;
            flex-shrink: 0;
        }

        /* 하단 버튼 그룹 (2개 버튼 나란히 배치) */
        .location-btn-group {
            display: flex;
            gap: 12px;
        }
        .loc-btn {
            flex: 1;
            padding: 12px 16px;
            background-color: rgba(255, 255, 255, 0.05);
            color: #fff;
            border: 1px solid rgba(160, 174, 192, 0.3);
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            transition: all 0.2s ease;
        }
        .loc-btn:hover {
            background-color: rgba(255, 255, 255, 0.12);
            border-color: #8da4ef;
        }

        /* 우측 지도 카드 영역 */
        .location-right {
            width: 100%;
            height: 440px;
            background-color: #1e293b;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        /* 실제 지도 API (네이버/카카오 등) 연동 시 iframe 또는 지도 div 영역 대체 가능 */
        .location-right iframe, .location-right .map-placeholder {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* 반응형 디자인 (태블릿 및 모바일 최적화) */
        @media (max-width: 1024px) {
            .location-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .location-right {
                height: 360px;
            }
        }

        @media (max-width: 768px) {
            .location-section {
                padding: 50px 16px;
            }
            .location-left h2 {
                font-size: 28px;
            }
            .location-right {
                height: 300px;
            }
        }

/* 카카오맵 위젯이 우측 박스에 여백 없이 가득 차도록 강제 설정 */
.location-map-box,
.map-card {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* 카카오맵 랜딩 영역 전체 채우기 */
.root_daum_roughmap {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
}

/* 카카오맵 내부 실제 지도 영역 (iframe 및 인라인 요소) 꽉 채우기 */
.root_daum_roughmap .wrap_map,
.root_daum_roughmap .roughmap_maker_template {
    width: 100% !important;
    height: 100% !important;
}

.root_daum_roughmap iframe {
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px !important; /* 부모 박스 모서리 곡률과 맞춤 */
}