/*
[POSH 회사소개 오시는길 전용 스타일 전체 파일 구조]
public/company/location/company_location.css    - 오시는길 전용 스타일
page/site/company/company_location_view.php     - 오시는길 화면에서 사용
public/company/location/company_location.js     - 카카오맵/사업장 선택 동작

20260402 T1745
- 2단계 public 파일 선생성 작업입니다.
- 아직 상세 디자인 확정 전이므로 파일명과 경로만 먼저 고정했습니다.

20260514 T0852
- 사용자가 확정한 오시는길 시안을 기준으로 실제 페이지 스타일을 구현했습니다.
- 카카오맵 영역을 본문 첫 구간에 크게 배치하고, 좌측 사업장 선택 카드/하단 사업장 정보/접근 안내 카드를 같은 톤으로 정리했습니다.
- 회사소개 계열 가로폭 1140px, 상단 제목 40px/700, 소개문 18px/500 기준을 유지하면서 지도 우선형 레이아웃에 필요한 전용 스타일만 추가했습니다.

20260514 T0906
- posh_site_manual.php 53장 기준에 맞춰 오시는길 상단 제목은 company_intro_title(40px/700), 섹션 제목은 section_title(34px/900)로 정리했습니다.
- 별도 영문 eyebrow는 사용하지 않는 것으로 정리했습니다.
- 사업장 위치 보조문구 제거 후에도 섹션 제목 정렬이 흔들리지 않도록 section-head를 보정했습니다.

20260514 T0911
- 사용자 재지시에 따라 상단 오시는길 제목을 별도 외부 섹션이 아니라 사업영역 페이지처럼 이미지 안에 배치했습니다.
- 사업장 위치/사업장 정보/접근 안내 제목은 34px 대형 제목을 중단하고 작은 섹션 라벨 기준으로 조정했습니다.

20260514 T0923
- 사업영역 페이지의 선언형 스타일가이드 값을 재확인하여 이미지 안 제목/설명 글자값을 40px/700, 18px/500으로 되돌렸습니다.
- 직전 52px/900, 21px/800 값은 business_block.css의 하드코딩 보조값을 잘못 따른 것이므로 적용하지 않습니다.

20260514 T0929
- 이미지 안 설명문이 데스크톱에서 줄바꿈되지 않도록 hero-copy 폭을 확장하고 설명문 white-space를 nowrap으로 고정했습니다.
- 모바일 폭에서는 줄넘침을 막기 위해 기존처럼 normal 줄바꿈으로 복귀합니다.


20260514 T1001
- 카카오맵 실제 연동을 위해 누락된 JS 파일 추가와 함께 지도/선택카드/정보카드 스타일을 보정했습니다.
- 좌측 사업장 선택 카드에서는 상세주소 반복을 제거하고, 사업장 정보 카드에는 SVG 아이콘 행 스타일을 적용했습니다.

20260514 T1007
- 하단 사업장 정보 라벨이 세로로 쪼개지지 않도록 아이콘+라벨 한 줄, 값 한 줄 구조로 재정리했습니다.
- 카카오맵 실제 로드 여부를 더 명확히 보기 위해 실제 지도 canvas 배경과 z-index를 보강했습니다.
*/

.company-location-page {
    background: transparent;
    color: #111827;
}

.company-location__hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(5, 12, 24, 0.78) 0%, rgba(5, 12, 24, 0.48) 45%, rgba(5, 12, 24, 0.20) 100%),
        var(--location-hero-image),
        linear-gradient(135deg, #0f172a 0%, #20324d 100%);
    background-size: cover;
    background-position: center;
}

.company-location__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.24) 100%);
    pointer-events: none;
}

.company-location__hero-inner {
    position: relative;
    z-index: 1;
    padding: 58px 0 64px;
}

.company-location__eyebrow {
    display: none;
}

.company-location__hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.company-location__hero p:not(.company-location__eyebrow) {
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255,255,255,0.94);
}

/* 20260514 T0911 - 사업영역 페이지와 같이 상단 대표 이미지를 본문 shell 안에 배치합니다. */
.company-location__hero-stage {
    position: relative;
    min-height: 350px;
    margin-top: 16px;
    margin-left: -22px;
    margin-right: -22px;
    width: calc(100% + 44px);
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(5, 12, 24, 0.16) 0%, rgba(5, 12, 24, 0.06) 34%, rgba(5, 12, 24, 0) 72%),
        var(--location-hero-image),
        linear-gradient(135deg, #dbeafe 0%, #f8fbff 100%);
    background-size: cover;
    background-position: center;
}

.company-location__hero-stage::after {
    content: none;
}

.company-location__hero-copy {
    position: absolute;
    z-index: 1;
    left: 38px;
    top: 95px;
    /* 20260514 T0929: 설명문 한 줄 유지를 위해 430px 제한을 해제하고 데스크톱 기준 폭을 확장했습니다. */
    max-width: min(720px, calc(100% - 76px));
    color: #ffffff;
}

.company-location__hero-copy h1 {
    margin: 0;
    /* 20260514 T0923: 직전 52px/900은 실제 선언형 가이드와 달라 40px/700으로 보정했습니다. */
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.36);
}

.company-location__hero-copy p {
    margin: 16px 0 0;
    /* 20260514 T0923: 직전 21px/800은 과도하게 굵어 18px/500으로 보정했습니다. */
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255,255,255,0.96);
    text-shadow: 0 2px 8px rgba(0,0,0,0.34);
    /* 20260514 T0929: 데스크톱 대표 이미지 안 설명문은 한 줄로 표시합니다. */
    white-space: nowrap;
}

.company-location__body {
    padding: 0 0 72px;
}

.company-location__shell {
    width: min(calc(100% - 80px), 1160px);
    background: #ffffff;
    padding: 16px 22px 76px;
}

.company-location__crumbs {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    line-height: 1.5;
    color: #5f5f5f;
}

.company-location__crumbs span {
    font-weight: 800;
    color: #202020;
}

/*
20260514 T1148
- 카카오맵 진입 시 대체 지도가 먼저 보였다가 실제 지도로 바뀌는 번쩍임을 줄이기 위해 booting 상태 스타일을 추가했습니다.
- 카카오맵 커스텀 오버레이를 시안의 알약형 라벨에 가깝게 재정리했습니다.

20260514 T1159
- 히어로 이미지와 지도 사이 간격을 넓히고, 사업장 카드는 사각형에 가까운 파스텔 그라데이션 카드로 정리했습니다.
- 사업장 카드 제목의 과한 굵기를 낮춰 지도 전환용 정보 카드처럼 보이도록 조정했습니다.

20260514 T1206
- 접근 안내는 보조 정보 영역이므로 파스텔 그라데이션을 제거하고 흰색 카드/얇은 테두리 기준으로 낮췄습니다.

20260514 T1218
- 지도 상단에 '오시는길' 레이블과 구분선을 추가합니다.

20260514 T1228
- 카카오맵 로드 전 대체 이미지 지도가 먼저 보이는 깜빡임을 줄이기 위해 data-kakao-ready=1 상태에서는 실제 지도 캔버스를 먼저 보이게 합니다.
- 지도 상단 '오시는길' 레이블은 우측선이 아니라 제목 아래 구분선 기준으로 재정리합니다.

20260514 T1241
- 사업장 정보 카드의 파스텔 그라데이션을 제거하고, 흰색 카드+얇은 상단 포인트 라인 기준으로 낮췄습니다.
- 카카오맵 키가 있는 상태에서는 이미지형 대체 지도를 display:none 처리하여 로딩 중 깜빡임을 줄입니다.

20260514 T1252
- 상단 메인이미지 위에 검은 스크린이 깔린 것처럼 보이는 문제를 줄이기 위해 hero-stage의 어두운 overlay 값을 낮췄습니다.
- 제목 가독성은 유지하되, 이미지 본연의 밝고 청명한 톤이 보이도록 하단 덮개(::after)를 제거했습니다.
*/

.company-location__map-section {
    margin-top: 56px;
}

.company-location__map-title {
    display: block;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.company-location__map-title::after {
    display: none;
}

.company-location__map-title h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
}

.company-location__section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.company-location__section-head h2,
.company-location__info-section h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
}

.company-location__info-section > h2 {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.company-location__section-head p {
    margin: 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.72;
    color: #4b5563;
    text-align: right;
}

.company-location__map-layout {
    display: block;
}

.company-location__map-layout--single {
    width: 100%;
}

.company-location__place-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.company-location__place-button {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 84px;
    padding: 20px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    color: #1f2937;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.company-location__place-button:hover,
.company-location__place-button:focus-visible {
    border-color: rgba(32, 91, 255, 0.45);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    outline: none;
}

.company-location__place-button.is-active {
    border-color: #205bff;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 18px 42px rgba(32, 91, 255, 0.13);
}

.company-location__place-no {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #9aa5b1;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.company-location__place-button.is-active .company-location__place-no {
    background: #205bff;
}

.company-location__place-copy {
    min-width: 0;
}

.company-location__place-copy strong {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
}

.company-location__place-copy span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.62;
    color: #64748b;
}

.company-location__map-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid #dce5f0;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 58%, #dceefa 100%);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.company-location__map-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #eef3f8;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.company-location__map-card[data-kakao-ready="1"] .company-location__map-canvas,
.company-location__map-card.is-map-booting .company-location__map-canvas,
.company-location__map-card.is-map-loaded .company-location__map-canvas {
    opacity: 1;
}

.company-location__map-card[data-kakao-ready="1"] .company-location__map-fallback {
    display: none;
}

.company-location__map-card.is-map-booting .company-location__map-fallback,
.company-location__map-card.is-map-loaded .company-location__map-fallback {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.company-location__map-card[data-kakao-ready="1"] .company-location__map-tools {
    display: none;
}

.company-location__map-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 25% 20%, rgba(126, 196, 125, 0.28) 0 15%, transparent 16%),
        radial-gradient(circle at 58% 72%, rgba(126, 196, 125, 0.22) 0 18%, transparent 19%),
        radial-gradient(circle at 80% 18%, rgba(59, 130, 246, 0.18) 0 22%, transparent 23%),
        linear-gradient(130deg, #f8fbf7 0%, #edf5ec 52%, #dff1ff 53%, #cfe9ff 100%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.company-location__map-fallback::before,
.company-location__map-fallback::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(238, 189, 77, 0.74);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.66);
    transform-origin: center;
}

.company-location__map-fallback::before {
    left: 8%;
    right: 11%;
    top: 43%;
    height: 10px;
    transform: rotate(-18deg);
}

.company-location__map-fallback::after {
    left: 35%;
    right: 14%;
    top: 56%;
    height: 9px;
    transform: rotate(26deg);
}

.company-location__map-road {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 0 0 2px rgba(226, 232, 240, 0.8);
}

.company-location__map-road--a {
    left: 10%;
    right: 20%;
    top: 26%;
    height: 6px;
    transform: rotate(12deg);
}

.company-location__map-road--b {
    left: 19%;
    right: 29%;
    top: 69%;
    height: 7px;
    transform: rotate(-28deg);
}

.company-location__map-label {
    position: absolute;
    z-index: 2;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: rgba(15, 23, 42, 0.58);
}

.company-location__map-label--geoje {
    left: 31%;
    top: 32%;
}

.company-location__map-label--sacheon {
    left: 9%;
    bottom: 12%;
}

.company-location__mock-pin {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 92px;
    height: 38px;
    padding: 4px 12px 4px 4px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    color: #111827;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.company-location__mock-pin b {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e88a1a;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.company-location__mock-pin em {
    font-style: normal;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.company-location__mock-pin.is-active {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(32, 91, 255, 0.24);
}

.company-location__mock-pin.is-active b {
    background: #205bff;
}

.company-location__mock-pin--head {
    left: 43%;
    top: 41%;
}

.company-location__mock-pin--pipe {
    right: 15%;
    top: 26%;
}

.company-location__mock-pin--sacheon {
    left: 34%;
    bottom: 22%;
}

.company-location__map-tools {
    position: absolute;
    z-index: 5;
    right: 16px;
    top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: 12px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.company-location__map-tools span {
    display: inline-flex;
    width: 42px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: #0f172a;
}

.company-location__map-tools span:last-child {
    border-bottom: 0;
    font-size: 17px;
}

.company-location__map-card.is-map-booting .company-location__map-tools,
.company-location__map-card.is-map-loaded .company-location__map-tools {
    display: none;
}

.company-location__map-link {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    color: #1f2937;
}

.company-location__map-link span {
    font-size: 14px;
    line-height: 1;
    color: #64748b;
}

.company-location__map-link strong {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #111827;
}

.company-location__info-section {
    margin-top: 38px;
}

.company-location__info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.company-location__info-card {
    --posh-card-accent: #205bff;
    min-width: 0;
    padding: 26px 26px 28px;
    border: 1px solid #e5ebf2;
    border-top: 3px solid var(--posh-card-accent);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.company-location__info-card:nth-child(2) {
    --posh-card-accent: #0f766e;
}

.company-location__info-card:nth-child(3) {
    --posh-card-accent: #d97706;
}

.company-location__info-card:hover,
.company-location__info-card:focus-visible {
    border-color: rgba(32, 91, 255, 0.42);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.085);
    outline: none;
}

.company-location__info-card.is-active {
    border-color: #cbd5e1;
    border-top-color: var(--posh-card-accent);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.company-location__info-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.company-location__info-head span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #10213d;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.company-location__info-card:first-child .company-location__info-head span,
.company-location__info-card.is-active .company-location__info-head span {
    background: var(--posh-card-accent, #205bff);
}

.company-location__info-head h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #111827;
}


.company-location__info-card dl {
    display: grid;
    gap: 16px;
    margin: 24px 0 0;
}

.company-location__info-list {
    display: grid;
    gap: 16px;
    margin: 24px 0 0;
}

.company-location__info-row {
    display: block;
    min-width: 0;
}

.company-location__info-row dt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.company-location__info-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    flex: 0 0 auto;
}

.company-location__info-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.company-location__info-icon--address {
    background: #eff6ff;
    color: #205bff;
}

.company-location__info-icon--tel {
    background: #f0fdf4;
    color: #15803d;
}

.company-location__info-icon--fax {
    background: #fff7ed;
    color: #c56a08;
}

.company-location__info-row dd {
    margin: 0 0 0 30px;
    font-size: 14px;
    line-height: 1.62;
    color: #1f2937;
    word-break: keep-all;
}

.company-location__map-card[data-kakao-status="map-loaded"] .company-location__map-tools {
    display: none;
}

.company-location__route-section {
    margin-top: 54px;
}

.company-location__section-head--route {
    display: block;
    margin-bottom: 22px;
}

.company-location__section-head--route p {
    max-width: none;
    margin-top: 14px;
    text-align: left;
}

.company-location__route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.company-location__route-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 72px;
    padding: 18px 18px;
    border: 1px solid #e5ebf2;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.company-location__route-card:hover,
.company-location__route-card:focus-visible {
    border-color: rgba(32, 91, 255, 0.28);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.065);
    outline: none;
}

.company-location__route-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f6f8fb;
    color: #607085;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
}

.company-location__route-card strong {
    min-width: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #1f2937;
}

.company-location__route-card em {
    font-style: normal;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    color: #205bff;
    white-space: nowrap;
}

.company-location__route-note {
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #7a8493;
}

.company-location__route-note::before {
    content: 'ⓘ';
    margin-right: 6px;
}

.company-location__kakao-overlay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 92px;
    height: 38px;
    padding: 4px 12px 4px 4px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    color: #111827;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.company-location__kakao-overlay.is-active {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(32, 91, 255, 0.24);
}

.company-location__kakao-overlay-no {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e88a1a;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    flex: 0 0 auto;
}

.company-location__kakao-overlay.is-active .company-location__kakao-overlay-no {
    background: #205bff;
}

.company-location__kakao-overlay-title {
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    color: #111827;
}

@media (max-width: 1100px) {
    .company-location__shell {
        width: min(calc(100% - 60px), 980px);
        padding: 14px 20px 64px;
    }

    .company-location__hero-stage {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .company-location__map-layout {
        display: block;
    }

    .company-location__map-card {
        min-height: 560px;
    }

    .company-location__route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .company-location__hero {
        min-height: 280px;
    }

    .company-location__hero-inner {
        padding: 48px 0 54px;
    }

    .company-location__hero h1 {
        font-size: 40px;
    }

    .company-location__hero p:not(.company-location__eyebrow) {
        margin-top: 16px;
        font-size: 18px;
        line-height: 1.5;
    }

    .company-location__hero-stage {
        min-height: 300px;
    }

    .company-location__hero-copy {
        left: 30px;
        top: 78px;
        max-width: 360px;
    }

    .company-location__hero-copy h1 {
        font-size: 40px;
        font-weight: 700;
    }

    .company-location__hero-copy p {
        font-size: 18px;
        font-weight: 500;
        white-space: normal;
    }

    .company-location__shell {
        width: min(calc(100% - 40px), 100%);
        padding: 12px 16px 54px;
    }

    .company-location__crumbs {
        justify-content: flex-start;
        font-size: 13px;
    }

    /*
20260514 T1126
- 사업장 위치 제목/라인과 왼쪽 선택 메뉴 제거 기준으로 지도 영역을 전체 폭으로 정리했습니다.
- 사업장 정보 카드는 지도 전환 버튼 역할을 하도록 active/focus 스타일을 추가했습니다.
- 접근 안내 카드는 외부 카카오맵 길찾기 링크로 동작하도록 anchor 상태 스타일을 보강했습니다.
*/

.company-location__map-section {
        margin-top: 42px;
    }

    .company-location__section-head {
        display: block;
        margin-bottom: 18px;
    }

    .company-location__section-head h2,
    .company-location__info-section h2 {
        font-size: 24px;
        line-height: 1.15;
        font-weight: 700;
    }

    .company-location__section-head p {
        max-width: none;
        margin-top: 12px;
        text-align: left;
        font-size: 15px;
        line-height: 1.68;
    }

    .company-location__map-layout {
        grid-template-columns: 1fr;
    }

    .company-location__place-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .company-location__place-button {
        grid-template-columns: 1fr;
        min-height: 134px;
        padding: 16px 14px;
    }

    .company-location__map-card {
        min-height: 480px;
    }

    .company-location__info-grid {
        grid-template-columns: 1fr;
    }

    .company-location__route-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .company-location__shell {
        width: min(calc(100% - 24px), 100%);
        padding: 10px 12px 42px;
    }

    .company-location__hero-stage {
        min-height: 250px;
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }

    .company-location__hero-copy {
        left: 22px;
        top: 62px;
        max-width: calc(100% - 44px);
    }

    .company-location__hero-copy h1 {
        font-size: 36px;
        font-weight: 700;
    }

    .company-location__hero-copy p {
        font-size: 16px;
        font-weight: 500;
        white-space: normal;
    }

    .company-location__hero h1 {
        font-size: 40px;
    }

    .company-location__place-list {
        grid-template-columns: 1fr;
    }

    .company-location__place-button {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 0;
        padding: 16px;
    }

    .company-location__map-card {
        min-height: 360px;
        border-radius: 16px;
    }

    .company-location__mock-pin em {
        display: none;
    }

    .company-location__mock-pin {
        min-width: 38px;
        width: 38px;
        padding: 4px;
    }

    .company-location__map-link {
        left: 14px;
        right: 14px;
        justify-content: center;
    }

    .company-location__info-card {
        padding: 24px 20px 26px;
    }


    .company-location__route-card {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .company-location__route-card em {
        grid-column: 2;
    }
}

/*
20260514 T1533
- POSH 모바일 확정 기준(흰색 상단 헤더/단순 카드형 본문)에 맞춰 오시는길 페이지 휴대폰 전용 override를 추가했습니다.
- 기존 데스크톱/태블릿 스타일은 보존하고, max-width:640px 이하에서만 지도·사업장 정보·접근안내를 읽기 쉬운 1열 구조로 재정리합니다.
- 복원 시 이 T1533 모바일 override 블록만 제거하면 됩니다.
*/
@media (max-width: 640px) {
    .company-location__body {
        padding: 0 0 44px;
    }

    .company-location__shell {
        width: 100%;
        padding: 0 16px 44px;
        background: #ffffff;
    }

    .company-location__crumbs {
        display: none;
    }

    .company-location__hero-stage {
        min-height: 238px;
        margin: 0 -16px;
        width: calc(100% + 32px);
        background-position: center center;
    }

    .company-location__hero-copy {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 30px;
        max-width: none;
    }

    .company-location__hero-copy h1 {
        font-size: 30px;
        line-height: 1.08;
        font-weight: 700;
        letter-spacing: -0.04em;
        text-shadow: 0 2px 8px rgba(0,0,0,0.34);
    }

    .company-location__hero-copy p {
        margin-top: 12px;
        max-width: 300px;
        font-size: 14px;
        line-height: 1.55;
        font-weight: 500;
        white-space: normal;
        word-break: keep-all;
        text-shadow: 0 2px 7px rgba(0,0,0,0.32);
    }

    .company-location__map-section {
        margin-top: 32px;
    }

    .company-location__map-title {
        margin-bottom: 14px;
        padding-bottom: 9px;
    }

    .company-location__map-title h2,
    .company-location__section-head h2,
    .company-location__info-section h2 {
        font-size: 21px;
        line-height: 1.22;
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .company-location__map-card {
        min-height: 430px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.075);
    }

    .company-location__map-link {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
        min-height: 40px;
        padding: 0 14px;
    }

    .company-location__map-link span,
    .company-location__map-link strong {
        font-size: 13px;
    }

    .company-location__kakao-overlay {
        min-width: 0;
        height: 34px;
        padding: 4px 10px 4px 4px;
        gap: 6px;
    }

    .company-location__kakao-overlay-no {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .company-location__kakao-overlay-title {
        font-size: 12px;
        letter-spacing: -0.03em;
    }

    .company-location__info-section {
        margin-top: 30px;
    }

    .company-location__info-section > h2 {
        padding-bottom: 9px;
    }

    .company-location__info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 16px;
    }

    .company-location__info-card {
        padding: 18px 18px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    }

    .company-location__info-head {
        gap: 11px;
    }

    .company-location__info-head span {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .company-location__info-head h3 {
        font-size: 17px;
        line-height: 1.34;
        font-weight: 600;
    }

    .company-location__info-list {
        gap: 13px;
        margin-top: 18px;
    }

    .company-location__info-row dt {
        margin-bottom: 5px;
        font-size: 12.5px;
    }

    .company-location__info-icon {
        width: 20px;
        height: 20px;
    }

    .company-location__info-icon svg {
        width: 13px;
        height: 13px;
    }

    .company-location__info-row dd {
        margin-left: 28px;
        font-size: 13.5px;
        line-height: 1.58;
        word-break: keep-all;
    }

    .company-location__route-section {
        margin-top: 34px;
    }

    .company-location__section-head--route {
        margin-bottom: 16px;
    }

    .company-location__section-head--route p {
        margin-top: 10px;
        font-size: 13.5px;
        line-height: 1.62;
        word-break: keep-all;
    }

    .company-location__route-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .company-location__route-card {
        grid-template-columns: 30px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 60px;
        padding: 14px 14px;
        border-radius: 12px;
    }

    .company-location__route-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .company-location__route-card strong {
        font-size: 13.5px;
        line-height: 1.45;
        font-weight: 600;
    }

    .company-location__route-card em {
        font-size: 13.5px;
        font-weight: 800;
    }

    .company-location__route-note {
        margin-top: 14px;
        font-size: 12.5px;
        line-height: 1.55;
    }
}

@media (max-width: 380px) {
    .company-location__shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .company-location__hero-stage {
        min-height: 220px;
        margin-left: -14px;
        margin-right: -14px;
        width: calc(100% + 28px);
    }

    .company-location__hero-copy {
        left: 18px;
        right: 18px;
        bottom: 26px;
    }

    .company-location__hero-copy h1 {
        font-size: 28px;
    }

    .company-location__hero-copy p {
        max-width: 280px;
        font-size: 13.5px;
    }

    .company-location__map-card {
        min-height: 390px;
    }

    .company-location__route-card {
        grid-template-columns: 30px minmax(0, 1fr);
    }

    .company-location__route-card em {
        grid-column: 2;
    }
}

/*
2026-05-15 T1836
- [모바일 카카오맵 터치 잠금]
- as-is: 휴대폰에서 페이지를 아래로 내리다가 지도 영역에 손가락이 걸리면 카카오맵이 확대/이동되어 스크롤 흐름이 끊겼습니다.
- to-be: 640px 이하에서는 지도 캔버스와 지도 내부 오버레이의 터치 이벤트를 잠그고, 기존 '크게 보기' 링크만 사용할 수 있게 둡니다.
- 데스크톱/태블릿 지도 조작은 유지합니다.
*/
@media (max-width: 640px) {
    .company-location__map-card[data-mobile-map-locked="1"] .company-location__map-canvas,
    .company-location__map-card[data-mobile-map-locked="1"] .company-location__kakao-overlay {
        pointer-events: none;
    }

    .company-location__map-card[data-mobile-map-locked="1"] .company-location__map-link {
        pointer-events: auto;
    }
}
