@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Noto+Serif+KR:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS & RESET
   ========================================================================== */
:root {
  /* Foundation & Ink (80–90% of visual weight) */
  --ink: #14353c;           /* Primary brand ink (headings, text, logo, main structures) */
  --ink-2: #244b54;         /* Secondary body & subheads */
  --ink-light: #3d636c;     /* Muted body text */
  --paper: #f8f6f0;         /* Primary foundation paper background */
  --paper-card: #faf9f5;    /* Subtle card surface */
  --white: #ffffff;         /* Pure crisp surface for selected cards & modals */
  --line: #e2e6df;          /* Clean structural border */
  --line-subtle: #edf0eb;   /* Subtle divider */

  /* Primary Accent (Restrained "Look here" focus) */
  --coral: #e05a3c;         /* Primary interaction & active states */
  --coral-hover: #c94c30;
  --coral-light: #fef1ed;

  /* Status Colors (Semantic Journey Palette) */
  --wished: #c7881e;        /* ♡ WISHED: Warm Mustard / Gold */
  --wished-light: #fdf6ea;
  --mustard: #c7881e;
  --mustard-light: #fdf6ea;

  --completed: #2a6f59;     /* ✓ COMPLETED: Sage Green */
  --completed-light: #e6f3ee;
  --sage: #2a6f59;
  --sage-light: #e6f3ee;

  --visited: #35535b;       /* ● VISITED: Muted Ink / Neutral */
  --visited-light: #eaf0f2;
  
  --muted: #647674;
  --muted-light: #90a19f;
  
  --shadow-sm: 0 2px 8px rgba(20, 53, 60, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 53, 60, 0.07);
  --shadow-lg: 0 20px 48px rgba(20, 53, 60, 0.11);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --wrap-max: 1140px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================================== */
.wrap {
  width: min(var(--wrap-max), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  color: var(--coral);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

h1, h2, h3, h4 {
  color: var(--ink);
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 {
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.18;
  margin-bottom: 18px;
}

h2 {
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.25;
  margin-bottom: 12px;
}

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.4;
  margin-bottom: 8px;
}

.lead {
  font-size: clamp(16px, 2vw, 17.5px);
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 0 24px;
}

.text-link {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.02em;
}
.text-link:hover {
  color: var(--coral-hover);
  transform: translateX(2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background-color: var(--coral);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(224, 90, 60, 0.2);
}
.btn:hover {
  background-color: var(--coral-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(224, 90, 60, 0.28);
}
.btn.ghost {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: none;
}
.btn.ghost:hover {
  background-color: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn.sm {
  padding: 7px 14px;
  font-size: 12.5px;
}

.section {
  padding: 68px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 20px;
}
.section-intro {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  max-width: 580px;
  line-height: 1.6;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.topbar {
  background-color: #0f2a30;
  color: #c9d8d4;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #e4edea;
}
.topbar-sub {
  font-size: 11.5px;
  color: #92a7a2;
}

.site-header {
  background-color: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: auto;
}
.navlinks a {
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
}
.navlinks a:hover {
  color: var(--coral);
}
.navlinks a.active {
  color: var(--coral);
}
.navlinks a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--coral);
}

.nav-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: var(--white);
  color: var(--ink);
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.15s ease;
}
.nav-search-btn:hover {
  background-color: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 0;
  outline: none;
  background: transparent;
  user-select: none;
}
.brand:focus,
.brand:focus-visible,
.brand:active,
.brand:hover {
  outline: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.site-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  image-rendering: -webkit-optimize-contrast;
}
.site-logo-img:hover,
.site-logo-img:active,
.site-logo-img:focus {
  opacity: 1 !important;
  transform: none !important;
}

.footer-logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.lang-switch {
  padding: 4px 6px;
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
  margin-left: 4px;
}
.lang-switch:hover {
  background: transparent;
  color: var(--coral) !important;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  color: var(--ink);
  padding: 8px;
  margin-left: auto;
}

/* ==========================================================================
   4. BRAND INTRO (Quiet & Elegant Editorial Hero Statement)
   ========================================================================== */
.brand-intro {
  padding: 32px 0 16px;
  background: transparent;
  border-bottom: 0;
}
.brand-intro-text {
  font-family: 'DM Sans', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(17px, 2.0vw, 21px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

:lang(en) .brand-intro-text {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-size: clamp(17px, 2.0vw, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.55;
  color: var(--ink);
}

/* ==========================================================================
   5. EDITORIAL ATLAS WORLD MAP SECTION (Primary Core Feature)
   ========================================================================== */
.section-world-map {
  padding: 24px 0 60px;
}

.map-eyebrow {
  color: var(--coral) !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.editorial-main-heading {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.editorial-main-heading .serif-moment {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}

.map-text-link {
  color: var(--coral) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.map-text-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.editorial-text-marker {
  cursor: pointer;
}
.editorial-text-marker .c-name {
  fill: var(--ink);
  transition: fill 0.15s ease;
}
.editorial-text-marker .c-count-label {
  fill: #667e7c;
  transition: fill 0.15s ease;
}
.editorial-text-marker:hover .c-name {
  fill: var(--coral);
}
.editorial-text-marker:hover .c-count-label {
  fill: var(--coral);
}

.world-map-container {
  margin: 20px 0 32px;
}

.map-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 12px 22px;
}
.map-nav-left {
  display: flex;
  align-items: center;
}
.map-breadcrumbs-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.crumb-sep {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.map-crumb-btn {
  color: var(--ink);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background-color: var(--paper-card);
  border: 1px solid var(--line);
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.map-crumb-btn:hover {
  background-color: var(--white);
  border-color: var(--coral);
  color: var(--coral);
}
.map-crumb-btn.active {
  background-color: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.map-back-btn {
  padding: 6px 14px;
  background-color: var(--coral);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  transition: background-color 0.15s ease;
  box-shadow: 0 2px 6px rgba(224, 90, 60, 0.2);
}
.map-back-btn:hover {
  background-color: var(--coral-hover);
}

.map-legend-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.legend-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.legend-dot {
  font-style: normal;
}
.wished-dot { color: var(--wished); }
.completed-dot { color: var(--completed); }
.visited-dot { color: var(--visited); }

.world-map-wrap {
  position: relative;
  background: linear-gradient(135deg, #f7f3ea 0%, #eee6d8 100%);
  border-left: 1px solid #dcd3c3;
  border-right: 1px solid #dcd3c3;
  border-top: 1px solid #dcd3c3;
  border-bottom: 1px solid #dcd3c3;
  overflow: hidden;
  padding: 16px 20px;
}
.world-map-svg {
  width: 100%;
  height: auto;
  max-height: 540px;
  display: block;
}
/* 1. 맵 상단 에디토리얼 헤더 & Inline Status Summary (상단 이동) */
.map-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #fdfbf7;
  border: 1px solid #dcd3c3;
  border-bottom: 1px solid #ede5d8;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 22px 26px 18px;
}

.map-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdfbf7;
  border-left: 1px solid #dcd3c3;
  border-right: 1px solid #dcd3c3;
  border-bottom: 0;
  border-top: 0;
  padding: 10px 20px 12px;
}
.map-select-input {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background-color: #ffffff;
  border: 1px solid #dcd3c3;
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s ease;
}
.map-select-input:hover, .map-select-input:focus {
  border-color: var(--coral);
}
.map-crumb-btn.back-btn {
  background-color: var(--coral);
  color: #ffffff;
  border-color: var(--coral);
}
.map-crumb-btn.back-btn:hover {
  background-color: var(--coral-hover);
  color: #ffffff;
}

/* Real Geographic Vector Land Geometry (Ultra-Crisp Non-Scaling Stroke) */
.real-world-land {
  fill: #d2ded0;
  stroke: #b4c4b0;
  stroke-width: 0.85px;
  vector-effect: non-scaling-stroke;
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.focus-country-path {
  fill: #c4ddd3;
  stroke: #2a6f59;
  stroke-width: 1.2px;
  vector-effect: non-scaling-stroke;
  transition: fill 0.25s ease, stroke 0.25s ease, stroke-width 0.25s ease;
}
.focus-country-path:hover,
.focus-country-path.is-geo-highlighted {
  fill: #86ad9a !important;
  stroke: #1e5241 !important;
  stroke-width: 1.6 !important;
}
.focus-country-path.is-geo-selected {
  fill: #6d9683 !important;
  stroke: #164032 !important;
  stroke-width: 1.8 !important;
}

/* Zero-Jitter SVG Markers */
.continent-marker, .country-marker, .city-marker {
  cursor: pointer;
  outline: none;
}
.continent-marker:hover .c-halo {
  fill: rgba(224, 90, 60, 0.28);
}
.continent-marker:hover .c-base {
  fill: var(--coral);
}
.country-marker:hover .cnt-halo {
  fill: rgba(224, 90, 60, 0.28);
}
.country-marker:hover .cnt-base {
  fill: var(--coral);
}
.city-marker:hover .city-halo {
  fill: rgba(224, 90, 60, 0.36);
}
.city-marker:hover .city-base {
  fill: var(--coral);
}

.c-label, .cnt-label, .city-label {
  pointer-events: none;
}

/* 시안 4단계: 도시 팝업 카드 (2열 레이아웃: 텍스트 + 실제 랜드마크 사진) */
.map-popup-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: min(390px, calc(100% - 48px));
  background-color: #ffffff;
  border: 1px solid #dcd3c3;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(20, 53, 60, 0.16);
  padding: 18px 20px;
  z-index: 10;
  transition: 0.2s ease-out;
}
.map-popup-card.hidden {
  display: none;
}
.map-popup-card.visible {
  display: block;
  animation: fadeInUp 0.25s ease-out;
}
.popup-inner-layout {
  display: grid;
  grid-template-columns: 1fr 115px;
  gap: 16px;
  align-items: center;
}
.popup-breadcrumb-path {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.popup-city-heading {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 10px;
}
.popup-city-heading .pop-ko-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.popup-stats-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.popup-stats-badges .stat-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  background: var(--paper-card);
  border: 1px solid var(--line-subtle);
  border-radius: 4px;
}
.popup-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  background-color: var(--ink);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.popup-cta-btn:hover {
  background-color: var(--coral);
}
.popup-city-img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
}

/* ==========================================================================
   World Map 상단 헤더 & 인라인 상태 요약 캡슐 (WISHED, COMPLETED, VISITED)
   ========================================================================== */
.map-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  background-color: #fdfbf7;
  border: 1px solid #dcd3c3;
  border-bottom: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 24px 32px 18px;
}

.explorer-title-group {
  display: flex;
  flex-direction: column;
}

.explorer-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 3px 0 2px;
  line-height: 1.15;
}
.explorer-sub-name {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 8px;
}
.explorer-desc {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 5px 0 0;
  line-height: 1.5;
}

/* 알약형 인라인 상태 요약 바 (Capsule Pill Badge) */
.explorer-inline-stats {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid #ded6c8;
  border-radius: 30px;
  padding: 6px 18px;
  box-shadow: 0 2px 6px rgba(20, 53, 60, 0.04);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
}

.inline-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.inline-stat-item .stat-icon {
  font-style: normal;
}
.inline-stat-item .stat-wished { color: var(--wished); }
.inline-stat-item .stat-completed { color: var(--completed); }
.inline-stat-item .stat-visited { color: var(--visited); }
.inline-stat-item .stat-name {
  color: var(--muted);
}
.inline-stat-item .stat-val {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  margin-left: 2px;
}
.inline-stat-sep {
  color: #e2dacb;
  font-size: 11px;
}

/* 인터랙티브 계층 브레드크럼 */
.explorer-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.crumb-step {
  background: transparent;
  border: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s ease;
}
.crumb-step:hover {
  color: var(--coral);
}
.crumb-step.active {
  color: var(--coral);
  cursor: default;
}
.crumb-sep {
  color: #dcd3c3;
  font-size: 14.5px;
  font-weight: 700;
}

/* ==========================================================================
   하단 Dynamic Destination Explorer Panel (계층형 목적지 내비게이션 그리드)
   ========================================================================== */
.map-explorer-panel {
  background-color: #fdfbf7;
  border: 1px solid #dcd3c3;
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 4px 16px rgba(20, 53, 60, 0.04);
  padding: 22px 28px 20px;
}

.explorer-panel-head {
  margin-bottom: 14px;
}

/* 동적 계층 목적지 카드 그리드 */
.explorer-destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* 목적지 카드 공통 */
.dest-explorer-card {
  background-color: #ffffff;
  border: 1px solid #e8dfd2;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.dest-explorer-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(224, 90, 60, 0.09);
}
.dest-explorer-card:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.dest-explorer-card.is-city {
  padding: 0;
  overflow: hidden;
}

.dest-explorer-card.is-city .dest-city-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background-color: #ede6dc;
  flex-shrink: 0;
}

.dest-explorer-card.is-city .dest-city-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.dest-explorer-card.is-city:hover .dest-city-img {
  transform: scale(1.03);
}

.dest-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.dest-card-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  background-color: #f5efe6;
  padding: 2px 6px;
  border-radius: 4px;
}
.dest-card-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}
.dest-card-title {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  line-height: 1.35;
  flex-wrap: wrap;
}

.dest-card-meta {
  font-size: 12px;
  color: var(--ink-2);
  margin: 0 0 12px;
  line-height: 1.4;
}

.dest-card-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.dest-stat-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  background-color: #fbf9f4;
  border: 1px solid #eee6da;
  border-radius: 4px;
}

.dest-card-btn {
  margin-top: auto;
  width: 100%;
  padding: 8px 12px;
  background-color: #f7f2e8;
  border: 1px solid #e5dbcb;
  border-radius: 4px;
  color: var(--ink);
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}
.dest-card-btn:hover {
  background-color: var(--coral);
  border-color: var(--coral);
  color: #ffffff;
}

/* 도시 카드 액션 행 */
.dest-theme-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.dest-theme-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  background-color: #f5eee4;
  padding: 2px 6px;
  border-radius: 3px;
}

.dest-card-actions-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.dest-card-focus-btn {
  flex: 1;
  padding: 7px 10px;
  background-color: #ffffff;
  border: 1px solid #dcd3c3;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.dest-card-focus-btn:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.dest-card-link-btn {
  flex: 1.2;
  padding: 7px 10px;
  background-color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s ease;
}
.dest-card-link-btn:hover {
  background-color: var(--coral);
  border-color: var(--coral);
}

/* City Hub Hero Card (Level 4) */
.dest-explorer-card.is-city-active {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, #faf6ee 100%);
  border: 1px solid #e0d5c3;
  padding: 24px 28px;
  cursor: default;
}
.dest-hub-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.dest-hub-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.08em;
}
.dest-hub-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--ink);
  margin: 4px 0 2px;
}
.dest-hub-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}
.dest-hub-cats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dest-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background-color: #ffffff;
  border: 1px solid #e2dacb;
  border-radius: 20px;
  text-decoration: none;
  color: var(--ink);
  font-size: 11.5px;
  transition: all 0.15s ease;
}
.dest-cat-pill:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);
}
.cat-pill-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
}
.cat-pill-count {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  color: var(--coral);
}
.dest-hub-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--coral);
  color: #ffffff !important;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(224, 90, 60, 0.22);
  transition: all 0.15s ease;
}
.dest-hub-cta-btn:hover {
  background-color: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 90, 60, 0.3);
}

.explorer-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eee5d7;
  display: flex;
  justify-content: flex-end;
}
.explorer-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
  transition: gap 0.15s ease;
}
.explorer-all-link:hover {
  gap: 9px;
  color: var(--coral-hover);
}

/* ==========================================================================
   6. DISCOVER MOMENTS SECTION (Minimal & Streamlined Entry Cards)
   ========================================================================== */
.section-discover {
  padding: 64px 0 72px;
}

.discover-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.discover-cat-card {
  background-color: #ffffff;
  border: 1px solid #e8dfd2;
  border-radius: var(--radius-md);
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  position: relative;
  box-shadow: 0 1px 4px rgba(20, 53, 60, 0.03);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.discover-cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
  box-shadow: 0 6px 18px rgba(20, 53, 60, 0.07);
}

.cat-card-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background-color: #fbf9f5;
  border: 1px solid #eee5d8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ink);
  transition: all 0.2s ease;
}
.discover-cat-card:hover .cat-card-icon-wrap {
  background-color: var(--coral-light);
  border-color: rgba(224, 90, 60, 0.35);
  color: var(--coral);
}
.cat-svg-icon {
  width: 22px;
  height: 22px;
}

.cat-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}
.cat-card-title {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  line-height: 1.2;
}
.cat-card-sub {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.cat-card-footer {
  width: 100%;
  border-top: 1px solid #f2ebe0;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.15s ease;
}
.discover-cat-card:hover .cat-card-footer {
  color: var(--ink);
}
.discover-cat-card:hover .cat-card-count {
  color: var(--coral);
}
.cat-card-arrow {
  color: var(--coral);
  font-size: 12px;
  transition: transform 0.15s ease;
}
.discover-cat-card:hover .cat-card-arrow {
  transform: translateX(3px);
}

/* Destinations Page Refined Header & Filter Bar */
.destination-head-desc {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 4px 0 24px;
  max-width: 100%;
  word-break: keep-all;
}

.dest-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid #ded6c8;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 36px;
  box-shadow: 0 2px 8px rgba(20, 53, 60, 0.04);
}

.dest-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 260px;
}

.dest-search-input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
}
.dest-search-input::placeholder {
  color: var(--muted);
  font-size: 13.5px;
}

.dest-chips-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dest-chip {
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background-color: var(--paper-card);
  border: 1px solid #e2dacb;
  cursor: pointer;
  transition: all 0.15s ease;
}
.dest-chip:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.dest-chip.active {
  background-color: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.country-heading-flag {
  width: 32px;
  height: 21.33px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #d4ccbd;
  box-shadow: 0 1px 3px rgba(20, 53, 60, 0.08);
  display: inline-block;
  flex-shrink: 0;
}

.chip-flag-icon {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #d4ccbd;
  vertical-align: -1px;
  margin-right: 5px;
  display: inline-block;
}

.map-card-flag-img {
  width: 20px;
  height: 13.33px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #d4ccbd;
  vertical-align: -1.5px;
  display: inline-block;
  margin-right: 6px;
}

/* ==========================================================================
   6.5. THE DETOUR JOURNEY (From Wish to Memory Moments - Paper Tone Flow)
   ========================================================================== */
.section-journey {
  padding: 56px 0 68px;
  background-color: transparent;
}

/* 가로 Journey Flow 트랙 */
.journey-flow-track {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.journey-step-col {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e8dfd2;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(20, 53, 60, 0.03);
  transition: all 0.22s ease;
}
.journey-step-col:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 53, 60, 0.06);
}

.journey-step-header {
  margin-bottom: 14px;
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-wished {
  background: var(--wished-light);
  color: var(--wished);
  border: 1px solid rgba(199, 136, 30, 0.3);
}
.badge-completed {
  background: var(--completed-light);
  color: var(--completed);
  border: 1px solid rgba(42, 111, 89, 0.3);
}
.badge-visited {
  background: var(--visited-light);
  color: var(--visited);
  border: 1px solid rgba(53, 83, 91, 0.25);
}

.journey-step-body {
  flex: 1;
}
.journey-step-text {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

.journey-step-footer {
  width: 100%;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #f2ebe0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.15s ease;
}
.journey-step-col:hover .journey-step-footer {
  color: var(--ink);
}
.journey-step-col:hover .j-footer-text {
  color: var(--coral);
}
.j-footer-arrow {
  color: var(--coral);
  font-size: 12px;
  transition: transform 0.15s ease;
}
.journey-step-col:hover .j-footer-arrow {
  transform: translateX(3px);
}

.journey-flow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a4b5b2;
  font-size: 20px;
  padding: 0 4px;
  user-select: none;
}

/* ==========================================================================
   7. MOMENT CARD SYSTEM
   ========================================================================== */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.city-moment-item,
.dest-moment-item,
.moment-item-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.moment-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.moment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 90, 60, 0.4);
}
.moment-card.featured {
  border-top: 3.5px solid var(--coral);
}
.moment-card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.moment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
.moment-card-tags {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tag-category {
  font-family: 'DM Sans', sans-serif;
  color: var(--coral);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.tag-subcategory {
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-left: 6px;
  border-left: 1px solid var(--line);
}
.moment-card-title {
  font-size: 18.5px;
  line-height: 1.42;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 700;
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.moment-card:hover .moment-card-title {
  color: var(--coral);
}
.moment-card-desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 20px;
  min-height: 43px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.moment-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--line-subtle);
  margin-top: auto;
}

/* Destination Hub Back Button */
.dest-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid #dcd3c3;
  border-radius: 20px;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(20, 53, 60, 0.04);
}
.dest-back-btn:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: #ffffff;
  transform: translateX(-2px);
  box-shadow: 0 3px 8px rgba(20, 53, 60, 0.08);
}
.moment-card-location {
  font-weight: 600;
  color: var(--ink-2);
}
.moment-card-date {
  font-family: 'DM Sans', sans-serif;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4.5px;
  padding: 3.5px 8.5px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.status-badge.badge-wished {
  background-color: var(--wished-light);
  color: var(--wished);
  border: 1px solid rgba(199, 136, 30, 0.25);
}
.status-badge.badge-completed {
  background-color: var(--completed-light);
  color: var(--completed);
  border: 1px solid rgba(42, 111, 89, 0.25);
}
.status-badge.badge-visited {
  background-color: var(--visited-light);
  color: var(--visited);
  border: 1px solid rgba(53, 83, 91, 0.22);
}
.status-badge.size-sm {
  font-size: 10px;
  padding: 2px 6.5px;
}

/* Bucket List Tabs */
.bucket-list-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid #ded6c8;
  margin-bottom: 32px;
  box-shadow: 0 2px 6px rgba(20, 53, 60, 0.04);
}
.bucket-tab {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.18s ease;
}
.bucket-tab:hover {
  color: var(--ink);
}
.bucket-tab.active {
  color: var(--white) !important;
  box-shadow: 0 2px 8px rgba(20, 53, 60, 0.12);
}
.bucket-tab.active[data-tab="wished"] {
  background-color: var(--wished);
}
.bucket-tab.active[data-tab="completed"] {
  background-color: var(--completed);
}
.bucket-tab.active[data-tab="visited"] {
  background-color: var(--visited);
}

/* ==========================================================================
   8. BRAND STRIP & PHILOSOPHY
   ========================================================================== */
.strip {
  background-color: var(--ink);
  color: var(--white);
}
.strip .section-intro {
  color: #c4d7d3;
}
.purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.purpose h2 {
  color: var(--white);
}
.principles {
  display: grid;
  gap: 14px;
}
.principle {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: baseline;
}
.principle:last-child {
  border-bottom: 0;
}
.principle b {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  line-height: 1;
}
.principle span {
  font-size: 14.5px;
  color: #e3ece9;
  line-height: 1.6;
}

/* ==========================================================================
   9. DETAIL PAGE, SEARCH MODAL & FOOTER
   ========================================================================== */
/* Legal & Info Pages (Contact, Privacy, Disclaimer) */
.legal {
  max-width: 720px;
}
.legal h1 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 12px;
  line-height: 1.25;
}
.legal h2 {
  font-size: clamp(17px, 2.2vw, 20px);
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.legal p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.legal .lead {
  font-size: 15.5px;
  margin-bottom: 20px;
}
.legal .summary {
  margin-top: 24px;
  padding: 18px 22px;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.location-tag-wrap {
  margin: 22px 0 28px;
  padding: 16px 20px;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}
.location-label { font-weight: 700; color: var(--ink); }
.location-address { color: var(--muted); font-size: 13.5px; }
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background-color: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  transition: background-color 0.15s ease;
}
.btn-map:hover { background-color: var(--coral); color: var(--white); }

.my-take-box {
  margin: 32px 0;
  padding: 22px 26px;
  background-color: var(--mustard-light);
  border-left: 4px solid var(--mustard);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.my-take-box strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.my-take-box p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.65;
}

/* Detail Article & Typography */
.page-head {
  padding: 60px 0 38px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}
.breadcrumb { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--coral); }
.article { max-width: 780px; margin: 40px auto 60px; padding: 0 16px; }

.article-top-nav {
  margin-bottom: 24px;
}

.article-header-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.article-cat-hierarchy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-main-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.article-main-cat:hover {
  text-decoration: underline;
}

.meta-slash {
  color: #ded6c8;
  font-size: 13px;
  font-weight: 400;
}

.article-tags-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.sub-cat-badge {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: #ede6dc;
  padding: 2.5px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all 0.15s ease;
}

.article h1 {
  font-size: clamp(24px, 3.6vw, 34px);
  margin: 12px 0 16px;
  line-height: 1.34;
  font-weight: 800;
  color: var(--ink);
}
.article .sub {
  color: var(--ink-light);
  line-height: 1.65;
  margin: 0 0 16px;
  overflow-wrap: break-word;
}
.article .meta {
  margin-bottom: 0;
  line-height: 1.6;
}

/* 상단 Primary Meta (방문일/기록일, 위치, 공식링크) + 우측 공유 버튼 행 컴팩트 레이아웃 */
.article-meta-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.article-meta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article-meta-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-meta-bullet {
  color: #cfc5b4;
}

.article-bottom-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-subtle);
}

.bottom-tags-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.article-share-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-share-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
}
.btn-share-primary {
  background-color: var(--coral);
  color: #ffffff !important;
  border: 1px solid var(--coral);
}
.btn-share-primary:hover {
  background-color: var(--coral-hover);
  border-color: var(--coral-hover);
  box-shadow: 0 2px 8px rgba(224, 90, 60, 0.25);
}

.btn-share-ghost {
  background-color: #ffffff;
  color: var(--ink);
  border: 1px solid #d8cfbe;
}
.btn-share-ghost:hover {
  color: #ffffff;
  border-color: var(--ink);
}

.share-toast-msg {
  font-size: 12px;
  font-weight: 700;
  color: var(--completed);
  transition: opacity 0.2s ease;
}

/* SOURCES & INFO 접이식 네이티브 아코디언 컴포넌트 */
.sources-accordion {
  margin-top: 48px;
  margin-bottom: 24px;
  background-color: #fdfbf7;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.sources-accordion[open] {
  border-color: #dcd3c3;
  box-shadow: var(--shadow-sm);
}

.sources-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  cursor: pointer;
  user-select: none;
}

.sources-content {
  padding: 14px 18px 18px;
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background-color: #ffffff;
}

.sources-dl {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.sources-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
  line-height: 1.6;
}

.sources-row dt {
  font-weight: 700;
  color: var(--ink-2);
  margin: 0;
}

.sources-row dd {
  margin: 0;
  color: var(--muted);
  word-break: break-all;
}

.sources-row dd a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sources-row dd a:hover {
  color: var(--coral);
}

.sources-note {
  font-size: 12px;
  color: #8c827a;
  display: inline-block;
  margin-left: 4px;
}

@media (max-width: 600px) {
  .sources-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* Destination City Selection Card Representative Image */
.dest-city-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.dest-city-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background-color: #ede6dc;
  flex-shrink: 0;
}

.dest-city-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.dest-city-card:hover .dest-city-img {
  transform: scale(1.03);
}
/* 세로(Portrait) 이미지 과다 스크롤 및 화면 압박 방지 */
.article-body img[src*="mt-fuji"],
.article-body img[src*="coast"],
.article-body img[src*="portrait"],
.article-body img[src*="kite"],
.article-body img[src*="storefront"] {
  max-width: min(500px, 100%);
  max-height: 580px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

/* Moment Image Caption & Photo Credit Presentation (공통 에디토리얼 시스템) */
.article-body .image-meta,
.article-body figcaption {
  font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 8px;
  margin-bottom: 36px;
  text-align: left;
}

.article-body .image-meta .caption-text,
.article-body figcaption .caption-text {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.article-body .image-meta .photo-credit,
.article-body figcaption .photo-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.article-body .photo-credit img,
.article-body img[src*="kogl"],
.article-body img[src*="licenses"],
.article-body img[src*="attribution"],
.article-body img[src*="badge"] {
  display: inline-block !important;
  width: auto !important;
  max-width: 82px !important;
  height: auto !important;
  max-height: 20px !important;
  margin: 0 !important;
  vertical-align: middle !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 2px !important;
}

.article-body p:has(> img[src*="kogl"]),
.article-body p:has(> img[src*="licenses"]),
.article-body p:has(> img[src*="attribution"]) {
  text-align: left !important;
  margin: 4px 0 32px !important;
}

.article-body p {
  margin: 0 0 22px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.article-body h2 {
  font-size: 24px;
  margin-top: 44px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-subtle);
  padding-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* SOURCES & INFO 섹션 전용 에디토리얼 스타일 (참고 정보 폰트 축소 및 톤다운) */
.article-body h2[id*="source"] {
  font-size: 16px !important;
  font-weight: 700;
  color: var(--muted) !important;
  margin-top: 48px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line-subtle);
  padding-bottom: 6px;
  letter-spacing: 0.05em;
}

.article-body h2[id*="source"] ~ p {
  font-size: 13.5px !important;
  line-height: 1.7 !important;
  color: var(--ink-2) !important;
  margin-bottom: 16px !important;
}

.article-body h2[id*="source"] ~ p a {
  font-size: 12.5px !important;
  color: var(--muted) !important;
  word-break: break-all !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.88;
}

.article-body h2[id*="source"] ~ p a:hover {
  color: var(--coral) !important;
  opacity: 1;
}

.share-tools { margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.article-nav {
  max-width: 780px;
  margin: 32px auto 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-subtle);
  padding: 24px 16px;
}
.article-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  max-width: 48%;
  color: var(--ink);
  transition: all 0.15s ease;
}
.article-nav-item.next {
  text-align: right;
  margin-left: auto;
}
.article-nav-item:hover .nav-title {
  color: var(--coral);
}
.nav-direction {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-title {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: break-word;
  transition: color 0.15s ease;
}

.related { max-width: var(--wrap-max); margin: 0 auto 56px; padding: 0 24px; }
.editor { display: flex; gap: 18px; align-items: center; padding: 22px 24px; background-color: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.avatar { width: 52px; height: 52px; min-width: 52px; border-radius: 50%; background-color: #f8f4ee; border: 1px solid #e8dfd2; display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-sm); }
.avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.checklist { border-left: 4px solid var(--coral); padding: 16px 22px; background-color: var(--white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; box-shadow: var(--shadow-sm); }
.empty { padding: 72px 0; text-align: center; }

/* Bucket List Tabs */
.bucket-list-tabs { display: flex; gap: 12px; margin: 28px 0 36px; border-bottom: 2px solid var(--line); padding-bottom: 12px; }
.bucket-tab { font-family: 'DM Sans', 'Noto Sans KR', sans-serif; padding: 9px 22px; font-size: 15px; font-weight: 700; color: var(--muted); cursor: pointer; border-radius: var(--radius-sm); transition: all 0.15s ease; }
.bucket-tab:hover { color: var(--ink); background-color: var(--white); }
.bucket-tab.active { color: var(--coral); background-color: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

/* Search Modal */
.search-backdrop { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(16, 47, 53, 0.68); backdrop-filter: blur(5px); display: grid; place-items: start center; padding: 80px 16px 40px; z-index: 999; overflow-y: auto; }
.search-backdrop.hidden { display: none; }
.search-modal { background-color: var(--white); width: min(660px, 100%); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden; animation: searchModalIn 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes searchModalIn { from { opacity: 0; transform: scale(0.96) translateY(-12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.search-header { display: flex; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); gap: 12px; background-color: var(--paper-card); }
.search-icon { font-size: 18px; color: var(--muted); }
.search-input { flex: 1; border: 0; background: transparent; font-size: 17px; color: var(--ink); outline: none; font-family: inherit; }
.search-input::placeholder { color: #92a4a0; font-size: 15px; }
.search-close { background-color: #e4ebe8; color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: var(--radius-sm); cursor: pointer; }
.search-close:hover { background-color: var(--coral); color: var(--white); }
.search-body { padding: 18px 22px 28px; max-height: 65vh; overflow-y: auto; }
.search-status-bar { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line-subtle); }
.search-results-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.search-item-link { display: block; padding: 15px 18px; background-color: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-md); transition: all 0.15s ease; }
.search-item-link:hover, .search-item-link:focus { background-color: var(--white); border-color: var(--coral); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.search-item-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.search-item-cat { font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 700; color: var(--coral); letter-spacing: 0.06em; }
.search-item-title { display: block; font-size: 16.5px; color: var(--ink); margin-bottom: 4px; line-height: 1.4; }
.search-item-desc { font-size: 13.5px; color: var(--muted); margin: 0 0 8px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-item-loc { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.search-empty { padding: 48px 20px; text-align: center; color: var(--muted); }

/* ==========================================================================
   10. REFINED FOOTER (다크 에디토리얼 푸터)
   ========================================================================== */
.footer {
  background-color: #0f2a30;
  color: #c9d8d4;
  padding: 22px 0 20px;
  font-size: 13.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.footer-logo-img {
  height: 88px;
  width: auto;
  max-width: 280px;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-logo-img:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12.5px;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-link-item {
  color: #c9d8d4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s ease;
}
.footer-link-item:hover {
  color: var(--white);
}
.footer-link-icon {
  font-size: 12px;
  color: var(--mustard);
}
.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 14px;
  padding-top: 12px;
  color: #79958e;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 980px) {
  .discover-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-flow-track { flex-direction: column; gap: 12px; }
  .journey-flow-divider { transform: rotate(90deg); padding: 4px 0; font-size: 18px; }
  .section-journey { padding: 56px 0 64px; }
}

@media (max-width: 860px) {
  .wrap { width: calc(100% - 32px); }
  .topbar { display: none; }
  .nav { height: 66px; }
  .nav-toggle { display: block; }
  .navlinks {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background-color: var(--paper);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-md);
  }
  .navlinks.open { display: flex; }
  .nav-search-btn { width: 100%; justify-content: center; padding: 10px; margin-top: 6px; }
  .map-top-header { padding: 18px 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .map-explorer-panel { padding: 20px 18px; }
  .explorer-body-grid { grid-template-columns: 1fr; gap: 20px; }
  .discover-cards-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .map-controls-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-links-row { border-radius: var(--radius-md); flex-direction: column; gap: 8px; }
  .footer-sep { display: none; }
}

@media (max-width: 520px) {
  .discover-cards-grid, .category-grid { grid-template-columns: 1fr; }
  .journey-story-btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   ACCESSIBILITY & KEYBOARD NAVIGATION (WCAG COMPLIANT)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--sand);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   MOMENT DETAIL — EDITORIAL ARTICLE TYPOGRAPHY & READABILITY
   ========================================================================== */
.article {
  max-width: 760px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.article-header-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.article-cat-hierarchy {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-main-cat {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

.article-main-cat:hover {
  color: var(--coral);
}

.meta-slash {
  color: var(--line);
  font-size: 13px;
}

.sub-cat-badge {
  font-size: 12px;
  color: var(--muted);
  background: var(--paper-card);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.dest-back-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--paper-card);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}

.dest-back-btn:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: var(--white);
}

.article h1 {
  font-family: 'DM Sans', 'Noto Serif KR', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 16px;
  word-break: keep-all;
  letter-spacing: -0.02em;
}

.article .sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 20px;
  word-break: keep-all;
}

.article .meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  border: none;
}

/* Location Tag Wrap */
.location-tag-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 0;
  margin-bottom: 28px;
  gap: 12px;
  flex-wrap: wrap;
}

.location-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.location-address {
  font-size: 13px;
  color: var(--muted);
}

.btn-map {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--coral);
  background: var(--coral-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.btn-map:hover {
  background: var(--coral);
  color: var(--white);
}

/* My Take Box */
.my-take-box {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 32px 0 40px;
}

.my-take-box strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 8px;
}

.my-take-box p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  word-break: keep-all;
}

/* Article Body Typography & Rhythm */
.article-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink);
  letter-spacing: -0.008em;
}

.article-body p {
  margin-top: 0;
  margin-bottom: 1.6em;
  word-break: keep-all;
}

.article-body h2 {
  font-family: 'DM Sans', 'Noto Serif KR', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.4em;
  margin-bottom: 0.8em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.6em;
  color: var(--ink);
}

.article-body strong {
  font-weight: 700;
  color: var(--ink);
}

.article-body ul, .article-body ol {
  margin: 0 0 1.8em;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 0.5em;
  line-height: 1.75;
}

.article-body blockquote {
  border-left: 3px solid var(--coral);
  margin: 2em 0;
  padding: 14px 20px;
  background: var(--paper-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.article-body hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 3em 0;
}

.article-body img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 2em 0 0.8em;
  box-shadow: var(--shadow-sm);
}

/* Article Navigation */
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 760px;
  margin: 40px auto;
  padding: 24px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.article-nav-item {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--paper-card);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}

.article-nav-item:hover {
  background: var(--white);
  border-color: var(--coral);
}

.article-nav-item.next {
  text-align: right;
  align-items: flex-end;
}

.nav-direction {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}

.nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 680px) {
  .article-meta-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .article-meta-group {
    width: 100%;
    gap: 6px;
  }

  .article-meta-group .meta-line {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .article-share-actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}

/* ==========================================================================
   City Marker Collision & Cluster Presentation System
   ========================================================================== */
.city-cluster-marker {
  cursor: pointer;
  outline: none;
}
.city-cluster-marker:hover .cluster-base,
.city-cluster-marker:focus-visible .cluster-base {
  stroke: var(--coral);
  stroke-width: 3.2;
}

.map-cluster-card {
  max-width: 380px;
  width: calc(100% - 32px);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(20, 53, 60, 0.18);
  border: 1px solid var(--line);
  background: #ffffff;
  z-index: 20;
  box-sizing: border-box;
  overflow: hidden;
}

.cluster-card-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.cluster-card-header {
  border-bottom: 1px solid var(--line-subtle);
  padding-bottom: 12px;
}

.cluster-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.cluster-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}

.cluster-subtitle {
  font-size: 12.5px;
  color: var(--muted);
}

.cluster-cities-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.cluster-city-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: 10px 14px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  outline: none;
}

.cluster-city-row:hover,
.cluster-city-row:focus-visible {
  background: #ffffff;
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
}

.cluster-city-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cluster-city-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cluster-city-stats {
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cluster-city-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  transition: transform 0.18s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.cluster-city-row:hover .cluster-city-arrow,
.cluster-city-row:focus-visible .cluster-city-arrow {
  transform: translateX(3px);
}


