/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 23 2026 | 05:26:33 */
/* ============================================================
   WASH OUT NOW — SHARED SERVICE PAGE STYLES
   File: won-services.css  |  v3
   Prefix: wx- (wash/exterior)
   Load: site-wide via plugin or child theme
   Covers: all service pages + location pages
   ============================================================ */

/* ── OCTAVIAN THEME OVERRIDES ──
   Hides default post chrome that appears on custom pages:
   featured title bar, post title, author/date meta row.
   Resets main content padding so our full-bleed sections
   run edge-to-edge without the theme's default indent.     */
#featured-title    { display: none; }
.post-title        { display: none; }
.post-meta-content { display: none; }
#main-content      { padding: 15px 0; }

/* ── THEME SPECIFICITY FIX ──
   Octavian's stylesheet uses #main-content p { color: [dark] }
   which has ID specificity (101) and overrides our class rules (021).
   These rules prefix with #main-content to reach specificity 121+,
   ensuring white/light text is preserved in all dark sections.
   This block must stay near the top of this file.            */
#main-content .wx-sec--dk p,
#main-content .wx-sec--nv p,
#main-content .wx-sec--cta p { color: rgba(255,255,255,0.80); }

#main-content .wx-step__b p  { color: rgba(255,255,255,0.72); }
#main-content .wx-warn__body p { color: rgba(255,255,255,0.85); }
#main-content .wx-scard p    { color: rgba(255,255,255,0.65); }
#main-content .wx-intro--wh  { color: rgba(255,255,255,0.58); }
#main-content .wx-body--wh p { color: rgba(255,255,255,0.78); }
#main-content .wx-fact__body span { color: rgba(255,255,255,0.82); }

/* ── BASE ── */
.wx-sec,
.wx-hero {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  overflow: hidden;
  width: 100%;
}
.wx-sec *,
.wx-hero * {
  box-sizing: border-box;
}

/* ── SECTION BACKGROUNDS ── */
.wx-sec         { padding: clamp(48px,8vw,72px) 0; background: #ffffff; }
.wx-sec--dk     { background: #08163a; }
.wx-sec--nv     { background: #0f1e35; }
.wx-sec--lt     { background: #f8f7f4; }
.wx-sec--wh     { background: #ffffff; }
.wx-sec--cta    { padding: clamp(56px,10vw,88px) 0; background: #08163a; }
/* Sections below the fold: browser skips rendering until near viewport.
   contain-intrinsic-size is a size hint to prevent layout jumps. */
.wx-sec + .wx-sec {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ── CONTAINERS ── */
.wx-c {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,40px);
}
.wx-cn {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,40px);
  text-align: center;
}
.wx-cn--faq {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,40px);
}

/* ── GRID ── */
.wx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 40px;
  align-items: start;
}
/* FIX: --2 and --3 must declare display:grid independently
   (they are used as standalone classes, not alongside .wx-grid) */
.wx-grid--2 {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 36px;
}
.wx-grid--3 {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

/* ── SECTION HEADER ── */
.wx-hd        { text-align: center; margin-bottom: clamp(28px,5vw,48px); }
.wx-hd--left  { text-align: left; margin-bottom: clamp(20px,4vw,36px); }

/* ── EYEBROW ── */
.wx-eye {
  display: block;
  color: #e0861f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wx-eye--lt { color: #00c896; }

/* ── HEADINGS ── */
.wx-h2 {
  color: #08163a;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.wx-h2--wh  { color: #ffffff; }
.wx-h2--sub { margin-bottom: 10px; }

/* ── DIVIDER ── */
.wx-div {
  width: 48px;
  height: 4px;
  background: #e0861f;
  border-radius: 2px;
  margin: 0 0 20px 0;
}
.wx-div--c { margin: 0 auto 24px; }

/* ── BODY TEXT ── */
.wx-body {
  font-size: clamp(16px, 3.5vw, 19px);
  color: #3d3c38;
  line-height: 1.8;
}
.wx-body--wh { color: rgba(255,255,255,0.78); }
.wx-body p + p { margin-top: 14px; }

/* ── INTRO TEXT (centered sections) ── */
.wx-intro {
  font-size: clamp(16px, 3.5vw, 19px);
  color: #3d3c38;
  line-height: 1.75;
  margin: 0 0 14px 0;
}
.wx-intro--wh {
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.wx-hero {
  position: relative;
  /* LCP FIX 1: background-color renders immediately — no white flash
     while the background-image or external CSS loads */
  background-color: #08163a;
  /* LCP FIX 2: 100svh forced the browser to paint the entire viewport
     before the LCP element was "done". Reduced to a fixed comfortable
     height. Faster first paint = faster LCP on p.wx-sub */
  min-height: clamp(520px, 85vh, 760px);
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  /* LCP FIX 3: contain layout prevents the hero from triggering
     reflow calculations from elements outside it */
  contain: layout;
}
.wx-hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,22,58,0.97) 0%,
    rgba(8,22,58,0.91) 42%,
    rgba(8,22,58,0.62) 68%,
    rgba(8,22,58,0.20) 100%
  );
}
.wx-hero__c {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(56px,10vw,100px) clamp(20px,5vw,48px);
}
.wx-hero__in { max-width: 640px; }

/* Hero typography */
.wx-badge {
  display: block;
  color: #00c896;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wx-h1 {
  color: #fff;
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}
.wx-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(17px, 4vw, 20px);
  line-height: 1.75;
  margin: 0 0 10px 0;
}
.wx-loc {
  color: rgba(255,255,255,0.46);
  font-size: 13px;
  margin: 0 0 28px 0;
}

/* Hero buttons */
.wx-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
@media(min-width:520px) {
  .wx-btns { flex-direction: row; flex-wrap: wrap; }
}

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.wx-btn {
  display: block;
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.wx-btn--og {
  background: #e0861f;
  color: #fff;
}
.wx-btn--ol {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.38);
}
.wx-btn--gh {
  display: inline-block;
  background: transparent;
  color: #08163a;
  border: 2px solid #08163a;
  font-size: 14px;
}
.wx-btn--full { display: block; }
@media(min-width:480px) {
  .wx-btn { display: inline-block; }
  .wx-btn--full { display: block; }
}

/* ═══════════════════════════════════
   GOOGLE REVIEW ROW (hero)
═══════════════════════════════════ */
.wx-rev {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wx-rev__stars {
  display: block;
  font-size: 20px;
  color: #FBBC04;
  letter-spacing: 2px;
  line-height: 1;
}
.wx-rev__txt {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin: 4px 0 0 0;
}

/* Summary row (review sections) */
.wx-rev-sum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.wx-rev-sum__stars { font-size: 18px; color: #FBBC04; letter-spacing: 2px; }
.wx-rev-sum__score { font-size: 14px; font-weight: 600; color: #3d3c38; }

/* ═══════════════════════════════════
   STAT BOXES
═══════════════════════════════════ */
.wx-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wx-stat {
  background: #f8f7f4;
  border-radius: 10px;
  padding: 22px 14px;
  text-align: center;
}
.wx-stat__n {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  color: #08163a;
  line-height: 1;
}
.wx-stat__l {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

/* ═══════════════════════════════════
   STEPS (process blocks)
═══════════════════════════════════ */
.wx-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wx-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wx-step:last-child { border-bottom: none; }
.wx-step__n {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #e0861f;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.wx-step__b { flex: 1; min-width: 0; }
.wx-step__b h3 {
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.wx-step__b p {
  font-size: clamp(15px, 3vw, 17px);
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin: 0;
}
@media(min-width:640px) {
  .wx-steps {
    display: grid;
    /* Fixed 2-col: prevents the empty 3rd column when 5 steps
       are placed into auto-fit minmax(260px) at desktop widths */
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
  .wx-step {
    padding: 24px 0;
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

/* ═══════════════════════════════════
   CHECKLIST
═══════════════════════════════════ */
.wx-ul { list-style: none; padding: 0; margin: 0; }
.wx-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ede9e0;
}
.wx-check:last-child { border-bottom: none; }
.wx-check__i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #00c896;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.wx-check__t {
  font-size: clamp(15px, 3.5vw, 17px);
  color: #1a1917;
  line-height: 1.4;
}

/* ═══════════════════════════════════
   CARDS
═══════════════════════════════════ */
/* White card (included / feature box) */
.wx-card {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 12px;
  padding: clamp(22px, 5vw, 36px);
}
.wx-card h3 {
  font-size: clamp(17px, 4vw, 20px);
  font-weight: 700;
  color: #08163a;
  margin: 0 0 10px 0;
}
.wx-card p {
  font-size: clamp(15px, 3.5vw, 17px);
  color: #3d3c38;
  line-height: 1.7;
  margin: 0 0 18px 0;
}
.wx-card__icon { font-size: 28px; margin-bottom: 14px; }
.wx-card__list {
  border-top: 1px solid #e8e5df;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wx-card__li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3d3c38;
}

/* Dark service card (related services) */
.wx-scard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  padding: clamp(20px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.wx-scard:hover { border-color: rgba(0,200,150,0.35); }
.wx-scard__icon { font-size: 28px; margin-bottom: 12px; }
.wx-scard h3 {
  font-size: clamp(17px, 4vw, 20px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.wx-scard p {
  font-size: clamp(15px, 3.5vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0 0 16px 0;
  flex: 1;
}
.wx-scard a {
  font-size: 13px;
  font-weight: 700;
  color: #00c896;
  text-decoration: none;
}

/* ═══════════════════════════════════
   REVIEW CARDS
═══════════════════════════════════ */
.wx-review {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 10px;
  padding: clamp(18px, 4vw, 26px);
}
.wx-review__stars {
  font-size: 16px;
  color: #FBBC04;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.wx-review__text {
  font-size: clamp(15px, 3.5vw, 17px);
  color: #3d3c38;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px 0;
}
.wx-review__name { font-size: 13px; font-weight: 700; color: #08163a; }
.wx-review__src  { font-size: 11px; color: #aaa; margin-top: 3px; }

/* ═══════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════ */
.wx-faq details { border-bottom: 1px solid #e8e5df; }
.wx-faq details:first-of-type { border-top: 1px solid #e8e5df; }
.wx-faq summary {
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 600;
  color: #1a1917;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}
.wx-faq summary::-webkit-details-marker { display: none; }
.wx-faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #e0861f;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.wx-faq details[open] summary::after { transform: rotate(45deg); }
.wx-faq details p {
  font-size: clamp(15px, 3.5vw, 17px);
  color: #3d3c38;
  line-height: 1.75;
  padding: 0 0 20px 0;
  margin: 0;
}

/* ═══════════════════════════════════
   PRICING BOX
═══════════════════════════════════ */
.wx-price {
  background: #f8f7f4;
  border-radius: 12px;
  padding: clamp(28px, 6vw, 48px) clamp(20px, 5vw, 40px);
  margin-bottom: 24px;
  text-align: center;
}
.wx-price__range {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.wx-price__dollar { font-size: clamp(16px, 4vw, 22px); font-weight: 600; color: #08163a; }
.wx-price__num    { font-size: clamp(44px,10vw,62px); font-weight: 800; color: #08163a; line-height: 1; }
.wx-price__sep    { font-size: clamp(16px, 4vw, 22px); color: #aaa; margin: 0 4px; }
.wx-price__label  { font-size: 13px; color: #888; margin: 0; }
.wx-price__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,150px), 1fr));
  gap: 10px;
  margin-top: 18px;
}
.wx-price__tile {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
}
.wx-price__tile-l { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.wx-price__tile-v { font-size: 14px; font-weight: 700; color: #08163a; }

/* ═══════════════════════════════════
   PHOTO GRID
═══════════════════════════════════ */
.wx-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 6px;
  border-radius: 10px;
  overflow: hidden;
}
.wx-photo {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}
.wx-photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wx-photo:hover img { transform: scale(1.04); }
.wx-photo__lbl {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,22,58,0.88), transparent);
  padding: 28px 14px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════
   SERVICE AREA PILLS
═══════════════════════════════════ */
.wx-county { margin-bottom: 20px; }
.wx-county:last-child { margin-bottom: 0; }
.wx-county__name {
  font-size: 12px;
  font-weight: 700;
  color: #08163a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wx-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.wx-pill {
  background: #fff;
  border: 1px solid #e8e5df;
  color: #3d3c38;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ═══════════════════════════════════
   CTA FOOTER ROW (phone + text)
═══════════════════════════════════ */
.wx-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wx-ph a {
  color: rgba(255,255,255,0.85);
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 600;
  text-decoration: none;
}
.wx-ph span { color: rgba(255,255,255,0.30); font-size: 13px; }

/* ═══════════════════════════════════
   UNIQUE BLOCKS (roof + other pages)
   Small additions — reusable across future pages
═══════════════════════════════════ */

/* Warning box — "wrong way" callout */
.wx-warn {
  background: rgba(224,134,31,0.1);
  border: 1px solid rgba(224,134,31,0.32);
  border-radius: 10px;
  padding: clamp(16px, 4vw, 22px);
  margin-bottom: clamp(20px, 4vw, 32px);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wx-warn__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.wx-warn__body { flex: 1; min-width: 0; }
.wx-warn__body strong {
  display: block;
  color: #e0861f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.wx-warn__body p {
  font-size: clamp(15px, 3.5vw, 16px);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}

/* Callout box — teal border diagnostic panel */
.wx-callout {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,200,150,0.28);
  border-radius: 12px;
  padding: clamp(22px, 5vw, 32px);
}
.wx-callout__tag {
  display: inline-block;
  background: rgba(0,200,150,0.14);
  border: 1px solid rgba(0,200,150,0.35);
  color: #00c896;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.wx-callout h3 {
  color: #fff;
  font-size: clamp(17px, 4vw, 22px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.wx-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wx-fact:last-child { border-bottom: none; }
.wx-fact__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: rgba(224,134,31,0.16);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.wx-fact__body { flex: 1; min-width: 0; }
.wx-fact__body strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.wx-fact__body span {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

/* ── SECTION COLOR STANDARD (alternating pattern) ──
   Hero:     always dark  (wx-hero)
   Block 2:  light grey   (wx-sec--lt)  ← first section after hero
   Block 3:  white        (wx-sec--wh)
   Block 4:  dark navy    (wx-sec--nv or wx-sec--dk)
   Block 5:  white        (wx-sec--wh)
   Block 6:  dark navy    (wx-sec--dk)
   Block 7:  light grey   (wx-sec--lt)  ← reviews widget
   Block 8:  white        (wx-sec--wh)
   Block 9:  dark navy    (wx-sec--nv)
   Block 10: light grey   (wx-sec--lt)
   Block 11: always dark  (wx-sec--cta)
   Rule: never place two dark sections back-to-back after the hero. */

/* Callout box — light background variant.
   Add wx-callout--lt alongside wx-callout when section is white/light grey */
.wx-callout--lt { background: #ffffff; border: 1px solid rgba(0,200,150,0.3); }
.wx-callout--lt .wx-callout__tag { background: rgba(0,200,150,0.1); border-color: rgba(0,200,150,0.3); }
.wx-callout--lt h3 { color: #08163a; }
.wx-callout--lt .wx-fact { border-bottom-color: #e8e5df; }
.wx-callout--lt .wx-fact__icon { background: rgba(224,134,31,0.12); }
.wx-callout--lt .wx-fact__body strong { color: #08163a; }
.wx-callout--lt .wx-fact__body span { color: #3d3c38; }

/* Pill links — wx-pill used as <a> tag for city service area pages */
a.wx-pill { text-decoration: none; color: #3d3c38; transition: background 0.15s, border-color 0.15s, color 0.15s; }
a.wx-pill:hover { background: #08163a; color: #ffffff; border-color: #08163a; }

/* Timeline block */
.wx-timeline { display: flex; flex-direction: column; gap: 10px; }
.wx-titem {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8f7f4;
  border-radius: 10px;
  padding: 16px;
}
.wx-titem__yr {
  flex-shrink: 0;
  background: #08163a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
}
.wx-titem__desc {
  font-size: clamp(14px, 3.5vw, 16px);
  color: #3d3c38;
  line-height: 1.55;
}
.wx-titem__desc strong {
  color: #08163a;
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   WASH OUT NOW — CSS ADDITIONS FOR WON-SERVICES.CSS
   Page: Gutter Cleaning  |  /services/gutter-cleaning-manassas-va/

   INSTRUCTIONS:
   Append the block(s) below to the bottom of won-services.css.
   Then clear WP Optimize cache so the bundled file updates.
   ============================================================ */

/* ═══════════════════════════════════
   INLINE PULL QUOTE
   Used: Gutter Cleaning — Local Context + Pricing blocks
   Reusable on future pages where the standalone Reviews
   block is intentionally skipped.
═══════════════════════════════════ */
.wx-pullquote {
  border-left: 3px solid #e0861f;
  padding: 12px 0 12px 20px;
  margin: 28px 0 0;
}
.wx-pullquote__text {
  font-size: clamp(14px, 3.5vw, 15px);
  color: #3d3c38;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 8px;
}
.wx-pullquote__cite {
  font-size: 12px;
  font-weight: 700;
  color: #08163a;
  font-style: normal;
  display: block;
}
.wx-pullquote__cite span {
  font-weight: 400;
  color: #888;
}