

/* ============================================================
   MAP MARKERS AND STYLES
   ============================================================ */
.hd-pin-wrap { background: none !important; border: none !important; }
.hd-pin {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  background: #fff; color: #0e2248; border: 1.5px solid #0e2248;
  border-radius: 20px; padding: 4px 10px 4px 7px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: -.01em;
  box-shadow: 0 2px 8px rgba(14,34,72,.28); cursor: pointer;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.hd-pin::after {
  content: ''; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid #0e2248;
}
.hd-dog { width: 14px; height: 14px; flex-shrink: 0; color: #b8972a; }
.hd-pin:hover, .hd-pin.hi {
  background: #0e2248; color: #fff; transform: scale(1.1); z-index: 999;
}
.hd-pin:hover .hd-dog, .hd-pin.hi .hd-dog { color: #f0d87a; }
.hd-pin.me { background: #b8972a; border-color: #8a6f14; color: #17203a; }
.hd-pin.me::after { border-top-color: #8a6f14; }
.hd-pin.me .hd-dog { color: #17203a; }

/* style switcher, bottom left of the map */
.hd-stylebox { position: absolute; left: 12px; bottom: 24px; z-index: 500; }
.hd-style {
  display: inline-flex; background: rgba(255,255,255,.96); border-radius: 8px;
  padding: 3px; box-shadow: 0 3px 12px rgba(14,34,72,.22); backdrop-filter: blur(6px);
}
.hd-style button {
  border: none; background: none; font-family: inherit; font-size: 11.5px; font-weight: 700;
  color: #5a6070; padding: 7px 11px; border-radius: 6px; cursor: pointer;
}
.hd-style button:hover { background: #f2f5fa; color: #0e2248; }
.hd-style button.on { background: #0e2248; color: #fff; }

/* on a dark or satellite basemap the pills need more contrast */
body.map-dark .hd-pin { border-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.5); }
body.map-dark .hd-pin::after { border-top-color: #fff; }

/* ---------- mobile: no map, just the list ---------- */
@media (max-width: 900px) {
  .hd-map { display: none; }
  .hd-split { grid-template-columns: 1fr; height: auto; }
  .hd-right { overflow: visible; }
  .hd-list { grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px; }
  .hd-ad { min-height: 260px; }
}
@media (max-width: 520px) {
  .hd-list { grid-template-columns: 1fr; }
  .hd-ad { min-height: 0; flex-direction: row; align-items: center; }
}

.ssearch-nav a.pro-link { color: var(--gold-dark, #8a6f14); }
.ssearch-nav a.pro-link i { color: var(--gold); }
.ssearch-nav a.pro-link:hover { background: #fdf6e0; }
.heroauth-link.pro { color: #8a6f14; font-weight: 800; }

/* ============================================================
   SITE NAV
   Transparent over the hero, solid once you scroll. Logo centred,
   plain text either side. No pills, no boxes.
   ============================================================ */
.wd-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 800;
  background: transparent; transition: background .25s ease, box-shadow .25s ease;
}
.wd-nav-in {
  max-width: 1240px; margin: 0 auto; padding: 20px 26px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.wd-left, .wd-right { display: flex; align-items: center; gap: 26px; }
.wd-right { justify-content: flex-end; }
.wd-nav a, .wd-nav button {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14.5px; font-weight: 600; color: #fff; text-decoration: none;
  background: none; border: none; padding: 0; cursor: pointer; white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0,0,0,.45); transition: opacity .15s;
}
.wd-nav a:hover, .wd-nav button:hover { opacity: .72; }

.wd-logo {
  display: inline-flex; align-items: center; gap: 9px; justify-self: center;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 21px !important; font-weight: 800 !important; letter-spacing: -.03em;
}
.wd-logo i { color: var(--gold); font-size: 22px; }

/* solid state, set by script once past the hero */
.wd-nav.solid {
  position: fixed; background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border), 0 4px 18px rgba(14,34,72,.07);
}
.wd-nav.solid .wd-nav-in { padding: 13px 26px; }
.wd-nav.solid a, .wd-nav.solid button { color: var(--navy-dark); text-shadow: none; }
.wd-nav.solid .wd-logo { color: var(--navy-dark); }

/* pages without a hero image start solid */
body.nav-solid .wd-nav { position: sticky; background: #fff; box-shadow: 0 1px 0 var(--border); }
body.nav-solid .wd-nav a, body.nav-solid .wd-nav button, body.nav-solid .wd-logo { color: var(--navy-dark); text-shadow: none; }

@media (max-width: 940px) {
  .wd-nav-in { grid-template-columns: 1fr auto 1fr; gap: 12px; padding: 14px 16px; }
  .wd-left { gap: 16px; }
  .wd-right { gap: 16px; }
  .wd-left a:nth-child(n+3) { display: none; }
  .wd-right a:nth-child(2) { display: none; }
  .wd-nav a, .wd-nav button { font-size: 13.5px; }
  .wd-logo { font-size: 18px !important; }
}
@media (max-width: 560px) {
  .wd-left a:nth-child(n+2) { display: none; }
  .wd-right a { display: none; }
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.ins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 1120px; margin: 0 auto; }

.ins-lead { display: block; text-decoration: none; }
.ins-photo { height: 300px; border-radius: 12px; background-size: cover; background-position: center;
  margin-bottom: 16px; }
.ins-kicker { display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold-dark, #8a6f14); margin-bottom: 8px; }
.ins-lead h3 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 25px; font-weight: 800; letter-spacing: -.028em; line-height: 1.22;
  color: var(--navy-dark); margin: 0 0 10px; }
.ins-lead p { font-size: 15px; line-height: 1.7; color: #5a6070; margin: 0 0 10px; }
.ins-lead em, .ins-list em { font-style: normal; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: #a0a8b8; }
.ins-lead:hover h3 { color: var(--navy); }

.ins-list { display: flex; flex-direction: column; }
.ins-list > a, .ins-list > article { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; }
.ins-list > a:first-child, .ins-list > article:first-child { padding-top: 0; }
.ins-thumb { width: 128px; height: 86px; flex-shrink: 0; border-radius: 8px;
  background-size: cover; background-position: center; }
.ins-list h4 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: -.02em; line-height: 1.32;
  color: var(--navy-dark); margin: 0 0 7px; }
.ins-list a:hover h4 { color: var(--navy); }
.ins-more { padding-top: 16px; text-align: right; }
.ins-more a { display: inline; border: none; padding: 0; font-size: 14px; font-weight: 700;
  color: var(--navy); text-decoration: underline; }

.ins-glance { max-width: 1120px; margin: 40px auto 0; background: #f6f8fc;
  border-radius: 14px; padding: 26px 30px; }
.ins-glance-h { margin-bottom: 22px; }
.ins-glance-h b { display: block; font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 19px; font-weight: 800; letter-spacing: -.02em; color: var(--navy-dark); }
.ins-glance-h span { font-size: 13px; color: #8a93a6; }
.ins-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
.ins-stats > div { display: flex; align-items: center; gap: 13px; }
.ins-stats i { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 15px; }
.ins-stats b { display: block; font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: -.03em; color: var(--navy-dark); line-height: 1.1; }
.ins-stats span { font-size: 12px; color: #5a6070; }
.ins-src { font-size: 12px; color: #8a93a6; margin-top: 22px; padding-top: 16px;
  border-top: 1px solid var(--border); }
.ins-src a { color: var(--navy); font-weight: 600; }

@media (max-width: 860px) {
  .ins-grid { grid-template-columns: 1fr; gap: 26px; }
  .ins-photo { height: 220px; }
  .ins-lead h3 { font-size: 21px; }
}
@media (max-width: 480px) {
  .ins-thumb { width: 92px; height: 68px; }
  .ins-list h4 { font-size: 14.5px; }
}
