/* ========================================
   Tour Local - Custom Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&display=swap');

:root {
  --primary: #0b84ff;
  --primary-dark: #0666d0;
  --primary-soft: #e7f2ff;
  --primary-pale: #f4f9ff;
  --accent: #45b3ff;
  --accent-soft: #e9f7ff;
  --ink: #17324d;
  --text-muted: #667a91;
  --border-color: #d9e7f5;
  --bg-light: #f4f8fd;
  --bg-section: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f6faff;
  --footer-bg: #eaf4ff;
  --shadow-sm: 0 10px 24px rgba(17, 76, 140, 0.06);
  --shadow-md: 0 16px 34px rgba(17, 76, 140, 0.1);
  --shadow-lg: 0 24px 54px rgba(17, 76, 140, 0.14);
  --radius: 16px;
}

/* Global */
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, rgba(98, 181, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg-light) 100%);
  color: var(--ink);
}
a {
  color: var(--primary-dark);
}
a:hover {
  color: var(--primary);
}
.label {
  color: var(--ink);
  font-weight: 800;
}
.input::placeholder,
.textarea::placeholder {
  color: #60758d;
  opacity: 1;
}
.has-text-grey,
.has-text-grey-dark,
.has-text-grey-light {
  color: var(--text-muted) !important;
}
.box,
.card,
.table,
.input,
.select select,
.textarea {
  border-radius: var(--radius);
}
.navbar-spacer { height: 52px; }
.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Navbar */
.navbar.is-fixed-top {
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(17, 76, 140, 0.07);
  color-scheme: light;
}
.navbar,
.navbar-menu,
.navbar-dropdown,
.nav-panel,
.nav-region-panel {
  color-scheme: light;
}
.site-logo-text {
  font-size: 1.15rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.site-logo-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo-subtext {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.navbar-item,
.navbar-link {
  color: var(--ink);
}
.navbar-menu,
.navbar-menu.is-active {
  background: rgba(255, 255, 255, 0.98);
}
.navbar-menu,
.navbar-menu .navbar-item,
.navbar-menu .navbar-link,
.navbar-item.has-dropdown:hover .navbar-dropdown,
.navbar-item.has-dropdown.is-active .navbar-dropdown,
.navbar-item.has-dropdown.is-hoverable:hover .navbar-dropdown,
.navbar-dropdown,
.navbar-dropdown .navbar-item,
.navbar-dropdown .navbar-link {
  background-color: #ffffff !important;
  color: var(--ink) !important;
}
.navbar-item:hover,
.navbar-link:hover {
  color: var(--primary) !important;
}
.navbar-item.has-dropdown:hover .navbar-link,
.navbar-item.has-dropdown.is-active .navbar-link,
.navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
  background: var(--primary-pale) !important;
  color: var(--primary-dark) !important;
}
.navbar-link:not(.is-arrowless)::after {
  border-color: var(--primary);
}
.navbar-dropdown {
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.navbar-dropdown .navbar-item:hover,
.navbar-dropdown .navbar-item:focus,
.navbar-dropdown .navbar-item:active,
.navbar-dropdown .navbar-link:hover,
.navbar-dropdown .navbar-link:focus,
.navbar-dropdown .navbar-link:active {
  background: var(--primary-pale) !important;
  color: var(--primary-dark) !important;
}
.nav-dropdown-wide .navbar-dropdown {
  min-width: 540px;
}
.nav-panel {
  padding: 0.65rem;
  background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%);
}
.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem 0.95rem;
}
.nav-panel-header strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}
.nav-panel-header span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.nav-panel-all {
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}
.nav-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.nav-panel-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.1);
}
.nav-panel-item i {
  font-size: 1rem;
  width: 18px;
  text-align: center;
}
.nav-panel-item span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-panel-item strong {
  color: var(--ink);
  font-size: 0.94rem;
}
.nav-panel-item small {
  color: var(--text-muted);
  font-size: 0.74rem;
}
.nav-panel-item em {
  margin-left: auto;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
}
.nav-panel-item:hover {
  background: var(--primary-pale);
  border-color: rgba(11, 132, 255, 0.18);
}
.nav-panel-item:hover strong,
.nav-panel-item:hover small {
  color: var(--ink);
}
.nav-panel-item:hover small {
  color: var(--text-muted);
}
.nav-panel-item:hover em {
  background: rgba(11, 132, 255, 0.12);
  color: var(--primary-dark);
}
.nav-region-panel {
  padding: 0.6rem;
  min-width: 340px;
}
.nav-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.nav-region-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.nav-region-item strong {
  color: var(--ink);
}
.nav-region-item small {
  color: var(--text-muted);
  font-size: 0.74rem;
}
.nav-region-item:hover {
  background: var(--primary-pale);
}
.navbar-burger,
.navbar-burger:hover,
.navbar-burger:focus {
  background: transparent !important;
  color: var(--primary-dark);
}
.navbar-burger span {
  background-color: var(--primary-dark);
}
.nav-pill-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.navbar-start > .navbar-item.has-dropdown > .navbar-link {
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
}
.nav-utility-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-utility-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.nav-utility-links a:hover {
  color: var(--primary-dark);
}
.nav-shortcut-dropdown .navbar-link {
  font-size: 0.88rem;
  font-weight: 700;
}
.nav-shortcut-dropdown .navbar-dropdown {
  min-width: 180px;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Hero */
.hero-gradient {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #0878f7 0%, #2d9dff 55%, #88d2ff 100%);
}
.hero-gradient::before,
.hero-gradient::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-gradient::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
}
.hero-gradient::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: 8%;
}
.hero-gradient .hero-body {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
  padding-bottom: 6.5rem;
}
.hero-gradient .title.is-2 {
  letter-spacing: -0.04em;
  text-shadow: 0 12px 30px rgba(0, 74, 153, 0.18);
}
.hero-gradient .subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-lead-copy,
.hero-sub-copy {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.hero-keyword-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 980px;
  margin: 1.4rem auto 0;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 860px;
  margin: 0.85rem auto 0;
}
.hero-keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(8, 35, 79, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 700;
}
.hero-trust-chip i {
  color: #a7e5ff;
}
.hero-gradient .title,
.hero-gradient .subtitle,
.detail-header .title,
.hospital-callout .title {
  color: #ffffff !important;
}
.detail-header .icon,
.detail-header .icon i,
.detail-title {
  color: #ffffff !important;
}
.detail-header-copy {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.detail-title {
  margin-bottom: 0 !important;
}
.detail-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.detail-chip {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: none;
}
.detail-chip.detail-chip-status.is-success,
.detail-chip.detail-chip-status.is-warning,
.detail-chip.detail-chip-status.is-danger,
.detail-chip.detail-chip-status.is-light {
  color: #ffffff !important;
}
.detail-chip.detail-chip-status.is-success {
  background: rgba(15, 143, 107, 0.26) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}
.detail-chip.detail-chip-status.is-warning {
  background: rgba(58, 149, 255, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}
.detail-chip.detail-chip-status.is-danger {
  background: rgba(255, 107, 107, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}
.detail-link-list {
  display: grid;
  gap: 0.75rem;
}
.detail-link-card {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--primary-pale);
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.detail-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 132, 255, 0.2);
  text-decoration: none;
}
.detail-link-card strong {
  display: block;
  color: var(--ink);
}
.detail-link-card span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.detail-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.detail-action-button {
  min-width: 170px;
}
.detail-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.detail-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.detail-inline-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.detail-inline-link:hover {
  color: var(--primary);
  text-decoration: underline;
}
.detail-field-note {
  margin-top: 0.45rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Search Box */
.search-floating {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.search-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.search-box .input,
.search-box .button {
  height: 3.5rem;
}
.search-box .input {
  border-radius: 999px 0 0 999px;
  padding-left: 1.15rem;
  color: var(--ink) !important;
  background: #ffffff !important;
  -webkit-text-fill-color: var(--ink);
}
.search-box .input:focus,
.search-box .input:hover {
  color: var(--ink) !important;
  background: #ffffff !important;
  -webkit-text-fill-color: var(--ink);
}
.search-box .input::placeholder {
  color: #6f849c;
  opacity: 1;
}
.search-box .button {
  border-radius: 0 999px 999px 0;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
.search-box-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 132, 255, 0.08);
}
.search-meta-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.search-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--primary-pale);
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.search-meta-chip.is-soft {
  background: #ffffff;
}
.search-meta-chip:hover {
  border-color: rgba(11, 132, 255, 0.18);
  box-shadow: var(--shadow-sm);
  color: var(--primary-dark);
}
.search-page-hero {
  background:
    radial-gradient(circle at top right, rgba(126, 196, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.search-page-hero .input,
.search-page-hero .select select {
  color: var(--ink);
  font-weight: 600;
  background: #ffffff !important;
  -webkit-text-fill-color: var(--ink);
}
.search-page-hero .input:focus,
.search-page-hero .input:hover,
.search-page-hero .select select:focus {
  color: var(--ink) !important;
  background: #ffffff !important;
  -webkit-text-fill-color: var(--ink);
}
.search-page-hero .input::placeholder {
  color: #5f738b;
  opacity: 1;
}
.search-page-hero .select select:disabled {
  color: #90a1b4;
}
.search-page-hero input:-webkit-autofill,
.search-box input:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 9999s ease-out 0s;
}
.search-filter-form {
  margin-top: 1.5rem;
}
.search-summary-badge {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b84ff 0%, #43aafc 100%);
  color: #ffffff;
}
.search-summary-badge strong {
  font-size: 1rem;
}
.search-summary-badge span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.search-intent-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #f4f9ff;
  border: 1px solid rgba(11, 132, 255, 0.12);
  color: var(--ink);
}
.search-intent-note i {
  margin-top: 0.2rem;
  color: var(--primary);
}
.search-intent-note span {
  line-height: 1.65;
  font-size: 0.92rem;
}
.search-quick-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 132, 255, 0.08);
}
.search-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.search-quick-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.1);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.search-quick-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 132, 255, 0.22);
  color: var(--primary-dark);
}
.search-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.search-insight-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  box-shadow: var(--shadow-sm);
}
.search-insight-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.5;
}
.search-insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}
.search-insight-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}
.search-insight-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.search-insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.1);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.search-insight-link span {
  color: var(--primary-dark);
}
.search-insight-link:hover {
  background: #eef6ff;
  border-color: rgba(11, 132, 255, 0.2);
  color: var(--primary-dark);
}
.promo-panel {
  margin: 1.25rem 0;
  padding: 1.1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(126, 196, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  box-shadow: var(--shadow-sm);
}
.promo-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}
.promo-panel-head strong {
  color: var(--ink);
}
.promo-panel-head span {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.promo-panel-compact .promo-card-grid {
  grid-template-columns: 1fr;
}
.promo-card {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 132, 255, 0.08);
  background: #ffffff;
}
.promo-card-primary {
  background: linear-gradient(135deg, #0b84ff 0%, #43aafc 100%);
  border-color: transparent;
}
.promo-card-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}
.promo-card-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.promo-card-eyebrow {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.promo-card-primary .promo-card-eyebrow,
.promo-card-primary h4,
.promo-card-primary p {
  color: #ffffff;
}
.promo-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}
.promo-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.promo-card-button {
  justify-self: start;
}
.promo-card-primary .promo-card-button {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
}
.promo-card-primary .promo-card-button:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
}

/* Cards */
.category-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  background: var(--surface);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card .title {
  color: var(--ink);
}
.category-card .card-content {
  padding: 1.75rem 1.5rem;
}
.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.8rem;
}

/* Stat Boxes */
.stat-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 132, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-box .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.home-highlight {
  background: linear-gradient(135deg, #0a7dfa 0%, #2a99ff 58%, #7acbff 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.home-highlight p {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.home-highlight strong {
  font-size: 1.2em;
}
.home-overview-section {
  padding-top: 2.4rem;
}
.home-overview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}
.home-overview-copy {
  padding: 1.7rem 1.8rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(121, 201, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #0a7dfa 0%, #2a99ff 58%, #7acbff 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}
.home-overview-copy .title {
  color: #ffffff;
}
.home-overview-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-overview-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}
.home-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}
.home-overview-actions .button.is-primary.is-outlined {
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
}
.home-overview-actions .button.is-primary.is-outlined:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
}
.home-overview-stats {
  padding: 0.25rem 0;
}
.home-section-head {
  max-width: 760px;
  margin: 0 auto 2rem;
}
.home-section-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-section-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}
.home-panel {
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
.home-panel-emphasis {
  background:
    radial-gradient(circle at top right, rgba(126, 196, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.home-panel-lead {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.home-side-stack {
  display: grid;
  gap: 1rem;
}
.home-category-card .card-content {
  display: grid;
  gap: 0.75rem;
  min-height: 220px;
}
.home-category-summary {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}
.featured-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.featured-category-group {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.featured-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.featured-category-title {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.featured-category-title:hover {
  color: var(--primary-dark);
}
.featured-category-list {
  display: grid;
  gap: 0.65rem;
}
.featured-biz-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: var(--primary-pale);
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: inherit;
  text-decoration: none;
}
.featured-biz-item:hover {
  border-color: rgba(11, 132, 255, 0.18);
  box-shadow: var(--shadow-sm);
}
.featured-biz-item strong {
  color: var(--ink);
}
.featured-biz-item small {
  color: var(--text-muted);
  line-height: 1.45;
}
.landing-panel-card {
  height: 100%;
}
.landing-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.landing-link-card {
  display: block;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.landing-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 132, 255, 0.2);
}
.landing-link-card strong {
  display: block;
  color: var(--ink);
}
.landing-link-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.84rem;
}
.district-landing-card small {
  display: block;
  margin-top: 0.45rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}
.category-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.category-spotlight-card {
  display: block;
  padding: 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.category-spotlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 132, 255, 0.18);
}
.category-spotlight-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}
.category-spotlight-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 700;
}
.category-spotlight-card p {
  margin-top: 0.65rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.guide-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.guide-section-card {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
  box-shadow: var(--shadow-sm);
}
.guide-section-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.45;
}
.guide-section-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}
.guide-section-card li {
  line-height: 1.7;
}
.guide-section-card li + li {
  margin-top: 0.45rem;
}
.content {
  color: var(--ink);
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: var(--ink);
  line-height: 1.45;
}
.content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
}
.content p,
.content li,
.content td,
.content th,
.content blockquote {
  color: rgba(23, 50, 77, 0.88);
  line-height: 1.8;
}
.content strong {
  color: var(--ink);
}
.content a {
  color: var(--primary-dark);
}
.content ul,
.content ol {
  margin-left: 1rem;
}
.content li + li {
  margin-top: 0.35rem;
}
.faq-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.faq-card {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.faq-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.5;
}
.faq-card p {
  margin-top: 0.7rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.home-region-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.category-intro-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
.category-intro-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.category-intro-summary {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}
.category-official-name {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  background: var(--primary-pale);
  border: 1px solid rgba(11, 132, 255, 0.08);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.category-official-name strong {
  color: var(--ink);
}
.category-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.category-context-note {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.category-context-note strong {
  display: block;
  color: var(--ink);
}
.category-context-note p {
  margin-top: 0.45rem;
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.65;
}
.category-intro-link {
  text-decoration: none;
}
.category-keyword-block {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.category-keyword-block strong {
  display: block;
  color: var(--ink);
}

/* List Items */
.biz-list-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
  color: inherit;
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.biz-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
  border-color: rgba(11, 132, 255, 0.24);
}
.biz-list-item .biz-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.biz-list-item .biz-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Recent Items */
.recent-item {
  border-left: 3px solid var(--primary);
  padding: 0.8rem 1.2rem;
  margin-bottom: 0.7rem;
  background: var(--primary-pale);
  border-radius: 0 8px 8px 0;
  transition: background 0.2s, transform 0.2s;
}
.recent-item:hover {
  background: #eaf4ff;
  transform: translateX(2px);
}
.recent-item strong {
  color: var(--ink);
}

/* Detail Page */
.detail-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.detail-header {
  background: linear-gradient(135deg, #0877f5, #2d96ff 68%, #79c8ff 100%);
  color: #fff;
  padding: 2rem;
}
.detail-body {
  padding: 2rem;
}
.detail-card .table,
.detail-card .table tbody,
.detail-card .table tr,
.detail-card .table th,
.detail-card .table td {
  background: #ffffff !important;
}
.detail-card .table {
  --bulma-table-background-color: #ffffff;
  --bulma-table-cell-border-color: rgba(11, 132, 255, 0.09);
  --bulma-table-color: var(--ink);
  box-shadow: none;
}
.info-table th {
  width: 140px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.7rem 0.5rem;
  vertical-align: top;
  white-space: nowrap;
}
.info-table td {
  padding: 0.7rem 0.5rem;
  color: var(--ink);
}
.info-table tr {
  border-bottom: 1px solid rgba(11, 132, 255, 0.09);
}
.detail-disclosure-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}
.detail-disclosure {
  border: 1px solid rgba(11, 132, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.95rem 1rem;
}
.detail-disclosure[open] {
  box-shadow: var(--shadow-sm);
}
.detail-disclosure summary {
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}
.detail-disclosure summary::-webkit-details-marker {
  display: none;
}
.detail-disclosure summary::after {
  content: '+';
  float: right;
  color: var(--primary-dark);
  font-weight: 800;
}
.detail-disclosure[open] summary::after {
  content: '−';
}

/* Share Buttons */
.detail-share-buttons {
  gap: 0.6rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 122px;
  height: 42px;
  padding: 0 0.95rem;
  border-radius: 14px;
  border: 0;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.share-btn:hover {
  transform: translateY(-1px);
  color: #fff !important;
  opacity: 0.96;
  box-shadow: var(--shadow-md);
}
.share-btn.facebook { background: #1877f2; }
.share-btn.x-share { background: #34558f; }
.share-btn.band { background: #06c755; }
.share-btn.naver { background: #03c75a; }
.share-btn.clipboard { background: #5d728b; }

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Region Chips */
.region-chip {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin: 0.2rem;
  background: #eef6ff;
  color: #0c4f9d;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  border: 1px solid rgba(11, 132, 255, 0.14);
}
.region-chip:hover {
  background: #e0efff;
  color: #084792;
  transform: translateY(-1px);
}
.region-chip.is-active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.region-chip span {
  opacity: 1;
  margin-left: 0.2rem;
  color: #426889;
}
.region-chip.is-active span {
  color: rgba(255, 255, 255, 0.82);
}
.region-page-header {
  margin-bottom: 1.5rem;
}
.region-landing-box {
  padding: 1.6rem 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(124, 196, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.region-landing-eyebrow {
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.region-landing-actions {
  display: grid;
  gap: 0.6rem;
}
.region-filter-box {
  border-radius: 18px;
}
.region-filter-box .menu-label {
  color: #3a5877;
  font-weight: 800;
}
.region-filter-box .is-size-7,
.region-filter-box .is-size-7.has-text-grey,
.region-filter-box .level-right a {
  color: #587392 !important;
}
.region-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.district-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.district-card {
  display: block;
  padding: 1rem;
  border-radius: 16px;
  background: var(--primary-pale);
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.district-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 132, 255, 0.2);
  text-decoration: none;
}
.district-card strong {
  display: block;
  color: var(--ink);
}
.district-card span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.region-card {
  display: block;
  height: 100%;
  color: inherit;
  border-radius: 18px;
  border: 1px solid rgba(11, 132, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.region-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.region-card-short {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.35;
}
.region-card-meta {
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.region-card-copy {
  margin-top: 0.6rem;
  margin-bottom: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f6fbff 0%, var(--footer-bg) 100%);
  color: var(--text-muted);
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(11, 132, 255, 0.08);
}
.site-footer a {
  color: var(--primary-dark);
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--primary);
}
.site-footer .has-text-white,
.site-footer strong,
.site-footer strong.has-text-white {
  color: var(--ink) !important;
}

/* Sidebar Filters */
.filter-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 70px;
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.filter-box .menu-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #44607d;
  font-weight: 800;
}
.filter-box .select select {
  color: var(--ink);
}
.filter-sidebar {
  background:
    radial-gradient(circle at top right, rgba(126, 196, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.filter-sidebar-intro {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b84ff 0%, #43aafc 100%);
  color: #ffffff;
}
.filter-sidebar-intro strong {
  font-size: 1rem;
}
.filter-sidebar-intro span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.filter-active-summary {
  margin-bottom: 1.1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.filter-active-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.filter-active-head strong {
  color: var(--ink);
}
.filter-active-head span {
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.filter-active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}
.filter-active-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-pale);
  color: #275276;
  font-size: 0.78rem;
  font-weight: 700;
}
.filter-active-actions {
  margin-top: 0.9rem;
}
.filter-section + .filter-section {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(11, 132, 255, 0.08);
}
.sidebar-nav-list li + li {
  margin-top: 0.35rem;
}
.sidebar-category-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
  color: var(--ink);
  font-weight: 600;
}
.sidebar-category-link span:last-child {
  flex: 1;
}
.sidebar-category-link em {
  margin-left: auto;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
}
.sidebar-category-link:hover {
  background: #eef6ff;
  border-color: rgba(11, 132, 255, 0.18);
}
.sidebar-category-link.is-active {
  background: linear-gradient(135deg, #0b84ff 0%, #43aafc 100%);
  border-color: transparent;
  color: #ffffff;
}
.sidebar-category-link.is-active i {
  color: #ffffff !important;
}
.sidebar-category-link.is-active em {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.sidebar-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--primary-pale);
}
.sidebar-category-link.is-active .sidebar-category-icon {
  background: rgba(255, 255, 255, 0.18);
}
.sidebar-select-wrap {
  padding: 0.6rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.sidebar-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.sidebar-status-grid .button {
  justify-content: center;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
}

/* Breadcrumb */
.breadcrumb-bar {
  background: rgba(255, 255, 255, 0.88);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(11, 132, 255, 0.08);
}

/* Admin */
.admin-sidebar {
  background: linear-gradient(180deg, #f4f9ff 0%, #eaf3ff 100%);
  min-height: 100vh;
  padding: 1.5rem;
  border-right: 1px solid rgba(11, 132, 255, 0.08);
}
.admin-sidebar a {
  color: var(--ink);
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 0.3rem;
  transition: background 0.2s;
}
.admin-sidebar a:hover,
.admin-sidebar a.is-active {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.admin-sidebar .has-text-white {
  color: var(--ink) !important;
}
.admin-sidebar hr {
  background: rgba(11, 132, 255, 0.12) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-menu.is-active {
    padding: 0.65rem;
    border-top: 1px solid rgba(11, 132, 255, 0.08);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99) !important;
  }
  .navbar-menu.is-active .navbar-item,
  .navbar-menu.is-active .navbar-link {
    color: var(--ink) !important;
    background: transparent !important;
  }
  .navbar-menu.is-active .navbar-dropdown,
  .navbar-menu.is-active .nav-panel,
  .navbar-menu.is-active .nav-region-panel {
    background: #f8fbff !important;
    box-shadow: none;
  }
  .navbar-menu.is-active .navbar-dropdown .navbar-item,
  .navbar-menu.is-active .nav-panel-item,
  .navbar-menu.is-active .nav-region-item {
    background: #ffffff !important;
    color: var(--ink) !important;
  }
  .search-floating { margin-top: -2rem; }
  .search-box { padding: 1rem; }
  .search-meta-chip { width: 100%; justify-content: center; }
  .stat-box { margin-bottom: 0.8rem; }
  .stat-box .stat-number { font-size: 1.4rem; }
  .detail-header { padding: 1.2rem; }
  .detail-body { padding: 1.2rem; }
  .detail-action-button { width: 100%; min-width: 0; }
  .info-table th { width: 100px; font-size: 0.85rem; }
  .info-table td { font-size: 0.85rem; }
  .hero-gradient .title.is-2 { font-size: 1.5rem !important; }
  .hero-keyword-row { gap: 0.45rem; }
  .hero-trust-row { gap: 0.45rem; }
  .hero-keyword-chip { width: calc(50% - 0.3rem); }
  .hero-trust-chip { width: calc(50% - 0.3rem); }
  .home-overview-shell { grid-template-columns: 1fr; }
  .home-overview-copy { padding: 1.35rem 1.2rem; }
  .home-overview-actions { flex-direction: column; }
  .home-overview-actions .button { width: 100%; }
  .map-container iframe { height: 250px; }
  .columns.is-category-grid .column { padding: 0.4rem; }
  .nav-dropdown-wide .navbar-dropdown { min-width: 0; }
  .nav-panel-grid { grid-template-columns: 1fr; }
  .nav-region-grid { grid-template-columns: 1fr; }
  .nav-pill-link { display: none !important; }
  .nav-utility-links { display: none; }
  .navbar-actions { width: 100%; justify-content: stretch; }
  .navbar-actions .button { flex: 1; }
  .district-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-group-grid { grid-template-columns: 1fr; }
  .landing-link-grid { grid-template-columns: 1fr; }
  .category-spotlight-grid { grid-template-columns: 1fr; }
  .guide-section-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .promo-card-grid { grid-template-columns: 1fr; }
  .search-insight-grid { grid-template-columns: 1fr; }
  .home-category-card .card-content { min-height: 0; }
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Notification Toast */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}
.toast.show {
  opacity: 1;
}

/* Bulma overrides */
.button.is-primary {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fffdf9;
}
.button.is-primary:hover,
.button.is-primary:focus {
  background: var(--primary);
  border-color: var(--primary);
}
.button.is-primary.is-outlined {
  background: transparent;
  border-color: rgba(11, 132, 255, 0.28);
  color: var(--primary-dark);
}
.button.is-primary.is-outlined:hover,
.button.is-primary.is-outlined:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fffdf9;
}
.tag.is-primary,
.pagination-link.is-current {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fffdf9;
}
.pagination-link,
.pagination-previous,
.pagination-next {
  background: #ffffff;
  border-color: rgba(11, 132, 255, 0.14);
  color: var(--primary-dark);
  box-shadow: none;
}
.pagination-link:hover,
.pagination-previous:hover,
.pagination-next:hover {
  background: var(--primary-pale);
  border-color: rgba(11, 132, 255, 0.28);
  color: var(--primary-dark);
}
.pagination-link.is-current:hover {
  color: #fffdf9;
}
.pagination-previous[disabled],
.pagination-next[disabled] {
  background: var(--surface-muted);
  border-color: rgba(11, 132, 255, 0.08);
  color: rgba(23, 50, 77, 0.4);
}
.tag.is-primary.is-light {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.tag.is-light {
  background: var(--surface-muted);
  color: var(--ink);
}
.menu-list a {
  border-radius: 10px;
  color: var(--ink);
}
.menu-list a:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.menu-list a.is-active {
  background: var(--primary-dark);
  color: #fffdf9;
}
.sidebar-nav-list .sidebar-category-link:hover {
  background: #eef6ff;
  border-color: rgba(11, 132, 255, 0.18);
  color: var(--ink);
}
.sidebar-nav-list .sidebar-category-link.is-active {
  background: linear-gradient(135deg, #0b84ff 0%, #43aafc 100%);
  border-color: transparent;
  color: #ffffff;
}
.input,
.select select,
.textarea {
  background: #ffffff;
  border-color: rgba(11, 132, 255, 0.14);
  box-shadow: none;
}
.input:focus,
.select select:focus,
.textarea:focus {
  border-color: rgba(11, 132, 255, 0.55);
  box-shadow: 0 0 0 0.125em rgba(11, 132, 255, 0.12);
}
.box {
  background: var(--surface);
  border: 1px solid rgba(11, 132, 255, 0.08);
  box-shadow: var(--shadow-sm);
}
.section.has-background-white {
  background: var(--bg-section) !important;
}
.notification.is-light {
  background: var(--surface-muted);
  color: var(--ink);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.title,
.subtitle {
  color: var(--ink);
}
.has-text-primary {
  color: var(--primary-dark) !important;
}
.has-text-info {
  color: #1f91ff !important;
}
.has-text-success {
  color: #0f8f6b !important;
}
.has-text-warning {
  color: #3a95ff !important;
}
.hospital-callout {
  background: linear-gradient(135deg, #0a7dfc 0%, #2496ff 58%, #7fd3ff 100%) !important;
  border: 0 !important;
  color: #ffffff;
}
.hospital-callout .button.is-white.is-outlined {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}
.hospital-callout .button.is-white.is-outlined:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff;
}
.category-suggestion-card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 132, 255, 0.08);
  background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-suggestion-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.category-suggestion-icon {
  font-size: 1.5rem;
}
.empty-search-icon {
  font-size: 3rem;
  color: #bfdbf8;
}

.site-trust-strip {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 132, 255, 0.08);
}
.site-trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}
.site-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #f4f8ff;
  color: var(--ink);
  font-size: 0.78rem;
}
.site-trust-pill strong {
  color: var(--primary-dark);
}
.site-trust-pill em {
  font-style: normal;
  color: rgba(23, 50, 77, 0.72);
}
.site-trust-link {
  margin-left: auto;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-hero-refined .hero-body {
  padding-top: 3.4rem;
  padding-bottom: 3.2rem;
}
.home-hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.hero-cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-stat-panel {
  padding: 1.1rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(2, 47, 96, 0.24);
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.hero-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.hero-stat-card strong {
  font-size: 1.3rem;
}
.hero-stat-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-stat-note {
  margin-top: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(3, 33, 70, 0.28);
  color: #ffffff;
}
.hero-stat-note strong {
  display: block;
  margin-bottom: 0.2rem;
}
.hero-stat-note span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.start-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.start-flow-card {
  display: block;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.12);
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.start-flow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.start-flow-card strong {
  display: block;
  margin-bottom: 0.4rem;
}
.start-flow-card span {
  color: rgba(23, 50, 77, 0.72);
  font-size: 0.88rem;
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.home-trust-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.12);
}
.home-trust-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
}
.home-trust-card span {
  color: rgba(23, 50, 77, 0.72);
  font-size: 0.88rem;
}

.home-ranking-panel {
  padding: 1.2rem;
}
.mini-ranking-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mini-ranking-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(11, 132, 255, 0.1);
  color: inherit;
}
.mini-ranking-item strong {
  color: var(--ink);
}
.mini-ranking-item span {
  font-size: 0.8rem;
  color: rgba(23, 50, 77, 0.72);
}
.comparison-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.home-activity-panel {
  padding: 1.2rem;
}
.home-activity-panel-secondary {
  display: none;
}
.home-activity-stack {
  display: grid;
  gap: 0.85rem;
}
.activity-subcard {
  padding: 0.95rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.activity-subhead {
  margin-bottom: 0.7rem;
}
.activity-subhead strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.saved-business-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 56px;
}
.saved-business-item {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(11, 132, 255, 0.1);
  color: inherit;
}
.saved-business-item strong {
  display: block;
}
.saved-business-item span,
.saved-business-item small {
  display: block;
  color: rgba(23, 50, 77, 0.72);
}
.saved-business-item small {
  margin-top: 0.22rem;
  font-size: 0.75rem;
}
.saved-business-empty {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .home-activity-panel-primary .home-activity-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.search-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.search-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
}
.search-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
}
.search-filter-action {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid rgba(11, 132, 255, 0.12);
  color: var(--ink);
  font-size: 0.82rem;
}
.search-filter-action.is-active {
  background: var(--primary-dark);
  border-color: transparent;
  color: #ffffff;
}
.search-active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.search-active-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}
.search-active-filter-reset {
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.detail-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.detail-summary-card {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(11, 132, 255, 0.1);
}
.detail-summary-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
  font-size: 0.8rem;
}
.detail-summary-card span {
  color: var(--ink);
  font-size: 0.88rem;
}
.detail-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.detail-trust-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--primary-dark);
  font-size: 0.8rem;
}
.detail-trust-item span {
  color: rgba(23, 50, 77, 0.76);
  font-size: 0.84rem;
}
.detail-report-form .textarea {
  min-height: 112px;
}
.detail-report-form .label {
  color: #1b3552;
  font-weight: 800;
}
.detail-report-form .input,
.detail-report-form .select select,
.detail-report-form .textarea {
  background: #ffffff;
  border-color: rgba(11, 132, 255, 0.16);
  color: var(--ink);
  font-weight: 600;
}
.detail-report-form .select select option {
  color: var(--ink);
  background: #ffffff;
}
.detail-report-form .input::placeholder,
.detail-report-form .textarea::placeholder {
  color: #5f738b;
  opacity: 1;
}

.ranking-table-wrap {
  overflow-x: auto;
}
.ranking-note {
  color: #4f6782 !important;
  font-weight: 700;
}
.ranking-table {
  color: var(--ink);
  background: #ffffff !important;
  --bulma-table-background-color: #ffffff;
  --bulma-table-color: var(--ink);
  --bulma-table-cell-border-color: rgba(11, 132, 255, 0.08);
  --bulma-table-striped-row-even-background-color: #ffffff;
  --bulma-table-row-hover-background-color: #f8fbff;
  box-shadow: none;
}
.ranking-table thead,
.ranking-table tbody,
.ranking-table tr,
.ranking-table th,
.ranking-table td {
  vertical-align: middle;
  color: #24384e !important;
  background: #ffffff !important;
}
.ranking-table th {
  color: #163b63 !important;
  background: #f7fbff;
  border-color: rgba(11, 132, 255, 0.1);
  font-weight: 800;
}
.ranking-table td {
  border-color: rgba(11, 132, 255, 0.08);
}
.ranking-region-link {
  color: #163b63 !important;
  font-weight: 800;
}
.ranking-table td:first-child,
.ranking-table td:nth-child(2) {
  color: #17324d !important;
  font-weight: 700;
}
.ranking-tag {
  margin: 0.15rem 0.2rem 0.15rem 0;
}
.compare-switch-box strong,
.compare-switch-box .select select,
.compare-switch-box .select::after {
  color: var(--ink);
}
.compare-switch-box .select select {
  background: #ffffff;
  border-color: rgba(11, 132, 255, 0.14);
  font-weight: 600;
}
.compare-switch-box .select select option {
  color: var(--ink);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.compare-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.1);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.compare-card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.compare-card .title,
.compare-card .has-text-grey,
.compare-card .is-size-7,
.compare-card strong {
  color: var(--ink);
}
.compare-card .has-text-grey,
.compare-card .is-size-7 {
  color: rgba(23, 50, 77, 0.78) !important;
}
.compare-description {
  color: rgba(23, 50, 77, 0.86);
  min-height: 48px;
}
.compare-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}
.compare-metric-card {
  padding: 0.95rem 0.8rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(11, 132, 255, 0.1);
}
.compare-metric-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.05rem;
}
.compare-metric-card span {
  color: rgba(23, 50, 77, 0.72);
  font-size: 0.78rem;
}
.compare-top-region-list {
  margin-top: 1rem;
}

.ranking-hero-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}
.ranking-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}
.ranking-summary-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 132, 255, 0.1);
}
.ranking-summary-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.35rem;
}
.ranking-summary-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.84rem;
}
.ranking-spotlight-card {
  height: 100%;
}
.ranking-spotlight-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
}
.ranking-spotlight-card small,
.landing-link-card small {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.ranking-click-row {
  cursor: pointer;
}
.ranking-click-row:focus {
  outline: 2px solid rgba(11, 132, 255, 0.24);
  outline-offset: -2px;
}
.ranking-cell-main {
  color: var(--ink);
  font-weight: 800;
}
.ranking-cell-subtags {
  margin-top: 0.4rem;
}
.ranking-side-panel {
  height: auto;
}
.ranking-tip-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}
.ranking-tip-list li + li {
  margin-top: 0.55rem;
}

.policy-shell {
  display: grid;
  gap: 1rem;
}
.policy-card {
  padding: 1.25rem 1.3rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
  box-shadow: var(--shadow-sm);
}
.policy-card h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: 1.08rem;
}
.policy-card p:last-child {
  margin-bottom: 0;
}
.policy-list {
  margin: 0;
  padding-left: 1.1rem;
}
.policy-list li + li {
  margin-top: 0.45rem;
}

.faq-page-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.faq-section-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.faq-section-head {
  margin-bottom: 1rem;
}

.detail-map-panel {
  margin: 1.5rem 0 1.85rem;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(11, 132, 255, 0.08);
}
.detail-map-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}
.detail-map-copy {
  min-width: 0;
}
.detail-map-note {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}
.detail-map-embed {
  border-radius: 18px;
}

@media (max-width: 1023px) {
  .ranking-summary-grid,
  .hero-stat-grid,
  .home-trust-grid,
  .detail-summary-grid,
  .compare-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compare-grid,
  .start-flow-grid {
    grid-template-columns: 1fr;
  }
  .detail-map-head {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .site-trust-link {
    margin-left: 0;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .hero-cta-row .button {
    width: 100%;
  }
  .hero-stat-grid,
  .home-trust-grid,
  .detail-summary-grid,
  .compare-metric-grid {
    grid-template-columns: 1fr;
  }
  .ranking-summary-grid,
  .landing-link-grid,
  .faq-grid,
  .guide-section-grid {
    grid-template-columns: 1fr;
  }
}
