/* 데스크톱 스타일 */
.map-container { display: flex; justify-content: space-between; align-items: stretch; gap: 60px; padding: 20px 0 80px; }

/* 좌측 정보 영역 */
.map-info { width: 400px; flex-shrink: 0; padding-top: 20px; }
.map-copy { font-size: 36px; font-weight: 700; line-height: 1.4; color: #111; margin-bottom: 60px; word-break: keep-all; letter-spacing: -0.02em; }

.map-list { list-style: none; padding: 0; margin: 0; border-top: 2px solid #111; }
.map-item { display: flex; gap: 24px; padding: 30px 0; border-bottom: 1px solid #ddd; align-items: flex-start; }

/* 아이콘 스타일 */
.map-icon-box { display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; background: #f5f5f5; border-radius: 50%; flex-shrink: 0; }
.map-icon-box i { font-size: 24px; color: #111; }

/* 텍스트 스타일 */
.map-text-box { display: flex; flex-direction: column; justify-content: center; padding-top: 3px; }
.map-label { display: block; font-size: 13px; color: #888; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.05em; }
.map-desc { font-size: 18px; color: #333; font-weight: 500; line-height: 1.5; margin: 0; word-break: break-all; }

/* 우측 지도 영역 */
.map-frame-wrap { flex-grow: 1; height: auto; min-height: 600px; background: #eee; position: relative; border-radius: 0; overflow: hidden; }
.map-frame-wrap iframe { width: 100%; height: 100%; border: 0; position: absolute; top: 0; left: 0; }

/* 모바일/태블릿 반응형 스타일 */
@media (max-width: 1200px) {
    .map-container { flex-direction: column; gap: 40px; padding-bottom: 40px; }
    
    .map-info { width: 100%; padding-top: 0; }
    .map-copy { font-size: 26px; margin-bottom: 40px; }
    
    .map-item { padding: 20px 0; gap: 16px; }
    .map-icon-box { width: 40px; height: 40px; }
    .map-icon-box i { font-size: 20px; }
    
    .map-label { font-size: 12px; margin-bottom: 4px; }
    .map-desc { font-size: 16px; }
    
    .map-frame-wrap { height: 360px; min-height: auto; }
}