.npll-wrap {
  display: grid;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.npll-wrap *, .npll-wrap *::before, .npll-wrap *::after { box-sizing: border-box; }
.npll-layout-row.npll-display-both { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.4fr); align-items: start; }
.npll-layout-column { grid-template-columns: 1fr; }
.npll-display-map, .npll-display-list { grid-template-columns: 1fr; }
.npll-list { display: grid; gap: 12px; align-content: start; }

.npll-card {
  border: 1px solid var(--global-gray-400, #e2e8f0);
  border-radius: 12px;
  padding: 18px;
  background: var(--global-palette9, #fff);
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.npll-card:hover, .npll-card.is-active { border-color: var(--global-palette1, #1967d2); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.npll-card:focus-within { outline: 2px solid var(--global-palette1, #1967d2); outline-offset: 2px; }
.npll-title { margin: 0 0 6px; font-size: 1.1rem; }
.npll-address, .npll-description, .npll-hours { margin: 0 0 10px; }
.npll-description, .npll-hours { font-size: .92rem; opacity: .82; }
.npll-hours { white-space: normal; }
.npll-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.npll-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px 12px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.npll-btn-primary { background: var(--global-palette1, #1967d2); color: #fff; }
.npll-btn-primary:hover { color: #fff; filter: brightness(.95); }
.npll-btn-secondary { border: 1px solid var(--global-palette1, #1967d2); color: var(--global-palette1, #1967d2); background: transparent; }
.npll-text-link { font-size: .92rem; }

.npll-map-shell { position: relative; min-width: 0; height: var(--npll-map-height, 520px); border-radius: 12px; overflow: hidden; background: #f3f4f6; }
.npll-map { width: 100%; height: 100%; z-index: 1; opacity: 0; transition: opacity .2s ease; }
.npll-map-shell.is-loaded .npll-map { opacity: 1; }
.npll-map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0; font-size: .92rem; opacity: .7; }
.npll-map-shell.is-loaded .npll-map-placeholder { display: none; }
.npll-map-shell.has-error .npll-map-placeholder { z-index: 2; opacity: 1; }
.npll-popup strong { display: block; margin-bottom: 4px; }
.npll-popup a { display: inline-block; margin-top: 8px; font-weight: 600; }

.npll-marker-wrap { background: transparent; border: 0; }
.npll-marker { --npll-pin: #1967d2; position: relative; display: block; width: 30px; height: 30px; background: var(--npll-pin); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 2px 7px rgba(0,0,0,.3); border: 2px solid #fff; }
.npll-marker > span { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; top: 8px; left: 8px; }

@media (max-width: 820px) {
  .npll-layout-row.npll-display-both { grid-template-columns: 1fr; }
  .npll-map-shell { min-height: 380px; height: min(var(--npll-map-height, 520px), 65vh); }
}

@media (prefers-reduced-motion: reduce) {
  .npll-card, .npll-map { transition: none; }
}

.npll-tools {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--global-gray-400, #e2e8f0);
  border-radius: 12px;
  background: var(--global-palette9, #fff);
}
.npll-tools label { margin: 0; }
.npll-search-wrap { flex: 1 1 260px; }
.npll-search,
.npll-filter-type,
.npll-filter-city {
  min-height: 42px;
  border: 1px solid var(--global-gray-400, #cbd5e1);
  border-radius: 8px;
  background: var(--global-palette9, #fff);
  color: inherit;
  padding: 8px 10px;
  font: inherit;
}
.npll-search { width: 100%; }
.npll-filter-type,
.npll-filter-city { min-width: 180px; }
.npll-nearest {
  min-height: 42px;
  border: 1px solid var(--global-palette1, #1967d2);
  border-radius: 8px;
  background: transparent;
  color: var(--global-palette1, #1967d2);
  padding: 8px 12px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.npll-nearest:hover { background: color-mix(in srgb, var(--global-palette1, #1967d2) 8%, transparent); }
.npll-nearest:disabled { opacity: .55; cursor: progress; }
.npll-tools-status {
  flex: 1 0 100%;
  min-height: 1.2em;
  font-size: .86rem;
  opacity: .78;
}
.npll-no-results {
  margin: 0;
  padding: 16px;
  border: 1px dashed var(--global-gray-400, #cbd5e1);
  border-radius: 10px;
  text-align: center;
}
.npll-card[hidden] { display: none !important; }
.npll-marker-image-wrap { background: transparent; border: 0; }
.npll-marker-image {
  --npll-pin: #1967d2;
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--npll-pin);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  overflow: hidden;
}
.npll-marker-image img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  transform: rotate(45deg);
  background: #fff;
}

@media (max-width: 640px) {
  .npll-tools { align-items: stretch; }
  .npll-tools > label,
  .npll-nearest,
  .npll-filter-type,
  .npll-filter-city { width: 100%; }
}

.npll-service-area { margin:0 0 10px; font-size:.92rem; opacity:.86; }
.npll-nap { display:flex; flex-direction:column; gap:3px; margin:0; font-style:normal; }
.npll-nap a { text-decoration:none; }
.npll-location-detail { margin:1.5rem 0; padding:1.25rem; border:1px solid var(--global-gray-400,#e2e8f0); border-radius:12px; background:var(--global-palette9,#fff); }
.npll-location-detail p { margin:.35rem 0; }
.npll-location-services { margin-top:1.25rem; }
.npll-location-services h2 { margin-bottom:.6rem; font-size:1.2rem; }
.npll-location-services ul { margin:.4rem 0 0 1.2rem; }
.npll-location-actions { margin-top:1.25rem; }

/* Local SEO landing navigation */
.npll-breadcrumbs { margin: 0 0 1rem; font-size: .9rem; }
.npll-breadcrumbs ol { display:flex; flex-wrap:wrap; gap:.35rem; list-style:none; margin:0; padding:0; }
.npll-breadcrumbs li { display:flex; align-items:center; gap:.35rem; }
.npll-breadcrumbs li:not(:last-child)::after { content:"/"; opacity:.45; }
.npll-breadcrumbs a { text-decoration:none; }
.npll-related-locations { margin:1.5rem 0; padding:1.25rem; border:1px solid var(--global-gray-400,#e2e8f0); border-radius:12px; }
.npll-related-locations h2 { margin:0 0 .75rem; font-size:1.2rem; }
.npll-related-locations ul { display:grid; gap:.55rem; list-style:none; margin:0; padding:0; }
.npll-related-locations li { margin:0; }
.npll-related-locations a { font-weight:600; text-decoration:none; }
.npll-related-locations span { opacity:.72; font-size:.92em; }
.npll-popup-actions { display:flex; flex-wrap:wrap; gap:8px 12px; margin-top:8px; }
.npll-popup-actions a { margin-top:0; }

/* 1.1.0 — landing embeds and multisede hubs */
.npll-location-embed,.npll-hub-embed{--npll-accent:var(--global-palette-highlight,var(--awb-color1,#1d4ed8));--npll-surface:var(--global-palette9,#fff);--npll-text:inherit;--npll-muted:#667085;--npll-border:rgba(17,24,39,.12);color:var(--npll-text)}
.npll-location-embed{display:grid;gap:1.35rem;border:1px solid var(--npll-border);border-radius:18px;background:var(--npll-surface);overflow:hidden;box-shadow:0 10px 32px rgba(16,24,40,.07);margin:1.5rem 0}
.npll-embed-content{padding:clamp(1.15rem,2.5vw,2rem)}
.npll-embed-media img{width:100%;height:100%;min-height:220px;max-height:360px;object-fit:cover;display:block}
.npll-embed-eyebrow{font-size:.78rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--npll-accent);margin-bottom:.45rem}
.npll-embed-title{font-size:clamp(1.35rem,2vw,1.85rem);line-height:1.15;margin:.1rem 0 .75rem}
.npll-embed-description{margin:0 0 1.1rem;color:var(--npll-muted);max-width:70ch}
.npll-embed-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem;margin:1rem 0}
.npll-embed-facts>div,.npll-embed-facts address{font-style:normal;margin:0;padding:.8rem;border-radius:12px;background:rgba(127,127,127,.065)}
.npll-embed-facts strong{display:block;font-size:.78rem;text-transform:uppercase;letter-spacing:.04em;margin-bottom:.2rem;color:var(--npll-muted)}
.npll-embed-facts span{display:block}.npll-embed-facts a{color:inherit;text-decoration-thickness:1px;text-underline-offset:2px}
.npll-embed-services{margin:1rem 0}.npll-embed-services>strong{display:block;margin-bottom:.4rem}.npll-embed-services ul{display:flex;flex-wrap:wrap;gap:.45rem;margin:0;padding:0;list-style:none}.npll-embed-services li{margin:0}.npll-embed-services li>a,.npll-embed-services li:not(:has(a)){display:inline-block;padding:.35rem .65rem;border:1px solid var(--npll-border);border-radius:999px;font-size:.88rem;color:inherit;text-decoration:none}
.npll-embed-actions{display:flex;flex-wrap:wrap;align-items:center;gap:.65rem;margin-top:1.2rem}.npll-embed-btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:.72rem 1rem;border-radius:10px;font-weight:700;line-height:1;text-decoration:none!important;transition:transform .15s ease,box-shadow .15s ease}.npll-embed-btn:hover{transform:translateY(-1px)}
.npll-embed-btn-primary{background:var(--npll-accent);color:#fff!important;box-shadow:0 5px 14px color-mix(in srgb,var(--npll-accent) 25%,transparent)}.npll-embed-btn-secondary{border:1px solid var(--npll-border);color:inherit!important;background:transparent}
.npll-embed-split,.npll-embed-conversion{grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);align-items:stretch}.npll-embed-split .npll-embed-media,.npll-embed-conversion .npll-embed-media{grid-column:1/-1;max-height:260px}.npll-embed-split .npll-embed-map,.npll-embed-conversion .npll-embed-map{min-width:0}.npll-embed-map .npll-wrap{height:100%;margin:0}.npll-embed-map .npll-map{height:100%!important;min-height:360px;border-radius:0}
.npll-embed-card{grid-template-columns:minmax(190px,.42fr) minmax(0,.58fr)}.npll-embed-card .npll-embed-media{min-height:100%}.npll-embed-card .npll-embed-media img{max-height:none}
.npll-embed-compact{box-shadow:none;border-radius:12px}.npll-embed-compact .npll-embed-content{display:grid;grid-template-columns:minmax(160px,.65fr) minmax(0,1.35fr) auto;gap:1rem;align-items:center;padding:1rem}.npll-embed-compact .npll-embed-eyebrow{margin:0}.npll-embed-compact .npll-embed-title{font-size:1.15rem;margin:.2rem 0 0}.npll-embed-compact .npll-embed-facts{grid-template-columns:repeat(2,minmax(0,1fr));margin:0}.npll-embed-compact .npll-embed-actions{margin:0;justify-content:flex-end}.npll-embed-compact .npll-embed-actions .npll-embed-btn-secondary:nth-of-type(n+3){display:none}
.npll-embed-map-below{margin:-.75rem 0 1.5rem}.npll-embed-map-below .npll-map{border-radius:14px}
.npll-hub-embed{margin:1.5rem 0}.npll-hub-intro{max-width:780px;margin:0 0 1rem}.npll-hub-intro h2{margin-bottom:.35rem}.npll-hub-intro p{margin:0;color:var(--npll-muted)}
.npll-hub-embed .npll-card{border-radius:16px;border-color:var(--npll-border);transition:transform .15s ease,box-shadow .15s ease}.npll-hub-embed .npll-card:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(16,24,40,.08)}.npll-hub-embed .npll-btn-primary{background:var(--npll-accent);border-color:var(--npll-accent)}
.npll-hub-grid .npll-wrap,.npll-hub-compact .npll-wrap{display:block}.npll-hub-grid .npll-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.npll-hub-compact .npll-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}.npll-hub-compact .npll-card{padding:1rem}.npll-hub-selector .npll-tools{position:sticky;top:1rem;z-index:5;background:var(--npll-surface);box-shadow:0 6px 20px rgba(16,24,40,.08);border-radius:14px;padding:.8rem}
@media (max-width:900px){.npll-embed-split,.npll-embed-conversion,.npll-embed-card{grid-template-columns:1fr}.npll-embed-map .npll-map{min-height:320px}.npll-hub-grid .npll-list{grid-template-columns:repeat(2,minmax(0,1fr))}.npll-embed-compact .npll-embed-content{grid-template-columns:1fr}.npll-embed-compact .npll-embed-actions{justify-content:flex-start}}
@media (max-width:620px){.npll-embed-facts,.npll-hub-grid .npll-list,.npll-hub-compact .npll-list{grid-template-columns:1fr}.npll-embed-actions{display:grid;grid-template-columns:1fr 1fr}.npll-embed-btn-primary{grid-column:1/-1}.npll-embed-content{padding:1rem}.npll-location-embed{border-radius:14px}}
@media (prefers-reduced-motion:reduce){.npll-embed-btn,.npll-hub-embed .npll-card{transition:none!important}}

/* WhatsApp CRO */
.npll-whatsapp-microcopy{margin:.55rem 0 0;font-size:.86rem;line-height:1.45;color:var(--npll-muted,#5f6368)}
.npll-embed-btn[data-npll-track="whatsapp"].npll-embed-btn-primary{font-weight:700}

/* 1.3.0 — universal local SEO / lead-gen */
.npll-embed-lead,.npll-embed-authority{grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);align-items:stretch}
.npll-embed-lead .npll-embed-media,.npll-embed-authority .npll-embed-media{grid-column:1/-1;max-height:260px}
.npll-embed-lead .npll-embed-map,.npll-embed-authority .npll-embed-map{min-width:0}
.npll-primary-service{margin:.8rem 0;font-size:.95rem}
.npll-trust-points{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem 1rem;list-style:none;margin:1rem 0;padding:0}
.npll-trust-points li{position:relative;margin:0;padding-left:1.35rem;font-size:.92rem}
.npll-trust-points li::before{content:"✓";position:absolute;left:0;top:0;font-weight:800;color:var(--npll-accent)}
.npll-provider-disclosure{display:flex;flex-direction:column;gap:.2rem;margin-top:.8rem;padding:.7rem .8rem;border-radius:10px;background:rgba(127,127,127,.07);font-size:.8rem;line-height:1.45;color:var(--npll-muted)}
.npll-provider-disclosure strong{color:inherit}.npll-provider-disclosure a{color:inherit}
.npll-lead-microcopy{margin:.55rem 0 0;font-size:.86rem;line-height:1.45;color:var(--npll-muted,#5f6368)}
.npll-local-cta{--npll-accent:var(--global-palette-highlight,var(--awb-color1,#1d4ed8));display:flex;gap:1rem;align-items:center;justify-content:space-between;border:1px solid rgba(17,24,39,.12);border-radius:14px;padding:1rem 1.1rem;background:var(--global-palette9,#fff);margin:1rem 0;box-shadow:0 8px 24px rgba(16,24,40,.06)}
.npll-local-cta-copy{display:flex;flex-direction:column;gap:.18rem;min-width:0}.npll-local-cta-copy strong{font-size:1rem}.npll-local-cta-copy span{font-size:.85rem;opacity:.78}
.npll-local-cta-button{display:inline-flex;border:0;box-shadow:none;padding:0;margin:0;background:transparent}.npll-local-cta-button .npll-embed-btn{margin:0}
.npll-cta-close{display:none}
@media (max-width:900px){.npll-embed-lead,.npll-embed-authority{grid-template-columns:1fr}}
@media (max-width:640px){.npll-trust-points{grid-template-columns:1fr}.npll-local-cta{align-items:stretch;flex-direction:column}.npll-local-cta .npll-embed-btn{width:100%}.npll-cta-sticky{position:fixed;left:12px;right:12px;bottom:12px;z-index:9998;margin:0;padding:.8rem;box-shadow:0 14px 40px rgba(0,0,0,.18)}.npll-cta-sticky .npll-cta-close{display:block;position:absolute;right:5px;top:2px;border:0;background:transparent;font-size:1.4rem;line-height:1;cursor:pointer;opacity:.65}.npll-cta-sticky .npll-local-cta-copy{padding-right:1.2rem}}
