/* ══════════════════════════════════════════════════════════════
   HP2 Mega Menu — easylemon.com header panels
   Loads after hp2-global.css only when el_mega_enabled().
   Tokens come from .hp2 (--yellow, --dark, --navy, --border …).
   ══════════════════════════════════════════════════════════════ */

/* ── Top level ─────────────────────────────────────────────── */
.hp2 nav.hp2-nav > .elm-menu > li.elm-item { position: relative; display: flex; align-items: center; }
.hp2 nav.hp2-nav > .elm-menu > li.elm-has-panel > a { padding-right: 6px; }
.hp2 nav.hp2-nav > .elm-menu > li.elm-has-panel > a::before { content: none; }   /* old caret off */
.hp2 nav.hp2-nav > .elm-menu > li.elm-has-panel::after { content: none; }        /* old bridge off */
.hp2 nav.hp2-nav > .elm-menu { position: relative; }

.elm-toggle {
  appearance: none; -webkit-appearance: none; background: none; border: 0; padding: 4px 10px 4px 2px;
  margin: 0; cursor: pointer; line-height: 0; color: var(--gray); border-radius: 6px;
}
.elm-toggle:focus-visible { outline: 2px solid var(--yellow-d); outline-offset: 2px; }
.elm-caret { display: block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; transition: transform .25s ease, color .2s; }
li.elm-item.elm-open > .elm-toggle .elm-caret, li.elm-item:hover > .elm-toggle .elm-caret { transform: rotate(180deg); color: var(--yellow-d); }
li.elm-item.elm-open > a::after { transform: scaleX(1) !important; }

/* ── Panel shell ───────────────────────────────────────────── */
.elm-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(calc(-50% + var(--elm-shift, 0px))) translateY(8px) scale(.985);
  background: #fff; border-radius: 18px;
  box-shadow: 0 24px 64px rgba(13,31,76,.16), 0 6px 16px rgba(0,0,0,.06), 0 0 0 1px rgba(13,31,76,.05);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .24s cubic-bezier(.2,.9,.3,1);
  z-index: 101; text-align: left;
}
.elm-panel::before {   /* hover bridge so the cursor can travel down without closing */
  content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
}
.elm-panel::after {    /* notch */
  content: ''; position: absolute; top: -7px; left: calc(50% - var(--elm-shift, 0px)); width: 14px; height: 14px;
  background: #fff; transform: translateX(-50%) rotate(45deg); border-radius: 3px;
  border-top: 1px solid rgba(13,31,76,.06); border-left: 1px solid rgba(13,31,76,.06);
}
li.elm-item.elm-open > .elm-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(calc(-50% + var(--elm-shift, 0px))) translateY(0) scale(1); }
@media (hover:hover) and (pointer:fine) {
  li.elm-item:hover > .elm-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(calc(-50% + var(--elm-shift, 0px))) translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) { .elm-panel { transition: opacity .12s linear; transform: translateX(calc(-50% + var(--elm-shift, 0px))) !important; } .elm-caret { transition: none; } }

.elm-panel-in { display: flex; gap: 8px; padding: 20px; }
.elm-panel-team  { width: 1140px; }
.elm-panel-law   { width: 1000px; }
.elm-panel-about { width: 720px; }
.elm-panel-contact { width: 380px; }
.elm-panel-list  { width: 560px; }
.elm-panel-sm    { width: 520px; }
@media (max-width: 1400px) { .elm-panel-team { width: 1040px; } .elm-panel-law { width: 940px; } }

/* Kill every border/underline the legacy theme paints on nav anchors and list items.
   #main_header_menu rules in style.css win on specificity, so match them with the ID. */
#main_header_menu .elm-panel li, #main_header_menu .elm-panel li a, #main_header_menu .elm-panel a,
#main_header_menu .elm-panel a::before, #main_header_menu .elm-panel a::after,
#main_header_menu .elm-panel li::before, #main_header_menu .elm-panel li::after {
  border: 0 !important; border-bottom: 0 !important; text-decoration: none !important; outline-offset: 0;
}
#main_header_menu .elm-panel a::after, #main_header_menu .elm-panel a::before,
#main_header_menu .elm-panel li::after, #main_header_menu .elm-panel li::before { content: none !important; display: none !important; }
#main_header_menu .elm-panel li { padding: 0 !important; margin: 0 !important; float: none !important; width: auto !important; background: transparent !important; }

.elm-col { flex: 1 1 0; min-width: 0; padding: 4px 10px; display: flex; flex-direction: column; }
.elm-col + .elm-col { border-left: 1px solid var(--border); }
.elm-col-rail { flex: 0 0 256px; display: flex; flex-direction: column; gap: 12px; }
.elm-col-people { flex: 1 1 auto; justify-content: flex-start; }
/* Team rail: the CTA card fills the rail instead of sitting at the bottom with a gap above it */
.elm-panel-team .elm-cta { flex: 1 1 auto; margin-top: 0; display: flex; flex-direction: column; justify-content: center; padding: 18px 16px; }
.elm-cta-list { list-style: none; margin: 0 0 14px !important; padding: 0; display: flex; flex-direction: column; gap: 7px; }
#main_header_menu .elm-cta-list li,
.elm-cta-list li { display: flex; align-items: flex-start; gap: 8px; font-family: 'Inter', sans-serif; font-size: 12.5px; line-height: 1.35; color: rgba(255,255,255,.88); }
.elm-cta-list .elm-ico { width: 15px; height: 15px; flex: 0 0 15px; color: var(--yellow); margin-top: 1px; }
.hp2 nav.hp2-nav > .elm-menu > li.elm-has-panel > a::after { right: 0; }
.elm-col-wide { columns: 2; column-gap: 8px; }
.elm-col-wide li { break-inside: avoid; }

/* Typography */
.elm-panel p { margin: 0; }
.elm-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); margin: 4px 8px 2px !important; }
.elm-h-sm { margin-top: 2px !important; }
.elm-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0 8px 12px !important; max-width: 52ch; }

/* ── Link rows (Lemon Law / About / Contact) ───────────────── */
.elm-list { list-style: none; margin: 0; padding: 0; }
.elm-list li { margin: 0; padding: 0; float: none; background: transparent; border: 0 !important; }
.hp2 nav.hp2-nav .elm-row,
.elm-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 10px; border-radius: 12px; text-decoration: none; color: var(--dark) !important;
  transition: background .18s ease, transform .18s ease; white-space: normal; border: 0; margin: 0; background: transparent !important; line-height: 1.3; }
.elm-row:hover, .elm-row:focus-visible { background: linear-gradient(90deg, rgba(252,216,60,.16), rgba(252,216,60,.03)) !important; transform: translateX(2px); outline: none; }
.elm-row:focus-visible { box-shadow: inset 0 0 0 2px var(--yellow-d); }
.elm-row-i { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 10px; background: var(--lgray); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; transition: background .18s, color .18s; }
.elm-row:hover .elm-row-i { background: var(--yellow); color: var(--dark); }
.elm-ico { width: 18px; height: 18px; }
.elm-row-t { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.elm-row-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); }
.elm-row-d { font-family: 'Inter', sans-serif; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.elm-row-phone { margin-top: 6px; border-top: 1px solid var(--border); border-radius: 0 0 12px 12px; padding-top: 14px; }
.elm-row-phone > .elm-ico { flex: 0 0 18px; margin: 9px 0 0 9px; color: var(--navy); }
.elm-row-phone .elm-row-n { font-size: 16px; }

/* ── People (Team panel) ───────────────────────────────────── */
.elm-people { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 6px 8px; }
.elm-people li { margin: 0; padding: 0; float: none; border: 0 !important; background: transparent; }
.hp2 nav.hp2-nav .elm-person,
.elm-person { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 14px; text-decoration: none; color: var(--dark) !important; white-space: normal;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease; border: 0; margin: 0; background: transparent !important; line-height: 1.25; }
.elm-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: 0 0 52px; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--border); transition: box-shadow .18s ease, transform .18s ease; background: var(--lgray); }
.elm-person:hover, .elm-person:focus-visible { background: #fff !important; box-shadow: 0 8px 24px rgba(13,31,76,.10), 0 0 0 1px rgba(13,31,76,.06); transform: translateY(-1px); outline: none; }
.elm-person:focus-visible { box-shadow: 0 0 0 2px var(--yellow-d), 0 8px 24px rgba(13,31,76,.10); }
.elm-person:hover img { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--yellow); transform: scale(1.04); }
.elm-person-t { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.elm-person-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px; font-weight: 800; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.elm-esq { font-weight: 600; font-size: 12px; color: var(--muted); }
.elm-person-r { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.elm-person-a { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted); white-space: nowrap; }

/* Trust strip under the attorney grid */
.elm-trust { margin-top: auto; padding: 12px 8px 0; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.elm-trust-l { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.elm-trust img { height: 34px; width: auto; border-radius: 6px; background: #fff; box-shadow: 0 0 0 1px var(--border); opacity: .9; transition: opacity .18s, transform .18s; }
.elm-trust img:hover { opacity: 1; transform: translateY(-1px); }

/* Rail: see-all, staff, CTA */
.hp2 nav.hp2-nav .elm-all,
.elm-all { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: var(--lgray); color: var(--dark) !important; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; border: 0; margin: 0; white-space: normal; transition: background .18s, transform .18s; }
.elm-all:hover { background: var(--yellow) !important; transform: translateX(2px); }
.elm-all .elm-ico:last-child { margin-left: auto; }
.elm-staff { list-style: none; margin: 0; padding: 0; }
.elm-staff li { margin: 0; padding: 0; border: 0 !important; float: none; background: transparent; }
.hp2 nav.hp2-nav .elm-staff a,
.elm-staff a { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 10px; text-decoration: none; color: var(--dark) !important; border: 0; margin: 0; background: transparent !important; white-space: normal; transition: background .18s; }
.elm-staff a:hover { background: var(--lgray) !important; }
.elm-staff img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: 0 0 30px; }
.elm-staff span { display: flex; flex-direction: column; line-height: 1.2; }
.elm-staff strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; }
.elm-staff em { font-style: normal; font-family: 'Inter', sans-serif; font-size: 11.5px; color: var(--muted); }

.elm-cta { margin-top: auto; background: var(--navy); color: #fff; border-radius: 14px; padding: 14px 14px 12px; position: relative; overflow: hidden; }
.elm-cta::before { content: ''; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(252,216,60,.35), rgba(252,216,60,0) 70%); pointer-events: none; }
.elm-cta-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; color: #fff; margin: 0 0 2px !important; }
.elm-cta-s { font-family: 'Inter', sans-serif; font-size: 12.5px; color: rgba(255,255,255,.75); margin: 0 0 12px !important; }
.hp2 nav.hp2-nav .elm-cta-btn,
.elm-cta-btn { display: block; text-align: center; background: var(--yellow); color: var(--dark) !important; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800;
  padding: 11px 14px; border-radius: 10px; text-decoration: none; border: 0; margin: 0; white-space: nowrap; transition: background .18s, transform .18s; }
.elm-cta-btn:hover { background: #ffe066 !important; transform: translateY(-1px); }
.hp2 nav.hp2-nav .elm-cta-tel,
.elm-cta-tel { display: inline-flex; align-items: center; gap: 6px; margin: 10px 0 0 !important; padding: 0; color: #fff !important; text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; border: 0; background: transparent !important; white-space: nowrap; }
.elm-cta-tel .elm-ico { width: 14px; height: 14px; color: var(--yellow); }
.elm-cta-n { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,.6); margin: 8px 0 0 !important; }

/* Feature card (Lemon Law by Manufacturer) — a block with real per-make links */
.elm-feature { flex: 0 0 284px; display: flex; flex-direction: column; gap: 8px; border-radius: 16px; padding: 18px; border: 0 !important; margin: 0; white-space: normal;
  background: linear-gradient(160deg, var(--navy) 0%, #14306f 60%, #0b1a3f 100%); color: #fff; position: relative; overflow: hidden; }
.elm-feature::before { content: ''; position: absolute; right: -60px; bottom: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(252,216,60,.28), rgba(252,216,60,0) 70%); pointer-events: none; }
.elm-feature > * { position: relative; }
.elm-feature-k { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--yellow); }
#main_header_menu .elm-feature-t,
.elm-feature-t { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; line-height: 1.2; color: #fff !important; text-decoration: none; background: transparent !important; padding: 0; margin: 0; white-space: normal; }
.elm-feature-t:hover { color: var(--yellow) !important; }
.elm-feature-d { font-family: 'Inter', sans-serif; font-size: 12.5px; color: rgba(255,255,255,.78); line-height: 1.45; }
.elm-feature-links { list-style: none; margin: 6px 0 0 !important; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 4px 6px; }
#main_header_menu .elm-feature-links a,
.elm-feature-links a { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12.5px; font-weight: 700; padding: 6px 10px; border-radius: 8px; background: rgba(255,255,255,.08) !important; border: 1px solid rgba(255,255,255,.12) !important; color: #fff !important; text-decoration: none; white-space: nowrap; margin: 0; transition: background .15s, border-color .15s, transform .15s; }
.elm-feature-links a:hover { background: var(--yellow) !important; border-color: var(--yellow) !important; color: var(--dark) !important; transform: translateY(-1px); }
#main_header_menu .elm-feature-btn,
.elm-feature-btn { margin-top: auto; padding: 6px 0 0; display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: var(--yellow) !important; text-decoration: none; background: transparent !important; white-space: nowrap; }
.elm-feature-btn .elm-ico { width: 16px; height: 16px; transition: transform .2s; }
.elm-feature-btn:hover .elm-ico { transform: translateX(4px); }

/* Areas panel: offices + state links */
.elm-panel-areas { width: 1020px; }
.elm-col-offices { flex: 0 0 336px; }
.elm-col-states { flex: 1 1 auto; }
/* Office cards — tinted, bordered, with a navy state badge and a reveal-on-hover arrow */
.elm-offices { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
#main_header_menu .elm-offices a,
.elm-offices a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 14px; text-decoration: none; color: var(--dark) !important;
  background: var(--lgray) !important; border: 1px solid var(--border) !important; margin: 0; white-space: normal; position: relative;
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s; }
.elm-offices a:hover, .elm-offices a:focus-visible { background: #fff !important; border-color: rgba(252,216,60,.9) !important; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13,31,76,.10); outline: none; }
.elm-office-badge { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .5px; transition: background .18s, color .18s; }
.elm-offices a:hover .elm-office-badge { background: var(--yellow); color: var(--dark); }
.elm-offices .elm-row-t { flex: 1 1 auto; }
.elm-offices .elm-row-n { font-size: 15px; font-weight: 800; }
.elm-offices .elm-row-d { font-size: 11.5px; line-height: 1.4; }
.elm-offices a > .elm-ico { flex: 0 0 16px; width: 16px; height: 16px; color: var(--yellow-d); opacity: 0; transform: translateX(-4px); transition: opacity .18s, transform .18s; }
.elm-offices a:hover > .elm-ico { opacity: 1; transform: translateX(0); }

/* State chips — same visual family as the manufacturer chips */
.elm-states { list-style: none; margin: 0 0 14px !important; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
#main_header_menu .elm-states a,
.elm-states a { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 10px; border-radius: 999px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--dark) !important; text-decoration: none; background: #fff !important; border: 1px solid var(--border) !important; margin: 0; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s, transform .15s, box-shadow .15s; }
.elm-states a:hover, .elm-states a:focus-visible { background: var(--yellow) !important; border-color: var(--yellow) !important; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(13,31,76,.10); outline: none; }
/* State silhouette on each chip */
.elm-state-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.elm-state-ico { width: 18px; height: 18px; flex: 0 0 18px; fill: var(--navy); opacity: .82; transition: fill .15s, opacity .15s, transform .15s; }
.elm-states a:hover .elm-state-ico, .elm-states a:focus-visible .elm-state-ico { fill: var(--dark); opacity: 1; transform: scale(1.12); }

/* Navy anchor card closing the states column */
#main_header_menu .elm-states-cta,
.elm-states-cta { margin-top: auto; display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; border-radius: 14px; text-decoration: none; border: 0 !important;
  background: linear-gradient(160deg, var(--navy) 0%, #14306f 60%, #0b1a3f 100%) !important; color: #fff !important; position: relative; overflow: hidden; white-space: normal;
  transition: transform .2s, box-shadow .2s; }
.elm-states-cta::before { content: ''; position: absolute; right: -50px; bottom: -50px; width: 170px; height: 170px; border-radius: 50%; background: radial-gradient(circle, rgba(252,216,60,.30), rgba(252,216,60,0) 70%); pointer-events: none; }
.elm-states-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13,31,76,.28); }
.elm-states-cta > * { position: relative; }
.elm-states-cta-t { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; line-height: 1.25; color: #fff; }
.elm-states-cta-d { font-family: 'Inter', sans-serif; font-size: 12.5px; color: rgba(255,255,255,.78); line-height: 1.45; }
.elm-states-cta-go { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: var(--yellow); }
.elm-states-cta-go .elm-ico { width: 16px; height: 16px; transition: transform .2s; }
.elm-states-cta:hover .elm-states-cta-go .elm-ico { transform: translateX(4px); }

/* ── Header fit: keep nav + phone + CTA inside the viewport on laptops (1201–1680px) ──
   The nav used to be flex:1 with nowrap items and never shrank, so the CTA and language
   toggle ran off the right edge on every common laptop width. */
.hp2 nav.hp2-nav { min-width: 0; flex: 1 1 auto; padding: 0 20px 0 12px; }
.hp2 nav.hp2-nav .nav-menu { min-width: 0; flex: 1 1 auto; justify-content: space-between; max-width: 980px; margin: 0 auto; }
@media (min-width: 1201px) {
  .hp2 .header-inner { padding: 0 28px; }
  .hp2 nav.hp2-nav > .nav-menu > li > a { font-size: 14px; padding: 4px 8px; }
  .hp2 nav.hp2-nav > .elm-menu > li.elm-has-panel > a { padding-right: 4px; }
  .elm-toggle { padding: 4px 6px 4px 1px; }
  .hp2 .header-right { gap: 8px; }
  .hp2 .cta-header { padding: 9px 16px; font-size: 14px; }
  .hp2 .lang-toggle { padding: 4px 6px; }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .hp2 .header-phone { display: none; }                       /* number hides, icon stays */
  .hp2 .hp2-mobile-phone-icon { display: flex; align-items: center; }
  .hp2 .hp2-logo img { height: 40px; }
}
@media (min-width: 1201px) and (max-width: 1300px) {
  .hp2 nav.hp2-nav > .nav-menu > li > a { font-size: 13.5px; padding: 4px 6px; }
  .hp2 .cta-header { padding: 9px 12px; font-size: 13.5px; }
}

/* Mobile drawer: grouped rows */
.hp2-mobile-drawer .elm-drawer-label { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); padding: 12px 20px 2px; }
.hp2-mobile-drawer .elm-drawer-row span { display: flex; flex-direction: column; line-height: 1.25; }
.hp2-mobile-drawer .elm-drawer-row em { font-style: normal; font-size: 12px; font-weight: 500; color: var(--muted); margin-top: 2px; }

/* Mobile drawer: popular makes / states chips */
.hp2-mobile-drawer .elm-drawer-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 12px 12px 20px; align-items: center; }
.hp2-mobile-drawer .elm-drawer-chips-l { width: 100%; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin: 6px 0 2px; }
.hp2-mobile-drawer .elm-drawer-chips a { font-size: 13px !important; font-weight: 700 !important; padding: 7px 13px 7px 9px !important; border: 1px solid var(--border) !important; border-radius: 999px; background: #fff; color: var(--dark) !important; display: inline-flex !important; align-items: center; gap: 7px; margin: 0; }
.hp2-mobile-drawer .elm-drawer-chips .elm-state-ico { width: 16px; height: 16px; flex: 0 0 16px; fill: var(--navy); opacity: .85; }
.hp2-mobile-drawer .elm-drawer-chips a.elm-drawer-chips-all { border-color: var(--yellow) !important; background: var(--yellow); }

/* Stats (About rail) */
.elm-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.elm-stats > div { background: var(--lgray); border-radius: 12px; padding: 12px; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.elm-stats strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; }
.elm-stats span { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); }

/* ── Mobile drawer: team rows with photos ──────────────────── */
.hp2-mobile-drawer .elm-drawer-person { display: flex !important; align-items: center; gap: 12px; }
.hp2-mobile-drawer .elm-drawer-person img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: 0 0 40px; box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--border); }
.hp2-mobile-drawer .elm-drawer-person span { display: flex; flex-direction: column; line-height: 1.2; }
.hp2-mobile-drawer .elm-drawer-person strong { font-size: 15px; font-weight: 700; color: var(--dark); }
.hp2-mobile-drawer .elm-drawer-person em { font-style: normal; font-size: 12px; color: var(--muted); }

.elm-h-offices { margin-bottom: 10px !important; }
