/* =========================================================
   CHECK-N · Busan Curated Guide — 공유 스타일 (라이트)
   namane-busan-frontend 디자인 시스템 기반 / 모바일 퍼스트
   1depth 랜딩 + 2depth/3depth 데이터 뷰 공용
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

:root {
  /* === NAMANE 컬러 시스템 (design-guide v1.4) === */
  /* Brand (purple) */
  --primary: #6133FF; --primary-weak: #A079F8; --primary-strong: #4F1FE5;
  --primary-50: #F8F5FC; --primary-100: #EDE6FA; --primary-200: #D6C5F5; --primary-dark: #453959;
  /* legacy alias → NAMANE 매핑 (기존 CSS 호환) */
  --teal:       #6133FF;
  --teal-soft:  #7C5CFF;
  --teal-deep:  #4F1FE5;
  --orange:     #A079F8;
  --amber:      #6133FF;
  --amber-soft: #A079F8;
  --deep:       #222222;
  --ink:        #111111;
  --cream:      #F5F5F5;
  --muted:      #666666;
  --muted-2:    #999999;
  --line:       rgba(34, 34, 34, 0.10);
  --line-soft:  rgba(34, 34, 34, 0.06);
  --glass:      rgba(255, 255, 255, 0.72);
  --card:       rgba(255, 255, 255, 0.86);
  --bg:         #F5F5F5;
  --shadow:        0 16px 36px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 28px 64px rgba(0, 0, 0, 0.18);
  /* Status */
  --success: #4CAF7A; --warning: #FFC42C; --error: #E91313; --error-bg: #FFE2E2;

  --font: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", Roboto, sans-serif;

  --app-w: 430px;
  --pad:   24px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  background:
    radial-gradient(circle at 28% 8%, rgba(237, 230, 250, 0.9), transparent 34rem),
    radial-gradient(circle at 72% 34%, rgba(214, 197, 245, 0.7), transparent 28rem),
    var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }

/* ---- app shell (phone frame) ---- */
.app {
  position: relative;
  width: 100%;
  max-width: var(--app-w);
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(290px 420px at -8% 6%, rgba(237, 230, 250, 0.9), transparent 72%),
    radial-gradient(300px 520px at 105% 36%, rgba(214, 197, 245, 0.7), transparent 72%),
    linear-gradient(170deg, #FFFFFF 0%, #FBFAFF 44%, #F8F5FC 100%);
  box-shadow: 0 0 0 1px rgba(24, 47, 64, 0.05), 0 40px 120px rgba(24, 18, 38, 0.12);
}
@media (min-width: 431px) {
  body { padding: 24px 0; }
  .app { min-height: calc(100vh - 48px); border-radius: 34px; }
}

/* reveal-on-scroll */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   상단 바 (2depth / 3depth)
   ========================================================= */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: linear-gradient(180deg, rgba(247, 247, 251, 0.92), rgba(247, 247, 251, 0));
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--teal); font-weight: 900; font-size: 16px; letter-spacing: 0.01em;
}
.brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(160, 121, 248, 0.6); }
a.brand { cursor: pointer; transition: opacity 0.18s var(--ease); }
@media (hover: hover) { a.brand:hover { opacity: 0.78; } }

/* =========================================================
   섹션 히어로 (2depth / 3depth)
   ========================================================= */
.shero { position: relative; padding: 60px var(--pad) 24px; overflow: hidden;
  background:
    radial-gradient(260px 210px at 12% -12%, color-mix(in srgb, var(--hue, #6133FF) 22%, transparent), transparent 70%),
    radial-gradient(320px 250px at 110% -4%, color-mix(in srgb, var(--hue, #6133FF) 13%, transparent), transparent 70%),
    linear-gradient(180deg, #ffffff, #F8F5FC);
}
.shero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(180deg, transparent, var(--bg)); }
.shero > * { position: relative; z-index: 1; }
.shero .crumb { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.shero .crumb a { color: var(--muted); }
@media (hover: hover) { .shero .crumb a:hover { color: var(--teal); } }
.shero .crumb span { color: #b6c0ca; }
.shero .shero-no {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: #fff;
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  padding: 6px 12px; border-radius: 999px; margin-bottom: 12px; box-shadow: 0 8px 18px rgba(97, 51, 255, 0.22);
}
.shero h1 { color: var(--deep); font-size: clamp(28px, 8vw, 36px); font-weight: 900; line-height: 1.18; letter-spacing: -0.02em; }
.shero .lead { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.62; max-width: 36ch; }
.shero .stat {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; color: var(--deep);
  background: var(--glass); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; box-shadow: var(--shadow);
}
.shero .stat b { color: var(--teal); }
/* 2depth/3depth 헤더 배경 이미지 (섹션 인지성 강화) */
.shero-bg {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.2;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}

/* =========================================================
   2depth — 네비 카드
   ========================================================= */
.ncards { display: flex; flex-direction: column; gap: 12px; padding: 14px var(--pad) 26px; }
.ncard {
  position: relative; display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 15px 15px 15px 18px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ncard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--hue, var(--teal)); }
.ncard:active { transform: scale(0.99); }
@media (hover: hover) {
  .ncard:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); }
  .ncard:hover .ncard-arr { transform: translateX(3px); }
}
.ncard-no { flex: 0 0 auto; min-width: 16px; font-size: 11px; font-weight: 800; color: var(--muted-2); }
.ncard-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 21px; line-height: 1; background: rgba(97, 51, 255, 0.09); }
/* 카테고리 배경 이미지 카드(맛집·관광지 2depth) — 박스를 이미지 비율(3:1)에 매칭, 전 카드 동일 크기 + 스크림 */
.ncard-photo { aspect-ratio: 3 / 1; height: auto; min-height: 0; padding: 14px 16px; background-size: 130%; background-position: center; background-repeat: no-repeat; border-color: transparent; align-items: flex-end; }
.ncard-photo .ncard-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
/* 추천 데이터 카드 가격줄 (설명 아래 별도 줄) */
.price-line { margin-top: 4px; font-size: 13px; font-weight: 700; color: var(--deep); }
/* 코스 지도 순번 마커 */
.route-pin span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: #6133FF; color: #fff; font-weight: 800; font-size: 13px; border: 2px solid #fff; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45); }
/* 내 위치(GPS) 버튼·마커·가까운 순 목록 */
.sec-loc-btn { width: 36px; height: 36px; background: #fff; border: none; border-radius: 9px; color: var(--teal);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); cursor: pointer; display: grid; place-items: center; }
.sec-loc-btn:active { transform: scale(0.94); }
.user-pin span { display: block; width: 14px; height: 14px; border-radius: 50%; background: #1a73e8; border: 2px solid #fff; box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.35); }
.near-list h4 { font-size: 13px; font-weight: 800; margin: 2px 0 9px; color: var(--deep); }
.near-item { display: flex; align-items: center; gap: 9px; width: 100%; text-align: left; cursor: pointer;
  background: rgba(97, 51, 255, 0.05); border: 1px solid var(--line); border-radius: 11px; padding: 9px 11px; margin-bottom: 6px; }
.near-item:active { transform: scale(0.99); }
.near-item b { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.near-item .nm { flex: 1; min-width: 0; font-size: 14px; font-weight: 700; color: var(--deep); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.near-item .ds { flex: 0 0 auto; font-size: 12px; font-weight: 800; color: var(--teal); }
.ncard-photo::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(18,10,38,0.74) 0%, rgba(18,10,38,0.44) 48%, rgba(18,10,38,0.14) 100%); }
.ncard-photo > * { position: relative; z-index: 1; }
.ncard-photo .ncard-title { color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
.ncard-photo .ncard-meta { color: rgba(255, 255, 255, 0.95); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); }
.ncard-photo .ncard-meta .cnt { color: #fff; }
.ncard-photo .ncard-arr { color: #fff; border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.18); }
.ncards-cap { padding: 0 var(--pad); margin: 2px 0 -2px; font-size: 12px; font-weight: 800; letter-spacing: 0.02em; color: var(--muted-2); }
.ncard-main { flex: 1; min-width: 0; }
.ncard-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.03em; color: var(--teal); }
.ncard-title { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; color: var(--deep); margin-top: 3px; }
.ncard-sum { margin-top: 5px; font-size: 13px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ncard-meta { margin-top: 9px; font-size: 12px; color: var(--muted-2); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ncard-meta .cnt { color: var(--orange); font-weight: 800; }
.ncard-arr {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 14px; color: var(--teal);
  background: rgba(255, 255, 255, 0.6); transition: transform 0.3s var(--ease);
}

/* =========================================================
   3depth — 데이터 리스트 / 카드
   ========================================================= */
.list { display: flex; flex-direction: column; gap: 12px; padding: 14px var(--pad) 30px; }
.item {
  display: flex; gap: 13px; background: var(--card); border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 13px; box-shadow: var(--shadow); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
@media (hover: hover) { .item:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); } }
.item-thumb {
  flex: 0 0 84px; width: 84px; height: 84px; border-radius: 14px;
  background-size: cover; background-position: center; background-color: #EFEFEF;
  position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.6);
}
.item-thumb .idx {
  position: absolute; left: 7px; top: 7px; font-size: 11px; font-weight: 800; color: var(--deep);
  background: rgba(255, 255, 255, 0.85); border-radius: 7px; padding: 2px 7px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.item-head { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.item-info h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; color: var(--deep); }
/* 지역 칩 — 제목 옆 권역 인지(은은한 권역색) */
.zone-chip { display: inline-flex; align-items: center; gap: 3px; flex: 0 0 auto;
  font-size: 11px; font-weight: 700; line-height: 1; padding: 3px 8px; border-radius: 999px; white-space: nowrap;
  color: var(--zc-fg, #666666); background: var(--zc-bg, rgba(0,0,0,.05)); }
.zone-chip svg { width: 11px; height: 11px; opacity: .9; }
.zone-chip .zc-dir { font-weight: 600; opacity: .68; }
.zone-chip.r-east { --zc-bg: rgba(97, 51, 255, 0.10); --zc-fg: #6133FF; }
.zone-chip.r-old  { --zc-bg: rgba(79, 70, 229, 0.12); --zc-fg: #4F46E5; }
.zone-chip.r-city { --zc-bg: rgba(139, 63, 217, 0.12); --zc-fg: #8B3FD9; }
.zone-chip.r-west { --zc-bg: rgba(157, 78, 221, 0.12); --zc-fg: #9D4EDD; }
/* 목록/지도 토글 + 섹션 지도 */
.view-toggle { display: inline-flex; gap: 2px; margin: 0 var(--pad) 12px; padding: 3px; border-radius: 999px; background: rgba(0,0,0,.05); }
.vt-btn { border: 0; background: transparent; padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 800; color: var(--primary); cursor: pointer; }
.vt-btn.on { background: #fff; color: var(--deep); font-weight: 700; box-shadow: 0 2px 6px rgba(0,0,0,.10); }
.sec-map-wrap { margin: 0 var(--pad) 18px; }
.sec-map { width: 100%; height: 46vh; min-height: 280px; max-height: 420px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #EFEFEF; }
.sec-map .leaflet-popup-content { margin: 8px 12px; }
.map-legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; padding: 0 4px; font-size: 12px; color: var(--muted); }
.lg-item { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; }
.lg-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.lg-dot.r-east { background: #6133FF; } .lg-dot.r-city { background: #8B3FD9; }
.lg-dot.r-old { background: #4F46E5; } .lg-dot.r-west { background: #9D4EDD; }
/* 핀 클릭 시 하단에 출력되는 선택 카드 */
.sec-map-card { margin-top: 12px; min-height: 64px; }
.smc-hint { text-align: center; color: var(--muted); font-size: 13px; padding: 16px 0; margin: 0; }
.sec-map-card.has-card { animation: smcIn 0.22s var(--ease, ease); }
@keyframes smcIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.item-meta { margin-top: 3px; font-size: 12px; color: var(--teal); font-weight: 700; }
.item-info p { margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.item-tags { margin-top: auto; padding-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 11px; color: var(--teal); background: rgba(97, 51, 255, 0.08); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px; font-weight: 600; }

.item-line { margin-top: 6px; font-size: 12px; color: var(--muted); display: flex; gap: 6px; line-height: 1.5; }
.item-line .lab { flex: 0 0 auto; color: var(--orange); font-weight: 800; }
.item-addr { margin-top: 7px; font-size: 12px; color: var(--muted); display: flex; gap: 5px; align-items: flex-start; }

/* 응급 한국어 — 언어별 줄 분리 */
.langs { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.lang-line { display: flex; gap: 8px; font-size: 13px; color: var(--ink); line-height: 1.5; }
.lang-line .lang-lab { flex: 0 0 44px; color: var(--teal); font-weight: 800; font-size: 12px; padding-top: 1px; }

/* 역사 엘리베이터 — 단계 라벨/내용 줄 분리 (카드 높이 유지 위해 압축 글씨) */
.steps { margin-top: 7px; display: flex; flex-direction: column; gap: 5px; }
.step .step-lab { font-size: 11.5px; font-weight: 800; color: var(--teal); line-height: 1.4; }
.step .step-val { font-size: 11.5px; color: var(--muted); line-height: 1.45; margin-top: 1px; }

/* 그룹 헤더 (혜택 / 관광편의) */
.subhead { padding: 22px var(--pad) 2px; display: flex; align-items: center; gap: 9px; }
.subhead .bar { width: 4px; height: 15px; border-radius: 2px; background: var(--hue, var(--teal)); }
.subhead h2 { font-size: 14px; font-weight: 900; color: var(--deep); }
.subhead .n { font-size: 12px; color: var(--muted-2); font-weight: 700; }

/* 혜택 — benefit 행 */
.benefit { background: linear-gradient(145deg, rgba(97, 51, 255, 0.07), rgba(160, 121, 248, 0.05)); border-color: rgba(97, 51, 255, 0.18); }
.benefit .item-thumb { display: grid; place-items: center; background: linear-gradient(135deg, var(--teal-soft), var(--teal)); }
.benefit .item-thumb .emoji { font-size: 32px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15)); }
/* 브랜드 로고 썸네일: 흰 배경에 잘림 없이 contain */
.item-thumb.logo { background: #fff; display: block; border: 1px solid var(--line); }
.item-thumb.logo img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

/* 코스 — 타임라인 */
.timeline { padding: 16px var(--pad) 30px; position: relative; }
.tl-step { position: relative; padding-left: 34px; padding-bottom: 20px; }
.tl-step::before { content: ""; position: absolute; left: 9px; top: 4px; bottom: -4px; width: 2px; background: var(--line); }
.tl-step:last-child::before { display: none; }
.tl-dot { position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--hue, var(--teal)); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); }
.tl-step h3 { font-size: 16px; font-weight: 800; color: var(--deep); }
.tl-step .tl-time { font-size: 12px; color: var(--teal); font-weight: 700; }
.tl-step p { font-size: 13px; color: var(--muted); margin-top: 5px; line-height: 1.5; }

/* 성지 단독 상세 / 코스 메타 — 정의 리스트 */
.dl { padding: 6px var(--pad) 8px; }
.dl-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.dl-row:last-child { border-bottom: 0; }
.dl-row .k { flex: 0 0 76px; font-size: 12px; font-weight: 800; color: var(--teal); padding-top: 2px; }
.dl-row .v { flex: 1; font-size: 14px; color: var(--ink); line-height: 1.6; }
@media (hover: hover) { a.dl-row:hover .v { color: var(--teal); } }
.chips { display: flex; gap: 7px; flex-wrap: wrap; padding: 8px var(--pad) 30px; }

/* =========================================================
   푸터 / CTA
   ========================================================= */
.footer { padding: 28px var(--pad) calc(34px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-soft); text-align: center; }
/* 콘텐츠 폭 제한 — 화면을 꽉 채우지 않고 정돈 */
.footer .fcta, .sns-links, .footer > small { max-width: 360px; margin-left: auto; margin-right: auto; }
/* CTA — 더 얇고 선명하게(가로 그라데이션·아래로 퍼지는 보라 그림자) */
.footer .fcta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 50px; color: #fff;
  background: linear-gradient(90deg, #8b5cf6 0%, #4f22e8 100%);
  font-weight: 800; font-size: 14px; border-radius: 14px;
  box-shadow: 0 18px 34px rgba(105, 70, 230, 0.28); transition: transform 0.25s var(--ease);
}
.footer .fcta:active { transform: scale(0.99); }
/* FOLLOW US 블록 — 간격 촘촘하게(모바일 배너 느낌) */
.sns-links { display: block; margin-top: 22px; }
.sns-head { font-size: 12px; font-weight: 800; letter-spacing: 3px; color: #5b35f5; text-align: center; }
.sns-sub { margin-top: 4px; font-size: 11px; color: #9b96a8; text-align: center; }
/* 소셜 카드 — 더 작고 부드러운 pill, 중앙 정렬 */
.sns-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.sns-card {
  display: flex; align-items: center; gap: 10px; text-align: left; min-width: 0;
  width: 160px; height: 60px; padding: 0 14px; border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%); /* 연한 라벤더/블루 톤 */
  box-shadow: 0 10px 26px rgba(100, 82, 180, 0.14);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.sns-card:active { transform: scale(0.98); }
@media (hover: hover) { .sns-card:hover { box-shadow: 0 14px 30px rgba(100, 82, 180, 0.22); transform: translateY(-1px); } }
.sns-ic {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.sns-ic svg { width: 20px; height: 20px; }
.sns-txt { display: flex; flex-direction: column; gap: 0; min-width: 0; flex: 1 1 auto; }
.sns-txt b { font-size: 13px; font-weight: 800; line-height: 1.05; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sns-txt small { font-size: 11px; line-height: 1.05; margin-top: -1px; color: var(--muted-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* 아이콘 — 브랜드별 강한 포인트(IG 따뜻한 glow / X 검정 원형 대비) */
.sns-ig .sns-ic { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 8px 18px rgba(255, 94, 120, 0.35); }
.sns-x .sns-ic, .sns-threads .sns-ic { background: #050505; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22); }
.sns-rednote .sns-ic { background: #ff2442; box-shadow: 0 8px 18px rgba(255, 36, 66, 0.30); }
/* 하단 안내문 — 더 작고 흐리게 */
.footer > small { display: block; margin-top: 18px; font-size: 11px; color: #aaa3b7; line-height: 1.7; }

/* =========================================================
   1depth 랜딩 (index.html) — namane-busan-frontend 히어로
   ========================================================= */
.hero-section { position: relative; min-height: 792px; padding: 16px var(--pad) 0; isolation: isolate; }
.ambient { position: absolute; pointer-events: none; opacity: 0.9; z-index: -1; }
.ambient-01 { width: 180px; height: 180px; left: -76px; top: 54px; background: radial-gradient(circle, rgba(160, 121, 248, 0.22), transparent 68%); }
.ambient-02 { width: 280px; height: 430px; right: -120px; top: 170px; background: radial-gradient(circle, rgba(214, 197, 245, 0.5), transparent 70%); }
.ambient-03 { width: 340px; height: 260px; left: -110px; bottom: 10px; background: radial-gradient(circle, rgba(160, 121, 248, 0.18), transparent 70%); }

.lp-top { position: relative; z-index: 20; display: flex; justify-content: space-between; align-items: center; height: 46px; }
.locale-button {
  justify-self: start; height: 30px; display: inline-flex; align-items: center; gap: 8px; padding: 0 12px;
  border: 1px solid rgba(35, 84, 103, 0.12); border-radius: 12px; background: rgba(255, 255, 255, 0.62);
  color: var(--deep); font-weight: 700; font-size: 13px; backdrop-filter: blur(14px);
  box-shadow: 0 8px 20px rgba(28, 62, 84, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.icon-circle svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.locale-button .chev { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0.8; }
.lp-brand { justify-self: center; color: var(--teal); font-weight: 900; font-size: 22px; line-height: 1; display: inline-flex; align-items: center; gap: 7px; text-shadow: 0 9px 22px rgba(97, 51, 255, 0.13); }
.lp-brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(160, 121, 248, 0.6); }
.menu-button { justify-self: end; width: 38px; height: 34px; border: 0; padding: 6px 4px; display: grid; gap: 6px; background: transparent; }
.menu-button span { display: block; width: 25px; height: 2px; background: #222222; border-radius: 10px; justify-self: end; }

.hero-copy { position: relative; z-index: 12; width: 204px; padding-top: 44px; }
.hero-copy .eyebrow { margin: 0 0 18px; color: var(--teal); font-size: 12px; line-height: 1; font-weight: 900; letter-spacing: 0.02em; }
.hero-copy h1 { margin: 0; color: var(--deep); font-size: 39px; line-height: 1.26; font-weight: 900; letter-spacing: -0.01em; text-shadow: 0 12px 26px rgba(36, 16, 66, 0.06); }
.hero-copy .lead { margin: 22px 0 0; color: #333333; font-size: 16px; font-weight: 600; line-height: 1.7; text-wrap: balance; }
.hero-copy .desc { margin: 24px 0 0; color: rgba(37, 31, 50, 0.78); font-size: 13px; font-weight: 500; line-height: 1.8; text-wrap: pretty; }
.hero-copy .desc b { color: var(--teal); font-size: 15px; font-weight: 900; }

.cta-stack { display: grid; gap: 13px; margin-top: 24px; width: 184px; }
.primary-cta, .secondary-cta {
  position: relative; display: flex; align-items: center; justify-content: space-between; height: 46px;
  border-radius: 12px; padding: 0 15px 0 18px; font-size: 15px; font-weight: 800; white-space: nowrap;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.primary-cta { color: #fff; background: linear-gradient(135deg, #A079F8 0%, #6133FF 58%, #4F1FE5 100%); box-shadow: 0 13px 24px rgba(97, 51, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24); }
.primary-cta::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 47%); pointer-events: none; }
.primary-cta svg, .secondary-cta svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.secondary-cta { color: #6133FF; background: rgba(255, 255, 255, 0.62); border: 1px solid rgba(97, 51, 255, 0.45); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 12px 28px rgba(0, 0, 0, 0.05); }
.secondary-cta svg { width: 18px; height: 18px; stroke-width: 1.9; }
.store-cta svg { fill: currentColor; stroke: none; width: 17px; height: 17px; }
.primary-cta:hover, .secondary-cta:hover { transform: translateY(-1px); }
.primary-cta:active, .secondary-cta:active { transform: translateY(1px) scale(0.99); }

.visual-collage { position: absolute; top: 84px; right: -31px; width: 260px; height: 640px; z-index: 6; }
.photo-card { position: absolute; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: var(--shadow-strong); transform-origin: center; }
.photo-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(255, 255, 255, 0.64); box-shadow: inset 0 0 0 1px rgba(34, 79, 98, 0.08); pointer-events: none; }
.photo-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.card-train { width: 190px; height: 286px; top: 15px; right: 12px; transform: rotate(3.5deg); }
.card-train img { object-position: 48% 44%; }
.card-bridge { width: 202px; height: 148px; top: 318px; right: 8px; border-radius: 18px; transform: rotate(3.7deg); box-shadow: 0 19px 45px rgba(32, 19, 54, 0.34); }
.card-bridge img { object-position: 50% 49%; }
.card-temple { width: 176px; height: 134px; top: 500px; right: 52px; border-radius: 17px; transform: rotate(5deg); }
.card-temple img { object-position: 52% 58%; }
.card-market { width: 152px; height: 130px; top: 600px; right: 205px; border-radius: 16px; transform: rotate(-4deg); box-shadow: 0 18px 38px rgba(51, 29, 79, 0.22); }
.card-market img { object-position: 53% 52%; }
.pin-label { position: absolute; left: 16px; top: 18px; display: inline-flex; align-items: center; gap: 5px; height: 31px; padding: 0 11px 0 9px; border-radius: 12px; color: #fff; font-size: 13px; font-weight: 800; background: rgba(45, 81, 96, 0.56); backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.pin-label svg { width: 15px; height: 15px; fill: currentColor; }
.pin-label.dark { background: rgba(20, 39, 83, 0.62); }
.pin-label.sky { background: rgba(97, 51, 255, 0.72); }
.pin-label.gray { background: rgba(142, 142, 142, 0.68); top: 12px; left: 11px; height: 27px; font-size: 12px; }

.scroll-cue { position: absolute; z-index: 12; left: 50%; top: 748px; transform: translateX(-50%); display: grid; justify-items: center; gap: 3px; color: var(--teal); }
.scroll-cue span { font-size: 10px; font-weight: 800; transform: rotate(-10deg); opacity: 0.52; }
.scroll-cue i { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(97, 51, 255, 0.72); border-radius: 50%; background: rgba(255, 255, 255, 0.48); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7); }
.scroll-cue svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* 1depth — 섹션 둘러보기 */
.explore {
  position: relative; z-index: 10; margin: -6px var(--pad) 30px; padding: 22px 14px 18px;
  border-radius: 23px 23px 0 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(52, 101, 121, 0.12); box-shadow: 0 -12px 42px rgba(36, 70, 88, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}
.explore-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; padding-inline: 2px; }
.explore-head h2 { display: flex; align-items: center; gap: 9px; color: #222222; font-size: 22px; line-height: 1; font-weight: 900; }
.explore-head h2 span { color: var(--orange); font-size: 19px; }
.explore-head .ev { color: var(--teal); font-size: 12px; font-weight: 800; }
.nav-card {
  margin-top: 12px; display: grid; grid-template-columns: 104px 1fr; gap: 14px; padding: 10px; border-radius: 20px;
  background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(34, 34, 34, 0.09); box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-card:active { transform: scale(0.99); }
@media (hover: hover) { .nav-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); } }
.nav-card .thumb { position: relative; width: 104px; height: 98px; border-radius: 15px; overflow: hidden; background-size: cover; background-position: center; }
.nav-card .thumb.grad { display: grid; place-items: center; font-size: 30px; }
.nav-card .thumb .no { position: absolute; left: 8px; top: 8px; font-size: 10px; font-weight: 900; color: #fff; background: rgba(23, 40, 58, 0.6); border-radius: 7px; padding: 2px 7px; backdrop-filter: blur(6px); }
.nav-copy { display: flex; flex-direction: column; padding: 5px 4px 2px 0; }
.nav-copy .k { color: var(--teal); font-size: 10px; font-weight: 900; letter-spacing: 0.04em; }
.nav-copy h3 { margin-top: 4px; color: #222222; font-size: 16px; font-weight: 900; letter-spacing: -0.01em; }
.nav-copy p { margin-top: 5px; color: rgba(40, 33, 56, 0.72); font-size: 11.5px; line-height: 1.45; }
.nav-copy .go { margin-top: auto; padding-top: 7px; display: inline-flex; align-items: center; gap: 5px; color: var(--teal); font-size: 11px; font-weight: 800; }

@media (max-width: 370px) {
  .hero-section { padding-inline: 18px; }
  .hero-copy { width: 184px; }
  .hero-copy h1 { font-size: 36px; line-height: 1.22; }
  .hero-copy .lead { font-size: 15px; line-height: 1.6; }
  .cta-stack { width: 172px; gap: 11px; }
  .visual-collage { right: -54px; transform: scale(0.9); transform-origin: top right; }
  .explore { margin-inline: 14px; }
}

/* =========================================================
   다국어: 상단 컨트롤 / 언어 드롭다운 / 1depth 메뉴
   ========================================================= */
.top-ctrl { display: inline-flex; align-items: center; gap: 6px; }
.topbar .locale-button { height: 30px; padding: 0 10px; gap: 6px; }
.topbar .menu-button { width: 30px; height: 28px; padding: 5px 3px; gap: 5px; }
.topbar .menu-button span { width: 20px; }

.locale-pop {
  position: fixed; z-index: 60; min-width: 152px; padding: 6px;
  background: #fff; border: 1px solid rgba(35, 84, 103, 0.12); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(20, 40, 60, 0.18);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease);
}
.locale-pop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.locale-pop-head { font-size: 11px; font-weight: 800; color: var(--muted); padding: 6px 10px 4px; letter-spacing: 0.02em; }
.locale-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  padding: 9px 10px; border: 0; background: transparent; border-radius: 10px;
  font-size: 14px; font-weight: 700; color: var(--deep); cursor: pointer; text-align: left;
}
.locale-opt:hover { background: rgba(47, 142, 146, 0.08); }
.locale-opt.on { color: var(--teal); }
.locale-opt .ck { color: var(--teal); font-weight: 900; }

.nav-overlay { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.nav-overlay.show { visibility: visible; }
.nav-backdrop { position: absolute; inset: 0; background: rgba(16, 18, 24, 0.42); opacity: 0; transition: opacity 0.22s var(--ease); }
.nav-overlay.show .nav-backdrop { opacity: 1; }
.nav-sheet {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82%, 320px);
  background: #fff; box-shadow: -16px 0 44px rgba(20, 40, 60, 0.2);
  transform: translateX(100%); transition: transform 0.26s var(--ease);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
.nav-overlay.show .nav-sheet { transform: translateX(0); }
.nav-sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.nav-sheet-head span { font-size: 16px; font-weight: 900; color: var(--deep); }
.nav-close { border: 0; background: transparent; font-size: 18px; color: var(--muted); cursor: pointer; width: 34px; height: 34px; border-radius: 10px; }
.nav-close:hover { background: rgba(0, 0, 0, 0.05); }
.nav-link {
  display: flex; align-items: center; gap: 12px; padding: 13px 12px; border-radius: 12px;
  color: var(--deep); font-weight: 800; font-size: 15px; transition: background 0.16s var(--ease);
}
.nav-link:hover { background: rgba(47, 142, 146, 0.08); }
.nav-home { color: var(--teal); font-weight: 900; margin-bottom: 4px; padding-bottom: 14px; border-bottom: 1px solid rgba(35, 84, 103, 0.08); border-radius: 0; }
.nav-no { font-size: 12px; font-weight: 800; color: var(--muted); width: 22px; }
.nav-name { flex: 1; }
.nav-arr { color: var(--muted); }
/* 메뉴 내 언어 선택 */
.nav-lang { margin-top: 10px; padding-top: 12px; border-top: 1px solid rgba(35, 84, 103, 0.08); display: flex; flex-direction: column; gap: 2px; }
.nav-lang-head { font-size: 11px; font-weight: 800; color: var(--muted); padding: 2px 10px 6px; letter-spacing: 0.02em; }

/* =========================================================
   언어별 글자 크기·자간 보정 (영어/일본어 긴 텍스트 대응)
   <html lang>은 locale.js가 설정. 한국어(기본)는 그대로 유지.
   ========================================================= */
/* --- English --- */
html[lang="en"] .hero-copy h1 { font-size: 20px; line-height: 1.26; letter-spacing: -0.02em; }
html[lang="en"] .hero-copy .lead { font-size: 13px; line-height: 1.5; letter-spacing: -0.01em; }
html[lang="en"] .hero-copy .desc { font-size: 11.5px; line-height: 1.6; }
html[lang="en"] .hero-copy .desc b { font-size: 12.5px; }
html[lang="en"] .primary-cta, html[lang="en"] .secondary-cta { font-size: 13.5px; letter-spacing: -0.01em; }
html[lang="en"] .shero h1 { letter-spacing: -0.02em; }
html[lang="en"] .shero .shero-no { letter-spacing: 0.04em; }
html[lang="en"] .ncard-title { font-size: 16px; letter-spacing: -0.01em; }
html[lang="en"] .ncard-kicker { letter-spacing: 0; }
html[lang="en"] .shero .stat, html[lang="en"] .ncard-meta { font-size: 12px; }
html[lang="en"] .nav-card .go { font-size: 12px; letter-spacing: -0.01em; }
html[lang="en"] .subhead h2 { letter-spacing: -0.01em; }
html[lang="en"] .item-line .lab, html[lang="en"] .dl-row .k { letter-spacing: -0.01em; }

/* --- 日本語 --- */
html[lang="ja"] .hero-copy h1 { font-size: 26px; line-height: 1.34; letter-spacing: -0.05em; }
html[lang="ja"] .hero-copy .lead { font-size: 13.5px; line-height: 1.6; letter-spacing: -0.03em; }
html[lang="ja"] .hero-copy .desc { font-size: 12.5px; line-height: 1.75; letter-spacing: -0.02em; }
html[lang="ja"] .hero-copy .desc b { font-size: 13.5px; }
html[lang="ja"] .primary-cta, html[lang="ja"] .secondary-cta { font-size: 13.5px; letter-spacing: -0.03em; }
html[lang="ja"] .shero h1 { line-height: 1.24; letter-spacing: -0.04em; }
html[lang="ja"] .ncard-title { font-size: 16.5px; letter-spacing: -0.03em; }
html[lang="ja"] .shero .stat, html[lang="ja"] .ncard-meta { font-size: 12px; letter-spacing: -0.02em; }
html[lang="ja"] .nav-card .go { letter-spacing: -0.03em; }
html[lang="ja"] .subhead h2 { letter-spacing: -0.03em; }

/* 중국어(간체·번체)도 약간의 자간 보정 */
html[lang="zh-Hans"] .hero-copy h1, html[lang="zh-Hant"] .hero-copy h1 { font-size: 30px; line-height: 1.3; letter-spacing: -0.02em; }
html[lang="zh-Hans"] .ncard-title, html[lang="zh-Hant"] .ncard-title { letter-spacing: -0.01em; }

/* =========================================================
   접이식 데이터 카드 (더보기/접기) + 밀도 축소
   기본은 제목+요약 2줄, 더보기로 같은 화면에서 인라인 확장
   ========================================================= */
.list { gap: 10px; padding-top: 12px; }
.item.collapsible { align-items: flex-start; padding: 12px; gap: 12px; }
.item.collapsible .item-thumb { flex-basis: 64px; width: 64px; height: 64px; }
.item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.item .sum { margin-top: 5px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.item .sum.clamp2 {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.item.open .sum.clamp2 { -webkit-line-clamp: initial; overflow: visible; }
.item .more { display: none; margin-top: 4px; }
.item.open .more { display: block; }
.more-btn {
  align-self: flex-start; margin-top: 8px; border: 0; background: transparent; padding: 3px 0;
  color: var(--teal); font-weight: 800; font-size: 12.5px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
}
.more-btn::after { content: "⌄"; font-size: 12px; line-height: 1; transition: transform 0.2s var(--ease); }
.item.open .more-btn::after { transform: rotate(180deg); }
.more-btn .lbl-less { display: none; }
.item.open .more-btn .lbl-more { display: none; }
.item.open .more-btn .lbl-less { display: inline; }
.map-link { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 800; color: var(--teal); }
@media (hover: hover) { .more-btn:hover { text-decoration: underline; } }

/* 좌측 컬럼: 썸네일(01/이미지) */
.item-aside { flex: 0 0 64px; display: flex; flex-direction: column; align-items: center; gap: 8px; }

/* =========================================================
   Universal UI — 둘러보기 타일 허브 + 하단 아이콘 탭바 + 메뉴 아이콘
   ========================================================= */
.explore-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px var(--pad) 26px; }
.tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow); isolation: isolate; transition: transform 0.2s var(--ease);
}
.tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--c) 8%, transparent) 0%,
              color-mix(in srgb, var(--c) 82%, transparent) 100%);
}
.tile-ic { position: absolute; top: 12px; left: 12px; width: 34px; height: 34px; color: #fff; }
.tile-ic svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35)); }
.tile-pict { background: linear-gradient(160deg, var(--c), color-mix(in srgb, var(--c) 55%, #fff)); }
.tile-pic-ic { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; }
.tile-pic-ic svg { width: 44%; height: 44%; opacity: 0.96; filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.25)); }
.tile-name { color: #fff; font-weight: 900; font-size: 17px; letter-spacing: -0.01em; padding: 12px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
.tile:active { transform: scale(0.98); }
@media (hover: hover) { .tile:hover { transform: translateY(-2px); } }

.tabbar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--app-w); z-index: 50;
  display: flex; justify-content: space-around;
  background: rgba(255, 255, 255, 0.93); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}
.tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 0; color: var(--muted-2); transition: color 0.15s var(--ease); }
.tab-ic { width: 23px; height: 23px; }
.tab-ic svg { width: 100%; height: 100%; }
.tab-name { font-size: 9.5px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.tab.on { color: var(--c); }
.tab.on .tab-ic { transform: translateY(-1px); }
.has-tabbar .app { padding-bottom: 62px; }

/* 쿠키 동의 배너 (하단 탭바 위) */
.consent-bar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(70px + env(safe-area-inset-bottom)); z-index: 60;
  width: calc(100% - 24px); max-width: 406px;
  background: var(--card); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  animation: consent-in 0.3s var(--ease);
}
@keyframes consent-in { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }
.consent-text { flex: 1 1 auto; font-size: 12px; line-height: 1.5; color: var(--ink); }
.consent-btns { flex: 0 0 auto; display: flex; gap: 8px; }
.consent-btns button { border: 0; cursor: pointer; font-weight: 800; font-size: 12px; padding: 9px 14px; border-radius: 10px; white-space: nowrap; }
.consent-no { background: rgba(0, 0, 0, 0.06); color: var(--muted); }
.consent-ok { background: var(--primary); color: #fff; }
@media (hover: hover) { .consent-ok:hover { background: var(--primary-strong); } }

.nav-ic { width: 26px; height: 26px; display: inline-grid; place-items: center; color: var(--c, var(--teal)); flex: 0 0 auto; }
.nav-ic svg { width: 22px; height: 22px; }

/* =========================================================
   Google 콘텐츠 — 접힌 1줄(평점·가격·영업상태) + 더보기(영업시간·리뷰)
   ========================================================= */
.place-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--muted); }
.pm-rate { color: #e0901f; font-weight: 800; }
.pm-rate .pm-n { color: var(--muted-2); font-weight: 600; }
.pm-price { color: var(--muted-2); font-weight: 700; letter-spacing: -1px; }
.pm-dot { color: #cfd6dd; }
.open-badge { font-weight: 800; }
.open-badge.on { color: #4CAF7A; }
.open-badge.off { color: #999999; }
.open-badge::before { content: "\25CF"; font-size: 8px; vertical-align: 1px; margin-right: 3px; }

.blk-h { font-size: 11px; font-weight: 800; color: var(--teal); letter-spacing: 0.02em; margin: 10px 0 5px; }
.hours { font-size: 12px; }
.hrow { display: flex; justify-content: space-between; padding: 2px 0; color: var(--muted); }
.hrow.on { color: var(--deep); font-weight: 800; }
.hrow .hv { font-variant-numeric: tabular-nums; }
.rv-head { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.rv-star { color: #e0901f; letter-spacing: -1px; }
.rv-meta { color: var(--muted-2); font-weight: 700; }
.rv-text { margin-top: 4px; font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.src-note { margin-top: 8px; font-size: 10.5px; color: var(--muted-2); }

/* 병원 지원 언어 배지 (접지 않아도 노출·강조) */
.lang-tags {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 7px;
  padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 800;
  color: var(--teal); background: rgba(97, 51, 255, 0.10); border: 1px solid var(--line);
}
.lang-tags .lt-ic { width: 14px; height: 14px; flex: 0 0 auto; }

/* 긴급연락 통화 링크 (탭 통화) */
.tel-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
  padding: 7px 13px; border-radius: 10px; background: var(--orange); color: #fff;
  font-weight: 800; font-size: 13px; box-shadow: 0 6px 14px rgba(160, 121, 248, 0.28);
}
.tel-link svg { flex: 0 0 auto; }
@media (hover: hover) { .tel-link:hover { filter: brightness(1.05); } }
