/* OnBizMap — Phase 2 modern design (slate/blue, CronFlow-style) */

:root {
  --brand: #2563eb;
  --brand-dark: #1e40af;
  --brand-soft: #eff6ff;
  --accent: #f59e0b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --ok: #16a34a;
  --bad: #dc2626;
}

html { overflow-x: clip; font-size: 16px; scrollbar-gutter: stable; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

/* ---------- Navbar ---------- */
.obm-nav {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.obm-nav-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.obm-nav-logo { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.15rem; color: var(--ink); text-decoration: none; letter-spacing: -.02em; }
.obm-nav-logo img { height: 34px; width: auto; }
.obm-nav-logo .logo-dot { color: var(--brand); }
.obm-nav-links { display: flex; align-items: center; gap: .25rem; }
.obm-nav-link {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .8rem; border-radius: .5rem;
  color: #334155; text-decoration: none; font-size: .925rem; font-weight: 500;
}
.obm-nav-link:hover { background: var(--brand-soft); color: var(--brand-dark); }
.obm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: 0; cursor: pointer; border-radius: .55rem;
  font-size: .925rem; font-weight: 600; text-decoration: none;
  padding: .55rem 1.1rem; transition: background .15s ease, transform .05s ease;
}
.obm-btn:active { transform: translateY(1px); }
.obm-btn-primary { background: var(--brand); color: #fff; }
.obm-btn-primary:hover { background: var(--brand-dark); color: #fff; }
.obm-btn-ghost { background: transparent; color: #334155; border: 1px solid var(--line); }
.obm-btn-ghost:hover { background: var(--bg); color: var(--ink); }
.obm-btn-lg { padding: .8rem 1.5rem; font-size: 1rem; border-radius: .65rem; }
.obm-btn-md { padding: .5rem .95rem; font-size: .875rem; }
.cta-card { text-align: center; }
.cta-card .perks { text-align: left; }
.cta-card .obm-btn { align-self: center; }
.obm-btn-block { width: 100%; }
.obm-btn-accent { background: var(--accent); color: #fff; }
.obm-btn-accent:hover { background: #d97706; color: #fff; }
.obm-prose a.obm-btn, .obm-legal a.obm-btn, .obm-prose a.obm-btn-primary, .obm-legal a.obm-btn-primary, .obm-prose a.obm-btn-accent, .obm-legal a.obm-btn-accent { color: #fff; }

.obm-nav-toggle { display: none; }
.obm-mobile-menu { display: none; }

@media (max-width: 768px) {
  .obm-nav-links { display: none; }
  .obm-nav-toggle {
    display: inline-flex; flex-direction: column; gap: 4px;
    background: none; border: 0; cursor: pointer; padding: .5rem;
  }
  .obm-nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }
  .obm-mobile-menu.open { display: block; }
}
.obm-mobile-menu {
  border-top: 1px solid var(--line);
  padding: .75rem 1rem 1rem; background: #fff;
}
.obm-mobile-menu a {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem .5rem; border-radius: .5rem;
  color: #334155; text-decoration: none; font-weight: 500; font-size: .95rem;
}
.obm-mobile-menu a:hover { background: var(--brand-soft); color: var(--brand-dark); }

/* ---------- Hero ---------- */
.obm-hero {
  background-color: #0f172a; /* fallback if the image fails to load */
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, .55) 0%, rgba(2, 6, 23, .72) 100%),
    url("/resources/assets/main/img/hero-bg-v3.jpg");
  background-size: cover, cover;
  background-position: center, top;
  background-repeat: no-repeat;
  color: #f1f5f9;
  padding: 4.5rem 1rem 5.5rem;
}
.obm-hero-inner { max-width: 72rem; margin: 0 auto; text-align: center; }
.obm-hero h1 {
  font-size: 2.5rem;
  font-weight: 800; letter-spacing: -.03em; line-height: 1.12; color: #fff;
}
@media (max-width: 768px) { .obm-hero h1 { font-size: 2rem; } }
.obm-hero p { color: #94a3b8; max-width: 42rem; margin: .9rem auto 0; font-size: 1.05rem; }
.obm-searchbar {
  margin: 2.2rem auto 0; max-width: 56rem;
  background: #fff; border-radius: 1rem; padding: .75rem;
  box-shadow: 0 20px 45px -18px rgba(2,6,23,.55);
  display: grid; grid-template-columns: 1fr 1fr auto; gap: .6rem;
}
.obm-searchfield {
  display: flex; align-items: center; gap: .6rem;
  border: 1px solid var(--line); border-radius: .7rem; padding: 0 .8rem;
  background: #fff; min-width: 0;
}
.obm-searchfield svg { flex: none; color: var(--muted); }
.obm-searchfield input {
  border: 0; outline: none; width: 100%; min-width: 0;
  padding: .8rem 0; font-size: .95rem; background: transparent; color: var(--ink);
}
@media (max-width: 640px) {
  .obm-searchbar { grid-template-columns: 1fr; }
  .obm-searchbar .obm-btn { width: 100%; }
}

/* ---------- Layout helpers ---------- */
.obm-container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.obm-section { padding: 3rem 0; }
.obm-pagehead { max-width: 72rem; margin: 0 auto; padding: 2rem 1rem .5rem; }
.obm-pagehead h1 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }
.obm-pagehead .sub { color: var(--muted); margin-top: .25rem; font-size: .95rem; }
.obm-pagehead .sub a { color: var(--brand); font-weight: 600; text-decoration: none; }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .35rem; align-items: center;
  color: var(--muted); font-size: .85rem; margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .55; }

/* ---------- Cards ---------- */
.obm-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: .9rem;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.obm-card-pad { padding: 1.25rem; }
.obm-card-hover { transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease; }
.obm-card-hover:hover {
  box-shadow: 0 12px 28px -14px rgba(15,23,42,.22);
  border-color: #cbd5e1; transform: translateY(-2px);
}

/* business card (home featured) */
.biz-card { overflow: hidden; display: flex; flex-direction: column; }
.biz-card .biz-map {
  height: 150px; width: 100%; object-fit: cover; display: block;
  background: #e2e8f0 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M0 20h40M20 0v40" stroke="%23cbd5e1" stroke-width="1"/></svg>');
}
.biz-card .biz-body { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.biz-name { font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; margin-top: 1rem; margin-bottom: 0; }
.biz-name a { color: var(--ink); text-decoration: none; }
.biz-name a:hover { color: var(--brand); }
.biz-meta { display: flex; flex-direction: column; gap: .2rem; color: var(--muted); font-size: .875rem; padding-inline-start: 0; margin-top: 0; margin-bottom: 0; min-height: 60px; }
.biz-meta .row { display: flex; align-items: flex-start; gap: .45rem; }
.biz-meta svg { flex: none; margin-top: 1px; }
.biz-meta a { color: var(--muted); text-decoration: none; }
.biz-meta a:hover { color: var(--brand); }

/* --- Homepage: Now On The Map! card --- */
.obm-card ul { padding-left: 0; list-style: none; }
.leading-snug { margin-top: 1.5rem; margin-bottom: 0; }
.biz-actions { display: flex; gap: .5rem; margin-top: auto; padding-top: .7rem; }
.biz-actions .obm-btn { flex: 1; padding: .5rem .6rem; font-size: .85rem; }

/* listing row (search results) */
.listing-row {
  display: grid; grid-template-columns: 210px 1fr; gap: 1rem;
  padding: 1.1rem; align-items: start;
}
.listing-row .list-map {
  width: 100%; height: 130px; object-fit: cover; border-radius: .7rem;
  background: #e2e8f0;
}
@media (max-width: 640px) {
  .listing-row { grid-template-columns: 1fr; }
  .listing-row .list-map { height: 180px; }
}
.listing-info { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.listing-info .name { font-weight: 700; font-size: 1.05rem; }
.listing-info .name a { color: var(--ink); text-decoration: none; }
.listing-info .name a:hover { color: var(--brand); }
.listing-info .addr { color: var(--muted); font-size: .9rem; display: flex; align-items: center; gap: .45rem; }
.listing-info .phone { color: var(--muted); font-size: .9rem; display: flex; align-items: center; gap: .45rem; }
.listing-info .phone a { color: var(--muted); text-decoration: none; }
.listing-info .phone a:hover { color: var(--brand); }
.listing-info .cats { font-size: .875rem; color: var(--muted); margin-top: .15rem; }
.listing-info .cats a { text-decoration: none; }
.listing-info .blurb {
  color: var(--muted); font-size: .875rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-top: .3rem;
}
.listing-info .webs { display: flex; flex-direction: column; gap: .2rem; font-size: .85rem; }
.listing-info .webs a { color: var(--brand); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.listing-info .webs a:hover { text-decoration: underline; }

/* ---------- Badges & pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .02em;
  padding: .28rem .7rem; border-radius: 999px;
}
.pill-open { background: #dcfce7; color: #166534; }
.pill-closed { background: #fee2e2; color: #991b1b; }
.pill-soft { background: var(--brand-soft); color: var(--brand-dark); }
.count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.6rem; height: 1.6rem; padding: 0 .5rem;
  background: var(--brand-soft); color: var(--brand-dark);
  font-size: .78rem; font-weight: 700; border-radius: 999px;
}

/* category list (home sidebar) */
.cat-list { display: flex; flex-direction: column; gap: .15rem; }
.cat-list a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .55rem .7rem; border-radius: .6rem;
  color: #334155; text-decoration: none; font-size: .925rem;
}
.cat-list a:hover { background: var(--brand-soft); color: var(--brand-dark); }

/* ---------- Forms ---------- */
.obm-field { margin-bottom: 1rem; }
.obm-label { display: block; font-size: .85rem; font-weight: 600; color: #334155; margin-bottom: .35rem; }
.obm-label .req { color: var(--bad); }
.obm-input, .obm-select, .obm-textarea {
  width: 100%; border: 1px solid var(--line); border-radius: .6rem;
  padding: .65rem .8rem; font-size: .95rem; background: #fff; color: var(--ink);
  outline: none; transition: border-color .12s ease, box-shadow .12s ease;
  font-family: inherit;
}
.obm-input:focus, .obm-select:focus, .obm-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.obm-input::placeholder, .obm-textarea::placeholder { color: #94a3b8; }
.obm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .obm-form-grid { grid-template-columns: 1fr; } }
.obm-alert {
  display: flex; gap: .6rem; align-items: flex-start;
  background: var(--brand-soft); border: 1px solid #bfdbfe; color: #1e40af;
  padding: .8rem 1rem; border-radius: .7rem; font-size: .925rem; margin-bottom: 1rem;
}
.obm-check { display: flex; align-items: center; gap: .5rem; font-size: .925rem; color: #334155; }
.obm-check input { width: 1rem; height: 1rem; accent-color: var(--brand); }

/* ---------- Pagination ---------- */
.obm-paging { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; flex-wrap: wrap; }
.obm-paging .info { color: var(--muted); font-size: .875rem; }
.obm-pages { display: flex; gap: .3rem; flex-wrap: wrap; }
.obm-pages a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.1rem; height: 2.1rem; padding: 0 .5rem;
  border: 1px solid var(--line); border-radius: .5rem; background: #fff;
  color: #334155; text-decoration: none; font-size: .875rem; font-weight: 500;
}
.obm-pages a:hover { border-color: var(--brand); color: var(--brand); }
.obm-pages a.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.obm-pages a.disabled { opacity: .4; pointer-events: none; }

/* ---------- Details page ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-title { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.detail-title h1 { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.info-list { display: flex; flex-direction: column; gap: .6rem; font-size: .95rem; }
.info-list .row { display: flex; align-items: flex-start; gap: .6rem; color: #334155; }
.info-list .row svg { flex: none; color: var(--muted); margin-top: 2px; }
.info-list a { color: var(--brand); text-decoration: none; }
.info-list a:hover { text-decoration: underline; }
.detail-table { width: 100%; border-collapse: collapse; font-size: .925rem; }
.detail-table th {
  text-align: left; font-weight: 600; color: var(--muted); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .04em;
  padding: .8rem 0; border-bottom: 1px solid var(--line); width: 220px; vertical-align: top;
}
.detail-table td { padding: .8rem 0; border-bottom: 1px solid var(--line); color: #334155; vertical-align: top; }
.detail-table tr:last-child th, .detail-table tr:last-child td { border-bottom: 0; }
.detail-table a { color: var(--brand); text-decoration: none; }
.detail-table a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.obm-footer {
  background: #0f172a; color: #94a3b8; margin-top: 3rem;
  font-size: .9rem;
}
.obm-footer-inner {
  max-width: 72rem; margin: 0 auto; padding: 2.2rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.obm-footer-links { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; }
.obm-footer-links a { color: #cbd5e1; text-decoration: none; }
.obm-footer-links a:hover { color: #fff; }
.obm-footer-links .dot { color: #475569; }
.obm-footer .copyright a { color: #fff; text-decoration: none; font-weight: 600; }

/* ---------- Misc ---------- */
.divider { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.icon-2xl { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }
.icon-lg { width: 1.35rem; height: 1.35rem; }
.icon-md { width: 1.1rem; height: 1.1rem; }
.icon-sm { width: .9rem; height: .9rem; }
.lucide { display: inline-block; vertical-align: middle; }

.map-static { border-radius: .7rem; border: 1px solid var(--line); width: 100%; display: block; }
#obm-map { height: 300px; width: 100%; border-radius: .8rem; border: 1px solid var(--line); }

/* simple loader */
.obm-loader {
  position: fixed; inset: 0; background: rgba(248,250,252,.8); z-index: 100;
  display: flex; align-items: center; justify-content: center;
}
.obm-loader .spin {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--brand);
  animation: obm-spin .8s linear infinite;
}
@keyframes obm-spin { to { transform: rotate(360deg); } }

/* sign-up perks list */
.perks { display: flex; flex-direction: column; gap: .65rem; }
.perks li { display: flex; align-items: center; gap: .6rem; list-style: none; color: #334155; font-size: .95rem; }
.perks svg { color: var(--ok); flex: none; }
/* inline brand social icons */
.obm-social { width:1.15rem; height:1.15rem; display:block; }

/* ===== Login page ===== */
.login-wrap { min-height: calc(100vh - 6rem); display: grid; place-items: center; padding: 3rem 1rem; background: var(--bg); }
.login-card { width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.25rem; }
.login-brand { text-align: center; margin-bottom: 1.75rem; }
.login-logo { width: 56px; height: 56px; margin: 0 auto .75rem; display: grid; place-items: center; border-radius: 16px; background: var(--brand-soft); color: var(--brand); }
.login-brand h1 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }

/* icon chip (contact / info lists) */
.icon-chip { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--brand-soft); color: var(--brand); }
/* ============================================================
   GET-LISTED PAYMENT WIZARD — Bootstrap 3 compatibility
   This page loads Bootstrap 3 + jQuery plugins (Steps, Chosen,
   Business Hours, iCheck, timepicker). These overrides let the
   obm design system host the wizard without Tailwind preflight.
   ============================================================ */

/* --- nav link active state (works with or without Tailwind) --- */
.obm-nav-link-active {
  color: var(--brand-dark) !important;
  font-weight: 700 !important;
  background: var(--brand-soft);
}

/* --- hide "optional" nav links on narrow screens (Bootstrap-free) --- */
@media (max-width: 900px) {
  .obm-nav-optional { display: none; }
}

/* --- page container (page-level, no preflight to fight) --- */
.obm-getlisted { max-width: 72rem; margin: 0 auto; padding: 24px 1rem 60px; box-sizing: border-box; }

/* --- 2-column layout: form (main) plus pricing (aside) --- */
.obm-gl-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
@media (max-width: 900px) { .obm-gl-grid { grid-template-columns: 1fr; } }

/* --- wizard card --- */
.obm-gl-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 4px 24px -14px rgba(15,23,42,.25); overflow: hidden;
}
.obm-gl-card .wizard-body { padding: 28px 28px 32px; }

/* --- jQuery Steps: restyle the steps header ---
   NOTE: the plugin AUTO-GENERATES the .steps/.actions markup from the
   <h1>/<fieldset> children, so do NOT hand-write steps or actions in the
   template. Step titles get a <span class="number">1.</span> prefix.
   Actions render <a href="#previous|#next|#finish"> links. --- */
.wizard { padding: 0 !important; }
.wizard > .steps {
  display: flex; gap: 8px; padding: 20px 28px 0; border: 0;
}
.wizard > .steps > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 10px; }
.wizard > .steps > ul > li {
  flex: 1; position: relative; background: transparent; border: 0; text-align: left; padding: 0;
}
.wizard > .steps > ul > li a {
  display: flex; align-items: center; gap: .55rem; padding: .65rem .8rem; border-radius: 10px;
  background: #f1f5f9; color: #64748b; font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: background .15s, color .15s;
}
.wizard > .steps > ul > li a .number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; background: #cbd5e1; color: #fff;
  font-size: .8rem; font-weight: 700;
}
.wizard > .steps > ul > li a:hover { background: #e2e8f0; color: #334155; }
.wizard > .steps > ul > li.done a { background: var(--brand-soft); color: var(--brand-dark); }
.wizard > .steps > ul > li.done a .number { background: var(--brand); }
.wizard > .steps > ul > li.current a {
  background: var(--brand); color: #fff; box-shadow: 0 6px 16px -8px rgba(37,99,235,.7);
}
.wizard > .steps > ul > li.current a .number { background: rgba(255,255,255,.25); }
.wizard > .steps > ul > li.disabled a { opacity: .45; cursor: not-allowed; pointer-events: none; }
.wizard > .steps .current-info { display: none; }
.wizard > .content > .title { display: none; }
.wizard > .content > .body { background: #fff; }
.wizard > .content > .body > h2,
.wizard > .content > .body > h3 { display: none; }

/* --- bootstrap form field restyle (obm look) --- */
.obm-gl-card .form-group { margin-bottom: 18px; }
.obm-gl-card .control-label {
  display: block; font-weight: 600; color: var(--ink); font-size: .88rem;
  margin-bottom: .4rem; letter-spacing: .01em;
}
.obm-gl-card .help-block { color: var(--muted); font-size: .8rem; margin-top: .35rem; }
.obm-gl-card .form-control {
  height: 42px; padding: .5rem .8rem; border: 1px solid var(--line); border-radius: .6rem;
  background: #fff; color: var(--ink); font-size: .925rem;
  box-shadow: none; transition: border-color .15s, box-shadow .15s;
}
.obm-gl-card .form-control:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.obm-gl-card textarea.form-control { height: auto; min-height: 96px; padding: .7rem .8rem; }
.obm-gl-card .form-horizontal .control-label { padding-top: .55rem; }
.obm-gl-card .form-horizontal .form-control { background: #fff; }
.obm-gl-card .input-group .input-group-addon {
  border: 1px solid var(--line); background: #f8fafc; color: var(--muted); border-radius: .6rem;
}
.obm-gl-card .input-group .form-control { border-radius: .6rem; }

/* --- section titles inside steps --- */
.obm-gl-section {
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--brand-dark); margin: 0 0 14px; display: flex; align-items: center; gap: .5rem;
}
.obm-gl-section::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* --- iCheck / checkbox restyle (keep .icheckbox span visible) --- */
.obm-gl-card .icheckbox_square-green,
.obm-gl-card .iradio_square-green { display: inline-block; margin-right: .4rem; vertical-align: middle; }
.obm-gl-card .inline-label { font-weight: 500; color: var(--ink); font-size: .9rem; }
.obm-gl-card .help-inline { color: var(--muted); font-size: .8rem; margin-left: .5rem; }

/* --- business hours table --- */
#business-hours-container { background: #fff; }
#business-hours-container .business-hours-days thead th {
  background: #f1f5f9; color: var(--ink); font-size: .8rem; text-transform: uppercase;
  letter-spacing: .04em; border: 0; padding: .6rem .5rem;
}
#business-hours-container .business-hours-days tbody td {
  border: 0; border-bottom: 1px solid var(--line); padding: .45rem .5rem; vertical-align: middle;
}
#business-hours-container .business-hours-days .day-name {
  font-weight: 600; color: var(--ink); font-size: .88rem; white-space: nowrap;
}
#business-hours-container .form-control { height: 34px; }
#business-hours-container .form-inline .form-group { display: inline-flex; align-items: center; margin: 0; }
#business-hours-container .form-inline .form-control { display: inline-block; width: auto; }

/* --- chosen dropdowns (multi-select) --- */
.obm-gl-card .chosen-container-single,
.obm-gl-card .chosen-container .chosen-results { max-height: 220px; }
.obm-gl-card .chosen-container-active { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(37,99,235,.15) !important; }
.obm-gl-card .chosen-container .chosen-drop { border-radius: 0 0 .6rem .6rem; border-top: 0; }

/* --- jQuery Steps: make the card size to its content.
   The plugin's default .body is position:absolute at 95% width/height,
   which makes the card a fixed stretched box. Kill that here. --- */
.obm-gl-card .wizard { background: transparent; }
.obm-gl-card .wizard > .content {
  background: transparent; margin: 0; min-height: 0; overflow: visible; border-radius: 0;
}
.obm-gl-card .wizard-big.wizard > .content { min-height: 0; }
.obm-gl-card .wizard > .content > .body {
  position: static; float: none; width: auto; height: auto; padding: 26px 26px 28px;
}
.obm-gl-card .wizard > .content > .body fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
/* Legacy page rule pins the content to min-height 600px, leaving dead space on
   shorter steps. Override it (needs the #id to win on specificity). */
.obm-gl-card #modal-form-action.wizard-big.wizard > .content { min-height: 0; overflow: visible; }

/* --- wizard buttons (bottom) --- */
.obm-gl-card .wizard > .actions {
  display: flex; align-items: center; justify-content: flex-end;
  width: auto; margin: 0; padding: 18px 26px 22px;
  border-top: 1px solid var(--line); background: #fff;
}
.obm-gl-card .wizard > .actions > ul { display: flex; gap: 10px; margin: 0; text-align: right; }
.obm-gl-card .wizard > .actions > ul > li { margin: 0; }
.obm-gl-card .wizard > .actions a {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 0; cursor: pointer; border-radius: .6rem;
  font-size: .925rem; font-weight: 600; padding: .55rem 1.25rem; text-decoration: none;
  background: #f1f5f9; color: var(--muted); transition: background .15s, transform .05s;
}
.obm-gl-card .wizard > .actions a:hover { background: #e2e8f0; transform: translateY(1px); }
.obm-gl-card .wizard > .actions a[href="#next"] {
  background: var(--brand); color: #fff; box-shadow: 0 8px 18px -10px rgba(37,99,235,.7);
}
.obm-gl-card .wizard > .actions a[href="#next"]:hover { background: var(--brand-dark); }
.obm-gl-card .wizard > .actions a[href="#finish"] {
  background: var(--ok); color: #fff; box-shadow: 0 8px 18px -10px rgba(22,163,74,.7);
}
.obm-gl-card .wizard > .actions a[href="#finish"]:hover { background: #15803d; }
.obm-gl-card .wizard > .actions li.disabled a,
.obm-gl-card .wizard > .actions li[aria-disabled="true"] a {
  background: #eef2f6 !important; color: #94a3b8 !important; box-shadow: none;
  cursor: not-allowed; pointer-events: none;
}

/* --- pricing aside --- */
.obm-gl-aside {
  position: sticky; top: 84px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 26px 24px; box-shadow: 0 4px 24px -14px rgba(15,23,42,.2);
}
.obm-gl-aside .aside-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); margin-bottom: 16px; display: flex; align-items: center; gap: .45rem;
}
.obm-gl-price {
  display: flex; align-items: baseline; gap: .35rem; margin-bottom: 4px;
}
.obm-gl-price .amount { font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.obm-gl-price .per { font-size: .9rem; color: var(--muted); font-weight: 500; }
.obm-gl-price-note { color: var(--muted); font-size: .85rem; margin-bottom: 18px; }
.obm-gl-features { list-style: none; margin: 0 0 20px; padding: 0; }
.obm-gl-features li {
  display: flex; align-items: flex-start; gap: .55rem; padding: .45rem 0;
  color: var(--ink); font-size: .9rem;
}
.obm-gl-features li svg { flex-shrink: 0; margin-top: 2px; }
.obm-gl-features li .feat-sub { display: block; color: var(--muted); font-size: .8rem; margin-top: 1px; }
.obm-gl-trust {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .8rem;
}
.obm-gl-trust svg { color: var(--ok); }

/* --- card step (Authorize.net injects fields; give the container a clean look) --- */
.obm-gl-card #cardNumber, .obm-gl-card #cardExpiry, .obm-gl-card #cardCvv {
  min-height: 40px; border: 1px solid var(--line); border-radius: .6rem; padding: .5rem .7rem;
}
.obm-gl-card .well {
  background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; padding: 18px;
}

/* --- success/error banners (rendered by app.js in place of swal) --- */
.obm-alert {
  display: flex; align-items: flex-start; gap: .6rem; padding: 1rem 1.1rem; border-radius: 10px;
  font-size: .9rem; margin-bottom: 16px; border: 1px solid;
}
.obm-alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.obm-alert-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* --- mobile: pricing aside drops below the form --- */
@media (max-width: 900px) {
  .obm-gl-aside { position: static; }
  .obm-gl-grid { gap: 20px; }
}

/* ============================================================
   MARKETING / CONTENT PAGES (services, features, how-it-works,
   about, faq, legal, blog) — shared component styles
   ============================================================ */

/* page head band (dark, matches hero) */
.obm-pagehero {
  background-color: #0f172a; /* fallback if the image fails to load */
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, .55) 0%, rgba(2, 6, 23, .72) 100%),
    url("/resources/assets/main/img/hero-bg-v3.jpg");
  background-size: cover, cover;
  background-position: center, top;
  background-repeat: no-repeat;
  color: #f1f5f9; padding: 3rem 1rem 3.4rem;
}
.obm-pagehero-inner { max-width: 72rem; margin: 0 auto; }
.obm-pagehero h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.025em; color: #fff; }
.obm-pagehero p { color: #94a3b8; max-width: 46rem; margin-top: .7rem; font-size: 1.02rem; }
.obm-pagehero p a { color: #bfdbfe; font-weight: 600; text-decoration: none; }
.obm-pagehero p a:hover { color: #fff; }
.obm-pagehero p strong { color: #e2e8f0; }

/* prose column for long-form pages */
.obm-prose { color: #334155; font-size: .975rem; line-height: 1.7; }
.obm-prose p { margin: 0 0 1rem; }
.obm-prose p:last-child { margin-bottom: 0; }
.obm-prose h2 {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -.015em; color: var(--ink);
  margin: 2rem 0 .75rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.obm-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.obm-prose h4 { font-size: 1.02rem; font-weight: 600; color: var(--ink); margin: 1.25rem 0 .4rem; }
.obm-prose h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 1.4rem 0 .5rem; }
.obm-prose ul, .obm-prose ol { padding-left: 1.3rem; margin: 0 0 1rem; }
.obm-prose li { margin: 0 0 .45rem; }
.obm-prose li::marker { color: var(--brand); font-weight: 700; }
.obm-prose strong { color: var(--ink); font-weight: 700; }
.obm-prose a { color: var(--brand); }
.obm-prose a:hover { text-decoration: underline; }

/* key-points / takeaway callout */
.obm-callout {
  background: var(--brand-soft);
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--brand);
  border-radius: .7rem;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
}
.obm-callout .callout-title {
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: var(--brand-dark); margin-bottom: .5rem;
}
.obm-callout p { font-size: .95rem; }
.obm-callout p:last-child { margin-bottom: 0; }

/* sign-up CTA card (right rail on services/how-it-works/features) */
.cta-card { display: flex; flex-direction: column; }
.cta-card .cta-head { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 1rem; }
.cta-card .cta-head .hl { color: var(--ok); }
.cta-card .perks { margin-bottom: 1.25rem; }
.cta-card .perks li { font-size: .925rem; }

/* feature bullet list (services page) */
.feature-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1rem; }
.feature-list .fl-item { display: flex; gap: .8rem; }
.feature-list .fl-item .icon-chip { background: var(--brand-soft); }
.feature-list .fl-item h4 { margin: 0 0 .25rem; }
.feature-list .fl-item p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* how-it-works step cards */
.steps { display: flex; flex-direction: column; gap: 1rem; counter-reset: step; }
.step-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step-num {
  width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 1.1rem;
}
.step-body h3 { font-size: 1.05rem; font-weight: 700; margin: .15rem 0 .35rem; }
.step-body p { margin: 0; color: var(--muted); font-size: .925rem; line-height: 1.65; }
.step-note { color: var(--muted); font-size: .85rem; margin-top: 1.5rem; }

/* pricing comparison table (features) */
.cmp-wrap { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 620px; }
.cmp th, .cmp td { padding: .6rem .85rem; border-bottom: 1px solid var(--line); text-align: left; }
.cmp thead th { vertical-align: bottom; }
.cmp .grp td {
  background: #f1f5f9; font-weight: 700; font-size: .75rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--brand-dark); padding: .55rem .85rem;
}
.cmp .feat { color: #334155; }
.cmp .val { text-align: center; }
.cmp .val .yes { color: var(--ok); }
.cmp .val .no { color: #cbd5e1; }
.cmp .plan { text-align: center; }
.cmp .plan .plan-name { font-size: 1rem; font-weight: 700; color: var(--ink); }
.cmp .plan .plan-price { font-size: .8rem; color: var(--muted); }
.cmp thead .plan.featured .plan-name { color: var(--brand); }
.cmp tbody tr:hover td { background: #f8fafc; }
/* mobile plan cards */
.cmp-mobile { display: none; }
@media (max-width: 768px) {
  .cmp { display: none; }
  .cmp-mobile { display: flex; flex-direction: column; gap: 1rem; }
  .cmp-plan { background: var(--surface); border: 1px solid var(--line); border-radius: .9rem; overflow: hidden; }
  .cmp-plan .cp-head { padding: .9rem 1rem; background: #f8fafc; border-bottom: 1px solid var(--line); font-weight: 700; }
  .cmp-plan .cp-head .cp-price { color: var(--muted); font-weight: 500; font-size: .8rem; }
  .cmp-plan .cp-body { padding: .5rem 1rem .9rem; }
  .cmp-plan .cp-body .grp2 {
    font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: var(--brand-dark); padding: .7rem 0 .3rem;
  }
  .cmp-plan .cp-row { display: flex; align-items: center; justify-content: space-between; padding: .32rem 0; color: #334155; font-size: .875rem; }
}

/* FAQ accordion (native <details>, no JS) */
.faq-list { max-width: 46rem; }
details.faq-item { border-bottom: 1px solid var(--line); }
details.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none; cursor: pointer; text-align: left;
  padding: 1rem .25rem; font-size: .975rem; font-weight: 600; color: var(--ink); font-family: inherit;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--brand); }
.faq-q .chev { flex: none; color: var(--muted); transition: transform .2s ease; }
details.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 .25rem 1.1rem; color: #475569; font-size: .925rem; line-height: 1.7; }
.faq-a p { margin: 0 0 .5rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--brand); }

/* legal / plain text pages */
.obm-legal { color: #334155; font-size: .95rem; line-height: 1.75; }
.obm-legal h2 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 1.8rem 0 .6rem; }
.obm-legal h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 1.4rem 0 .4rem; }
.obm-legal p, .obm-legal li { margin: 0 0 .8rem; }
.obm-legal ul, .obm-legal ol { padding-left: 1.3rem; margin: 0 0 1rem; }

/* ============ ERROR PAGES (404 / 403 / 500) ============ */
.obm-error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 62vh; padding: 4rem 1.25rem; }
.obm-error-code {
  font-size: clamp(5rem, 16vw, 8.5rem); font-weight: 800; line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2, var(--brand-dark)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .5rem;
}
.obm-error-page h1 { font-size: 1.75rem; font-weight: 800; margin: 0 0 .75rem; }
.obm-error-page p { max-width: 34rem; font-size: 1.05rem; color: var(--muted); margin: 0 0 1.75rem; line-height: 1.6; }
.obm-error-actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.obm-legal a { color: var(--brand); }
/* ============================================================
   Utility layer (Tailwind-equivalent, plain CSS)
   The shared layout previously loaded @tailwindcss/browser as a
   <link rel="stylesheet">, but that package is JavaScript — the
   browser rejects it (MIME mismatch) and NO utility class was
   ever active. That left Home images at natural width (583/640px
   => horizontal overflow => iOS pinch-zoom stuck) and collapsed
   the 12-col page grids. This block defines the utilities the
   templates actually use. Breakpoints: sm 640 / md 768 / lg 1024
   / xl 1280 (mobile-first).
   ============================================================ */

/* image safety net: no img may ever overflow its container/viewport */
img { max-width: 100%; height: auto; }

/* --- display / layout --- */
.grid { display: grid; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.block { display: block; }
.relative { position: relative; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.z-10 { z-index: 10; }
.md\:block { display: none; }
@media (min-width: 768px) { .md\:block { display: block; } }

/* --- grid columns (mobile-first) --- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
@media (min-width: 640px) { .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}
@media (min-width: 1280px) { .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* --- column spans (used in 12-col page grids) --- */
@media (min-width: 1024px) {
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:sticky { position: sticky; }
}

/* --- gap --- */
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; } .gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-y-1 { row-gap: .25rem; }

/* --- align / justify --- */
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* --- margins --- */
.-mt-7 { margin-top: -1.75rem; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.25rem; }
.mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; } .mb-6 { margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- padding --- */
.p-3 { padding: .75rem; } .p-4 { padding: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pt-4 { padding-top: 1rem; } .pb-2 { padding-bottom: .5rem; }

/* --- typography --- */
.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.font-medium { font-weight: 500; } .font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; } .font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -.025em; }
.tracking-wider { letter-spacing: .05em; }
.uppercase { text-transform: uppercase; }
.leading-snug { line-height: 1.375; } .leading-relaxed { line-height: 1.625; }
.text-nowrap { white-space: nowrap; }

/* --- colors --- */
.text-white { color: #fff; }
.text-slate-300 { color: #cbd5e1; } .text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; } .text-slate-600 { color: #475569; }
.text-slate-800 { color: #1e293b; }
.text-muted { color: var(--muted); } .text-success { color: var(--ok); } .text-danger { color: var(--bad); }
.grayscale { filter: grayscale(1); }
.opacity-60 { opacity: .6; }

/* --- sizing / shape --- */
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.rounded-lg { border-radius: .5rem; }
.border-t { border-top: 1px solid var(--line); }

/* --- vertical rhythm --- */
.space-y-0\.5 > * + * { margin-top: .125rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* --- custom classes referenced by the new templates --- */
.obm-alert-danger { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.login-alt { text-align: center; }
.obm-logout { display: none; }
.link-default { color: var(--brand); text-decoration: underline; }
.swebsite { min-width: 0; }
.swebsite a { word-break: break-word; }
.map-lg { max-width: 100%; height: auto; }
.form { width: 100%; }

/* --- Bootstrap responsive helpers (legacy pages: hidden-xs/sm/md/lg) --- */
.hidden-xs { display: none !important; }
@media (max-width: 767px) { .hidden-sm { display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) { .hidden-md { display: none !important; } }
@media (min-width: 992px) { .hidden-lg { display: none !important; } }

/* Mobile: .obm-section zeroed the .obm-container horizontal padding (specificity tie); restore it */
@media (max-width: 768px) {
  .obm-container.obm-section { padding-left: 1rem; padding-right: 1rem; }
}

/* Bootstrap 3 "box-sizing" pin: /get-listed loads Bootstrap 3, whose
   * { box-sizing: border-box } flips the chrome wrappers below to border-box,
   shrinking their content by 32px (72rem max-width includes padding: 1152->1120).
   Pin content-box so 72rem always means CONTENT width, on every page. */
.obm-nav-inner, .obm-hero-inner, .obm-container, .obm-pagehead,
.obm-footer-inner, .obm-pagehero-inner, .obm-getlisted { box-sizing: content-box; }


/* ============ DIRECTIONS PAGE ============ */
.obm-dir-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1rem;
}
.obm-dir-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
}
.obm-dir-badge {
  flex: none;
  width: 1.9rem; height: 1.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}
.obm-dir-badge.a { background: var(--brand); }
.obm-dir-badge.b { background: #0f172a; }
.obm-dir-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: .25rem;
}
.obm-dir-actions .obm-btn-primary { margin-left: auto; }
.obm-dir-instructions {
  display: none;
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.obm-dir-instructions-title {
  display: flex; align-items: center; gap: .45rem;
  font-size: .95rem; font-weight: 700; color: var(--ink);
  margin: 0 0 .75rem;
}
#instructions {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.5;
}
#instructions li {
  margin-bottom: .45rem;
  display: none; /* JS fades each in */
}
#instructions li::marker { color: var(--brand); font-weight: 700; }
.obm-map-card { padding: .6rem; min-height: 500px; }
.obm-map-card #map {
  width: 100%;
  height: 500px;
  border-radius: .6rem;
  overflow: hidden;
}
@media (max-width: 900px) {
  .obm-dir-grid { grid-template-columns: 1fr; }
  .obm-map-card { min-height: 0; }
  .obm-map-card #map { height: 360px; }
}
