/* ═══════════════════════════════════════════════════════════════
   마이테라피 스킨 — 단일 정본 (중복 블록 금지)
   2단 디렉토리 + 카드/상세. ★뉴트럴 화이트+블루 톤 — 같은 계열 다른 사이트(코리아테라피=
   연한배경+핫핑크)와 룩앤필을 의도적으로 분리한다(동일 운영자 패턴 노출 방지).
   ═══════════════════════════════════════════════════════════════ */
:root {
  --mt-primary: #2563eb;
  --mt-primary-d: #1d4ed8;
  --mt-accent:  #0f766e;
  --mt-ink:     #0f172a;
  --mt-ink2:    #475569;
  --mt-mute:    #94a3b8;
  --mt-line:    #e2e8f0;
  --mt-soft:    #f8fafc;
}

/* ── 그누보드 기본 골격 무력화 ── */
#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: #ffffff; font-family: 'Pretendard', 'Malgun Gothic', dotum, sans-serif; color: var(--mt-ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

/* ── 골격 ── */
.mt-wrap { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 12px; }
.mt-body { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 18px; align-items: start; padding: 16px 0 44px; }
.mt-body.full { grid-template-columns: 1fr; }
/* ★full 레이아웃도 헤더(mt-wrap 1300)와 같은 폭을 쓴다.
   예전처럼 1120 로 좁혀 중앙정렬하면 상단 메뉴보다 본문이 90px 안쪽으로 밀려 정렬이 어긋난다. */
.mt-body.full .mt-main { width: 100%; }
@media (max-width: 1024px) { .mt-body { grid-template-columns: 1fr; } .mt-aside { display: none; } }

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

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

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

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

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

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

.mt-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;
}
.mt-widget > h3:before { content: none; }                   /* 기존 좌측 3px 바 제거 */
/* 우측 아이콘 — 반투명 원형 배지 */
.mt-widget > h3 .mt-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);
}

.mt-widget .mt-wbody { padding: 10px; background: linear-gradient(#fff, #fafbfd); }
.mt-linkgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mt-linkgrid a {
  display: block; padding: 8px 9px; border-radius: 9px; font-size: 13px; font-weight: 600;
  color: #4a5563; letter-spacing: -.02em; background: #fff;
  border: 1px solid #eceff4; box-shadow: 0 1px 1px rgba(16,24,40,.04);
  transition: transform .13s ease, box-shadow .13s ease, background .13s, color .13s, border-color .13s;
}
.mt-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) {
  .mt-widget:hover, .mt-linkgrid a:hover { transform: none; }
}

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

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

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

/* ── 공지 패널 ── */
.mt-panel { border: 1px solid var(--mt-line); border-radius: 16px; background: #fff; overflow: hidden;
  box-shadow: 0 1px 2px rgba(16,24,40,.04); }
.mt-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(--mt-ink); border-bottom: 1px solid #f1f4f7; }
.mt-panel .mt-pbody { padding: 8px 20px 16px; }
.mt-notice { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0;
  font-size: 14px; color: var(--mt-ink2); border-bottom: 1px solid #f4f6f8; }
.mt-notice:last-child { border-bottom: 0; }
.mt-notice a:hover { color: var(--mt-primary); }
.mt-notice em { font-style: normal; color: #a3adba; font-size: 12.5px; flex: 0 0 auto; }

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

/* ═══ 업소 카드 — 아웃라인 + 입체감 + 컬러 포인트 ═══ */
.mt-shopgrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 1200px) { .mt-shopgrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 820px)  { .mt-shopgrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; } }
@media (max-width: 420px)  { .mt-shopgrid { grid-template-columns: 1fr; } }

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

.mt-shop-thumb { position: relative; aspect-ratio: 1/1; border-radius: 11px; overflow: hidden; background: #eef1f5; }
.mt-shop-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.mt-shop:hover .mt-shop-thumb img { transform: scale(1.06); }
.mt-shop-thumb:after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(17,24,39,.18)); pointer-events: none; }
.mt-noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.mt-noimg.t0 { background: linear-gradient(135deg,#7f9cf5,#5a67d8); } .mt-noimg.t1 { background: linear-gradient(135deg,#68d391,#38a169); }
.mt-noimg.t2 { background: linear-gradient(135deg,#f6ad55,#dd6b20); } .mt-noimg.t3 { background: linear-gradient(135deg,#fc8181,#e53e3e); }
.mt-noimg.t4 { background: linear-gradient(135deg,#76e4f7,#0987a0); } .mt-noimg.t5 { background: linear-gradient(135deg,#d6bcfa,#805ad5); }
.mt-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(58,138,253,.95); color: #fff; }

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

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

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

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

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

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

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

.mt-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, #101828, #1d2939);
  box-shadow: 0 10px 24px rgba(16,24,40,.28); }
.mt-sum-price > span { font-size: 11.5px; font-weight: 800; color: #93c5fd; width: 100%; letter-spacing: .02em; }
.mt-sum-price del { font-size: 13px; color: rgba(255,255,255,.45); }
.mt-sum-price b { font-size: 27px; font-weight: 800; letter-spacing: -.05em; color: #fff; }
.mt-sum-price em { font-style: normal; font-size: 12px; color: rgba(255,255,255,.6); }

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

.mt-sum-cta { display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px; }
.mt-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; }
.mt-btn.main { background: var(--mt-primary); color: #fff; box-shadow: 0 6px 16px rgba(58,138,253,.28); }
.mt-btn.main:hover { background: var(--mt-primary-d); box-shadow: 0 8px 20px rgba(58,138,253,.4); }
.mt-btn.ghost { background: #eef4ff; color: var(--mt-primary); }
.mt-btn.off { background: var(--mt-soft); color: #a3adba; cursor: default; }

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

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

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

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

/* 관리사 */
.mt-stafflist { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
@media (max-width: 820px) { .mt-stafflist { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .mt-stafflist { grid-template-columns: 1fr; } }
.mt-staff { display: flex; gap: 12px; align-items: center; padding: 13px 15px; border: 1px solid #e2eaf4; border-radius: 12px; background: linear-gradient(135deg, #f5f9ff, #eef3fa); }
.mt-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,#8aa6ff,#5a67d8); }
.mt-staff b { font-size: 14px; color: #232f3e; }
.mt-staff p { font-size: 12px; color: #98a1ab; margin-top: 2px; }

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

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

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

/* 하단 고정 예약 바 — 모바일 전용 */
.mt-cta { display: none; }
@media (max-width: 960px) {
  .mt-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 #e6eaef;
    box-shadow: 0 -4px 20px rgba(16,24,40,.08); }
  .mt-cta-in { display: flex; gap: 8px; padding: 10px 14px; }
  .mt-cta-name { display: none; }
  .mt-cta-btn { flex: 1; text-align: center; padding: 14px 10px; border-radius: 12px; font-size: 15px; font-weight: 800; }
  .mt-cta-btn.main { background: var(--mt-primary); color: #fff; }
  .mt-cta-btn.ghost { background: #eef4ff; color: var(--mt-primary); }
  .mt-cta-btn.disabled { background: var(--mt-soft); color: #a3adba; }
  .mt-detail { padding-bottom: 80px; }
}

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

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

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

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

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

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

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

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

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

.mt-terms { max-height: 150px; overflow-y: auto; padding: 14px 16px; border: 1px solid #e4e9ef;
  border-radius: 10px; background: #fafbfd; font-size: 12.5px; line-height: 1.75; color: #5a646f; }
.mt-terms strong { display: block; margin-bottom: 7px; color: var(--mt-ink); font-size: 13px; }
.mt-terms ul { margin: 0 0 8px; padding-left: 16px; list-style: disc; }
.mt-terms b { color: #3d4753; }

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

.mt-fsubmit { padding-top: 24px; text-align: center; }
.mt-fsubmit p { margin-top: 11px; font-size: 12.5px; color: var(--mt-mute); }
.mt-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, #5b9bfd, #2563eb);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 18px -8px rgba(37,99,235,.8);
  transition: transform .14s ease, box-shadow .14s ease; }
.mt-btn-primary:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 12px 24px -10px rgba(37,99,235,.9); }
.mt-btn-lg { height: 54px; min-width: 230px; font-size: 16px; }
.mt-btn-ghost { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px;
  border: 1px solid #dde3ea; border-radius: 11px; font-size: 15px; font-weight: 700; color: #5a646f; background: #fff; }
.mt-btn-ghost:hover { border-color: #b9c9e6; background: #f7faff; }

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

/* 접수 완료 */
.mt-formdone { text-align: center; padding: 46px 20px 50px; }
.mt-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, #34d399, #0d9488);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 10px 22px -10px rgba(13,148,136,.85); }
.mt-formdone h2 { font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.mt-formdone p { margin-top: 10px; font-size: 14px; color: #6b7683; line-height: 1.7; }
.mt-formdone-btns { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }

@media (max-width: 760px) {
  .mt-form { padding: 18px 16px 24px; border-radius: 14px; }
  .mt-frow { grid-template-columns: 1fr; gap: 9px; padding: 15px 0; }
  .mt-flabel { padding-top: 0; }
  .mt-btn-lg { width: 100%; min-width: 0; }
  .mt-formdone-btns { flex-direction: column; }
}
@media (hover: none) { .mt-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(--mt-line); border-radius: 16px; background: #fff; overflow: hidden; height: 100%;
  display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(16,24,40,.05), 0 14px 28px -22px rgba(15,28,58,.55);
  transition: transform .18s ease, box-shadow .18s ease; }
#bo_gall .gall_box:hover { transform: translateY(-3px); box-shadow: 0 2px 5px rgba(16,24,40,.07), 0 22px 38px -20px rgba(15,28,58,.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(--mt-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: #b4bcc6; 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: #2563eb; background: rgba(37,99,235,.09); border: 0; }
#bo_gall .bo_tit { font-size: 15.5px; font-weight: 700; line-height: 1.45; letter-spacing: -.03em; color: var(--mt-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
#bo_gall .gall_box:hover .bo_tit { color: var(--mt-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(--mt-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 .mt-dot { color: #d4dae2; }
#bo_gall .gall_info .mt-read { color: var(--mt-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: #8a95a3; }
#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 #dde3ea; background: #fff; font-size: 13px; font-weight: 600; color: #5a646f; }
#bo_gall #bo_cate_ul a:hover { border-color: #b9c9e6; background: #f7faff; }
#bo_gall #bo_cate_ul a.bo_cate_on { color: #fff; border-color: transparent; font-weight: 700;
  background: linear-gradient(135deg, #5b9bfd, #2563eb); box-shadow: 0 6px 14px -6px rgba(37,99,235,.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: 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; } }

/* ── 매거진 본문(읽기) ── */
.mt-post { max-width: 820px; margin: 0 auto; }
.mt-post .mt-fig { margin: 26px 0; }
.mt-post .mt-fig img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 12px 26px -18px rgba(15,28,58,.7); }
.mt-post .mt-cap { margin-top: 8px; font-size: 12.5px; color: var(--mt-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: 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(--mt-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,#5b9bfd,#2563eb);
  box-shadow: 0 5px 12px -6px rgba(37,99,235,.8); }
#bo_v h1#bo_v_title { font-size: 32px; line-height: 1.34; font-weight: 800; letter-spacing: -.035em;
  color: var(--mt-ink); margin: 0; }
#bo_v h1#bo_v_title .bo_v_tit { font-size: inherit; font-weight: inherit; }
.mt-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px;
  font-size: 13px; color: var(--mt-mute); }
.mt-byline .mt-by-name { font-weight: 700; color: var(--mt-ink2); }
.mt-byline time:before { content: '·'; margin-right: 10px; color: #cbd2da; }
.mt-byline .mt-by-policy { margin-left: auto; color: var(--mt-primary); font-weight: 600; }
.mt-byline .mt-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: #2f3742; 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(--mt-ink); line-height: 1.4; padding-left: 14px; border-left: 4px solid var(--mt-primary); }
#bo_v_con h3 { margin: 30px 0 12px; font-size: 18px; font-weight: 700; color: var(--mt-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(--mt-primary); }
#bo_v_con strong { font-weight: 700; color: var(--mt-ink); }
#bo_v_con a { color: var(--mt-primary); font-weight: 600; text-decoration: underline;
  text-decoration-color: rgba(58,138,253,.35); text-underline-offset: 3px; }
#bo_v_con a:hover { text-decoration-color: var(--mt-primary); background: rgba(58,138,253,.07); }
#bo_v_con blockquote { margin: 26px 0; padding: 18px 22px; border-radius: 12px;
  background: linear-gradient(135deg,#f4f8ff,#eef4ff); border-left: 4px solid #8fd0ff; color: #37455a; }
#bo_v_con blockquote p:last-child { margin: 0; }
#bo_v_con .mt-fig { margin: 30px 0; }
#bo_v_con .mt-fig img { width: 100%; height: auto; border-radius: 14px; display: block;
  box-shadow: 0 14px 30px -20px rgba(15,28,58,.8); }

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

/* 관련 글 카드 그리드 */
.mt-relgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.mt-relcard { display: block; background: #fff; border: 1px solid var(--mt-line); border-radius: 13px;
  overflow: hidden; text-decoration: none; transition: transform .16s, box-shadow .16s, border-color .16s; }
.mt-relcard:hover { transform: translateY(-3px); border-color: #b9d2fb;
  box-shadow: 0 12px 24px -14px rgba(15,28,58,.5); }
.mt-relthumb { display: block; position: relative; aspect-ratio: 3/2; background: #eef2f7; overflow: hidden; }
.mt-relthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mt-relcard:hover .mt-relthumb img { transform: scale(1.04); }
.mt-relthumb img { transition: transform .3s; }
.mt-relnoimg { position: absolute; inset: 0; background: linear-gradient(135deg,#e8eef7,#dbe5f2); }
.mt-relbody { display: block; padding: 10px 12px 13px; }
.mt-relcat { display: inline-flex; align-items: center; gap: 4px; margin-bottom: 5px;
  font-size: 11.5px; font-weight: 700; color: var(--mt-primary); }
.mt-relcat svg { width: 13px; height: 13px; flex: none; }
.mt-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(--mt-ink); word-break: keep-all; }
.mt-relcard:hover b { color: var(--mt-primary-d); }

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

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

/* 목차 */
.mt-toc { margin: 0 0 34px; padding: 18px 22px; border-radius: 14px; background: #fff;
  border: 1px solid var(--mt-line); box-shadow: 0 1px 2px rgba(16,24,40,.05); }
.mt-toc strong { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 800;
  letter-spacing: -.02em; color: var(--mt-ink); }
.mt-toc ol { margin: 0; padding-left: 20px; list-style: decimal; }
.mt-toc li { margin-bottom: 6px; }
.mt-toc a { font-size: 14px; color: #55606d; text-decoration: none; }
.mt-toc a:hover { color: var(--mt-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; }
  .mt-postrel { padding: 20px 18px 18px; }
  .mt-byline .mt-by-policy { margin-left: 0; width: 100%; }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── 폼: 입력 글자 확대(모바일 iOS 자동확대 방지 겸) ── */
.mt-form input[type=text], .mt-form input[type=tel], .mt-form input[type=password],
.mt-form select, .mt-form textarea { font-size: 15px; }
.mt-check { font-size: 14.5px; }
.mt-terms { font-size: 13.5px; }
.mt-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 #2b7bf0; outline-offset: 2px; border-radius: 4px;
}

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

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

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

/* 안내: 청록 액센트 + 옅은 바탕 */
.mt-infobox.t-notice { background: #f6fbfa; border-color: #d9ede8; }
.mt-infobox.t-notice h4 { color: #0f766e; border-bottom-color: #e2f0ec; }
.mt-infobox.t-notice h4::before { background: #14b8a6; }

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

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

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

/* ── 자매 서비스 배너(테라피하이어) — 사이드바 최상단, 다크 네이비+골드 ── */
.mt-sisban { display: block; margin-bottom: 14px; padding: 22px 22px 20px; border-radius: 16px;
  background: linear-gradient(135deg, #151b28 0%, #223052 55%, #2c3a55 100%);
  border: 1px solid rgba(201,162,75,.35); text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 22px rgba(20,28,45,.28); transition: transform .15s, box-shadow .15s; }
.mt-sisban:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20,28,45,.36); }
.mt-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 성능 점수를 갉아먹는다(비합성 애니메이션 경고의 실체). */
.mt-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: mt-sisban-shine 4.5s ease-in-out infinite; }
@keyframes mt-sisban-shine {
  0%, 55% { transform: translateX(-160%) skewX(-18deg); }
  85%, 100% { transform: translateX(320%) skewX(-18deg); }
}
@media (prefers-reduced-motion: reduce) { .mt-sisban::after { animation: none; } }
.mt-sisban-badge { position: relative; display: inline-block; font-style: normal;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; color: #10151f;
  background: linear-gradient(135deg, #e5c983, #c9a24b); border-radius: 20px;
  padding: 4px 11px; margin-bottom: 10px; }
.mt-sisban em { display: block; font-style: normal; font-size: 13px; font-weight: 600;
  color: #c3ccdd; margin-bottom: 3px; position: relative; }
.mt-sisban strong { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  color: #e5c983; position: relative; line-height: 1.3; }
.mt-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; }
.mt-sisban span b { font-weight: 800; transition: transform .15s; }
.mt-sisban:hover span { background: rgba(201,162,75,.28); }
.mt-sisban:hover span b { transform: translateX(3px); }

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

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

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

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

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

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

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

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

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

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

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

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