.skip-link{position:absolute;top:-40px;left:0;z-index:9999;background:var(--primary);color:#fff;padding:.5rem 1rem;font-size:.9rem;font-weight:700;text-decoration:none;border-radius:0 0 4px 0}.skip-link:focus{top:0}
/* ============================================================
   FAIRFAX WATER DAMAGE SQUAD — #56 EMERALD ROSE
   waterdamagerestorationfairfaxva.xyz — FX-v2.1
   ============================================================ */

/* --- TOKENS --- */
:root {
  --primary:      #047857;
  --primary-dk:   #065F46;
  --accent:       #E11D48;
  --accent-dk:    #BE123C;
  --text:         #12211A;
  --text-muted:   #55685E;
  --bg:           #ffffff;
  --bg2:          #F1FAF5;
  --bg3:          #E1F3E9;
  --border:       #D3E8DC;
  --shadow:       0 2px 12px rgba(4,120,87,.10);
  --shadow-lg:    0 6px 32px rgba(4,120,87,.14);
  --radius:       8px;
  --radius-lg:    14px;
  --font-head:    'Manrope', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:        1160px;
  --sidebar-w:    300px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dk); text-decoration: underline; }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.22; }
h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-top: 2rem; margin-bottom: .75rem; }
h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; }
ul,ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }
table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; font-size: .93rem; }
th { background: var(--bg3); color: var(--primary-dk); padding: .55rem .75rem; text-align: left; border: 1px solid var(--border); font-family: var(--font-head); }
td { padding: .5rem .75rem; border: 1px solid var(--border); }
tr:nth-child(even) td { background: var(--bg2); }

/* --- LAYOUT --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section--dark { background: var(--primary-dk); color: #fff; }
.section--tinted { background: var(--bg2); }
.section--alt { background: var(--bg3); }

/* --- NAV --- */
.site-nav { background: var(--primary-dk); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.20); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; }
.nav-logo img{height:44px;width:auto;display:block}
.nav-logo span { color: #6EE7B7; }
.nav-menu { display: flex; gap: .15rem; list-style: none; padding: 0; margin: 0; }
.nav-menu a { color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 600; padding: .45rem .65rem; border-radius: 4px; transition: background .15s; white-space: nowrap; }
.nav-menu a:hover, .nav-menu .active > a { background: rgba(255,255,255,.12); color: #fff; text-decoration: none; }
.nav-cta { background: var(--accent); color: #fff !important; border-radius: var(--radius); padding: .45rem .9rem !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--accent-dk) !important; }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle::after { content: " ▾"; font-size: .7em; opacity: .7; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); min-width: 220px; box-shadow: var(--shadow-lg); z-index: 200; padding: .4rem 0; list-style: none; margin: 0; }
.dropdown-menu li { list-style: none; padding: 0; margin: 0; }
.dropdown-menu a { display: block; padding: .5rem 1rem; color: var(--text); font-size: .9rem; white-space: nowrap; text-decoration: none; }
.dropdown-menu a:hover { background: var(--bg2); color: var(--accent); }
.dropdown-menu a { display: block; color: var(--text); padding: .5rem 1rem; font-size: .86rem; font-weight: 500; }
.dropdown-menu a:hover { background: var(--bg2); color: var(--primary); text-decoration: none; }
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { display: block; }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .35rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: .2s; }
.nav-drawer { display: none; background: var(--primary-dk); padding: .5rem 0 1rem; }
.nav-drawer a { display: block; color: rgba(255,255,255,.9); padding: .55rem 1.25rem; font-size: .93rem; font-weight: 600; }
.nav-drawer a:hover { background: rgba(255,255,255,.08); text-decoration: none; }
.nav-drawer .drawer-section { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); padding: .6rem 1.25rem .2rem; }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer.open { display: block; }
}

/* --- MOBILE STICKY CTA --- */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--accent); padding: .9rem 1rem; text-align: center; box-shadow: 0 -3px 12px rgba(0,0,0,.18); }
.mobile-cta-bar a { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; }
.mobile-cta-bar a:hover { text-decoration: none; }
@media (max-width: 700px) { .mobile-cta-bar { display: block; } body { padding-bottom: 60px; } }

/* --- HERO — SPLIT LAYOUT --- */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.hero-content { background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%); color: #fff; padding: 3.5rem 3rem 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #6EE7B7; margin-bottom: .75rem; }
.hero-h1 { color: #fff; margin-bottom: 1rem; }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 460px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.btn { display: inline-block; font-family: var(--font-head); font-weight: 700; border-radius: var(--radius); cursor: pointer; transition: .2s; text-align: center; font-size: 1rem; padding: .75rem 1.5rem; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; text-decoration: none; }
.btn-emerald { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-emerald:hover { background: var(--primary-dk); border-color: var(--primary-dk); color: #fff; text-decoration: none; }
.badge-strip { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 4px; padding: .25rem .65rem; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.9); }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-img { min-height: 240px; }
}

/* --- EMERGENCY BAND --- */
.emergency-band { background: var(--accent-dk); color: #fff; padding: 1.5rem 0; text-align: center; }
.emergency-band h2 { color: #fff; font-size: 1.4rem; margin: 0 0 .5rem; }
.emergency-band p { color: rgba(255,255,255,.88); margin: 0 0 1rem; }
.emergency-band .tel-big { font-size: 1.9rem; font-weight: 800; color: #fff; }

/* --- CARDS / GRIDS --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); transition: box-shadow .2s, transform .15s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-icon { font-size: 2rem; margin-bottom: .75rem; }
.card h3 { font-size: 1.05rem; margin-top: 0; }
.card p { font-size: .91rem; color: var(--text-muted); margin-bottom: .85rem; }
.card-link { font-size: .88rem; font-weight: 700; color: var(--primary); }

/* cause-cards (homepage) */
.cause-card { background: var(--bg2); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem 1.25rem; text-decoration: none; color: var(--text); display: block; transition: .2s; }
.cause-card:hover { border-color: var(--primary); background: var(--bg3); text-decoration: none; color: var(--text); }
.cause-card h3 { color: var(--primary); font-size: 1.05rem; margin-top: 0; }
.cause-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 0; }

/* --- TWO-COLUMN INNER PAGE LAYOUT --- */
.page-layout { display: grid; gap: 2rem; align-items: start; }
.page-layout.has-sidebar { grid-template-columns: 1fr var(--sidebar-w); }
@media (max-width: 900px) { .page-layout.has-sidebar { grid-template-columns: 1fr; } }

/* content-box */
.content-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 2rem 1.5rem; }
@media (max-width: 600px) { .content-box { padding: 1.25rem 1rem; } }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem 1.25rem; box-shadow: var(--shadow); }
.sidebar-card.sticky-cta { position: sticky; top: 72px; }
.sidebar-cta-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: .4rem; color: var(--text); }
.sidebar-cta-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.sidebar-tel { display: block; background: var(--accent); color: #fff; text-align: center; padding: .8rem 1rem; border-radius: var(--radius); font-weight: 800; font-size: 1.05rem; font-family: var(--font-head); margin-bottom: .5rem; }
.sidebar-tel:hover { background: var(--accent-dk); color: #fff; text-decoration: none; }
.sidebar-note { font-size: .78rem; color: var(--text-muted); text-align: center; }
.related-links { list-style: none; padding: 0; margin: 0; }
.related-links li { border-bottom: 1px solid var(--border); }
.related-links li:last-child { border-bottom: none; }
.related-links a { display: block; padding: .5rem 0; font-size: .88rem; font-weight: 600; color: var(--primary); }
.related-links a:hover { color: var(--primary-dk); text-decoration: underline; }

/* --- PROCESS STRIP --- */
.process-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; counter-reset: step; }
.process-step { text-align: center; padding: 1.25rem 1rem; position: relative; }
.process-step::before { counter-increment: step; content: counter(step); display: block; width: 40px; height: 40px; background: var(--primary); color: #fff; border-radius: 50%; font-weight: 800; font-size: 1.1rem; line-height: 40px; margin: 0 auto .75rem; font-family: var(--font-head); }
.process-step h3 { font-size: .95rem; margin-top: 0; }
.process-step p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { background: none; border: none; width: 100%; text-align: left; padding: 1rem 0; font-family: var(--font-head); font-weight: 700; font-size: 1rem; cursor: pointer; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--primary); flex-shrink: 0; }
.faq-q.open::after { content: "−"; }
.faq-a { display: none; padding: 0 0 1rem; font-size: .93rem; color: var(--text-muted); }
.faq-a.open { display: block; }

/* --- MAP --- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }
.map-caption { font-size: .8rem; color: var(--text-muted); padding: .5rem .75rem; background: var(--bg2); }

/* --- BREADCRUMB --- */
.breadcrumb { font-size: .82rem; color: var(--text-muted); padding: .75rem 0; display: flex; flex-wrap: wrap; gap: .25rem; align-items: center; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* --- BLOG / TOOL CARDS --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.4rem; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: .2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-img { width: 100%; height: 175px; object-fit: cover; }
.blog-card-body { padding: 1.1rem 1.2rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1rem; margin-top: 0; margin-bottom: .4rem; }
.blog-card p { font-size: .86rem; color: var(--text-muted); flex: 1; margin-bottom: .75rem; }
.blog-card-link { font-size: .85rem; font-weight: 700; color: var(--primary); }

/* --- TOOL WIDGET AREA --- */
.tool-box { background: var(--bg2); border: 2px solid var(--primary); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.tool-box h2 { margin-top: 0; color: var(--primary); }
.tool-result { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-top: 1rem; display: none; }
.tool-result.visible { display: block; }
label { display: block; font-weight: 600; margin-bottom: .25rem; font-size: .9rem; }
select, input[type="number"], input[type="range"] { width: 100%; padding: .5rem .75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: .95rem; margin-bottom: 1rem; background: #fff; }
.tool-cta { margin-top: 1rem; text-align: center; }

/* --- FOOTER --- */
.site-footer { background: var(--text); color: rgba(255,255,255,.8); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: .95rem; margin-bottom: .75rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .35rem; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .86rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-col p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-tel { color: #fff !important; font-weight: 700; font-size: 1.05rem; font-family: var(--font-head); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.45); }
.ftc-disclaimer { font-size: .73rem; color: rgba(255,255,255,.4); margin-top: 1rem; line-height: 1.55; }

/* --- TOOLS INDEX --- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.tool-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem 1.25rem; transition: .2s; }
.tool-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.tool-card h3 { color: var(--primary); margin-top: 0; font-size: 1.05rem; }
.tool-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: .85rem; }

/* --- LOCATION PAGE SPECIFICS --- */
.loc-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .75rem; margin-bottom: 1.5rem; }
.loc-fact { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem 1rem; text-align: center; }
.loc-fact strong { display: block; font-size: 1.3rem; color: var(--primary); font-family: var(--font-head); }
.loc-fact span { font-size: .78rem; color: var(--text-muted); }

/* --- 404 --- */
.page-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem; }
.page-404 h1 { font-size: 5rem; color: var(--primary); line-height: 1; }

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.emerald { color: var(--primary); }
.rose { color: var(--accent); }
.tel-link { color: var(--accent); font-weight: 700; }
.tel-link:hover { color: var(--accent-dk); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.footer-col-heading{font-size:.85rem;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.06em;margin:0 0 .75rem}

/* ── BLOG POST LAYOUT ─────────────────────────────────────── */
.blog-header-wrap { max-width:800px; }
.blog-byline { font-size:.85rem; color:var(--text-muted); margin:.4rem 0 0; }

.blog-img-wrap { max-width:860px; margin:1.5rem auto 0; padding:0 1.25rem; }
.blog-featured-img { width:100%; max-height:400px; object-fit:cover;
  border-radius:var(--radius-lg); display:block; }

/* Outer wrapper — full width, provides horizontal padding */
.blog-outer { padding:2.5rem 1.25rem 3.5rem; }

/* Inner — centred max-width, two-column grid */
.blog-inner {
  max-width:1080px; margin:0 auto;
  display:grid;
  grid-template-columns:1fr 280px;
  gap:2rem;
  align-items:start;
}

/* Body column */
.blog-body { min-width:0; }

.blog-content-box {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2rem 2.25rem;
  line-height:1.75;
}
.blog-content-box h2 { font-size:clamp(1.25rem,2.5vw,1.6rem); margin:1.75rem 0 .65rem; color:var(--primary-dk); }
.blog-content-box h3 { font-size:clamp(1.05rem,2vw,1.25rem); margin:1.4rem 0 .5rem; }
.blog-content-box p  { margin:0 0 1.1rem; }
.blog-content-box ul,.blog-content-box ol { margin:0 0 1.1rem; padding-left:1.4rem; }
.blog-content-box li { margin-bottom:.4rem; }
.blog-content-box table { width:100%; border-collapse:collapse; margin:1.25rem 0; font-size:.9rem; }
.blog-content-box th { background:var(--bg2); color:var(--primary); font-weight:700;
  padding:.55rem .75rem; text-align:left; border:1px solid var(--border); }
.blog-content-box td { padding:.5rem .75rem; border:1px solid var(--border); vertical-align:top; }
.blog-content-box tr:nth-child(even) td { background:var(--bg2); }
.blog-content-box a { color:var(--primary); }

/* Sidebar column */
.blog-sidebar { display:flex; flex-direction:column; gap:1rem; }

.blog-sidebar-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.1rem 1.25rem;
}
.blog-sticky-cta {
  background:var(--primary-dk);
  border-color:var(--primary-dk);
  text-align:center;
  position:sticky; top:80px;
}
.blog-sidebar-heading {
  font-size:.82rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.05em; color:var(--text-muted);
  margin:0 0 .65rem; padding:0;
}
.blog-sidebar-more {
  display:block; margin-top:.65rem;
  font-size:.82rem; font-weight:700; color:var(--primary);
  text-decoration:none;
}

/* Mobile: stack to single column */
@media(max-width:768px) {
  .blog-inner { grid-template-columns:1fr; }
  .blog-content-box { padding:1.25rem 1rem; }
  .blog-sidebar { display:none; }   /* hide sidebar on mobile — CTA in emergency-band */
}

/* ── FOOTER SOCIAL LINKS ──────────────────────────────────── */
.footer-social { display:flex; gap:.75rem; margin-top:1rem; align-items:center; }
.footer-social-link {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.1);
  color:rgba(255,255,255,.75);
  transition:background var(--trans), color var(--trans), transform var(--trans);
  text-decoration:none; flex-shrink:0;
}
.footer-social-link:hover {
  background:var(--accent);
  color:#fff;
  transform:translateY(-2px);
}

/* ── BURST PIPE VOLUME CARDS ──────────────────────────────── */
.vol-cards { display:flex; flex-direction:column; gap:.5rem; margin-top:1rem; }
.vol-card {
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:.65rem .85rem;
  border-left:3px solid var(--primary);
  background:var(--bg);
}
.vol-card--warn { border-left-color:#D97706; }
.vol-card--crit { border-left-color:var(--accent); }
.vol-card-top {
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:.5rem;
  margin-bottom:.25rem;
}
.vol-range {
  font-size:.85rem;
  font-weight:700;
  color:var(--primary-dk);
  white-space:nowrap;
}
.vol-card--warn .vol-range { color:#92400E; }
.vol-card--crit .vol-range { color:var(--accent); }
.vol-cost {
  font-size:.82rem;
  font-weight:700;
  color:var(--text-muted);
  white-space:nowrap;
}
.vol-scope {
  font-size:.8rem;
  color:var(--text-muted);
  margin:0;
  line-height:1.45;
}
