/* ═══════════════════════════════════════════════════════════════
   가온 스킨 — 단일 정본 (중복 블록 금지)
   2단 디렉토리 + 카드/상세. ★뉴트럴 화이트+블루 톤 — 같은 계열 다른 사이트(코리아테라피=
   연한배경+핫핑크)와 룩앤필을 의도적으로 분리한다(동일 운영자 패턴 노출 방지).
   ═══════════════════════════════════════════════════════════════ */
/* ★가온 팔레트 — 축(hue 8 · 스칼렛) + 따뜻한 뉴트럴.
   원본(마이테라피 = 쿨 슬레이트 + 블루 #2563eb)과 색상환·배경 톤·모서리를 전부 갈라 둔다.
   종목 아이콘은 lib/gn.icon.php 에서 픽토그램을 새로 그렸다(색만 바꾸면 지적된다 · 런북 2-8). */
:root {
  --ga-primary: #e8341c;
  --ga-primary-d: #b8240f;
  --ga-accent:  #b45309;
  --ga-ink:     #241512;
  --ga-ink2:    #6b524d;
  --ga-mute:    #a89490;
  --ga-line:    #efe2de;
  --ga-soft:    #fbf5f3;
  --ga-ic-1: #e8341c;
  --ga-ic-2: #c2410c;
  --ga-ic-3: #b45309;
  --ga-ic-4: #9f1239;
  --ga-r: 8px;          /* 모서리 — 원본(14~16px 라운드)과 다르게 각지게 간다 */
}

/* ── 리셋 ──
   ★테마가 그누보드 default.css를 안 쓰는데 여기에 box-sizing 리셋이 없었다.
     그 결과 `.ga-wrap{width:100%; padding:0 12px}`이 content-box로 계산돼 뷰포트보다
     24px 넓어지고, body 기본 여백 8px까지 더해져 **전 페이지에 가로 스크롤**이 생겼다
     (헤더 '회원가입'이 잘리는 증상). 지역·코스·상세 어디서나 재현됐다. */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
html { overflow-x: hidden; }

/* ── 그누보드 기본 골격 무력화 ── */
#wrapper, #container_wr { width: auto; max-width: none; margin: 0; padding: 0; background: none; }
#container { width: auto; min-height: 0; margin: 0; padding: 0; border: 0; background: none; }
#container_title { display: none; }
#aside { display: none; }
#hd, #ft { display: none; }
/* ★페이지 배경 = 은은한 블루그레이. 흰 카드·패널이 배경과 분리되며 입체감이 생긴다 */
body { background: #fdf8f6; font-family: 'Pretendard', 'Malgun Gothic', dotum, sans-serif; color: var(--ga-ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.ga-main .tbl_head01, .ga-main .board_list, .ga-main table { width: 100% !important; }
.ga-main #bo_list, .ga-main #bo_v, .ga-main #bo_w, .ga-main #bo_gall,
.ga-main .tbl_wrap, .ga-main #mb_login, .ga-main #register_form, .ga-main #fregister { width: 100% !important; }

/* ── 골격 ── */
.ga-wrap { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 12px; }
.ga-body { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 18px; align-items: start; padding: 16px 0 44px; }
.ga-body.full { grid-template-columns: minmax(0, 1fr); }
/* ★full 레이아웃도 헤더(ga-wrap 1300)와 같은 폭을 쓴다.
   예전처럼 1120 로 좁혀 중앙정렬하면 상단 메뉴보다 본문이 90px 안쪽으로 밀려 정렬이 어긋난다. */
.ga-body.full .ga-main { width: 100%; }
/* ★1fr 은 자동 최소값이 min-content 라 내용이 길면 컬럼이 컨테이너를 밀어낸다(가로 스크롤).
   minmax(0,1fr) 로 바닥을 0 으로 내려야 좁은 화면에서 안 터진다. 2026-07-28 실측 수정. */
@media (max-width: 1024px) { .ga-body { grid-template-columns: minmax(0, 1fr); } .ga-aside { display: none; } }

/* ── 상단 유틸바 ── */
.ga-utilbar { border-bottom: 1px solid var(--ga-line); background: #fff; font-size: 12px; }
.ga-logorow { border-bottom: 1px solid var(--ga-line); }
.ga-utilbar .ga-wrap { display: flex; justify-content: flex-end; align-items: center; gap: 14px; height: 34px; }
.ga-utilbar a { color: #666; }
.ga-utilbar a:hover { color: var(--ga-primary); }

/* ── 로고 줄 ── */
.ga-logorow { background: #fff; }
.ga-logorow .ga-wrap { display: flex; align-items: center; gap: 26px; height: 90px; }
.ga-logo { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--ga-ink); }
.ga-logo span + span { color: var(--ga-primary); }
.ga-logo em { display: block; font-style: normal; font-size: 11px; font-weight: 500; color: #a08d8a; }
/* 이미지 로고 — 로고줄 높이(78px) 안에서 세로 기준으로 맞춘다 */
/* 이미지 로고 — 로고 아래 태그라인을 붙이므로 세로 스택 */
.ga-logo.img { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; }
.ga-logo.img img { display: block; height: 52px; width: auto; }
.ga-logo.img em { margin-left: 2px; }
@media (max-width: 640px) {
    .ga-logo.img img { height: 38px; }
    .ga-logo.img em { font-size: 10px; }
}
.ga-toggle { display: flex; gap: 6px; padding: 6px; border: 1px solid var(--ga-line); border-radius: 12px; background: var(--ga-soft); }
.ga-toggle a { padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; color: #806e6b; background: #fff; }
.ga-toggle a.on { background: var(--ga-primary); color: #fff; box-shadow: 0 3px 10px rgba(253,84,58,.3); }

/* ── 검정 메뉴바 ── */
/* ★평면 검정(#111) 대신 브랜드 블루 계열의 딥 네이비 그라데이션.
   검정은 팔레트(로고 블루 / 위젯 블루·바이올렛·틸)와 겉돌고, 완전 평면이라
   깊이를 준 다른 요소들 사이에서 오히려 밋밋해 보였다. */
.ga-menubar {
    background: linear-gradient(180deg, #582219 0%, #3a140f 100%);
    /* 위 하이라이트 = 두께감, 아래 브랜드 블루 헤어라인 = 마감선 */
    box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 3px 12px rgba(58,21,15,.26);
    border-bottom: 1px solid rgba(253,113,91,.42);
}
/* 메뉴 항목이 좌측에만 몰리지 않도록 바 전체 폭에 고르게 분산한다.
   flex:1 = 각 항목이 같은 폭을 차지하므로 항목 수가 늘어도 간격이 자동으로 균등해진다.
   (space-between 은 글자수가 긴 항목 주변만 좁아 보여서 쓰지 않는다) */
.ga-menubar .ga-wrap { display: flex; align-items: stretch; height: 54px; padding: 0; }
.ga-menubar a {
    position: relative; flex: 1 1 0;
    display: flex; align-items: center; justify-content: center;
    color: #fbe9e6; font-size: 15px; font-weight: 700; letter-spacing: -.02em; white-space: nowrap;
    transition: color .15s, background .15s;
}
/* 현재 페이지 / 호버 표시 — 가운데서 좌우로 펼쳐지는 언더라인 */
.ga-menubar a:after {
    content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 3px;
    border-radius: 3px 3px 0 0; background: linear-gradient(90deg, #ff6f59, #ff9e8f);
    opacity: 0; transition: left .2s ease, right .2s ease, opacity .2s ease;
}
.ga-menubar a:hover { color: #ffd5cf; background: rgba(255,255,255,.055); }
.ga-menubar a.on { color: #fff; background: rgba(255,255,255,.045); }
.ga-menubar a:hover:after, .ga-menubar a.on:after { left: 15%; right: 15%; opacity: 1; }

@media (max-width: 640px) {
    /* 모바일은 균등분할하면 글자가 눌리므로 가로 스크롤 + 자연폭으로 되돌린다 */
    .ga-menubar .ga-wrap { overflow-x: auto; padding: 0 12px; }
    .ga-menubar a { flex: 0 0 auto; padding: 0 12px; font-size: 14px; }
    .ga-menubar a:hover:after, .ga-menubar a.on:after { left: 12px; right: 12px; }
}

/* ── 로고줄 우측 CTA ── */
.ga-hdcta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.ga-hdtel { display: flex; align-items: center; gap: 9px; }
.ga-hdtel-ico {
    width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff;
    background: linear-gradient(135deg, #ff6f59, #ed3e23);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 10px -3px rgba(235,63,37,.55);
}
.ga-hdtel-txt { display: flex; flex-direction: column; line-height: 1.15; }
.ga-hdtel-txt em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--ga-mute); letter-spacing: -.02em; }
.ga-hdtel-txt strong { font-size: 20px; font-weight: 800; letter-spacing: -.03em; color: var(--ga-ink); }
.ga-hdbtn {
    padding: 11px 18px; border-radius: 10px; font-size: 13px; font-weight: 700; letter-spacing: -.02em; color: #fff;
    background: linear-gradient(135deg, #582219, #3a140f);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 6px 14px -6px rgba(58,21,15,.6);
    transition: transform .15s ease, box-shadow .15s ease;
}
.ga-hdbtn:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 10px 20px -8px rgba(58,21,15,.7); }
/* 좁은 화면에서는 번호만 남기고, 더 좁으면 CTA 전체를 접는다 */
@media (max-width: 900px) { .ga-hdbtn { display: none; } }
@media (max-width: 640px) { .ga-hdcta { display: none; } }
@media (hover: none) { .ga-hdbtn:hover { transform: none; } }

/* ── 사이드 위젯 ──────────────────────────────────────────────
   위젯마다 고유색을 갖되 한 세트로 읽히게 한다.
   색은 --w1(밝은쪽)/--w2(어두운쪽)/--wsh(그림자 RGB) 3개 변수로만 바뀌므로
   위젯을 추가할 때 클래스 하나에 변수 3줄만 더하면 된다.
   ★입체감은 ①헤더 그라데이션 ②안쪽 상단 하이라이트/하단 음영(inset)
     ③카드 아래 '색이 있는' 확산 그림자 ④호버 시 살짝 떠오르기 로 만든다. */
.ga-widget {
  --w1: #ff6f59; --w2: #ed3e23; --wsh: 37,99,235;          /* 기본(지역별) = 브랜드 블루 */
  border: 1px solid var(--ga-line); border-radius: 14px; background: #fff;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(40,19,16,.05), 0 12px 26px -16px rgba(var(--wsh), .55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ga-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(40,19,16,.06), 0 20px 34px -16px rgba(var(--wsh), .7);
}
.ga-widget.w-theme { --w1: #fb998a; --w2: #ef5138; --wsh: 124,58,237; }   /* 테마별 = 바이올렛 */
.ga-widget.w-talk  { --w1: #d4862d; --w2: #94550d; --wsh: 13,148,136; }   /* 커뮤니티 = 틸 */

.ga-widget > h3 {
  display: flex; align-items: center; gap: 8px; height: 48px; padding: 0 14px;
  font-size: 14px; font-weight: 800; letter-spacing: -.03em; color: #fff;
  background: linear-gradient(135deg, var(--w1) 0%, var(--w2) 100%);
  /* 위쪽 밝은 선 + 아래쪽 어두운 선 = 얇은 두께감 */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38), inset 0 -1px 0 rgba(0,0,0,.14);
  text-shadow: 0 1px 1px rgba(0,0,0,.18);
  border-bottom: 0;
}
.ga-widget > h3:before { content: none; }                   /* 기존 좌측 3px 바 제거 */
/* 우측 아이콘 — 반투명 원형 배지 */
.ga-widget > h3 .ga-wico {
  margin-left: auto; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  background: rgba(255,255,255,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}

.ga-widget .ga-wbody { padding: 10px; background: linear-gradient(#fff, #fdfafa); }
.ga-linkgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ga-linkgrid a {
  display: block; padding: 8px 9px; border-radius: 9px; font-size: 13px; font-weight: 600;
  color: #634d4a; letter-spacing: -.02em; background: #fff;
  border: 1px solid #f4edec; box-shadow: 0 1px 1px rgba(40,19,16,.04);
  transition: transform .13s ease, box-shadow .13s ease, background .13s, color .13s, border-color .13s;
}
.ga-linkgrid a:hover {
  transform: translateY(-1px); color: var(--w2);
  background: rgba(var(--wsh), .06); border-color: rgba(var(--wsh), .34);
  box-shadow: 0 4px 9px -3px rgba(var(--wsh), .34);
}
/* 손가락 입력에서는 떠오르는 효과가 잔상처럼 남으므로 끈다 */
@media (hover: none) {
  .ga-widget:hover, .ga-linkgrid a:hover { transform: none; }
}

.ga-callban { display: block; border-radius: 14px; padding: 18px 16px; text-align: center;
  background: linear-gradient(135deg, #37221f, #513a37); color: #fff; box-shadow: 0 6px 18px rgba(55,34,31,.25); }
.ga-callban span { display: block; font-size: 12px; opacity: .75; font-weight: 600; }
.ga-callban strong { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.03em; margin-top: 5px; }

/* ── 홈: 메인 히어로 ──────────────────────────────────────────
   이미지 배너를 쓰지 않는다. 배경만 CSS 그라데이션이고 내용은 전부 HTML 텍스트/링크.
   ★네트워크 요청 0 → LCP 가 곧바로 h1 텍스트가 되므로 이미지 배너보다 빠르다. */
.ga-hero-main {
  position: relative; overflow: hidden; border-radius: 16px; padding: 34px 30px 30px; color: #fff;
  background:
    radial-gradient(900px 320px at 88% -20%, rgba(253,113,91,.40), transparent 62%),
    radial-gradient(620px 280px at 4% 118%, rgba(45,212,191,.22), transparent 62%),
    linear-gradient(135deg, #61251c 0%, #3a140f 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 18px 38px -24px rgba(58,21,15,.85);
}
.ga-hero-main h1 { font-size: 30px; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.ga-hero-main p { margin-top: 9px; font-size: 14.5px; letter-spacing: -.02em; color: #e6bcb6; }
.ga-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.ga-hero-chips a {
  padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 700; letter-spacing: -.02em;
  color: #fcebe8; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  transition: transform .14s ease, background .14s, border-color .14s, color .14s;
}
.ga-hero-chips a:hover {
  transform: translateY(-1px); color: #fff;
  background: rgba(255,255,255,.2); border-color: rgba(255,158,143,.65);
}
@media (max-width: 640px) {
  .ga-hero-main { padding: 24px 18px 22px; border-radius: 14px; }
  .ga-hero-main h1 { font-size: 22px; }
  .ga-hero-main p { font-size: 13.5px; }
  .ga-hero-chips { gap: 6px; margin-top: 18px; }
  .ga-hero-chips a { padding: 8px 13px; font-size: 13px; }
}
@media (hover: none) { .ga-hero-chips a:hover { transform: none; } }

/* ── 홈: 본문 스택 ──
   (구 .ga-searchbox / .ga-selcol / .ga-searchlabel / .ga-sidochips / .ga-quadbtns 는
    2026-07-21 .ga-hero-main 으로 대체되어 제거됨) */
.ga-mainstack { display: flex; flex-direction: column; gap: 16px; }

/* ── 공지 패널 ── */
.ga-panel { border: 1px solid var(--ga-line); border-radius: 16px; background: #fff; overflow: hidden;
  box-shadow: 0 1px 2px rgba(40,19,16,.04); }
.ga-panel > h3 { display: flex; align-items: center; justify-content: space-between; height: 52px; padding: 0 20px;
  font-size: 15px; font-weight: 800; letter-spacing: -.03em; color: var(--ga-ink); border-bottom: 1px solid #f7f2f1; }
.ga-panel .ga-pbody { padding: 8px 20px 16px; }
.ga-notice { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0;
  font-size: 14px; color: var(--ga-ink2); border-bottom: 1px solid #f8f5f4; }
.ga-notice:last-child { border-bottom: 0; }
.ga-notice a:hover { color: var(--ga-primary); }
.ga-notice em { font-style: normal; color: #baa6a3; font-size: 12.5px; flex: 0 0 auto; }

/* ── 공통 타이포/빈 상태 ── */
.ga-sectitle { display: flex; align-items: center; gap: 8px; margin: 22px 0 12px;
  font-size: 17px; font-weight: 800; letter-spacing: -.03em; color: var(--ga-ink); }
.ga-sectitle:before { content: ''; width: 3px; height: 16px; border-radius: 2px; background: var(--ga-primary); }
.ga-sectitle .ga-cnt { font-style: normal; font-size: 13.5px; font-weight: 800; color: var(--ga-primary); }
.ga-sectitle .ga-morelink { margin-left: auto; }
.ga-morelink { display: inline-block; font-size: 13.5px; font-weight: 700; color: var(--ga-primary); }
.ga-morelink:hover { text-decoration: underline; }
.ga-empty { padding: 52px 16px; text-align: center; color: #baa6a3; font-size: 14px; font-weight: 500;
  border: 1px dashed #f0e5e3; border-radius: 14px; background: #fefbfb; }
.ga-pagehead h1 { font-size: 26px; font-weight: 800; letter-spacing: -.04em; color: var(--ga-ink); }
.ga-pagehead p { margin-top: 7px; font-size: 14px; color: #937d7a; }
.ga-crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ga-mute); margin-bottom: 4px; }
.ga-crumb a { color: #7f6e6b; } .ga-crumb a:hover { color: var(--ga-primary); }
.ga-crumb b { color: var(--ga-ink); font-weight: 700; }
.ga-hubgrid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 8px; }
@media (max-width: 900px) { .ga-hubgrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 520px) { .ga-hubgrid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.ga-hubgrid a { display: flex; align-items: center; justify-content: center; height: 46px;
  border: 1px solid var(--ga-line); border-radius: 11px; font-size: 13.5px; font-weight: 700; color: #614d4a; background: #fff; }
.ga-hubgrid a:hover, .ga-hubgrid a.on { border-color: var(--ga-primary); color: var(--ga-primary); background: #fff5f4; }
.ga-hubnote { margin-top: 14px; padding: 15px 18px; border-radius: 12px; background: #fcf9f8; border: 1px solid #f5efee; }
.ga-hubnote p { font-size: 13px; color: var(--ga-mute); line-height: 1.75; }
.ga-hubnote-sm { margin-top: 12px; font-size: 12.5px; color: #baa6a3; line-height: 1.7; }

/* ═══ 업소 카드 — 아웃라인 + 입체감 + 컬러 포인트 ═══ */
.ga-shopgrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 1200px) { .ga-shopgrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 820px)  { .ga-shopgrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; } }
/* ★2026-08-20 사용자 상시 지시(모바일 카드=가로 2개씩) — 420px 밑에서 1열로 무너지던 것을 2열 유지로 고침 */
@media (max-width: 420px)  { .ga-shopgrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; } }

.ga-shop { display: block; background: #fff; border: 1px solid #f2e8e6; border-radius: 16px; padding: 10px 10px 4px;
  box-shadow: 0 2px 4px rgba(40,19,16,.05), 0 10px 26px rgba(40,19,16,.07);
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .18s, border-color .18s; }
.ga-shop:hover { transform: translateY(-5px); border-color: #fcc4bb;
  box-shadow: 0 4px 10px rgba(253,84,58,.1), 0 20px 40px rgba(40,19,16,.14); }

.ga-shop-thumb { position: relative; aspect-ratio: 1/1; border-radius: 11px; overflow: hidden; background: #f5efee; }
.ga-shop-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.ga-shop:hover .ga-shop-thumb img { transform: scale(1.06); }
.ga-shop-thumb:after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(39,20,17,.18)); pointer-events: none; }
.ga-noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.ga-noimg.t0 { background: linear-gradient(135deg,#f68e7e,#d96a59); } .ga-noimg.t1 { background: linear-gradient(135deg,#68d391,#38a169); }
.ga-noimg.t2 { background: linear-gradient(135deg,#f6ad55,#dd6b20); } .ga-noimg.t3 { background: linear-gradient(135deg,#fc8181,#e53e3e); }
.ga-noimg.t4 { background: linear-gradient(135deg,#f7bb76,#a05a09); } .ga-noimg.t5 { background: linear-gradient(135deg,#fbc4bb,#d66959); }
.ga-pick { position: absolute; top: 9px; left: 9px; z-index: 2; font-style: normal; font-size: 11px; font-weight: 800;
  padding: 4px 9px; border-radius: 999px; background: rgba(253,84,58,.95); color: #fff; }

.ga-shop-b { padding: 13px 6px 12px; }
.ga-shop-b h4 { font-size: 15px; font-weight: 800; letter-spacing: -.03em; color: #45201b; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.ga-shop:hover .ga-shop-b h4 { color: var(--ga-primary); }
/* ★주소는 한 줄로만 — 원본이 지번+도로명+길찾기 안내가 뒤섞여 길어질 수 있어
   카드에서는 말줄임(ellipsis)으로 항상 한 줄만 깔끔하게 보여준다. 전체 주소는 상세페이지에서. */
.ga-shop-addr { margin-top: 5px; font-size: 12.5px; color: var(--ga-mute); line-height: 1.5;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ga-shop-sub { margin-top: 3px; font-size: 12.5px; color: #baa6a3; }
.ga-shop-before { margin-top: 10px; font-size: 12.5px; color: #cab9b6; }
.ga-shop-before del { text-decoration: line-through; }
.ga-shop-price { display: flex; align-items: baseline; gap: 3px; }
.ga-shop-price b { font-size: 17px; font-weight: 800; letter-spacing: -.04em; color: var(--ga-ink); }
.ga-rate { font-style: normal; font-size: 11.5px; font-weight: 800; color: #fff; background: var(--ga-accent);
  padding: 3px 7px; border-radius: 6px; }
.ga-shop-price .ga-unit { font-size: 12.5px; color: #ab9a98; font-weight: 600; }
.ga-shop-price .ga-soon, .ga-shop-b .ga-soon { font-size: 13.5px; color: #baa6a3; font-weight: 700; }
.ga-shop-b .ga-tel { margin-top: 8px; color: var(--ga-accent); font-weight: 800; }

/* ── 카드 하단: 코스 시간 칩 + 최저가(레퍼런스의 "베이직 코스 40분 / 120,000원" 배치) ── */
.ga-shop-foot { display: flex; align-items: baseline; gap: 8px; margin-top: 10px;
  padding-top: 10px; border-top: 1px solid var(--ga-line); }
.ga-shop-dur { font-size: 12px; font-weight: 700; color: var(--ga-primary); background: #fff0ee;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap; }

/* 이미지 위 코스 배지(스웨디시/아로마 등) — 좌하단, 실데이터 카테고리만 표기 */
.ga-shop-badge { position: absolute; left: 9px; bottom: 9px; z-index: 2; font-size: 11px; font-weight: 800;
  color: #fff; background: rgba(42,19,15,.62); backdrop-filter: blur(2px);
  padding: 4px 9px; border-radius: 999px; letter-spacing: -.01em; }

/* ═══ 업소 상세 ═══ */
.ga-detail { display: flex; flex-direction: column; padding-bottom: 24px; }
.ga-detail .ga-crumb { margin-bottom: 12px; }

.ga-hero { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(320px,.85fr); gap: 22px; align-items: start; }
@media (max-width: 960px) { .ga-hero { grid-template-columns: minmax(0, 1fr); gap: 16px; } }

.ga-gal { display: grid; grid-template-columns: 2fr 1fr; gap: 6px; border-radius: 14px; overflow: hidden; }
.ga-gal-main { position: relative; }
.ga-gal-main img { width: 100%; height: 320px; object-fit: cover; display: block; }
.ga-gal-sub { display: grid; grid-template-rows: 1fr 1fr; gap: 6px; }
.ga-gal-cell { position: relative; overflow: hidden; }
.ga-gal-cell img { width: 100%; height: 157px; object-fit: cover; display: block; }
.ga-gal-count { position: absolute; right: 10px; bottom: 10px; padding: 5px 10px; border-radius: 8px;
  background: rgba(39,20,17,.6); color: #fff; font-size: 11.5px; font-weight: 700; }
.ga-gal-more { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(39,20,17,.48); color: #fff; font-size: 19px; font-weight: 800; }
@media (max-width: 640px) {
  .ga-gal { grid-template-columns: minmax(0, 1fr); }
  .ga-gal-sub { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .ga-gal-main img { height: 230px; }
  .ga-gal-cell img { height: 118px; }
}

/* 요약 패널 */
.ga-sum { border: 1px solid var(--ga-line); border-radius: 16px; background: #fff; padding: 20px;
  position: sticky; top: 12px; box-shadow: 0 2px 4px rgba(40,19,16,.04), 0 12px 30px rgba(40,19,16,.07); }
.ga-sum-region { font-size: 12.5px; font-weight: 800; color: var(--ga-primary); letter-spacing: -.02em; }
.ga-sum h1 { font-size: 26px; font-weight: 800; letter-spacing: -.045em; color: var(--ga-ink); line-height: 1.28; margin: 7px 0 11px; }
.ga-sum-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.ga-badge { padding: 4px 10px; border-radius: 7px; font-size: 11.5px; font-weight: 800; letter-spacing: -.02em; }
.ga-badge.on { background: #e7f7ee; color: #0f7b43; }
.ga-badge.off { background: #f5f2f1; color: var(--ga-mute); }
.ga-badge.lite { background: var(--ga-soft); color: #846e6b; font-weight: 700; }

.ga-sum-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin: 16px 0;
  padding: 16px 18px; border-radius: 14px;
  background: linear-gradient(135deg, #281310, #39211d);
  box-shadow: 0 10px 24px rgba(40,19,16,.28); }
.ga-sum-price > span { font-size: 11.5px; font-weight: 800; color: #fea092; width: 100%; letter-spacing: .02em; }
.ga-sum-price del { font-size: 13px; color: rgba(255,255,255,.45); }
.ga-sum-price b { font-size: 27px; font-weight: 800; letter-spacing: -.05em; color: #fff; }
.ga-sum-price em { font-style: normal; font-size: 12px; color: rgba(255,255,255,.6); }

.ga-sum-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.ga-sum-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: #53403d; line-height: 1.55; }
.ga-sum-list em { display: block; font-style: normal; font-size: 12.5px; color: #ab9a98; margin-top: 2px; }
.ga-ic { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; background: #fff0ee; color: var(--ga-primary);
  display: flex; align-items: center; justify-content: center; }
.ga-ic svg { width: 15px; height: 15px; }

.ga-sum-cta { display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px; }
.ga-btn { display: flex; align-items: center; justify-content: center; height: 48px; border-radius: 12px;
  font-size: 15px; font-weight: 800; letter-spacing: -.03em; transition: .15s; }
.ga-btn.main { background: var(--ga-primary); color: #fff; box-shadow: 0 6px 16px rgba(253,84,58,.28); }
.ga-btn.main:hover { background: var(--ga-primary-d); box-shadow: 0 8px 20px rgba(253,84,58,.4); }
.ga-btn.ghost { background: #fff0ee; color: var(--ga-primary); }
.ga-btn.off { background: var(--ga-soft); color: #baa6a3; cursor: default; }

/* 탭 */
.ga-tabs { position: sticky; top: 0; z-index: 20; display: flex; gap: 2px; background: #fff;
  margin: 26px 0 16px; border-bottom: 1px solid var(--ga-line); }
.ga-tabs a { padding: 15px 22px; font-size: 15px; font-weight: 700; color: var(--ga-mute); letter-spacing: -.02em;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .15s; white-space: nowrap; }
.ga-tabs a b { font-weight: 800; color: #d3c5c3; margin-left: 3px; }
.ga-tabs a.on, .ga-tabs a:hover { color: var(--ga-ink); border-bottom-color: var(--ga-ink); }
.ga-tabs a.on b, .ga-tabs a:hover b { color: var(--ga-primary); }
@media (max-width: 640px) { .ga-tabs { overflow-x: auto; } .ga-tabs a { padding: 13px 14px; } }

/* 섹션 블록 */
.ga-detail .ga-block { border: 1px solid var(--ga-line); border-radius: 16px; background: #fff;
  padding: 22px 24px; margin-bottom: 14px; box-shadow: 0 1px 2px rgba(40,19,16,.04); }
@media (max-width: 600px) { .ga-detail .ga-block { padding: 18px 16px; } }
.ga-detail .ga-sectitle { margin: 0 0 14px; font-size: 16px; }
.ga-detail .ga-sectitle.mt { margin-top: 22px; }

/* 태그 */
.ga-tagrow { display: flex; flex-wrap: wrap; gap: 7px; }
.ga-tag { display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 9px;
  font-size: 13px; font-weight: 600; color: #614d4a; background: #f9f2f1; border: 1px solid #f2e6e4; }
.ga-tag.on { color: var(--ga-primary); background: #fff0ee; font-weight: 700; }
.ga-tag.sm { padding: 4px 10px; font-size: 12px; }
.ga-tag b { color: var(--ga-primary); font-weight: 800; }

/* 코스 */
.ga-course-g { display: inline-flex; align-items: center; padding: 6px 13px; border-radius: 999px;
  background: #fff0ee; color: var(--ga-primary); font-size: 12.5px; font-weight: 800; margin: 18px 0 10px; }
.ga-course-g:first-of-type { margin-top: 0; }
.ga-course-list { display: flex; flex-direction: column; gap: 8px; }
.ga-course { display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: 12px; border: 1px solid #f4e4e2;
  background: linear-gradient(135deg, #fff6f5, #faf0ee); transition: .15s; }
.ga-course:hover { border-color: #fbb3a8; background: #fff; box-shadow: 0 8px 20px rgba(253,84,58,.12); transform: translateY(-1px); }
.ga-course-l b { font-size: 14px; font-weight: 700; color: #3e2623; letter-spacing: -.02em; }
.ga-min { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 6px; background: #f5efee;
  font-size: 11.5px; font-weight: 700; color: #846e6b; }
.ga-course-r { display: flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.ga-course-r del { color: #cab9b6; font-size: 13px; }
.ga-course-r b { font-size: 19px; font-weight: 800; letter-spacing: -.04em; color: var(--ga-ink); }
.ga-off { font-style: normal; font-size: 11.5px; font-weight: 800; color: #fff; background: var(--ga-accent);
  padding: 3px 7px; border-radius: 6px; }

/* 관리사 */
.ga-stafflist { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
@media (max-width: 820px) { .ga-stafflist { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .ga-stafflist { grid-template-columns: minmax(0, 1fr); } }
.ga-staff { display: flex; gap: 12px; align-items: center; padding: 13px 15px; border: 1px solid #f4e4e2; border-radius: 12px; background: linear-gradient(135deg, #fff6f5, #faf0ee); }
.ga-staff-av { width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 14px; color: #fff; background: linear-gradient(135deg,#ff9a8a,#d96a59); }
.ga-staff b { font-size: 14px; color: #3e2623; }
.ga-staff p { font-size: 12px; color: #ab9a98; margin-top: 2px; }

/* 리뷰 */
.ga-review { padding: 15px 0; border-bottom: 1px solid #f6f2f1; }
.ga-review:last-of-type { border-bottom: 0; }
.ga-review-h { display: flex; gap: 9px; align-items: center; font-size: 12.5px; color: #ab9a98; margin-bottom: 6px; }
.ga-review-h b { color: #3e2623; font-size: 13.5px; }
.ga-star { color: #f5a623; font-weight: 800; }
.ga-review p { font-size: 14px; color: var(--ga-ink2); line-height: 1.7; }

/* 정보 */
.ga-infobox { padding: 16px 18px; border-radius: 12px; background: #fcf9f8; margin-bottom: 9px; }
.ga-infobox h4 { font-size: 12.5px; font-weight: 800; color: var(--ga-primary); margin-bottom: 8px; }
.ga-infobox.warn { background: #fff8f8; }
.ga-infobox.warn h4 { color: #e5484d; }
.ga-infobox p { font-size: 13.5px; color: #614d4a; line-height: 1.8; }
.ga-reportbar { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 13px 17px;
  margin-top: 9px; border: 1px solid #f5efee; border-radius: 12px; font-size: 13px; color: #846e6b; }
.ga-reportbar a { color: var(--ga-primary); font-weight: 700; }
.ga-reportbar.warn { background: #fffdf4; border-color: #f2e8c4; }

/* 기타 상세 요소 */
.ga-tel-link { color: var(--ga-accent); font-weight: 800; font-size: 16px; }
.ga-nopartner { color: #baa6a3; font-weight: 700; }
.ga-facts { list-style: none; display: flex; flex-direction: column; }
.ga-facts li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ga-ink2);
  line-height: 1.6; padding: 13px 0; border-bottom: 1px solid #f7f4f3; }
.ga-facts li:last-child { border-bottom: 0; }
.ga-facts i { font-style: normal; flex: 0 0 22px; font-size: 15px; opacity: .85; }
.ga-shop-title { font-size: 27px; font-weight: 800; letter-spacing: -.04em; color: var(--ga-ink); margin: 20px 0 8px; }
.ga-shop-meta { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; font-size: 13px; color: #846e6b; margin-bottom: 6px; }
.ga-shop-meta b { color: var(--ga-ink); font-weight: 800; }

/* 하단 고정 예약 바 — 모바일 전용 */
.ga-cta { display: none; }
@media (max-width: 960px) {
  .ga-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-top: 1px solid #efe7e6;
    box-shadow: 0 -4px 20px rgba(40,19,16,.08); }
  .ga-cta-in { display: flex; gap: 8px; padding: 10px 14px; }
  .ga-cta-name { display: none; }
  .ga-cta-btn { flex: 1; text-align: center; padding: 14px 10px; border-radius: 12px; font-size: 15px; font-weight: 800; }
  .ga-cta-btn.main { background: var(--ga-primary); color: #fff; }
  .ga-cta-btn.ghost { background: #fff0ee; color: var(--ga-primary); }
  .ga-cta-btn.disabled { background: var(--ga-soft); color: #baa6a3; }
  .ga-detail { padding-bottom: 80px; }
}

/* ── SEO 최적화 푸터 (사일로 내비 + 사업자/연락처) ── */
.ga-foot { border-top: 1px solid var(--ga-line); background: #faf7f7; margin-top: 40px; }
.ga-foot .ga-wrap { padding: 36px 12px 30px; }
.ga-foot-top { display: grid; grid-template-columns: 1.7fr 1.1fr 1fr 1fr 1fr; gap: 26px; }
.ga-foot-logo { font-size: 19px; font-weight: 900; letter-spacing: -.02em; color: #301d1a; }
.ga-foot-desc { font-size: 12.5px; color: #927e7b; line-height: 1.72; margin: 11px 0 15px; max-width: 320px; }
.ga-foot-tel { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: #6c5855; font-weight: 700; }
.ga-foot-tel strong { color: var(--ga-primary); font-size: 14.5px; letter-spacing: -.01em; }
.ga-foot-col h3 { font-size: 13px; font-weight: 800; color: #513d3a; margin: 0 0 13px; }
.ga-foot-col ul { list-style: none; margin: 0; padding: 0; }
.ga-foot-col li { margin-bottom: 8px; }
.ga-foot-col a { font-size: 12.5px; color: #816e6b; font-weight: 500; }
.ga-foot-col a:hover { color: var(--ga-primary); }
.ga-foot-col a strong { font-weight: 700; }
.ga-foot-col a.more { color: #b09d9a; font-weight: 700; }
.ga-foot-col.geo ul { column-count: 2; column-gap: 16px; }
.ga-foot-col.geo li { break-inside: avoid; }
.ga-foot-col.geo li:last-child { column-span: all; margin-top: 2px; }
.ga-foot-bottom { border-top: 1px solid var(--ga-line); margin-top: 28px; padding-top: 20px; }
.ga-foot-org { font-style: normal; display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; font-size: 12.5px; color: #6c5855; margin-bottom: 11px; }
.ga-foot-org strong { font-weight: 800; color: #513d3a; }
.ga-foot-org b { font-weight: 700; color: #a18d8a; margin-right: 2px; }
.ga-foot-org a { color: #6c5855; font-weight: 600; }
.ga-foot-org a:hover { color: var(--ga-primary); }
.ga-foot-note { font-size: 12px; color: #a08b88; line-height: 1.75; margin: 0 0 10px; }
.ga-foot-copy { font-size: 12px; color: #b09d9a; margin: 0; }
@media (max-width: 900px) {
  .ga-foot-top { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .ga-foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .ga-foot .ga-wrap { padding: 28px 14px 26px; }
  .ga-foot-top { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .ga-foot-col.geo ul { column-count: 2; }
}

/* ── 정보 탭 본문 시인성 ── */
.ga-infobox p { margin: 0 0 10px; }
.ga-infobox p:last-child { margin-bottom: 0; }
.ga-infobox p br { content: ''; display: block; margin-top: 7px; }
.ga-infolist { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; }
.ga-infolist li { position: relative; padding-left: 22px; font-size: 13.5px; color: #614d4a; line-height: 1.65; }
.ga-infolist li:before { content: '✓'; position: absolute; left: 2px; top: 0;
  font-size: 12px; font-weight: 800; color: var(--ga-primary); }
.ga-infobox.warn .ga-infolist li:before { content: '!'; color: #e5484d; }

/* ── FAQ 아코디언 ── */
.ga-faq { display: flex; flex-direction: column; gap: 8px; }
.ga-faq details { border: 1px solid #f4e4e2; border-radius: 12px; background: linear-gradient(135deg, #fff6f5, #faf0ee); overflow: hidden; }
.ga-faq details[open] { background: #fff; border-color: #fbb3a8; box-shadow: 0 6px 16px rgba(253,84,58,.1); }
.ga-faq summary { display: flex; align-items: center; gap: 10px; padding: 14px 17px; cursor: pointer;
  font-size: 14px; font-weight: 700; color: #3e2623; letter-spacing: -.02em; list-style: none; }
.ga-faq summary::-webkit-details-marker { display: none; }
.ga-faq summary:before { content: 'Q'; flex: 0 0 24px; height: 24px; border-radius: 8px; background: var(--ga-primary);
  color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.ga-faq details p { padding: 0 17px 15px 51px; font-size: 13.5px; color: #614d4a; line-height: 1.75; }

/* ── 신청 폼 (제휴·업체 등록) ────────────────────────────────
   라벨 좌 / 입력 우 2단. 좁아지면 세로로 쌓는다. */
.ga-form { border: 1px solid var(--ga-line); border-radius: 16px; background: #fff; padding: 26px 26px 30px;
  box-shadow: 0 1px 2px rgba(40,19,16,.05), 0 14px 30px -22px rgba(58,21,15,.5); }
.ga-form-lead { font-size: 13px; color: #937d7a; padding-bottom: 16px; border-bottom: 1px solid var(--ga-line); }
.ga-form-lead em, .ga-flabel em { font-style: normal; color: #e5484d; font-weight: 700; }

.ga-frow { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 18px;
  align-items: start; padding: 18px 0; border-bottom: 1px solid #f7f2f1; }
.ga-frow:last-of-type { border-bottom: 0; }
.ga-flabel { display: block; padding-top: 11px; font-size: 14px; font-weight: 700; color: var(--ga-ink); letter-spacing: -.02em; }
.ga-flabel small { display: block; margin-top: 3px; font-size: 11px; font-weight: 500; color: var(--ga-mute); }
.ga-fbody { min-width: 0; }
.ga-fcol2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ga-ftime { margin-top: 10px; }

.ga-form input[type=text], .ga-form input[type=tel], .ga-form select, .ga-form textarea {
  width: 100%; height: 46px; padding: 0 13px; border: 1px solid #eadfdd; border-radius: 10px;
  font-size: 14px; font-family: inherit; color: var(--ga-ink); background: #fff;
  transition: border-color .13s, box-shadow .13s;
}
.ga-form textarea { height: auto; padding: 12px 13px; line-height: 1.6; resize: vertical; }
.ga-form input:focus, .ga-form select:focus, .ga-form textarea:focus {
  outline: 0; border-color: var(--ga-primary); box-shadow: 0 0 0 3px rgba(253,84,58,.16);
}
.ga-form select:disabled { background: #f8f5f4; color: #bdacaa; }
.ga-form ::placeholder { color: #c6b6b4; }

.ga-ftel { display: flex; align-items: center; gap: 8px; }
.ga-ftel span { color: #d2c4c2; }

/* 버튼식 선택 — 라디오/체크박스를 칩으로 */
.ga-chips { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.ga-chip { position: relative; }
.ga-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.ga-chip span {
  display: inline-flex; align-items: center; height: 42px; padding: 0 17px; border-radius: 999px;
  border: 1px solid #eadfdd; background: #fff; font-size: 13.5px; font-weight: 600; color: #6f5d5a;
  cursor: pointer; transition: .14s; user-select: none;
}
.ga-chip span:hover { border-color: #e6bfb9; background: #fff8f7; }
.ga-chip input:checked + span {
  color: #fff; border-color: transparent; font-weight: 700;
  background: linear-gradient(135deg, #ff6f59, #ed3e23);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 6px 14px -6px rgba(235,63,37,.7);
}
.ga-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(253,84,58,.3); }

.ga-check { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; cursor: pointer; font-size: 13.5px; color: #5c4845; }
.ga-check-inline { margin: 0 0 4px; }
.ga-check input { width: 18px; height: 18px; accent-color: var(--ga-primary); cursor: pointer; }
.ga-check em { font-style: normal; color: #e5484d; font-weight: 700; }

.ga-terms { max-height: 150px; overflow-y: auto; padding: 14px 16px; border: 1px solid #efe5e4;
  border-radius: 10px; background: #fdfafa; font-size: 12.5px; line-height: 1.75; color: #6f5d5a; }
.ga-terms strong { display: block; margin-bottom: 7px; color: var(--ga-ink); font-size: 13px; }
.ga-terms ul { margin: 0 0 8px; padding-left: 16px; list-style: disc; }
.ga-terms b { color: #53403d; }

.ga-frow.bad input, .ga-frow.bad select, .ga-frow.bad textarea { border-color: #e5484d; background: #fffafa; }
.ga-formerr-top { border: 1px solid #f3c2c4; background: #fff5f5; color: #b42318; border-radius: 12px;
  padding: 14px 16px; font-size: 13.5px; }
.ga-formerr-top ul { margin: 6px 0 0; padding-left: 17px; list-style: disc; }

.ga-fsubmit { padding-top: 24px; text-align: center; }
.ga-fsubmit p { margin-top: 11px; font-size: 12.5px; color: var(--ga-mute); }
.ga-btn-primary { display: inline-flex; align-items: center; justify-content: center; height: 48px;
  padding: 0 26px; border: 0; border-radius: 11px; font-size: 15px; font-weight: 700; color: #fff;
  font-family: inherit; cursor: pointer; letter-spacing: -.02em;
  background: linear-gradient(135deg, #ff6f59, #ed3e23);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 18px -8px rgba(235,63,37,.8);
  transition: transform .14s ease, box-shadow .14s ease; }
.ga-btn-primary:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 12px 24px -10px rgba(235,63,37,.9); }
.ga-btn-lg { height: 54px; min-width: 230px; font-size: 16px; }
.ga-btn-ghost { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px;
  border: 1px solid #eadfdd; border-radius: 11px; font-size: 15px; font-weight: 700; color: #6f5d5a; background: #fff; }
.ga-btn-ghost:hover { border-color: #e6bfb9; background: #fff8f7; }

/* 허니팟은 보이지도, 읽히지도 않게 */
.ga-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 접수 완료 */
.ga-formdone { text-align: center; padding: 46px 20px 50px; }
.ga-formdone-ico { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; color: #fff; font-size: 25px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #d38934, #94550d);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 10px 22px -10px rgba(13,148,136,.85); }
.ga-formdone h2 { font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.ga-formdone p { margin-top: 10px; font-size: 14px; color: #836e6b; line-height: 1.7; }
.ga-formdone-btns { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }

@media (max-width: 760px) {
  .ga-form { padding: 18px 16px 24px; border-radius: 14px; }
  .ga-frow { grid-template-columns: minmax(0, 1fr); gap: 9px; padding: 15px 0; }
  .ga-flabel { padding-top: 0; }
  .ga-btn-lg { width: 100%; min-width: 0; }
  .ga-formdone-btns { flex-direction: column; }
}
@media (hover: none) { .ga-btn-primary:hover { transform: none; } }

/* ── 매거진(블로그) 갤러리 ────────────────────────────────────
   그누보드 gallery 스킨 마크업(#bo_gall .gall_box)을 매거진 카드 그리드로 덮는다.
   스킨 파일을 갈아엎지 않고 CSS 로만 바꿔 업그레이드 시 충돌을 줄인다. */
#bo_gall #gall_ul { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; list-style: none; padding: 0; margin: 20px 0 0; }
#bo_gall .gall_li, #bo_gall #gall_ul > li { width: auto !important; float: none !important; margin: 0 !important; padding: 0 !important; }
#bo_gall .gall_box { border: 1px solid var(--ga-line); border-radius: 16px; background: #fff; overflow: hidden; height: 100%;
  display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(40,19,16,.05), 0 14px 28px -22px rgba(58,21,15,.55);
  transition: transform .18s ease, box-shadow .18s ease; }
#bo_gall .gall_box:hover { transform: translateY(-3px); box-shadow: 0 2px 5px rgba(40,19,16,.07), 0 22px 38px -20px rgba(58,21,15,.7); }
#bo_gall .gall_chk { display: none; }
#bo_gall .gall_con { display: flex; flex-direction: column; flex: 1; }
#bo_gall .gall_img { height: 200px !important; max-height: 200px !important; overflow: hidden; background: var(--ga-soft); }
#bo_gall .gall_img a { display: block; height: 100%; }
#bo_gall .gall_img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
#bo_gall .gall_box:hover .gall_img img { transform: scale(1.04); }
#bo_gall .gall_img .no_image { display: flex; align-items: center; justify-content: center; height: 100%; color: #c6b6b4; font-size: 13px; }
#bo_gall .gall_text_href { padding: 16px 17px 17px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
#bo_gall .bo_cate_link { align-self: flex-start; padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700;
  color: #ed3e23; background: rgba(235,63,37,.09); border: 0; }
#bo_gall .bo_tit { font-size: 15.5px; font-weight: 700; line-height: 1.45; letter-spacing: -.03em; color: var(--ga-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
#bo_gall .gall_box:hover .bo_tit { color: var(--ga-primary); }
#bo_gall .new_icon { display: inline-block; margin-left: 5px; padding: 1px 6px; border-radius: 5px; background: #e5484d; color: #fff; font-size: 10px; vertical-align: middle; }
/* 카드 메타 — 날짜 · 읽기 시간만. 구분선을 빼고 여백으로만 분리해 가볍게 보이게 한다.
   (작성자·조회수·아이콘을 걷어낸 이유는 list.skin.php 주석 참고) */
#bo_gall .gall_info { margin-top: auto; padding-top: 12px; font-size: 12px; color: var(--ga-mute);
  letter-spacing: .01em; display: flex; align-items: center; gap: 7px; }
#bo_gall .gall_info time { font-variant-numeric: tabular-nums; }
#bo_gall .gall_info .ga-dot { color: #e2d6d4; }
#bo_gall .gall_info .ga-read { color: var(--ga-mute); }
#bo_gall .gall_info .sound_only { position: absolute; left: -9999px; }
#bo_gall .empty_list { grid-column: 1/-1; padding: 60px 0; text-align: center; color: #a38d8a; }
#bo_gall #bo_cate { margin-top: 4px; }
#bo_gall #bo_cate_ul { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; padding: 0; }
#bo_gall #bo_cate_ul li { float: none; }
#bo_gall #bo_cate_ul a { display: inline-flex; align-items: center; height: 38px; padding: 0 15px; border-radius: 999px;
  border: 1px solid #eadfdd; background: #fff; font-size: 13px; font-weight: 600; color: #6f5d5a; }
#bo_gall #bo_cate_ul a:hover { border-color: #e6bfb9; background: #fff8f7; }
#bo_gall #bo_cate_ul a.bo_cate_on { color: #fff; border-color: transparent; font-weight: 700;
  background: linear-gradient(135deg, #ff6f59, #ed3e23); box-shadow: 0 6px 14px -6px rgba(235,63,37,.7); }
#bo_gall #bo_cate h2 { position: absolute; left: -9999px; }
@media (max-width: 1024px) { #bo_gall #gall_ul { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { #bo_gall #gall_ul { grid-template-columns: minmax(0, 1fr); gap: 14px; } #bo_gall .gall_img { height: 190px !important; max-height: 190px !important; } }
@media (hover: none) { #bo_gall .gall_box:hover { transform: none; } #bo_gall .gall_box:hover .gall_img img { transform: none; } }

/* ── 매거진 본문(읽기) ── */
.ga-post { max-width: 820px; margin: 0 auto; }
.ga-post .ga-fig { margin: 26px 0; }
.ga-post .ga-fig img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 12px 26px -18px rgba(58,21,15,.7); }
.ga-post .ga-cap { margin-top: 8px; font-size: 12.5px; color: var(--ga-mute); text-align: center; }
/* 그누보드 갤러리 스킨이 붙이는 float/폭 클래스를 무력화 (그리드가 1열로 무너지는 원인) */
#bo_gall .gall_li, #bo_gall li[class*="col-gn-"] { width: auto !important; float: none !important; margin: 0 !important; }
#bo_gall .gall_row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; list-style: none; padding: 0; margin: 20px 0 0; }
#bo_gall .box_clear { clear: none !important; }
@media (max-width: 1024px) { #bo_gall .gall_row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px)  { #bo_gall .gall_row { grid-template-columns: minmax(0, 1fr); gap: 14px; } }
/* 매거진 상세: 첨부 이미지 자동 출력 숨김.
   ★썸네일 첨부는 목록 카드용으로 필요하지만, 본문 맨 위 히어로와 같은 사진이라
     그대로 두면 같은 이미지·같은 alt 가 한 페이지에 두 번 나온다. */
#bo_v_img { display: none; }

/* ── 매거진 읽기 화면 ────────────────────────────────────────
   시인성·가독성 우선. 본문 폭을 제한하고(한 줄 45~50자) 행간을 넓혀
   긴 글을 끝까지 읽을 수 있게 만든다. */
#bo_v { max-width: 820px; margin: 0 auto; padding: 0; border: 0; background: none; }
#bo_v > header { padding: 8px 0 22px; border-bottom: 1px solid var(--ga-line); margin-bottom: 28px; }
#bo_v .bo_v_cate { display: inline-block; margin-bottom: 12px; padding: 5px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: #fff; background: linear-gradient(135deg,#ff6f59,#ed3e23);
  box-shadow: 0 5px 12px -6px rgba(235,63,37,.8); }
#bo_v h1#bo_v_title { font-size: 32px; line-height: 1.34; font-weight: 800; letter-spacing: -.035em;
  color: var(--ga-ink); margin: 0; }
#bo_v h1#bo_v_title .bo_v_tit { font-size: inherit; font-weight: inherit; }
.ga-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px;
  font-size: 13px; color: var(--ga-mute); }
.ga-byline .ga-by-name { font-weight: 700; color: var(--ga-ink2); }
.ga-byline time:before { content: '·'; margin-right: 10px; color: #dacdcb; }
.ga-byline .ga-by-policy { margin-left: auto; color: var(--ga-primary); font-weight: 600; }
.ga-byline .ga-by-policy:hover { text-decoration: underline; }

/* 그누보드 기본 정보 블록 정리 */
#bo_v_info, #bo_v_share, #bo_v_top, #bo_v_nb, #bo_v .bo_v_left, #bo_v .bo_v_right { display: none; }
#bo_v_atc { padding: 0; min-height: 0; }
#bo_v_atc_title { position: absolute; left: -9999px; }

/* 본문 타이포그래피 */
#bo_v_con { font-size: 17px; line-height: 1.85; color: #42312f; letter-spacing: -.01em; word-break: keep-all; }
#bo_v_con p { margin: 0 0 20px; }
#bo_v_con h2 { margin: 46px 0 16px; font-size: 22.5px; font-weight: 800; letter-spacing: -.03em;
  color: var(--ga-ink); line-height: 1.4; padding-left: 14px; border-left: 4px solid var(--ga-primary); }
#bo_v_con h3 { margin: 30px 0 12px; font-size: 18px; font-weight: 700; color: var(--ga-ink); letter-spacing: -.02em; }
#bo_v_con ul, #bo_v_con ol { margin: 0 0 22px; padding-left: 22px; }
#bo_v_con ul { list-style: disc; }
#bo_v_con ol { list-style: decimal; }
#bo_v_con li { margin-bottom: 9px; padding-left: 3px; }
#bo_v_con li::marker { color: var(--ga-primary); }
#bo_v_con strong { font-weight: 700; color: var(--ga-ink); }
#bo_v_con a { color: var(--ga-primary); font-weight: 600; text-decoration: underline;
  text-decoration-color: rgba(253,84,58,.35); text-underline-offset: 3px; }
#bo_v_con a:hover { text-decoration-color: var(--ga-primary); background: rgba(253,84,58,.07); }
#bo_v_con blockquote { margin: 26px 0; padding: 18px 22px; border-radius: 12px;
  background: linear-gradient(135deg,#fff5f4,#fff0ee); border-left: 4px solid #ff9e8f; color: #5a3b37; }
#bo_v_con blockquote p:last-child { margin: 0; }
#bo_v_con .ga-fig { margin: 30px 0; }
#bo_v_con .ga-fig img { width: 100%; height: auto; border-radius: 14px; display: block;
  box-shadow: 0 14px 30px -20px rgba(58,21,15,.8); }

/* 하단 내부링크 블록 */
.ga-postrel { margin-top: 46px; padding: 26px 26px 22px; border-radius: 16px;
  background: linear-gradient(135deg,#fcf8f7,#faf0ee); border: 1px solid var(--ga-line); }
.ga-postrel h2 { margin: 0 0 14px; padding: 0 0 0 11px; border: 0; border-left: 3px solid var(--ga-primary);
  font-size: 16px; font-weight: 800; line-height: 1.2; letter-spacing: -.03em; color: var(--ga-ink); }
.ga-postrel h3 { margin: 26px 0 12px; padding: 0 0 0 11px; border-left: 3px solid #f0d3cf;
  font-size: 14px; font-weight: 800; line-height: 1.2; letter-spacing: -.03em; color: var(--ga-ink2); }
.ga-postrel h2 + ul { margin-bottom: 22px; }

/* 관련 글 카드 그리드 */
.ga-relgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ga-relcard { display: block; background: #fff; border: 1px solid var(--ga-line); border-radius: 13px;
  overflow: hidden; text-decoration: none; transition: transform .16s, box-shadow .16s, border-color .16s; }
.ga-relcard:hover { transform: translateY(-3px); border-color: #fcc1b8;
  box-shadow: 0 12px 24px -14px rgba(58,21,15,.5); }
.ga-relthumb { display: block; position: relative; aspect-ratio: 3/2; background: #f7efee; overflow: hidden; }
.ga-relthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ga-relcard:hover .ga-relthumb img { transform: scale(1.04); }
.ga-relthumb img { transition: transform .3s; }
.ga-relnoimg { position: absolute; inset: 0; background: linear-gradient(135deg,#f7eae8,#f2dedb); }
.ga-relbody { display: block; padding: 10px 12px 13px; }
.ga-relcat { display: inline-flex; align-items: center; gap: 4px; margin-bottom: 5px;
  font-size: 11.5px; font-weight: 700; color: var(--ga-primary); }
.ga-relcat svg { width: 13px; height: 13px; flex: none; }
.ga-relcard b { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 13.5px; font-weight: 700; line-height: 1.45; letter-spacing: -.02em;
  color: var(--ga-ink); word-break: keep-all; }
.ga-relcard:hover b { color: var(--ga-primary-d); }

/* 관련 매장 */
.ga-postrel ul.ga-relshop { margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ga-postrel ul.ga-relshop li { margin: 0; padding: 0; }
.ga-postrel ul.ga-relshop li:before { display: none; }
.ga-postrel ul.ga-relshop li a { display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--ga-line);
  font-size: 13px; font-weight: 700; color: var(--ga-ink2); }
.ga-postrel ul.ga-relshop li a:hover { border-color: var(--ga-primary); color: var(--ga-primary); text-decoration: none; }
.ga-postrel ul.ga-relshop li a span { margin-left: 0; font-size: 12px; font-weight: 500; color: var(--ga-mute); }

@media (max-width: 900px) { .ga-relgrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .ga-relgrid { grid-template-columns: 1fr 1fr; gap: 10px; } }
.ga-postrel ul { margin: 0 0 18px; padding: 0; list-style: none; }
.ga-postrel li { margin-bottom: 8px; padding-left: 16px; position: relative; }
.ga-postrel li:before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--ga-primary); }
.ga-postrel li a { color: var(--ga-ink2); font-weight: 600; text-decoration: none; }
.ga-postrel li a:hover { color: var(--ga-primary); text-decoration: underline; }
.ga-postrel li span { margin-left: 6px; font-size: 12.5px; color: var(--ga-mute); font-weight: 500; }
.ga-postrel > p { margin: 0; padding-top: 14px; border-top: 1px solid #f0e5e3; font-size: 13px; color: var(--ga-mute); }
.ga-postrel > p a { color: var(--ga-primary); font-weight: 600; }

/* 목차 */
.ga-toc { margin: 0 0 34px; padding: 18px 22px; border-radius: 14px; background: #fff;
  border: 1px solid var(--ga-line); box-shadow: 0 1px 2px rgba(40,19,16,.05); }
.ga-toc strong { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 800;
  letter-spacing: -.02em; color: var(--ga-ink); }
.ga-toc ol { margin: 0; padding-left: 20px; list-style: decimal; }
.ga-toc li { margin-bottom: 6px; }
.ga-toc a { font-size: 14px; color: #6d5855; text-decoration: none; }
.ga-toc a:hover { color: var(--ga-primary); text-decoration: underline; }

@media (max-width: 760px) {
  #bo_v h1#bo_v_title { font-size: 24px; }
  #bo_v_con { font-size: 16px; line-height: 1.8; }
  #bo_v_con h2 { font-size: 19.5px; margin: 36px 0 14px; }
  .ga-postrel { padding: 20px 18px 18px; }
  .ga-byline .ga-by-policy { margin-left: 0; width: 100%; }
}

/* 프로그램 페이지 — 지역으로 추리기 칩 */
.ga-carereg { margin: 22px 0 6px; padding: 16px 18px 14px; border-radius: 14px; background: #fff;
  border: 1px solid var(--ga-line); box-shadow: 0 1px 2px rgba(40,19,16,.05); }
.ga-carereg > b { display: block; margin-bottom: 11px; font-size: 13px; font-weight: 800;
  letter-spacing: -.02em; color: var(--ga-ink2); }
.ga-regchips { display: flex; flex-wrap: wrap; gap: 7px; }
.ga-regchips a { display: inline-flex; align-items: center; gap: 5px; padding: 7px 13px;
  border-radius: 999px; border: 1px solid var(--ga-line); background: #fcf9f8;
  font-size: 13px; font-weight: 700; color: var(--ga-ink2); text-decoration: none;
  transition: background .15s, border-color .15s, color .15s; }
.ga-regchips a:hover { border-color: #f6a89c; background: #fff; color: var(--ga-primary); }
.ga-regchips a.on { background: linear-gradient(135deg,#ff6f59,#ed3e23); border-color: transparent; color: #fff; }
.ga-regchips a em { font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--ga-mute); }
.ga-regchips a.on em { color: rgba(255,255,255,.82); }
.ga-regchips a:hover em { color: var(--ga-primary); }
@media (max-width: 600px) { .ga-carereg { padding: 14px 14px 12px; } .ga-regchips a { padding: 6px 11px; font-size: 12.5px; } }
.ga-morehint { margin: 14px 0 0; padding: 12px 16px; border-radius: 11px; background: #fbf5f4;
  border: 1px solid var(--ga-line); font-size: 13px; color: var(--ga-mute); }

/* ── 지역 시세 비교 ─────────────────────────────────────────────
   가짜 원가/할인율 대신 실제 등록 가격에서 계산한 중앙값을 보여준다.
   유리할 때만 노출하면 체리피킹이라 항상 표시하고, 배지만 조건부. */
.ga-pricestat { margin-top: 18px; padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--ga-line); background: var(--ga-soft); }
.ga-pricestat.is-cheap { border-color: #ffd5cf; background: #fff6f5; }
.ga-pricestat-h { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ga-pricestat-h b { font-size: 14px; color: var(--ga-ink); }
.ga-pricebadge { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; color: #fff; background: var(--ga-primary); }
.ga-pricestat-p { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ga-ink2); }
.ga-pricebar { margin: 10px 0 8px; }
.ga-pricebar-t { font-size: 12.5px; color: var(--ga-ink2); font-weight: 600; }
.ga-pricebar-t em { font-style: normal; font-weight: 400; color: var(--ga-mute); }
.ga-pricenote { margin: 0; font-size: 11.5px; line-height: 1.65; color: var(--ga-mute); }
@media (max-width: 600px) {
  .ga-pricestat { padding: 14px; }
  .ga-pricestat-h { flex-wrap: wrap; }
}

/* ── 지역 심화 콘텐츠(시군구) ───────────────────────────────
   전부 등록 데이터 집계값. 동·역은 페이지가 없으므로 링크가 아닌 칩으로만 표시한다. */
.ga-riwrap { border: 1px solid var(--ga-line); border-radius: 14px; background: #fff;
  padding: 18px 20px; margin-bottom: 14px; }
.ga-riwrap p { margin: 0 0 10px; font-size: 14px; line-height: 1.8; color: var(--ga-ink2); }
.ga-riwrap p:last-child { margin-bottom: 0; }
.ga-riwrap b { color: var(--ga-ink); font-weight: 700; }
.ga-rilead { font-size: 14.5px !important; }
.ga-rinote { font-size: 12px !important; color: var(--ga-mute) !important; }
.ga-richips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ga-richip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px;
  border-radius: 999px; border: 1px solid var(--ga-line); background: var(--ga-soft);
  font-size: 13px; color: var(--ga-ink2); }
.ga-richip em { font-style: normal; font-weight: 700; font-size: 12px; color: var(--ga-primary); }
a.ga-richip.is-link { text-decoration: none; transition: border-color .15s, background .15s; }
a.ga-richip.is-link:hover { border-color: var(--ga-primary); background: #fff6f5; }
.ga-rifaq { display: grid; gap: 10px; margin-bottom: 14px; }
.ga-rifaq-i { border: 1px solid var(--ga-line); border-radius: 14px; background: #fff; padding: 16px 20px; }
.ga-rifaq-i h3 { margin: 0 0 7px; font-size: 14px; color: var(--ga-ink); font-weight: 700; }
.ga-rifaq-i p { margin: 0; font-size: 13.5px; line-height: 1.8; color: var(--ga-ink2); }
@media (max-width: 600px) { .ga-riwrap, .ga-rifaq-i { padding: 15px 16px; } }
/* 인접 지역 칩의 업소 수 */
.ga-hubgrid a em { font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--ga-primary); margin-left: 3px; }

/* 매거진 카드 — 요약을 2줄로 고정해 카드 높이를 맞춘다.
   (요약 길이가 제각각이라 메타 줄 위치가 카드마다 달라 지저분해 보였다) */
#bo_gall .gall_text_href { display: flex; flex-direction: column; }
#bo_gall .bo_cnt { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; font-size: 13px; line-height: 1.65; color: var(--ga-ink2);
  min-height: calc(13px * 1.65 * 2); margin-top: 6px; }

/* ── 후기 작성 폼 (/heal/{id}/review) ───────────────────── */
.ga-rvform .ga-block { margin-bottom: 14px; }
.ga-rvform textarea, .ga-rvform input[type=text] {
  width: 100%; border: 1px solid var(--ga-line); border-radius: 10px; padding: 13px 14px;
  font-size: 14px; line-height: 1.7; color: var(--ga-ink); background: #fff;
  font-family: inherit; box-sizing: border-box; }
.ga-rvform textarea:focus, .ga-rvform input[type=text]:focus {
  outline: none; border-color: var(--ga-primary); box-shadow: 0 0 0 3px rgba(253,84,58,.12); }
.ga-rvnote { margin: 8px 0 0; font-size: 12px; color: var(--ga-mute); }

/* 별점 — 5→1 순서로 두고 방향을 뒤집어, 앞쪽 별에 hover 시 함께 칠해지게 한다 */
.ga-stars { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.ga-stars input { position: absolute; opacity: 0; width: 0; height: 0; }
.ga-stars label { font-size: 34px; line-height: 1; color: #eae0df; cursor: pointer; transition: color .12s; }
.ga-stars label:hover, .ga-stars label:hover ~ label,
.ga-stars input:checked ~ label { color: #ffb400; }
.ga-stars input:focus-visible + label { outline: 2px solid var(--ga-primary); outline-offset: 2px; border-radius: 4px; }

/* 태그 칩 (체크박스) */
.ga-chiprow { display: flex; flex-wrap: wrap; gap: 8px; }
.ga-chiprow input { position: absolute; opacity: 0; width: 0; height: 0; }
.ga-chiprow label { display: inline-flex; padding: 9px 15px; border-radius: 999px;
  border: 1px solid var(--ga-line); background: var(--ga-soft); font-size: 13px;
  color: var(--ga-ink2); cursor: pointer; transition: all .12s; }
.ga-chiprow label:hover { border-color: #e6cdc9; }
.ga-chiprow input:checked + label { background: #ffedea; border-color: var(--ga-primary); color: var(--ga-primary-d); font-weight: 600; }
.ga-chiprow input:focus-visible + label { outline: 2px solid var(--ga-primary); outline-offset: 2px; }

.ga-agree { display: flex; gap: 9px; margin-top: 14px; font-size: 13px; line-height: 1.65; color: var(--ga-ink2); cursor: pointer; }
.ga-agree input { margin-top: 3px; flex: none; }

/* 허니팟 — 화면·스크린리더 모두에서 감춘다 */
.ga-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ga-rvsubmit { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 20px; }
.ga-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 26px;
  border-radius: 10px; border: 0; background: var(--ga-primary); color: #fff; font-size: 14px;
  font-weight: 700; cursor: pointer; text-decoration: none; }
.ga-btn:hover { background: var(--ga-primary-d); color: #fff; }
.ga-btn.ghost { background: #fff; color: var(--ga-ink2); border: 1px solid var(--ga-line); }
.ga-btn.ghost:hover { background: var(--ga-soft); color: var(--ga-ink); }

.ga-rverr { border: 1px solid #ffd2d2; background: #fff5f5; color: #c0392b; border-radius: 12px;
  padding: 14px 18px; margin-bottom: 14px; font-size: 13.5px; }
.ga-rverr span { display: block; margin-top: 5px; }
.ga-rvdone { border: 1px solid var(--ga-line); background: #fff; border-radius: 14px;
  padding: 30px 24px; text-align: center; margin-bottom: 20px; }
.ga-rvdone b { display: block; font-size: 17px; color: var(--ga-ink); margin-bottom: 8px; }
.ga-rvdone p { margin: 0 0 18px; font-size: 14px; color: var(--ga-ink2); line-height: 1.7; }
@media (max-width: 600px) { .ga-rvsubmit { flex-direction: column-reverse; } .ga-rvsubmit .ga-btn { width: 100%; } }

/* 404 안내 */
.ga-404 { text-align: center; padding: 60px 24px 70px; }
.ga-404 b { display: block; font-size: 52px; font-weight: 800; color: var(--ga-line); letter-spacing: -.02em; }
.ga-404 h1 { margin: 6px 0 10px; font-size: 20px; color: var(--ga-ink); }
.ga-404 p { margin: 0 0 24px; font-size: 14px; color: var(--ga-ink2); }
.ga-404-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   시인성 보강 레이어 (2026-07-23) — 40·50대 가독성 최적화
   원칙: ① 본문·읽기 표면 글자 1.5~2px 상향  ② 회색 텍스트 명도 대비 강화(WCAG AA 방향)
         ③ 탭 타깃 확대  ④ 키보드 포커스 가시화
   ★기존 선언은 건드리지 않고 말미 오버라이드로만 — 롤백은 이 블록 삭제.
   ══════════════════════════════════════════════════════════════ */
:root { --ga-mute: #87716e; }   /* 8a95a3 → 대비 상향 (보조 텍스트 전반) */

/* ── 읽기 표면: 업소 정보·FAQ·목록 리드 ── */
.ga-infobox h4 { font-size: 14px; }
.ga-infobox p { font-size: 15.5px; line-height: 1.85; color: #4e3c39; }
.ga-faq details summary { font-size: 15px; line-height: 1.6; }
.ga-faq details p { font-size: 15px; line-height: 1.85; color: #4e3c39; }
.ga-infolist li { font-size: 15px; line-height: 1.75; }
.ga-sum-list li { font-size: 15px; }
.ga-sum-list em { font-size: 13.5px; color: #927d7a; }
.ga-pagehead p, .ga-hubnote p { font-size: 14.5px; line-height: 1.8; }
.ga-hubnote-sm { font-size: 13.5px; color: #927d7a; }
.ga-review-h { font-size: 13.5px; }
.ga-review-h b { font-size: 14.5px; }
.ga-review-body, .ga-review p { font-size: 15px; line-height: 1.85; }

/* ── 카드·목록: 주소/부가정보 대비와 크기 ── */
.ga-shop-addr { font-size: 13.5px; color: #735d5a; }
.ga-shop-sub { font-size: 13.5px; color: #94807d; }
.ga-shop-price .ga-unit { font-size: 13px; color: #94807d; }
.ga-shop-meta { font-size: 14px; }
.ga-tag { font-size: 13.5px; }
.ga-course-r del { font-size: 13.5px; }

/* ── 내비게이션·칩: 크기 + 탭 타깃 ── */
.ga-crumb { font-size: 13.5px; }
.ga-hero-chips a { font-size: 14px; }
.ga-hubgrid a { font-size: 14.5px; padding-top: 12px; padding-bottom: 12px; }
.ga-regchips a { font-size: 14px; padding: 10px 16px; }
.ga-morelink, .ga-sectitle .ga-cnt { font-size: 14.5px; }
.ga-foot-links a { font-size: 14px; }
.ga-foot-note { font-size: 13.5px; color: #8f7a77; }

/* ── 버튼·전화 CTA: 중년층 핵심 동선 ── */
.ga-hdtel-txt em { font-size: 12px; }
.ga-callban span { font-size: 13.5px; }
.ga-tel-link { font-size: 17.5px; }

/* ── 폼: 입력 글자 확대(모바일 iOS 자동확대 방지 겸) ── */
.ga-form input[type=text], .ga-form input[type=tel], .ga-form input[type=password],
.ga-form select, .ga-form textarea { font-size: 15px; }
.ga-check { font-size: 14.5px; }
.ga-terms { font-size: 13.5px; }
.ga-form-lead { font-size: 14px; }

/* ── 키보드·저시력 포커스 가시화 ── */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid #f24429; outline-offset: 2px; border-radius: 4px;
}

/* ── 모바일: 최소 가독 하한 + 탭 타깃 44px ── */
@media (max-width: 640px) {
  .ga-infobox p, .ga-faq details p { font-size: 15px; }
  .ga-form input[type=text], .ga-form input[type=tel], .ga-form input[type=password],
  .ga-form select, .ga-form textarea { font-size: 16px; }   /* iOS 포커스 줌 방지 임계값 */
  .ga-regchips a, .ga-hero-chips a { padding-top: 11px; padding-bottom: 11px; }
}
/* 후기 작성 폼도 동일 기준 */
.ga-rvform textarea, .ga-rvform input[type=text] { font-size: 15px; }

/* ══ 정보 섹션 리디자인 (2026-07-23) — 가로 폭 제한 + 편집형 카드 ══
   문제: 본문이 화면 전폭(1900px급)으로 흘러 한 줄이 100자를 넘음 → 시선 복귀 실패.
   해법: ① 읽기 폭을 한국어 최적 40~46자(690px)로 제한
         ② 타입별 컬러 액센트 헤더(상세=파랑 / 안내=청록 / 이벤트=골드 / 주의=적색)
         ③ 문단 리듬(첫 문단 리드 강조·문단 간 여백)                        */
.ga-infobox {
  background: #fff; border: 1px solid #f1e9e8; border-radius: 14px;
  padding: 24px 28px; margin-bottom: 12px; max-width: 780px;
  box-shadow: 0 1px 3px rgba(39,20,17,.03);
}
.ga-infobox h4 {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; letter-spacing: .01em;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid #f7f1f0;
}
.ga-infobox h4::before {
  content: ''; width: 5px; height: 17px; border-radius: 3px;
  background: var(--ga-primary); flex: 0 0 auto;
}
.ga-infobox p { max-width: 690px; }        /* ★한 줄 40~46자 — 시선 복귀가 쉬운 폭 */
.ga-infobox p + p { margin-top: 12px; }

/* 상세: 첫 문단을 리드로 — 크고 진하게 시작해 훑어보기를 돕는다 */
.ga-infobox.t-intro p:first-of-type { font-size: 16.5px; color: #33221f; font-weight: 500; line-height: 1.8; }

/* 안내: 청록 액센트 + 옅은 바탕 */
.ga-infobox.t-notice { background: #fbf9f6; border-color: #ede4d9; }
.ga-infobox.t-notice h4 { color: #76460f; border-bottom-color: #f0e9e2; }
.ga-infobox.t-notice h4::before { background: #b86b14; }

/* 이벤트: 골드 액센트 */
.ga-infobox.t-event { background: #fffdf5; border-color: #f0e6c8; }
.ga-infobox.t-event h4 { color: #92700c; border-bottom-color: #f3ecd6; }
.ga-infobox.t-event h4::before { background: #d4a72c; }

/* 주의사항: 적색 액센트(기존 warn 배경 유지·강화) */
.ga-infobox.warn { background: #fffafa; border-color: #f3d9d9; }
.ga-infobox.warn h4 { border-bottom-color: #f7e3e3; }
.ga-infobox.warn h4::before { background: #e5484d; }

@media (max-width: 640px) {
  .ga-infobox { padding: 18px 18px; }
  .ga-infobox.t-intro p:first-of-type { font-size: 15.5px; }
}

/* ── 자매 서비스 배너(테라피하이어) — 사이드바 최상단, 다크 네이비+골드 ── */
.ga-sisban { display: block; margin-bottom: 14px; padding: 22px 22px 20px; border-radius: 16px;
  background: linear-gradient(135deg, #281715 0%, #522822 55%, #55312c 100%);
  border: 1px solid rgba(201,162,75,.35); text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 22px rgba(45,23,20,.28); transition: transform .15s, box-shadow .15s; }
.ga-sisban:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(45,23,20,.36); }
.ga-sisban::before { content: ''; position: absolute; right: -46px; top: -46px; width: 170px; height: 170px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,.38), transparent 68%); }
/* ★샤인은 transform 만 애니메이션(합성 레이어) — left 를 움직이면 매 프레임 리플로우가 나
     Lighthouse 성능 점수를 갉아먹는다(비합성 애니메이션 경고의 실체). */
.ga-sisban::after { content: ''; position: absolute; left: 0; top: 0; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.10), transparent);
  transform: translateX(-160%) skewX(-18deg); will-change: transform;
  animation: ga-sisban-shine 4.5s ease-in-out infinite; }
@keyframes ga-sisban-shine {
  0%, 55% { transform: translateX(-160%) skewX(-18deg); }
  85%, 100% { transform: translateX(320%) skewX(-18deg); }
}
@media (prefers-reduced-motion: reduce) { .ga-sisban::after { animation: none; } }
.ga-sisban-badge { position: relative; display: inline-block; font-style: normal;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; color: #1f1210;
  background: linear-gradient(135deg, #e5c983, #c9a24b); border-radius: 20px;
  padding: 4px 11px; margin-bottom: 10px; }
.ga-sisban em { display: block; font-style: normal; font-size: 13px; font-weight: 600;
  color: #ddc6c3; margin-bottom: 3px; position: relative; }
.ga-sisban strong { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  color: #e5c983; position: relative; line-height: 1.3; }
.ga-sisban span { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 13px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px; padding: 8px 15px; position: relative; transition: background .15s; }
.ga-sisban span b { font-weight: 800; transition: transform .15s; }
.ga-sisban:hover span { background: rgba(201,162,75,.28); }
.ga-sisban:hover span b { transform: translateX(3px); }

/* 모바일: 사이드바가 본문 위로 쌓일 때도 배너는 그대로 노출(전폭) */
@media (max-width: 980px) {
  .ga-sisban { margin: 0 0 14px; }
  .ga-sisban strong { font-size: 20px; }
}

/* ── 모바일에서 자매 배너만 생존 ──
   .ga-aside 는 1024px 이하에서 통째로 숨기지만(위 38행), 테라피하이어 배너는
   사용자 지시로 모바일에도 노출한다: aside 를 살리되 배너 외 위젯만 감춘다.
   grid 가 1fr 이라 배너는 본문 위 전폭으로 얹힌다. */
@media (max-width: 1024px) {
  .ga-aside { display: block; }
  .ga-aside .ga-widget, .ga-aside .ga-callban { display: none; }
  .ga-sisban { margin: 0 0 16px; }
}

/* ── 홈 마사지 매거진 카드 ── */
.ga-maggrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.ga-magcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--ga-line,#f1e9e8);
  border-radius: 14px; overflow: hidden; text-decoration: none; transition: box-shadow .16s, transform .16s, border-color .16s; }
.ga-magcard:hover { box-shadow: 0 10px 26px rgba(80,28,20,.12); transform: translateY(-3px); border-color: var(--ga-primary,#f2553d); }
.ga-magthumb { display: block; position: relative; width: 100%; aspect-ratio: 420/264; background: #f7efee; overflow: hidden; }
.ga-magthumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.ga-magcard:hover .ga-magthumb img { transform: scale(1.05); }
.ga-magnoimg { position: absolute; inset: 0; background: linear-gradient(135deg,#f5e2df,#fbf0ee); }
.ga-magbody { padding: 13px 14px 15px; display: flex; flex-direction: column; gap: 7px; }
.ga-magbody strong { font-size: 15px; font-weight: 700; line-height: 1.42; color: var(--ga-ink,#301f1c);
  word-break: keep-all; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ga-magbody em { font-style: normal; font-size: 12.5px; color: var(--ga-ink3,#a68e8a); font-weight: 600; }
@media (max-width: 900px) { .ga-maggrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; } }
@media (max-width: 520px) { .ga-maggrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .ga-magbody { padding: 10px 11px 12px; } .ga-magbody strong { font-size: 13.5px; } }

/* ── 전국 /town: 시도 카드(이름+건수 세로 배치, 조금 크게) ── */
.ga-sidogrid a { flex-direction: column; gap: 2px; height: 62px; }
.ga-sidogrid a b { font-weight: 800; font-size: 15px; line-height: 1.1; }
.ga-sidogrid a em { margin-left: 0; font-size: 12px; }
@media (max-width: 520px) { .ga-sidogrid a { height: 58px; } }

/* ── Phase 1 신규 UI: 코스표·매장사진 그리드·관리자 테이블·완료박스·토글버튼 ── */
.ga-coursetable { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr)); gap: 10px; margin: 14px 0 24px; }
.ga-course-r { border: 1px solid var(--ga-line); border-radius: 10px; padding: 12px 14px; text-align: center; background: #fff; }
.ga-course-r .ga-course-min { display: block; font-size: 12.5px; color: var(--ga-ink2); margin-bottom: 4px; }
.ga-course-r b { font-size: 18px; font-weight: 800; color: var(--ga-ink); }

.ga-photogrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr)); gap: 8px; margin: 14px 0 24px; }
.ga-photogrid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }

.ga-admtable { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13.5px; }
.ga-admtable th, .ga-admtable td { border: 1px solid var(--ga-line); padding: 8px 10px; text-align: left; }
.ga-admtable th { background: var(--ga-soft); font-weight: 700; }

.ga-donebox { text-align: center; padding: 60px 20px; }
.ga-donebox h2 { font-size: 20px; margin-bottom: 8px; }

.ga-toggle-btn { border: 0; border-radius: 6px; padding: 4px 12px; font-weight: 700; font-size: 12px; cursor: pointer; }
.ga-toggle-btn.on { background: var(--ga-primary); color: #fff; }
.ga-toggle-btn.off { background: var(--ga-line); color: var(--ga-ink2); }

.ga-formerr { color: #dc2626; font-weight: 600; margin-bottom: 10px; }

.ga-textbody { max-width: 760px; line-height: 1.8; color: var(--ga-ink2); font-size: 15px; }
.ga-textbody h3 { margin: 24px 0 8px; font-size: 16px; font-weight: 800; color: var(--ga-ink); }
.ga-textbody a { color: var(--ga-primary); text-decoration: underline; }

.ga-intro { max-width: 760px; margin: 12px 0 24px; }
.ga-intro p { font-size: 15px; line-height: 1.8; color: var(--ga-ink2); word-break: keep-all; }

/* ── 상세: 오시는 길 · 이용 정보 (확인된 사실만 항목화) ─────────────── */
.ga-factgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
               gap: 1px; background: #f5efee; border: 1px solid #f5efee;
               border-radius: 12px; overflow: hidden; margin: 12px 0 24px; }
.ga-fact { display: flex; gap: 12px; align-items: baseline; background: #fff; padding: 13px 16px; }
.ga-fact dt { flex: 0 0 68px; font-size: 12.5px; font-weight: 800; color: #ab9a98; letter-spacing: -.02em; }
.ga-fact dd { font-size: 14px; color: var(--ga-ink2); line-height: 1.6; word-break: keep-all; }
@media (max-width: 640px) {
  .ga-factgrid { grid-template-columns: minmax(0, 1fr); }
  .ga-fact dd { font-size: 15px; }
}

/* ── 상세: 취급 종목 칩 ─────────────────────────────────────────────── */
.ga-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 24px; }
.ga-chip { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: 999px;
           background: var(--ga-soft); color: #624d4a; font-size: 13.5px; font-weight: 700;
           border: 1px solid transparent; letter-spacing: -.02em; }
a.ga-chip { background: #fff0ee; color: var(--ga-primary); border-color: #ffe0db; }
a.ga-chip:hover { background: var(--ga-primary); color: #fff; border-color: var(--ga-primary); }

/* ── 상세: 코스 카드 ────────────────────────────────────────────────── */
/* ★기존 테마에 이미 `.ga-course { display:flex }`가 있다(다른 화면용).
   여기서 display를 명시하지 않으면 그 규칙이 그대로 먹어 카드가 한 줄로 뭉갠다
   — 실제로 "60 분", "100,000 원"이 줄바꿈되는 형태로 나왔다. 자식 선택자로 우선순위를 올린다. */
.ga-courselist { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
                 gap: 10px; margin: 12px 0 10px; }
.ga-courselist > .ga-course { display: block; border: 1px solid #f5efee; border-radius: 12px;
                              padding: 14px 16px; background: #fff; }
.ga-courselist > .ga-course:hover { border-color: #ffe0db; box-shadow: none; transform: none; }
.ga-courselist .ga-course-h { display: flex; align-items: baseline; justify-content: space-between;
                              gap: 8px; white-space: nowrap; }
.ga-courselist .ga-course-min { display: inline-block; font-size: 13px; font-weight: 800;
                                color: var(--ga-primary); background: #fff0ee;
                                padding: 3px 9px; border-radius: 7px; margin: 0; }
.ga-courselist .ga-course-p { font-size: 13px; color: var(--ga-mute); }
.ga-courselist .ga-course-p b { font-size: 18px; color: var(--ga-ink); letter-spacing: -.03em; }
.ga-courselist .ga-course-svc { margin: 9px 0 0; font-size: 13.5px; color: var(--ga-ink2);
                                line-height: 1.55; word-break: keep-all; }
.ga-courselist .ga-course-unit { display: block; margin-top: 8px; font-size: 12px; color: #baa6a3; }

/* ── 상세: FAQ ──────────────────────────────────────────────────────── */
.ga-faq { border: 1px solid #f5efee; border-radius: 12px; overflow: hidden; margin: 12px 0 24px; }
.ga-faq details + details { border-top: 1px solid #f5efee; }
.ga-faq summary { list-style: none; cursor: pointer; padding: 15px 18px; font-size: 14.5px;
                  font-weight: 700; color: var(--ga-ink); display: flex; align-items: center; gap: 10px; }
.ga-faq summary::-webkit-details-marker { display: none; }
.ga-faq summary:before { content: 'Q'; flex: 0 0 20px; height: 20px; border-radius: 6px;
                         background: #fff0ee; color: var(--ga-primary); font-size: 11.5px;
                         font-weight: 800; display: grid; place-items: center; }
.ga-faq summary:after { content: '+'; margin-left: auto; color: #c9b8b6; font-size: 18px; font-weight: 400; }
.ga-faq details[open] summary:after { content: '−'; }
.ga-faq p { padding: 0 18px 16px 48px; font-size: 14px; line-height: 1.75;
            color: var(--ga-ink2); word-break: keep-all; }

/* ── 상세: 모바일 고정 액션바 ───────────────────────────────────────── */
.ga-stickybar { display: none; }
@media (max-width: 780px) {
  .ga-stickybar { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
                  background: rgba(255,255,255,.97); border-top: 1px solid #f2eae9;
                  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
                  box-shadow: 0 -6px 20px rgba(50,24,20,.07); }
  .ga-stickybar-in { display: flex; align-items: center; gap: 12px; max-width: 720px; margin: 0 auto; }
  .ga-stickybar-t { min-width: 0; flex: 1; }
  .ga-stickybar-t b { display: block; font-size: 14px; color: var(--ga-ink);
                      white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ga-stickybar-t span { font-size: 12.5px; color: var(--ga-mute); }
  .ga-stickybar .ga-btn { flex: 0 0 auto; padding: 11px 22px; }
  .ga-detail { padding-bottom: 78px; }
}

/* ── 상세페이지 읽기 폭 제한 ────────────────────────────────────────────
   ★1300px 풀폭에 본문을 그대로 늘리면 한 줄이 너무 길어 시선이 되돌아올 자리를 잃는다.
     (사용자 지적: "가로로 길게 뽑으면 시인성·가독성이 떨어진다")
     히어로/카드 그리드는 넓을수록 좋으니 살리고, 글·표·FAQ만 읽기 폭으로 좁힌다. */
.ga-detail { max-width: 1080px; margin: 0 auto; width: 100%; }

/* 문단·표·FAQ는 더 좁게 — 한글 본문은 한 줄 40~45자 부근이 가장 편하다 */
.ga-detail .ga-intro,
.ga-detail .ga-faq,
.ga-detail .ga-factgrid,
.ga-detail .ga-hubnote,
.ga-detail .ga-hubnote-sm { max-width: 820px; }

/* 시설 표는 넓은 화면에서도 2열까지만 — 4열로 흩어지면 항목-값 짝이 눈에 안 들어온다 */
@media (min-width: 781px) {
  .ga-factgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 코스 카드는 최대 3열 */
.ga-courselist { grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)); max-width: 820px; }
@media (min-width: 1000px) {
  .ga-courselist { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* 사진 그리드도 읽기 폭에 맞춘다 */
.ga-detail .ga-photogrid { max-width: 1080px; }

/* ── 상세: 2열 레이아웃(사진+본문 | 요약카드) ──────────────────────────
   ★히어로만 2열이던 구조에서는 본문이 시작되는 순간 오른쪽이 통째로 비고,
     본문은 1080px 전체를 가로질러 한 줄이 길어졌다. 요약 카드를 본문 옆에 두고
     스크롤을 따라오게 하면 남는 폭이 CTA로 쓰이고 본문 한 줄도 짧아진다. */
.ga-detail { max-width: 1180px; }
.ga-dlayout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 26px;
              grid-template-areas: "gal sum" "main sum"; align-items: start; }
.ga-dgal  { grid-area: gal; }
.ga-detail .ga-sum { grid-area: sum; position: sticky; top: 14px; }
.ga-dmain { grid-area: main; min-width: 0; }

/* 2열 안에서는 칼럼 자체가 읽기 폭이라 별도 제한이 필요 없다 */
.ga-dlayout .ga-intro, .ga-dlayout .ga-faq, .ga-dlayout .ga-factgrid,
.ga-dlayout .ga-hubnote, .ga-dlayout .ga-hubnote-sm, .ga-dlayout .ga-courselist { max-width: none; }

@media (max-width: 960px) {
  .ga-dlayout { grid-template-columns: minmax(0, 1fr); gap: 16px;
                grid-template-areas: "gal" "sum" "main"; }
  .ga-detail .ga-sum { position: static; }
}

/* 본문 칼럼(약 700px) 안에서는 업소 카드 4열이 너무 좁다 → 3열 */
@media (min-width: 961px) {
  .ga-dmain .ga-shopgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ══ 상세 정보 블록 입체감 정리 ═════════════════════════════════════════
   기존은 1px 선만 있는 평면 표라 정보 덩어리가 배경에 묻혔다. 또 항목 수가 홀수면
   격자 여백이 회색 빈 칸으로 드러났다(스크린샷에서 확인). 카드 표면 + 옅은 그림자로
   덩어리를 띄우고, 칸 구분은 gap 대신 **테두리**로 그려 빈 칸이 생기지 않게 한다. */
.ga-factgrid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0;
  background: #fff; border: 1px solid #f4eae8; border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(64,22,16,.04), 0 10px 26px -18px rgba(64,22,16,.28);
  margin: 12px 0 26px;
}
.ga-fact { display: flex; gap: 14px; align-items: baseline;
           background: #fff; padding: 15px 18px; border-top: 1px solid #f8f2f1; }
.ga-fact:nth-child(-n+2) { border-top: 0; }
.ga-fact:nth-child(odd)  { border-right: 1px solid #f8f2f1; }
.ga-fact dt { flex: 0 0 62px; font-size: 12px; font-weight: 800; color: #b29d9a;
              letter-spacing: -.01em; }
.ga-fact dd { font-size: 14px; color: var(--ga-ink); font-weight: 600;
              line-height: 1.6; word-break: keep-all; }
@media (max-width: 780px) {
  .ga-factgrid { grid-template-columns: minmax(0, 1fr); }
  .ga-fact { border-right: 0 !important; border-top: 1px solid #f8f2f1; }
  .ga-fact:first-child { border-top: 0; }
  .ga-fact dd { font-size: 15px; }
}

/* 코스 카드 — 표면을 살짝 띄우고 금액을 확실히 앞세운다 */
.ga-courselist > .ga-course {
  background: linear-gradient(180deg, #ffffff 0%, #fffcfc 100%);
  border: 1px solid #f4eae8; border-radius: 14px; padding: 15px 17px 14px;
  box-shadow: 0 1px 2px rgba(64,22,16,.04), 0 10px 24px -18px rgba(64,22,16,.30);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.ga-courselist > .ga-course:hover {
  transform: translateY(-2px); border-color: #ffdcd7;
  box-shadow: 0 2px 4px rgba(64,22,16,.05), 0 16px 30px -16px rgba(235,63,37,.34);
}
.ga-courselist .ga-course-min { background: linear-gradient(180deg,#fff0ee,#ffe9e6);
                                border: 1px solid #ffe0db; padding: 4px 10px; }
.ga-courselist .ga-course-p b { font-size: 20px; font-weight: 800; }
.ga-courselist .ga-course-svc { margin-top: 10px; padding-top: 10px;
                                border-top: 1px dashed #f6ecea; font-weight: 600; }
.ga-courselist .ga-course-unit { margin-top: 7px; color: #c3b1ae; }

/* 취급 종목 칩 — 눌러 볼 수 있는 요소라는 게 드러나게 */
.ga-chips a.ga-chip { box-shadow: 0 1px 2px rgba(64,22,16,.05); }
.ga-chips a.ga-chip:hover { box-shadow: 0 6px 14px -6px rgba(235,63,37,.5); }

/* FAQ도 같은 표면 규칙으로 통일 */
.ga-faq { border: 1px solid #f4eae8; border-radius: 14px; background: #fff;
          box-shadow: 0 1px 2px rgba(64,22,16,.04), 0 10px 26px -18px rgba(64,22,16,.28); }
.ga-faq details[open] { background: #fefbfb; }
.ga-faq details + details { border-top: 1px solid #f8f2f1; }

/* 사진이 1장뿐이면 갤러리 격자(2fr 1fr)의 오른쪽 칸이 빈 채로 남는다 → 한 칸을 다 쓰게 */
.ga-gal .ga-gal-main:only-child { grid-column: 1 / -1; }
.ga-gal .ga-gal-main:only-child img { height: 360px; }

/* ══ 소개글 읽기 편의 ═══════════════════════════════════════════════════
   문단 6개가 굵기·색·길이까지 똑같아 눈이 걸릴 데가 없다는 지적에 대한 조치.
   리드 문단을 세우고, 숫자에 시선 앵커를 주고, 시세 비교는 성격이 달라 따로 뺀다. */
.ga-intro p { font-size: 15.5px; line-height: 1.85; color: #5a423f; margin-bottom: 14px;
              word-break: keep-all; }
.ga-intro p:last-child { margin-bottom: 0; }
.ga-intro p.ga-lead { font-size: 17px; line-height: 1.75; color: var(--ga-ink);
                      font-weight: 600; letter-spacing: -.02em; margin-bottom: 18px; }
.ga-intro p b { font-weight: 700; color: var(--ga-ink); }

.ga-pricenote { margin: 18px 0; padding: 15px 18px 16px; border-radius: 12px;
                background: linear-gradient(180deg,#fff8f7,#fff5f3);
                border: 1px solid #fbe5e2; }
.ga-pricenote-k { display: inline-block; margin-bottom: 7px; padding: 3px 9px; border-radius: 6px;
                  background: var(--ga-primary); color: #fff; font-size: 11.5px; font-weight: 800;
                  letter-spacing: -.01em; }
.ga-pricenote p { margin: 0; font-size: 14.5px; line-height: 1.8; color: #5c3c37; }
.ga-pricenote p b { color: var(--ga-primary); font-weight: 800; }
@media (max-width: 640px) {
  .ga-intro p { font-size: 15px; }
  .ga-intro p.ga-lead { font-size: 16.5px; }
}

/* ══ 상세 본문 수직 리듬 ════════════════════════════════════════════════
   제목과 내용, 섹션과 섹션이 붙어 있어 덩어리가 구분되지 않는다는 지적에 대한 조치.
   상세페이지의 .ga-sectitle은 위 여백이 0이라 앞 블록에 바로 붙어 있었다.
   섹션 앞에 여백 + 옅은 구분선을 줘서 "여기서 화제가 바뀐다"를 눈으로 알 수 있게 한다. */
.ga-dmain > .ga-sectitle {
  margin: 0 0 18px; padding-top: 34px; margin-top: 12px;
  border-top: 1px solid #f8f1f0; font-size: 17px;
}
.ga-dmain > .ga-sectitle:first-child { margin-top: 0; padding-top: 4px; border-top: 0; }
.ga-dmain > .ga-sectitle:before { height: 17px; }

/* 각 블록의 아래 여백을 통일해 다음 섹션과 겹치지 않게 */
.ga-dmain .ga-intro     { margin: 0 0 30px; }
.ga-dmain .ga-factgrid  { margin: 0 0 30px; }
.ga-dmain .ga-chips     { margin: 0 0 30px; }
.ga-dmain .ga-courselist{ margin: 0 0 14px; }
.ga-dmain .ga-faq       { margin: 0 0 30px; }
.ga-dmain .ga-photogrid { margin: 0 0 30px; }
.ga-dmain .ga-shopgrid  { margin-bottom: 30px; }
.ga-dmain > .ga-hubnote-sm { margin: 0 0 30px; line-height: 1.75; }

/* 문단 사이도 조금 더 벌린다 */
.ga-intro p { margin-bottom: 17px; }
.ga-intro p.ga-lead { margin-bottom: 20px; }
.ga-pricenote { margin: 22px 0; }

@media (max-width: 640px) {
  .ga-dmain > .ga-sectitle { padding-top: 26px; margin-bottom: 15px; }
  .ga-dmain .ga-intro, .ga-dmain .ga-factgrid, .ga-dmain .ga-chips,
  .ga-dmain .ga-faq, .ga-dmain .ga-photogrid { margin-bottom: 24px; }
}

/* ══ 로고 락업 (심볼 + 워드마크) ════════════════════════════════════════
   기존은 "마이/테라피" 텍스트 두 조각뿐이라 브랜드로 읽히지 않았다.
   심볼(연꽃)로 시선을 잡고, 국문 워드마크 아래 영문 레터스페이싱 한 줄을 얹어
   정보 사이트가 아니라 브랜드처럼 보이게 한다. */
.ga-logo { display: flex; align-items: center; gap: 12px; }
.ga-logo-mark { display: block; flex: 0 0 auto; line-height: 0;
                filter: drop-shadow(0 6px 14px rgba(143,39,23,.28)); }
.ga-logo-mark svg { display: block; width: 44px; height: 44px; }
.ga-logo:hover .ga-logo-mark { filter: drop-shadow(0 8px 18px rgba(143,39,23,.38)); }
.ga-logo-mark, .ga-logo-mark svg { transition: filter .18s ease; }

.ga-logo-txt { display: block; }
.ga-logo-wm { display: block; font-size: 25px; font-weight: 800; line-height: 1.05;
              letter-spacing: -.045em; color: #2e1410; }
.ga-logo-wm span { color: var(--ga-primary); }
.ga-logo em { display: flex; align-items: center; gap: 7px; margin-top: 6px;
              font-style: normal; font-size: 10.5px; font-weight: 500; color: #b49b97;
              letter-spacing: -.01em; }
.ga-logo-en { font-size: 9.5px; font-weight: 800; letter-spacing: .2em;
              color: #d0b7b3; text-transform: uppercase; }
.ga-logo em i { display: block; width: 1px; height: 9px; background: #ecdfdd; }

@media (max-width: 640px) {
  .ga-logo { gap: 9px; }
  .ga-logo-mark svg { width: 36px; height: 36px; }
  .ga-logo-wm { font-size: 20px; }
  .ga-logo em { margin-top: 4px; font-size: 9.5px; gap: 5px; }
  .ga-logo-en { font-size: 8.5px; letter-spacing: .16em; }
}

/* 워드마크 정제 — '마이'는 가늘고 깊은 남색, '테라피'는 굵고 브랜드 그라데이션.
   굵기 대비를 주면 같은 글자여도 만들어진 로고처럼 읽힌다. */
.ga-logo-wm { font-weight: 600; color: #3d1b16; letter-spacing: -.04em; }
.ga-logo-wm span {
  font-weight: 800; margin-left: .01em;
  background: linear-gradient(100deg, #e2452d 0%, #a92d1a 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: #e24229;
}

/* ══ 본문 줄길이 제한 ══════════════════════════════════════════════════
   2열로 바꾸며 본문 칼럼이 약 814px가 됐는데, 한글 15.5px 기준 한 줄에 50자가 넘어
   여전히 길다(사용자 재지적). **한글은 40자 안팎**이 눈이 되돌아오기 편하다.
   ★산문만 좁힌다 — 표·코스카드·사진은 넓을수록 보기 좋으므로 칼럼 폭을 그대로 쓴다. */
.ga-detail { max-width: 1120px; }
.ga-dlayout .ga-intro,
.ga-dlayout .ga-pricenote,
.ga-dlayout > .ga-dmain > .ga-hubnote,
.ga-dlayout > .ga-dmain > .ga-hubnote-sm { max-width: 640px; }
.ga-dlayout .ga-faq { max-width: 720px; }
@media (max-width: 960px) {
  .ga-dlayout .ga-intro, .ga-dlayout .ga-pricenote,
  .ga-dlayout .ga-faq,
  .ga-dlayout > .ga-dmain > .ga-hubnote,
  .ga-dlayout > .ga-dmain > .ga-hubnote-sm { max-width: none; }
}

/* ══ GNB 드롭다운 ═══════════════════════════════════════════════════════
   기존 메뉴는 <a>가 .ga-wrap의 직계 flex 자식이라 flex:1로 균등분할됐다.
   드롭다운을 달면서 <a>를 .ga-gnb-item 으로 감쌌으므로 균등분할 기준을 그 래퍼로 옮긴다.
   (안 옮기면 하위 메뉴 <a>까지 flex:1을 물려받아 폭이 깨진다) */
.ga-menubar .ga-gnb-item { position: relative; flex: 1 1 0; display: flex; }
.ga-menubar .ga-gnb-item > a { width: 100%; gap: 5px; }
.ga-gnb-caret { width: 14px; height: 14px; opacity: .7; }

.ga-gnb-sub {
  position: absolute; top: 100%; left: 50%; z-index: 70;
  transform: translateX(-50%) translateY(6px);
  min-width: 176px; padding: 8px; border-radius: 12px; background: #fff;
  border: 1px solid #f4eae8;
  box-shadow: 0 2px 6px rgba(58,21,15,.06), 0 20px 40px -16px rgba(58,21,15,.38);
  opacity: 0; visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.ga-gnb-item.has-sub:hover .ga-gnb-sub,
.ga-gnb-item.has-sub:focus-within .ga-gnb-sub {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.ga-menubar .ga-gnb-sub a {
  flex: 0 0 auto; display: block; width: 100%; padding: 10px 13px; border-radius: 8px;
  color: #5a423f; font-size: 14px; font-weight: 600; text-align: left; background: none;
}
.ga-menubar .ga-gnb-sub a:hover { background: #fff0ee; color: var(--ga-primary); }
.ga-menubar .ga-gnb-sub a:after { display: none; }

@media (max-width: 640px) {
  /* 모바일엔 hover가 없다 → 드롭다운을 펼치지 말고 **바에 그대로 늘어놓는다**.
     탭 한 번으로 닿고, 부모 '커뮤니티'는 중복이라 감춘다. */
  .ga-menubar .ga-gnb-item { flex: 0 0 auto; }
  .ga-menubar .ga-gnb-item.has-sub > a { display: none; }
  .ga-menubar .ga-gnb-sub {
    position: static; display: flex; min-width: 0; padding: 0; opacity: 1; visibility: visible;
    transform: none; background: none; border: 0; box-shadow: none;
  }
  .ga-menubar .ga-gnb-sub a {
    display: flex; align-items: center; width: auto; padding: 0 12px; border-radius: 0;
    color: #fbe9e6; font-weight: 700; font-size: 14px;
  }
  .ga-menubar .ga-gnb-sub a:hover { background: rgba(255,255,255,.055); color: #ffd5cf; }
}

/* ══ 매거진 ═════════════════════════════════════════════════════════════ */
.ga-maggrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 20px; }
@media (max-width: 900px) { .ga-maggrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; } }
@media (max-width: 560px) { .ga-maggrid { grid-template-columns: minmax(0, 1fr); } }

.ga-magcard { background: #fff; border: 1px solid #f4eae8; border-radius: 16px; overflow: hidden;
              box-shadow: 0 1px 2px rgba(64,22,16,.04), 0 12px 28px -20px rgba(64,22,16,.35);
              transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.ga-magcard:hover { transform: translateY(-3px); border-color: #ffdcd7;
                    box-shadow: 0 2px 6px rgba(64,22,16,.06), 0 20px 36px -18px rgba(235,63,37,.34); }
.ga-magcard-thumb { aspect-ratio: 16/9; background: #f5efee; overflow: hidden; }
.ga-magcard-thumb img { width: 100%; height: 100%; object-fit: cover; display: block;
                        transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.ga-magcard:hover .ga-magcard-thumb img { transform: scale(1.05); }
.ga-magcard-noimg { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;
                    color: #c9b8b6; font-weight: 800; }
.ga-magcard-b { padding: 16px 18px 18px; }
.ga-magcard-b h2 { font-size: 16.5px; font-weight: 800; line-height: 1.45; letter-spacing: -.03em;
                   color: var(--ga-ink); word-break: keep-all; }
.ga-magcard-b p { margin-top: 9px; font-size: 13.5px; line-height: 1.7; color: #977f7b; word-break: keep-all; }
.ga-magcard-meta { display: flex; gap: 10px; margin-top: 13px; padding-top: 12px;
                   border-top: 1px solid #f8f2f1; font-size: 12px; color: #baa6a3; }

/* 본문 */
.ga-magview { max-width: 1120px; margin: 0 auto; }
.ga-magview-head { max-width: 720px; margin: 6px auto 0; }
.ga-magview-head h1 { font-size: 32px; font-weight: 800; line-height: 1.35; letter-spacing: -.04em;
                      color: var(--ga-ink); word-break: keep-all; }
.ga-magview-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; padding-bottom: 22px;
                   border-bottom: 1px solid #f5efee; font-size: 13px; color: #b49b97; }
.ga-magview-by { font-weight: 700; color: var(--ga-primary); }

.ga-magview-body { max-width: 720px; margin: 26px auto 0; font-size: 16px; line-height: 1.9;
                   color: #5a423f; word-break: keep-all; }
.ga-magview-body > *:first-child { margin-top: 0; }
.ga-magview-body p { margin: 0 0 18px; }
.ga-magview-body h2 { margin: 42px 0 14px; padding-top: 10px; font-size: 21px; font-weight: 800;
                      line-height: 1.45; letter-spacing: -.035em; color: var(--ga-ink); }
.ga-magview-body h3 { margin: 28px 0 10px; font-size: 17px; font-weight: 800; color: #4a2722; }
.ga-magview-body ul, .ga-magview-body ol { margin: 0 0 18px; padding-left: 20px; }
.ga-magview-body li { margin: 7px 0; }
.ga-magview-body a { color: var(--ga-primary); font-weight: 600;
                     text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.ga-magview-body strong { color: var(--ga-ink); font-weight: 700; }
.ga-magview-body figure { margin: 26px 0; }
.ga-magview-body figure img { width: 100%; border-radius: 14px; display: block; }
.ga-magview-body figcaption { margin-top: 9px; font-size: 12.5px; color: #baa6a3; text-align: center; }
.ga-magview-body table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 14.5px; }
.ga-magview-body th, .ga-magview-body td { padding: 11px 13px; border-bottom: 1px solid #f5efee; text-align: left; }
.ga-magview-body th { background: #fcf8f7; font-weight: 800; color: #4a2722; font-size: 13.5px; }
.ga-magview-body td b { color: var(--ga-ink); }
.ga-magview-body .ga-keypoint { margin: 24px 0; padding: 18px 20px; border-radius: 14px;
  background: linear-gradient(180deg,#fff8f7,#fff5f3); border: 1px solid #fbe5e2; }
.ga-magview-body .ga-keypoint b { display: block; margin-bottom: 8px; color: var(--ga-primary); font-size: 13px; }
.ga-magview-body .ga-keypoint p:last-child { margin-bottom: 0; }
.ga-magview .ga-hubnote { max-width: 720px; margin: 30px auto 0; }
.ga-magview-nav { display: flex; gap: 10px; justify-content: center; margin: 26px auto 10px; max-width: 720px; }
@media (max-width: 640px) {
  .ga-magview-head h1 { font-size: 24px; }
  .ga-magview-body { font-size: 15.5px; }
  .ga-magview-body h2 { font-size: 19px; margin-top: 34px; }
  .ga-magview-body table { font-size: 13.5px; }
  .ga-magview-body th, .ga-magview-body td { padding: 9px 10px; }
}

/* 매거진 본문 — 이미지/캡션, 결론 박스
   ★그누보드 html_purifier()가 <figure>/<figcaption>을 제거해 캡션이 본문처럼 흘렀다.
     필터를 건드리지 않고 통과되는 div/p + class 로 대체한다. */
.ga-magview-body .mm-fig { margin: 26px 0; }
.ga-magview-body .mm-fig img { width: 100%; height: auto; border-radius: 14px; display: block; }
.ga-magview-body .mm-cap { margin: 10px 0 0; font-size: 12.5px; line-height: 1.6;
                           color: #baa6a3; text-align: center; }
.ga-magview-body .mm-cover { margin: 0 0 26px; }

.ga-magview-body .mm-answer { margin: 0 0 26px; padding: 20px 22px; border-radius: 14px;
  background: linear-gradient(180deg,#fff8f7,#fff1ef); border: 1px solid #fbe1dd;
  box-shadow: 0 10px 26px -20px rgba(235,63,37,.5); }
.ga-magview-body .mm-answer b { display: inline-block; margin-bottom: 9px; padding: 3px 10px;
  border-radius: 6px; background: var(--ga-primary); color: #fff; font-size: 11.5px; font-weight: 800; }
.ga-magview-body .mm-answer p { margin: 0; font-size: 15.5px; line-height: 1.85; color: #52312c; }
.ga-magview-body em { font-style: normal; display: block; padding: 14px 16px; border-radius: 12px;
  background: #fcf8f7; border-left: 3px solid var(--ga-primary); color: #5c3c37; font-size: 15px; }

/* ══ 푸터 ═══════════════════════════════════════════════════════════════
   기존 푸터는 흰 배경 + 텍스트만이라 페이지가 닫히는 느낌이 없었다.
   GNB(딥네이비 그라데이션 #582219→#3a140f)와 호응하도록 한 단계 더 어두운 네이비로
   마감하고, 상단에 제휴 CTA 밴드를 얹는다.
   ★아이콘 폰트(폰트어썸)를 안 쓰므로 화살표는 인라인 SVG(tail.php)로 그렸다.
   ★지역 16개·코스 9개는 <ul>로 늘어놓으면 답답해서 **칩**으로 깐다(클릭 영역도 커짐). */
.ga-ft { margin-top: 64px; background: linear-gradient(180deg, #3f1914 0%, #30110d 100%);
         color: #d3b8b4; font-size: 14px; line-height: 1.7;
         border-top: 1px solid rgba(253,113,91,.38); }
.ga-ft a { color: inherit; transition: color .15s ease; }
.ga-ft h3 { margin: 0 0 14px; font-size: 12px; font-weight: 800; letter-spacing: .12em;
            text-transform: uppercase; color: #ac776e; }

/* ── 제휴 CTA 밴드 ──
   푸터 최상단에 얹어 스크롤 끝에서 전환 동선을 한 번 더 준다.
   ★전화 CTA가 아니라 문의 폼이다 — 이 사이트는 업소 실번호를 감추고 제휴 퍼널로만 받는다. */
.ga-ft-cta { background: linear-gradient(100deg, #87281a 0%, #9f3222 55%, #e2452d 100%);
             box-shadow: inset 0 1px 0 rgba(255,255,255,.13); }
.ga-ft-cta .ga-wrap { display: flex; align-items: center; justify-content: space-between;
                      gap: 20px; padding-top: 24px; padding-bottom: 24px; }
.ga-ft-cta-t { min-width: 0; }
.ga-ft-cta-t b { display: block; font-size: 18px; font-weight: 800; letter-spacing: -.03em;
                 color: #fff; word-break: keep-all; }
.ga-ft-cta-t span { display: block; margin-top: 5px; font-size: 13.5px; color: #ffd2cb;
                    word-break: keep-all; }
.ga-ft-cta-btn { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
                 padding: 13px 22px; border-radius: 999px; background: #fff;
                 color: #87281a !important; font-size: 14.5px; font-weight: 800; letter-spacing: -.02em;
                 box-shadow: 0 10px 24px -12px rgba(48,10,4,.7);
                 transition: transform .16s ease, box-shadow .16s ease; }
.ga-ft-cta-btn svg { width: 17px; height: 17px; }
.ga-ft-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(48,10,4,.8); }

/* ── 본문 4열: 브랜드 + 링크 3열, 그 아래 칩 2행 ── */
.ga-ft-main { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr;
              gap: 36px 28px; padding-top: 46px; padding-bottom: 40px; }

.ga-ft-brand { min-width: 0; }
.ga-ft-logo { display: inline-flex; align-items: center; gap: 11px; }
.ga-ft-mark { display: block; line-height: 0; flex: 0 0 auto; }
.ga-ft-mark svg { display: block; }
.ga-ft-wm { font-size: 21px; font-weight: 600; letter-spacing: -.04em; color: #fbecea; }
.ga-ft-wm span { font-weight: 800; color: #ff907f; }
.ga-ft-desc { margin: 16px 0 0; max-width: 34em; font-size: 13.5px; line-height: 1.8;
              color: #b48f8a; word-break: keep-all; }

.ga-ft-col ul { margin: 0; padding: 0; list-style: none; }
.ga-ft-col li + li { margin-top: 10px; }
.ga-ft-col a { font-size: 14px; color: #d3b8b4; }
.ga-ft-col a:hover { color: #fff; }

/* ── 지역·코스 칩 (사일로 내비) ──
   ★키워드 스터핑을 피하려고 '지역명만' 쓰고 실제 허브로 링크한다. */
.ga-ft-wide { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.07); }
.ga-ft-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ga-ft-chips a { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: 999px;
                 background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
                 font-size: 13px; font-weight: 600; letter-spacing: -.02em; color: #e0c6c2;
                 transition: background .15s ease, border-color .15s ease, color .15s ease; }
.ga-ft-chips a:hover { background: rgba(253,113,91,.16); border-color: rgba(253,113,91,.5); color: #fff; }

/* ── 사업자 정보 / 면책 ── */
.ga-ft-bottom { background: rgba(0,0,0,.24); border-top: 1px solid rgba(255,255,255,.06); }
.ga-ft-bottom .ga-wrap { padding-top: 24px; padding-bottom: 30px; }
.ga-ft-org { display: flex; flex-wrap: wrap; gap: 8px 20px; font-style: normal;
             font-size: 13px; color: #b48f8a; }
.ga-ft-org b { margin-right: 6px; font-weight: 700; color: #ac776e; }
.ga-ft-note { margin: 16px 0 0; font-size: 12.5px; line-height: 1.8; color: #96706b;
              word-break: keep-all; }
.ga-ft-disclaimer { margin: 10px 0 0; font-size: .72rem; line-height: 1.75; color: #86625d;
                     word-break: keep-all; }
.ga-ft-copy { margin: 14px 0 0; font-size: 12.5px; color: #86625d; }

@media (max-width: 900px) {
  .ga-ft-main { grid-template-columns: 1fr 1fr 1fr; gap: 30px 20px; }
  .ga-ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .ga-ft { margin-top: 44px; }
  .ga-ft-cta .ga-wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ga-ft-cta-btn { width: 100%; justify-content: center; }
  .ga-ft-main { grid-template-columns: 1fr 1fr; padding-top: 34px; }
  .ga-ft-wide { padding-top: 20px; }
  .ga-ft-org { gap: 6px 14px; font-size: 12.5px; }
}

/* ══ 작성 주체 블록(매거진 하단) + 편집·검수 원칙 페이지 ═════════════════════════
   구글 Who/How/Why 대응. ★대형 저자 프로필 카드를 전 글에 복제하면 본문 대비
   보일러플레이트 비중만 커진다 — 글에는 3줄 요약만, 상세는 /editorial 한 페이지로. */
.ga-byline { max-width: 720px; margin: 30px auto 0; padding: 20px 22px; border-radius: 14px;
             background: #fcf9f8; border: 1px solid #f4eae8; }
.ga-byline-head { display: flex; align-items: center; gap: 13px; }
.ga-byline-mark { flex: 0 0 auto; display: grid; place-items: center; line-height: 1;
                  width: 42px; height: 42px; border-radius: 12px;
                  background: linear-gradient(140deg, #e2452d, #a92d1a); color: #fff;
                  font-size: 13px; font-weight: 800; letter-spacing: .04em; }
/* ★선택자를 `> div` 로 좁힌다 — `.ga-byline-head span` 으로 두면 로고 배지(.ga-byline-mark)까지
     같이 잡혀서 display:flex 가 block 으로, 흰 글자가 회색으로 덮여 **배지 밖 왼쪽 위에
     'MT' 가 삐져나왔다**(specificity 가 클래스 하나짜리 규칙보다 높다). */
.ga-byline-head > div b { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.03em;
                          color: var(--ga-ink); }
.ga-byline-head > div span { display: block; margin-top: 3px; font-size: 13px; line-height: 1.6;
                             color: #977f7b; word-break: keep-all; }
.ga-byline-src { margin: 14px 0 0; padding-top: 14px; border-top: 1px solid #f4eae8;
                 font-size: 13.5px; line-height: 1.8; color: #80615d; word-break: keep-all; }
.ga-byline-src b { font-weight: 700; color: var(--ga-ink); }
.ga-byline-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 14px;
                  font-size: 13px; }
.ga-byline-foot a { font-weight: 700; color: var(--ga-primary); }
.ga-byline-foot a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ga-byline-foot span { margin-left: auto; color: #baa6a3; font-size: 12.5px; }
@media (max-width: 640px) {
  .ga-byline { padding: 17px 16px; }
  .ga-byline-foot span { margin-left: 0; width: 100%; }
}

/* 편집 원칙 페이지 — 실측 수치 스트립 */
.ga-edstat { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin: 0 0 10px; }
.ga-edstat div { padding: 16px 12px; border-radius: 14px; text-align: center;
                 background: linear-gradient(180deg,#fff8f7,#fdf3f2); border: 1px solid #fbe5e2; }
.ga-edstat b { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.04em;
               color: var(--ga-primary); }
.ga-edstat span { display: block; margin-top: 4px; font-size: 12.5px; color: #977f7b; }
.ga-edstat-note { margin: 0 0 26px; font-size: 12.5px; color: #baa6a3; }
.ga-edlinks { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 30px; padding-top: 20px;
              border-top: 1px solid #f5efee; font-size: 13.5px; }
.ga-edlinks a { font-weight: 700; color: var(--ga-primary); }
.ga-edlinks a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px) {
  .ga-edstat { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ga-edstat b { font-size: 19px; }
}

/* ══ 공지사항 — 프리미엄 에디토리얼 (목록 + 본문) ═══════════════════════════
   그누보드 기본 표 목록을 대체. 매거진과 톤을 맞추되 '공지' 성격의 차분함을 준다.
   ★가독성: 넉넉한 여백 + 명확한 위계 + 뮤트 보조텍스트. 시인성: 날짜 배지 + 카테고리 칩. */

/* 카테고리 칩(목록·본문 공용) */
.ga-chip { display: inline-flex; align-items: center; height: 23px; padding: 0 10px; border-radius: 7px;
           font-size: 11.5px; font-weight: 800; letter-spacing: -.01em; line-height: 1; }
.ga-chip.c-a { background: #ffedea; color: #ed3e23; }   /* 이용안내 */
.ga-chip.c-b { background: #e9f7ef; color: #9d5b0f; }   /* 입점안내 */
.ga-chip.c-g { background: #fff3e6; color: #d97706; }   /* 정보안내 */
.ga-chip.c-p { background: #ffefec; color: #d95d4a; }   /* 운영정책 */

/* ── 목록 ── */
.ga-ntwrap { max-width: 860px; margin: 0 auto; padding: 8px 0 20px; }
.ga-notice-head { text-align: center; padding: 22px 0 30px; border-bottom: 1px solid var(--ga-line); margin-bottom: 8px; }
.ga-notice-kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .22em;
                    color: var(--ga-primary); margin-bottom: 10px; }
.ga-notice-head h1 { font-size: 32px; font-weight: 800; letter-spacing: -.045em; color: var(--ga-ink); line-height: 1.2; }
.ga-notice-head p { margin-top: 11px; font-size: 15px; color: #977f7b; letter-spacing: -.02em; }

.ga-notice-list { list-style: none; margin: 0; padding: 0; }
.ga-notice-item { position: relative; }
.ga-notice-item + .ga-notice-item { border-top: 1px solid #f5efee; }
.ga-notice-item > a { display: grid; grid-template-columns: 74px 1fr 24px; align-items: center; gap: 22px;
                      padding: 24px 18px; border-radius: 16px; transition: background .16s ease, transform .16s ease; }
.ga-notice-item > a:hover { background: #fcf9f8; }
/* 좌측 accent bar (hover/pin) */
.ga-notice-item > a::before { content: ''; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px;
                              border-radius: 3px; background: var(--ga-primary); opacity: 0; transition: opacity .16s ease; }
.ga-notice-item > a:hover::before { opacity: 1; }
.ga-notice-item.is-pin > a::before { opacity: 1; background: linear-gradient(180deg,#e2452d,#a92d1a); }

.ga-notice-date { text-align: center; line-height: 1; }
.ga-notice-date b { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.04em; color: var(--ga-ink);
                    font-variant-numeric: tabular-nums; }
.ga-notice-date span { display: block; margin-top: 6px; font-size: 12px; font-weight: 600; color: #c2adaa;
                       font-variant-numeric: tabular-nums; }

.ga-notice-body { min-width: 0; }
.ga-notice-body h2 { margin: 9px 0 0; font-size: 18.5px; font-weight: 800; letter-spacing: -.035em; line-height: 1.45;
                     color: var(--ga-ink); word-break: keep-all;
                     display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ga-notice-item > a:hover .ga-notice-body h2 { color: var(--ga-primary-d); }
.ga-notice-body p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.7; color: #a88e8a; word-break: keep-all;
                    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

.ga-notice-arrow { width: 22px; height: 22px; color: #d8c5c2; transition: transform .16s ease, color .16s ease; }
.ga-notice-item > a:hover .ga-notice-arrow { color: var(--ga-primary); transform: translateX(3px); }

.ga-notice-empty { text-align: center; padding: 60px 0; color: #b39d9a; font-size: 15px; }
.ga-notice-pg { margin-top: 26px; display: flex; justify-content: center; }

@media (max-width: 560px) {
  .ga-notice-head h1 { font-size: 25px; }
  .ga-notice-item > a { grid-template-columns: 56px 1fr; gap: 15px; padding: 18px 12px; }
  .ga-notice-arrow { display: none; }
  .ga-notice-date b { font-size: 18px; }
  .ga-notice-body h2 { font-size: 16px; }
}

/* ── 본문 ── */
.ga-notice-view { max-width: 780px; margin: 0 auto; padding: 6px 0 24px; }
.ga-ntv-head { padding: 6px 0 22px; border-bottom: 1px solid #f5efee; margin-bottom: 30px; }
.ga-ntv-head .ga-chip { margin-bottom: 15px; }
.ga-ntv-head h1 { font-size: 31px; font-weight: 800; line-height: 1.32; letter-spacing: -.04em;
                  color: var(--ga-ink); word-break: keep-all; }
.ga-ntv-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; margin-top: 17px;
               font-size: 13.5px; color: #a88e8a; }
.ga-ntv-by { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: #6a4b46; }
.ga-ntv-mark { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; line-height: 1;
               background: linear-gradient(140deg,#e2452d,#a92d1a); color: #fff; font-size: 10.5px; font-weight: 800;
               letter-spacing: .02em; }
.ga-ntv-mark.lg { width: 44px; height: 44px; border-radius: 12px; font-size: 14px; flex: 0 0 auto; }
.ga-ntv-dot { width: 3px; height: 3px; border-radius: 50%; background: #decdcb; }

/* 본문 상단 여백만 살짝(리딩 스타일은 .ga-magview-body 재활용) */
.ga-ntv-body > *:first-child { margin-top: 0; }

/* 작성 주체 푸터 */
.ga-ntv-foot { display: flex; gap: 15px; margin-top: 34px; padding: 20px 22px; border-radius: 16px;
               background: #fcf9f8; border: 1px solid #f4eae8; }
.ga-ntv-foot b { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.03em; color: var(--ga-ink); }
.ga-ntv-foot p { margin: 7px 0 0; font-size: 13.5px; line-height: 1.8; color: #8d706c; word-break: keep-all; }
.ga-ntv-foot a { color: var(--ga-primary); font-weight: 700; }
.ga-ntv-foot a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* 이전/다음 */
.ga-ntv-pn { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.ga-ntv-pn-i { display: flex; flex-direction: column; gap: 7px; padding: 16px 18px; border-radius: 14px;
               border: 1px solid #f4eae8; background: #fff; transition: border-color .16s, box-shadow .16s, transform .16s; }
.ga-ntv-pn-i:not(.empty):hover { border-color: #ffd5cf; transform: translateY(-2px);
               box-shadow: 0 14px 30px -20px rgba(235,63,37,.5); }
.ga-ntv-pn-i.empty { border: 1px dashed #f4edec; background: #fefbfb; }
.ga-ntv-pn-i.r { text-align: right; }
.ga-ntv-pn-i span { font-size: 12px; font-weight: 800; color: #b39d9a; letter-spacing: -.01em; }
.ga-ntv-pn-i b { font-size: 14.5px; font-weight: 700; color: #5c3c37; letter-spacing: -.03em; line-height: 1.45;
                 display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.ga-ntv-pn-i:hover b { color: var(--ga-primary-d); }

.ga-ntv-nav { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }

@media (max-width: 560px) {
  .ga-ntv-head h1 { font-size: 24px; }
  .ga-ntv-pn { grid-template-columns: minmax(0, 1fr); }
  .ga-ntv-pn-i.empty { display: none; }
  .ga-ntv-foot { padding: 16px; }
}

/* ══ 제휴·등록 신청 리치 폼 (/partnership) ═══════════════════════════════
   코리아테라피 /info/partnership 구성(지역연동·비회원조회·유형칩·개인정보동의)을
   참고해 기능은 맞추되, 색·형태는 가온 블루 톤으로 새로 그린다. */

.ga-iqform-lead { margin: 0 0 22px; font-size: 13.5px; color: #977f7b; }
.ga-iqform-lead em { font-style: normal; color: var(--ga-primary); font-weight: 800; margin-right: 3px; }

.ga-iqrow { display: grid; grid-template-columns: 168px 1fr; gap: 18px; padding: 18px 0;
            border-bottom: 1px solid #f5efee; align-items: start; }
.ga-iqrow.bad { background: #fff7f6; margin: 0 -14px; padding: 18px 14px; border-radius: 10px; }
.ga-iqlabel { padding-top: 10px; font-size: 14px; font-weight: 700; color: var(--ga-ink); }
.ga-iqlabel em, .ga-iqform-lead em { font-style: normal; }
.ga-iqlabel em { display: inline-block; font-size: 11px; font-weight: 800; color: #fff;
                 background: var(--ga-primary); border-radius: 5px; padding: 2px 7px; margin-right: 6px; vertical-align: 2px; }
.ga-iqlabel small { display: block; margin-top: 2px; font-size: 11.5px; font-weight: 500; color: #baa6a3; }

.ga-iqbody input[type="text"], .ga-iqbody input[type="tel"], .ga-iqbody input[type="password"],
.ga-iqbody select, .ga-iqbody textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid #ecdfdd; border-radius: 10px;
  font-size: 14.5px; color: var(--ga-ink); background: #fff; font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ga-iqbody input:focus, .ga-iqbody select:focus, .ga-iqbody textarea:focus {
  outline: none; border-color: var(--ga-primary); box-shadow: 0 0 0 3px rgba(235,63,37,.12);
}
.ga-iqbody textarea { resize: vertical; line-height: 1.6; }
.ga-iqcol2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ga-iqtel { display: flex; align-items: center; gap: 8px; }
.ga-iqtel input { text-align: center; }
.ga-iqtel span { color: #d8c5c2; font-weight: 700; }
.ga-iqtime { margin-top: 10px; }
.ga-iqhint { margin: 8px 0 0; font-size: 12px; color: #baa6a3; }

.ga-iqcheck { display: inline-flex; align-items: flex-start; gap: 9px; cursor: pointer; font-size: 14px; color: #6a4b46; }
.ga-iqcheck.inline { margin-bottom: 11px; }
.ga-iqcheck input { margin-top: 3px; accent-color: var(--ga-primary); width: 16px; height: 16px; flex: 0 0 auto; }
.ga-iqcheck em { font-style: normal; color: var(--ga-primary); font-weight: 700; }

.ga-iqchips { display: flex; flex-wrap: wrap; gap: 9px; }
.ga-iqchip { position: relative; cursor: pointer; }
.ga-iqchip input { position: absolute; opacity: 0; width: 0; height: 0; }
.ga-iqchip span { display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 999px;
                  border: 1.5px solid #ecdfdd; font-size: 13.5px; font-weight: 700; color: #80615d;
                  transition: all .15s ease; }
.ga-iqchip input:checked + span { background: var(--ga-primary); border-color: var(--ga-primary); color: #fff;
                                   box-shadow: 0 6px 16px -8px rgba(235,63,37,.6); }
.ga-iqchip:hover span { border-color: var(--ga-primary); }

.ga-iqterms { max-height: 190px; overflow-y: auto; padding: 16px 18px; border-radius: 12px;
              background: #fcf9f8; border: 1px solid #f4eae8; font-size: 13px; line-height: 1.8;
              color: #80615d; margin-bottom: 13px; }
.ga-iqterms strong { display: block; margin-bottom: 8px; color: var(--ga-ink); font-size: 13.5px; }
.ga-iqterms ul { margin: 0 0 10px; padding-left: 18px; }
.ga-iqterms li { margin: 4px 0; }
.ga-iqterms b { color: var(--ga-ink); }
.ga-iqterms a { color: var(--ga-primary); font-weight: 700; }
.ga-iqterms p { margin: 0; }

.ga-iqsubmit { text-align: center; padding-top: 26px; }
.ga-btn.main.lg { padding: 15px 42px; font-size: 15.5px; border-radius: 12px; }
.ga-iqsubmit p { margin-top: 12px; font-size: 12.5px; color: #baa6a3; }

.ga-formerr-top { margin-bottom: 20px; padding: 16px 20px; border-radius: 12px;
                   background: #fff5f4; border: 1px solid #ffd9d5; color: #b3372a; font-size: 13.5px; }
.ga-formerr-top strong { display: block; margin-bottom: 6px; }
.ga-formerr-top ul { margin: 0; padding-left: 18px; }

/* 내 문의 내역 / 비회원 조회 — 폼 위에 두는 보조 패널 */
.ga-iqmine, .ga-iqlookup { margin-bottom: 22px; padding: 20px 22px; border-radius: 14px;
                            background: #fcf9f8; border: 1px solid #f4eae8; }
.ga-iqmine h2, .ga-iqlookup h2 { margin: 0 0 13px; font-size: 15px; font-weight: 800; color: var(--ga-ink);
                                  padding-left: 11px; border-left: 3px solid var(--ga-primary); }
.ga-iqlookup h2 small { font-weight: 500; color: #baa6a3; font-size: 12.5px; }
.ga-iqmine-row { display: flex; align-items: center; gap: 12px; padding: 12px 6px;
                 border-top: 1px solid #f5efee; text-decoration: none; color: inherit; }
.ga-iqmine-row:first-of-type { border-top: 0; }
.ga-iqmine-row .tt { flex: 1; font-size: 13.5px; font-weight: 700; color: var(--ga-ink);
                      white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ga-iqmine-row .dt { flex: 0 0 auto; font-size: 12px; color: #baa6a3; }
.ga-iqlookup form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ga-iqlookup input { padding: 10px 13px; border: 1.5px solid #ecdfdd; border-radius: 9px; font-size: 13.5px; }
.ga-iqlookup input[name="lk_phone"] { width: 180px; }
.ga-iqlookup input[name="lk_password"] { width: 160px; }
.ga-iqlookup button { background: var(--ga-ink); color: #fff; font-weight: 700; border: 0; border-radius: 9px;
                       padding: 11px 22px; font-size: 13.5px; cursor: pointer; }
.ga-iqlookup-note { margin: 10px 0 0; font-size: 12px; color: #baa6a3; }

/* 상태 배지 (목록·본문 공용) */
.ga-iqst { display: inline-block; font-size: 12px; font-weight: 800; padding: 5px 13px; border-radius: 20px; }
.ga-iqst.wait { background: #fff3e6; color: #b3720c; }
.ga-iqst.done { background: #e6f7ec; color: #157a3d; }
.ga-iqmine-row .ga-iqst { flex: 0 0 auto; font-size: 11px; padding: 4px 10px; }

/* 문의 상세(/partnership/{id}) */
.ga-iqview { max-width: 720px; margin: 0 auto; }
.ga-iqview h2 { font-size: 19px; font-weight: 800; margin: 10px 0 18px; color: var(--ga-ink); }
.ga-iqdl { display: grid; grid-template-columns: 110px 1fr; gap: 10px 14px; font-size: 14px; margin: 0; }
.ga-iqdl dt { color: #a68e8a; }
.ga-iqdl dd { margin: 0; color: var(--ga-ink); font-weight: 600; }
.ga-iqcontent { margin-top: 18px; padding: 18px 20px; border-radius: 12px; background: #fcf9f8;
                border: 1px solid #f5efee; font-size: 14px; line-height: 1.85; color: #6a4b46; }
.ga-iqreply { margin-top: 18px; padding: 22px 24px; border-radius: 14px;
              background: linear-gradient(180deg,#fff8f7,#fff1ef); border: 1.5px solid #ffd5cf; }
.ga-iqreply .hd { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ga-iqreply .hd i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px;
                     background: linear-gradient(140deg,#e2452d,#a92d1a); color: #fff; font-style: normal;
                     font-weight: 800; font-size: 11px; }
.ga-iqreply .hd b { font-size: 14.5px; color: var(--ga-ink); }
.ga-iqreply .hd span { margin-left: auto; font-size: 12px; color: #b49b97; }
.ga-iqreply .bd { font-size: 14px; line-height: 1.85; color: #52312c; }
.ga-iqwait { margin-top: 18px; padding: 22px; border-radius: 12px; background: #faf7f7;
             border: 1px dashed #e2d5d3; text-align: center; color: #967f7c; font-size: 13.5px; line-height: 1.8; }

@media (max-width: 640px) {
  .ga-iqrow { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .ga-iqlabel { padding-top: 0; }
  .ga-iqcol2 { grid-template-columns: 1fr 1fr; }
  .ga-iqlookup form { flex-direction: column; align-items: stretch; }
  .ga-iqlookup input, .ga-iqlookup button { width: 100%; }
  .ga-iqdl { grid-template-columns: 88px 1fr; }
}

/* ══════════════ 이용 후기 (2026-07-28) ══════════════
   ★후기 0건일 때는 평균 별점·분포를 아예 렌더하지 않는다(PHP 쪽에서 차단).
     여기 스타일은 '실제 데이터가 있을 때'만 쓰인다. */
.ga-stars { display: inline-flex; gap: 1px; line-height: 1; letter-spacing: -1px; }
.ga-stars i { font-style: normal; color: #eadddb; font-size: 14px; }
.ga-stars i.on { color: #f59e0b; }
.ga-stars i.half { background: linear-gradient(90deg, #f59e0b 50%, #eadddb 50%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.ga-stars.lg i { font-size: 20px; }

.ga-rv { border: 1px solid var(--ga-line); border-radius: 14px; padding: 16px; background: #fff; }

.ga-rvmsg { margin: 0 0 12px; padding: 11px 13px; border-radius: 10px; font-size: 13.5px; font-weight: 700; }
.ga-rvmsg.ok  { background: #fdf5ec; color: #5f3506; border: 1px solid #f3d0a7; }
.ga-rvmsg.err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.ga-rvhead { display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid var(--ga-line); }
.ga-rvscore { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.ga-rvscore b { font-size: 34px; font-weight: 800; color: var(--ga-ink); line-height: 1; }
.ga-rvscore span { font-size: 12.5px; color: var(--ga-mute); }

.ga-rvdist { list-style: none; margin: 0; padding: 0; flex: 1 1 220px; min-width: 0; }
.ga-rvdist li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ga-ink2); }
.ga-rvdist-k { width: 26px; flex: none; }
.ga-rvdist-bar { flex: 1 1 auto; height: 6px; border-radius: 4px; background: #f7efee; overflow: hidden; }
.ga-rvdist-bar i { display: block; height: 100%; background: #f59e0b; border-radius: 4px; }
.ga-rvdist-n { width: 22px; flex: none; text-align: right; color: var(--ga-mute); }

.ga-rvlist { list-style: none; margin: 0; padding: 0; }
.ga-rvlist li { padding: 15px 0; border-bottom: 1px solid var(--ga-line); }
.ga-rvlist li:last-child { border-bottom: 0; padding-bottom: 4px; }
.ga-rvmeta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 7px; }
.ga-rvmeta b { font-size: 13.5px; font-weight: 700; color: var(--ga-ink); }
.ga-rvmeta time { font-size: 12px; color: var(--ga-mute); }
.ga-rvtag { font-size: 11.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  background: #fff0ee; color: var(--ga-primary); }
.ga-rvtag.lite { background: var(--ga-soft); color: var(--ga-ink2); }
.ga-rvlist p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--ga-ink2); word-break: break-word; }
.ga-rvreply { margin-top: 10px; padding: 11px 13px; border-radius: 10px; background: var(--ga-soft);
  border-left: 3px solid var(--ga-primary); }
.ga-rvreply b { display: block; font-size: 12.5px; color: var(--ga-primary); margin-bottom: 4px; }

.ga-rvempty { margin: 0; padding: 18px 4px; font-size: 14px; line-height: 1.8; color: var(--ga-ink2); text-align: center; }
.ga-rvempty b { display: block; margin-top: 6px; font-size: 12.5px; font-weight: 700; color: var(--ga-mute); }

/* 작성 폼 */
.ga-rvform { margin-top: 14px; border-top: 1px solid var(--ga-line); padding-top: 14px; }
.ga-rvform > summary { cursor: pointer; font-size: 14px; font-weight: 800; color: var(--ga-primary);
  list-style: none; display: inline-flex; align-items: center; gap: 6px; padding: 9px 15px;
  border: 1px solid #fbd3cd; border-radius: 10px; background: #fff0ee; }
.ga-rvform > summary::-webkit-details-marker { display: none; }
.ga-rvform > summary:before { content: '✎'; }
.ga-rvform[open] > summary { margin-bottom: 14px; }
.ga-rvfrow { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.ga-rvf { display: flex; flex-direction: column; gap: 5px; flex: 1 1 150px; min-width: 0; margin-bottom: 10px; }
.ga-rvf > span { font-size: 12.5px; font-weight: 700; color: var(--ga-ink2); }
.ga-rvf > span i { font-style: normal; font-size: 11px; color: #dc2626; margin-left: 3px; }
.ga-rvf input, .ga-rvf select, .ga-rvf textarea {
  width: 100%; box-sizing: border-box; border: 1px solid var(--ga-line); border-radius: 10px;
  padding: 10px 12px; font-size: 14px; font-family: inherit; color: var(--ga-ink); background: #fff; }
.ga-rvf textarea { resize: vertical; line-height: 1.7; }
.ga-rvf input:focus, .ga-rvf select:focus, .ga-rvf textarea:focus {
  outline: none; border-color: var(--ga-primary); box-shadow: 0 0 0 3px rgba(235,63,37,.12); }
.ga-rvnote { margin: 2px 0 12px; font-size: 12px; line-height: 1.7; color: var(--ga-mute); }
.ga-rvform .ga-btn { max-width: 200px; }
/* 허니팟 — 화면에서 지우되 display:none 은 일부 봇이 눈치채므로 화면 밖으로 밀어낸다 */
.ga-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 560px) {
  .ga-rv { padding: 13px; }
  .ga-rvhead { gap: 12px; }
  .ga-rvscore { min-width: 92px; }
  .ga-rvscore b { font-size: 28px; }
  .ga-rvform .ga-btn { max-width: none; }
}
.ga-shop-rate { display: flex; align-items: center; gap: 5px; margin: 4px 0 0; }
.ga-shop-rate b { font-size: 12.5px; font-weight: 800; color: var(--ga-ink); }
.ga-shop-rate em { font-style: normal; font-size: 11.5px; color: var(--ga-mute); }
.ga-shop-rate .ga-stars i { font-size: 12px; }

/* ── 롱테일 내부링크 블록 (2026-07-28) ── */
.ga-lthint { margin: -6px 0 10px; font-size: 13px; line-height: 1.7; color: var(--ga-ink2); }

.ga-ltgroups { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); gap: 10px; }
.ga-ltgroup { min-width: 0; border: 1px solid var(--ga-line); border-radius: 12px; padding: 13px 14px; background: #fff; }
.ga-ltgroup > b { display: block; font-size: 13.5px; font-weight: 800; color: var(--ga-ink);
  padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid var(--ga-line); }
.ga-ltgroup ul { list-style: none; margin: 0; padding: 0; min-width: 0; }
.ga-ltgroup li { min-width: 0; }
.ga-ltgroup li + li { margin-top: 6px; }
.ga-ltgroup a { display: block; font-size: 13px; line-height: 1.5; color: var(--ga-ink2);
  text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ga-ltgroup a:before { content: '›'; color: var(--ga-mute); margin-right: 5px; }
.ga-ltgroup a:hover { color: var(--ga-primary); text-decoration: underline; }

@media (max-width: 560px) {
  .ga-ltgroups { grid-template-columns: minmax(0, 1fr); }
}

/* ── 접근성 텍스트 숨김 + 페이징 (2026-08-07)
   그누보드 get_paging() 은 "열린/페이지/맨끝" 같은 스크린리더용 문구를
   .sound_only 로 감싸 출력한다. 전역 규칙이 없으면 화면에 그대로 노출된다. */
.sound_only,
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pg_wrap { display: flex; justify-content: center; margin: 40px 0 8px; }
.pg_wrap .pg { display: inline-flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pg_wrap .pg_page,
.pg_wrap .pg_current {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border-radius: 10px; font-size: 15px; line-height: 1;
  text-decoration: none;
}
.pg_wrap .pg_page {
  color: #684e4a; background: #fff;
  border: 1px solid #f0e4e2;
  transition: background .15s, border-color .15s, color .15s;
}
.pg_wrap .pg_page:hover,
.pg_wrap .pg_page:focus { background: #f9f2f1; border-color: #e1cecb; color: #37221f; }
.pg_wrap .pg_current {
  color: #fff; background: #6f512f; border: 1px solid #6f512f;
  font-weight: 700; cursor: default;
}
@media (max-width: 600px) {
  .pg_wrap .pg_page,
  .pg_wrap .pg_current { min-width: 34px; height: 34px; padding: 0 9px; font-size: 14px; }
}

/* ── 매거진 상세 하단 · 관련 글 / 추천 업소 (2026-08-07) ───────── */
.ga-relmag,.ga-relshop{margin:36px 0 0;padding-top:28px;border-top:1px solid #f2e8e6}
.ga-relmag h2,.ga-relshop h2{margin:0 0 16px;font-size:19px;font-weight:800;letter-spacing:-.035em;color:#301e1b}
.ga-relshop-hd{display:flex;align-items:baseline;justify-content:space-between;gap:14px;margin-bottom:16px}
.ga-relshop-hd h2{margin:0}
.ga-relshop-hd a{font-size:13.5px;font-weight:700;color:#6f512f;white-space:nowrap}

/* ★관련 글과 추천 업소는 같은 열 수로 맞춘다.
   auto-fill 로 두면 카드 최소폭이 달라 두 줄의 열 수가 어긋난다(업소가 왼쪽으로 몰려 보였다). */
.ga-relmag ul{list-style:none;margin:0;padding:0;display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.ga-relmag a{display:block;height:100%;padding:16px 18px;border-radius:14px;background:#fff;
  border:1px solid #f2e8e6;box-shadow:0 1px 2px rgba(60,25,20,.04);transition:.18s ease}
.ga-relmag a:hover{border-color:#e8cfcb;box-shadow:0 10px 24px rgba(60,25,20,.10);transform:translateY(-2px)}
.ga-relmag b{display:block;font-size:15px;font-weight:700;line-height:1.5;letter-spacing:-.03em;color:#301e1b}
.ga-relmag em{display:block;margin-top:7px;font-style:normal;font-size:13px;line-height:1.65;color:#745d5a}

.ga-relshop ul{list-style:none;margin:0;padding:0;display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.ga-relshop a{display:block;height:100%;border-radius:14px;overflow:hidden;background:#fff;
  border:1px solid #f2e8e6;box-shadow:0 1px 2px rgba(60,25,20,.04);transition:.2s ease}
.ga-relshop a:hover{border-color:#e8cfcb;box-shadow:0 10px 24px rgba(60,25,20,.10);transform:translateY(-3px)}
.ga-relshop-th{display:block;aspect-ratio:4/3;overflow:hidden;background:#faf3f2}
.ga-relshop-th img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}
.ga-relshop a:hover .ga-relshop-th img{transform:scale(1.05)}
.ga-relshop-th i{display:block;width:100%;height:100%;
  background:linear-gradient(135deg,#f8eeed,#f2e1df)}
.ga-relshop-tx{display:block;padding:11px 13px 14px}
.ga-relshop-tx em{display:block;font-style:normal;font-size:12px;font-weight:700;color:#6f512f}
.ga-relshop-tx b{display:block;margin-top:3px;font-size:14.5px;font-weight:800;letter-spacing:-.03em;color:#301e1b;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

@media (max-width:1024px){
  .ga-relmag ul,.ga-relshop ul{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:560px){
  .ga-relmag ul{grid-template-columns:1fr}
  .ga-relshop ul{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
}


/* ══════════════ 가온 전용 컴포넌트 (2026-08-20) ══════════════ */

/* 종목 카드 그리드 — 홈·코스 허브·지역 페이지 공용.
   ★원본에는 글자 칩만 있었다. 픽토그램 + 등록 수를 함께 보여 준다. */
.ga-catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.ga-catgrid.sm { grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); }
.ga-catgrid > a {
  display: flex; align-items: center; gap: 10px; padding: 13px 12px;
  border: 1px solid var(--ga-line); border-radius: var(--ga-r); background: #fff;
  font-size: 14px; font-weight: 700; color: var(--ga-ink); line-height: 1.25;
  transition: border-color .14s, transform .14s, box-shadow .14s;
}
.ga-catgrid > a:hover { border-color: var(--ga-primary); transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232,52,28,.12); }
.ga-catgrid > a b { font-weight: 700; }
.ga-catgrid > a em { margin-left: auto; font-style: normal; font-size: 12px; font-weight: 600; color: var(--ga-mute); }
.ga-ic-cat { display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; }
.ga-ic-cat.t1 { color: var(--ga-ic-1); background: rgba(232,52,28,.10); }
.ga-ic-cat.t2 { color: var(--ga-ic-2); background: rgba(194,65,12,.10); }
.ga-ic-cat.t3 { color: var(--ga-ic-3); background: rgba(180,83,9,.10); }
.ga-ic-cat.t4 { color: var(--ga-ic-4); background: rgba(159,18,57,.10); }
.ga-catgrid.sm .ga-ic-cat { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 8px; }
.ga-ic { display: inline-flex; vertical-align: -3px; color: currentColor; }

/* 지역 페이지 요약 수치 */
.ga-statrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ga-statrow span { padding: 7px 12px; border: 1px solid var(--ga-line); border-radius: var(--ga-r);
  background: #fff; font-size: 13px; color: var(--ga-ink2); }
.ga-statrow b { color: var(--ga-primary); font-size: 15px; }

/* 상세 — 제목(seo_title) 아래 실제 상호 */
.ga-sum-name { margin: 6px 0 0; font-size: 13px; color: var(--ga-ink2); font-weight: 600; }

/* 모서리 — 원본의 둥근 톤을 각지게 낮춘다(같은 골격이라도 인상이 갈린다) */
.ga-shop, .ga-panel, .ga-widget, .ga-hubgrid > a, .ga-chips .ga-chip, .ga-btn { border-radius: var(--ga-r) !important; }
.ga-shop-thumb img { border-radius: var(--ga-r) var(--ga-r) 0 0; }
