@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

/*
 * ---------------------------------------------------------------------------
 *  Limelight Realty -- sitewide typography + color overrides
 *
 *  IMPORTANT: Bootstrap 3 (loaded via the theme) sets `html { font-size: 62.5% }`,
 *  so rem-based values render at 62.5% of intended size. We reset that here
 *  so 1rem = 16px again. Theme styles use px exclusively, so this only
 *  affects rem-based values in our overrides + the limelight-team plugin
 *  (where we WANT them to render at the standard size).
 *
 *  Goals:
 *    - Larger, more readable body text (18px / 1.65) on a modern system stack
 *    - Consistent heading scale, Nexa preserved for brand
 *    - Limelight brand green (#6ab75a) used everywhere — single source of
 *      truth for the brand colour. Hover/active uses #5aa44a so links
 *      still have a visible state change.
 *    - Don't break overlay/dark-background text (cards, hero) -- preserve white
 *    - Don't break Bootstrap utility classes (.text-center etc.)
 *
 *  Loaded via wp_enqueue_style at priority 999 in functions.php so it
 *  beats every plugin CSS in the cascade.
 * ---------------------------------------------------------------------------
 */

/* ============================================================ Base reset */

/* Undo Bootstrap's 62.5% so 1rem = 16px (the value all our other rules assume) */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

/* ============================================================ Design tokens */

:root {
  /* Font stacks
   *
   * Body uses Inter — designed specifically for screen UI by Rasmus
   * Andersson; exceptional legibility at small sizes on mobile, with
   * generous x-height and open counters. This solves the "Oswald body
   * is hard to read on mobile" problem.
   *
   * Display (h1-h6) keeps Oswald — narrow geometric sans-serif close
   * to Knockout Featherweight, gives the brand its editorial flavour.
   *
   * Nexa + system stack remain in the fallback chain for graceful
   * degradation if Google Fonts is blocked. */
  --lt-font-body:    "Inter", "Nexa", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --lt-font-display: "Oswald", "Nexa", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --lt-font-mono:    ui-monospace, "SF Mono", Menlo, Consolas, "Roboto Mono", monospace;

  /* Type scale (in px so it's immune to root size shifts).
   * Bumped from 18px -> 19px after switching body to Inter; user
   * explicitly asked for slightly larger body text. Inter's x-height
   * is taller than Oswald so 19px Inter feels notably more legible. */
  --lt-fs-base:    19px;
  --lt-lh-base:    1.6;
  --lt-fs-form:    16px;       /* prevents iOS focus zoom */
  --lt-fs-small:   15px;       /* bumped 14 -> 15 for readability */
  --lt-fs-h1:      clamp(34px, 4vw, 48px);
  --lt-fs-h2:      clamp(26px, 2.6vw, 34px);
  --lt-fs-h3:      clamp(22px, 2vw, 28px);
  --lt-fs-h4:      20px;
  --lt-fs-h5:      18px;
  --lt-fs-h6:      15px;

  /* Ink (text) */
  --lt-ink:        #1f2937;
  --lt-ink-soft:   #374151;
  --lt-ink-display:#0f172a;
  --lt-ink-mute:   #5b6470;

  /* Brand greens */
  --lt-green:        #5dd95d;   /* decorative ONLY (logo, hero fills) */
  --lt-green-text:   #6ab75a;   /* Limelight brand green */
  --lt-green-strong: #5aa44a;   /* slightly darker for hover / active */
  --lt-brand-green:  #6ab75a;   /* canonical brand alias */
  --lt-brand-green-dark: #5aa44a;

  /* Other brand colors */
  --lt-navy:       #2d3b4f;
  --lt-link:       #2d3b4f;
  --lt-link-hover: var(--lt-green-strong);
}

/* ============================================================ Body + paragraphs */

body,
body.bootstrap-realtypress {
  font-family: var(--lt-font-body);
  font-size: var(--lt-fs-base);
  line-height: var(--lt-lh-base);
  color: var(--lt-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Force paragraph size in absolute px so Bootstrap's body { font-size: 14px }
   loses to our overrides regardless of cascade order. */
body p {
  font-size: var(--lt-fs-base);
  line-height: var(--lt-lh-base);
  margin: 0 0 1em;
}

body p.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--lt-ink-soft);
}

body small,
body .small {
  font-size: var(--lt-fs-small);
}

body li {
  font-size: var(--lt-fs-base);
  line-height: var(--lt-lh-base);
}

/* ============================================================ Links */

body a {
  color: var(--lt-link);
  text-decoration: none;
  transition: color 0.15s ease;
}

body a:hover,
body a:focus {
  color: var(--lt-link-hover);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Don't underline buttons or wrapper links (cards, etc.) */
body a.btn:hover,
body a.btn:focus,
body a.lt-team__card:hover,
body a.lt-team__card:focus,
body a.lt-full__card:hover,
body a.lt-full__card:focus,
body a.lt-profile__btn:hover,
body a.lt-profile__btn:focus,
body a.card-grid-item-content:hover,
body a.card-grid-item-content:focus,
body a.lt-social__link:hover,
body a.lt-social__link:focus,
body .navbar a:hover,
body .navbar a:focus,
body .card-grid-item a:hover,
body .card-grid-item a:focus {
  text-decoration: none;
}

/* ============================================================ Headings */

body h1, body .h1,
body h2, body .h2,
body h3, body .h3,
body h4, body .h4,
body h5, body .h5,
body h6, body .h6 {
  font-family: var(--lt-font-display);
  font-weight: 400;              /* Oswald Regular -- matches Knockout Featherweight feel; no bold */
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--lt-ink-display);
  margin-top: 0;
  margin-bottom: 0.5em;
}

body h1, body .h1 { font-size: var(--lt-fs-h1); line-height: 1.1; letter-spacing: -0.015em; }
body h2, body .h2 { font-size: var(--lt-fs-h2); }
body h3, body .h3 { font-size: var(--lt-fs-h3); color: var(--lt-ink-soft); }
body h4, body .h4 { font-size: var(--lt-fs-h4); color: var(--lt-ink-soft); }
body h5, body .h5 { font-size: var(--lt-fs-h5); color: var(--lt-ink-soft); }
body h6, body .h6 { font-size: var(--lt-fs-h6); color: var(--lt-ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================ Bootstrap "info"
 * The default brand green is too bright for text and white-on-green.
 * We patch only foreground/background utilities, NOT the underlying class.
 */

body .text-info,
body a.text-info,
body .text-info > * {
  color: var(--lt-green-text);
}

body .text-info:hover,
body a.text-info:hover {
  color: var(--lt-green-strong);
}

body .bg-info {
  background-color: var(--lt-green-text);
  color: #fff;
}

body .btn-info {
  background-color: var(--lt-green-text);
  border-color: var(--lt-green-text);
  color: #fff;
  text-shadow: none;
  font-weight: 600;
}

body .btn-info:hover,
body .btn-info:focus,
body .btn-info:active,
body .btn-info.active {
  background-color: var(--lt-green-strong);
  border-color: var(--lt-green-strong);
  color: #fff;
}

/* Heading inside .bg-info / .bg-primary etc. should be white, not navy. */
body .bg-info h1, body .bg-info .h1,
body .bg-info h2, body .bg-info .h2,
body .bg-info h3, body .bg-info .h3,
body .bg-info h4, body .bg-info .h4,
body .bg-info h5, body .bg-info .h5,
body .bg-info h6, body .bg-info .h6,
body .bg-primary h1, body .bg-primary .h1,
body .bg-primary h2, body .bg-primary .h2,
body .bg-primary h3, body .bg-primary .h3,
body .bg-primary h4, body .bg-primary .h4,
body .bg-primary h5, body .bg-primary .h5,
body .bg-primary h6, body .bg-primary .h6,
body .bg-dark h1, body .bg-dark .h1,
body .bg-dark h2, body .bg-dark .h2,
body .bg-dark h3, body .bg-dark .h3,
body .bg-dark h4, body .bg-dark .h4,
body .bg-dark h5, body .bg-dark .h5,
body .bg-dark h6, body .bg-dark .h6 {
  color: #fff;
}

/* ============================================================ Card grid items
 * `.card-grid-item-content` overlays text on a dark image. Headings + spans
 * MUST be white. The .text-muted class on these headings has to be neutralized.
 * The decorative `.headline:after` underline must also be white here.
 */

body .card-grid-item-content,
body .card-grid-item-content h1,
body .card-grid-item-content h2,
body .card-grid-item-content h3,
body .card-grid-item-content h4,
body .card-grid-item-content h5,
body .card-grid-item-content h6,
body .card-grid-item-content .h1,
body .card-grid-item-content .h2,
body .card-grid-item-content .h3,
body .card-grid-item-content p,
body .card-grid-item-content span,
body .card-grid-item-content .text-muted {
  color: #fff !important;
}

body .card-grid-item-content h2,
body .card-grid-item-content .h2 {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  margin-bottom: 0.6em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  letter-spacing: 0;
}

body .card-grid-item-content span {
  font-size: 15px;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* The :after dash inside a card overlay should be white-ish. */
body .card-grid-item-content .headline:after {
  background: rgba(255, 255, 255, 0.85);
}

/* ============================================================ Buttons */

body .btn {
  font-family: var(--lt-font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: 8px;
  padding: 10px 20px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}

body .btn:focus-visible {
  outline: 3px solid rgba(106, 183, 90, 0.45);
  outline-offset: 2px;
}

body .btn-lg {
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 10px;
}

body .btn-sm {
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 6px;
}

body .btn-primary {
  background-color: var(--lt-navy);
  border-color: var(--lt-navy);
  color: #fff;
  text-shadow: none;
}

body .btn-primary:hover,
body .btn-primary:focus,
body .btn-primary:active {
  background-color: var(--lt-green-text);
  border-color: var(--lt-green-text);
  color: #fff;
}

/* ============================================================ Forms */

body input[type="text"],
body input[type="email"],
body input[type="url"],
body input[type="tel"],
body input[type="number"],
body input[type="search"],
body input[type="password"],
body select,
body textarea,
body .form-control {
  font-family: var(--lt-font-body);
  font-size: var(--lt-fs-form);
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  color: var(--lt-ink);
  background-color: #fff;
  box-shadow: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body input[type="text"]:focus,
body input[type="email"]:focus,
body input[type="url"]:focus,
body input[type="tel"]:focus,
body input[type="number"]:focus,
body input[type="search"]:focus,
body input[type="password"]:focus,
body select:focus,
body textarea:focus,
body .form-control:focus {
  outline: none;
  border-color: var(--lt-green-text);
  box-shadow: 0 0 0 3px rgba(106, 183, 90, 0.28);
}

body label {
  font-weight: 600;
  font-size: 15px;
  color: var(--lt-ink-soft);
  margin-bottom: 4px;
}

/* ============================================================ Tables, lists, blockquotes */

body table {
  font-size: 16px;
}

body th {
  font-weight: 700;
  color: var(--lt-ink-display);
}

body blockquote {
  border-left: 4px solid var(--lt-green-text);
  padding: 4px 0 4px 20px;
  margin: 1.5em 0;
  font-size: 19px;
  font-style: normal;
  color: var(--lt-ink-soft);
  background: transparent;
}

/* ============================================================ Hero "limelight-agent-hero"
 * Hero displays the agent's last name in green on a dark background.
 * Bright lime is fine here, but we ensure the rest of the hero text stays
 * readable and the size doesn't compress.
 */

body .limelight-agent-hero h1 span {
  color: var(--lt-green);  /* bright on dark = OK */
}

body .limelight-agent-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
  color: #fff;
  line-height: 1.05;
}

/* "Our [Team]" pattern -- text-info inside heading on a light bg */
body h1 .text-info,
body h2 .text-info,
body h3 .text-info,
body .h1 .text-info,
body .h2 .text-info,
body .h3 .text-info {
  color: var(--lt-green-text);
}

/* ============================================================ Navbar / nav */

body .navbar {
  font-family: var(--lt-font-body);
  font-size: 16px;
  letter-spacing: 0.005em;
}

body .navbar-nav > li > a {
  font-weight: 600;
  font-size: 15px;
}

body .navbar-nav > li > a:hover,
body .navbar-nav > li > a:focus {
  color: var(--lt-green-text);
}

/* ============================================================
 * MOBILE NAV — fit-to-screen menu
 *
 * The shipped Bootstrap-3 / theme defaults give each nav item a
 * generous 17.5px top + bottom padding. With Limelight's 9 top-
 * level items (expanding to 11 when the Tools dropdown opens) the
 * menu overflows even tall phones, so users have to scroll —
 * which several visitors didn't realize was even possible.
 *
 * On phones (≤767px, the breakpoint where the navbar collapses to
 * the hamburger menu) we tighten every item down to ~38px tall,
 * cap the menu's overall height to the visible viewport (minus
 * the navbar header), and make it scroll-snap inside its own
 * container as a graceful fallback if any single site ever has
 * more items than fit. The result: every menu item visible at
 * once on every site, no surprise hidden scroll. */
@media (max-width: 767px) {
  body .navbar .navbar-nav {
    margin: 0;
    padding: 4px 0;
  }

  body .navbar .navbar-nav > li > a {
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 15px;
    line-height: 1.4;
  }

  /* Submenu items (Mortgage Calc / Land Tax Calc nested under Tools) */
  body .navbar .navbar-nav .open .dropdown-menu > li > a {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 30px;       /* indent so the submenu reads as a sub */
    font-size: 14px;
    line-height: 1.4;
  }

  /* Cap the open menu height to viewport-minus-navbar-header so it
   * never extends past the screen's bottom edge. Internal scroll
   * kicks in only as a safety fallback if a site's menu is so long
   * that even the tightened items don't fit. */
  body .navbar .navbar-collapse {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Subtle separator between items so the compact spacing still
   * reads as discrete clickable rows. */
  body .navbar-default .navbar-nav > li + li > a {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* ============================================================
 * MOBILE PROPERTY-CATEGORY CARD GRID — compact 2-col chip grid
 *
 * The default `.card-grid` design works on desktop (4-5 cards per
 * row, photo backgrounds, descriptions visible) but on mobile each
 * card stacks 100% wide with a full-bleed photo + description text,
 * meaning all 10 categories = ~1800-2000px of vertical scroll.
 *
 * On phones (≤767px) we collapse it down to a tight 2-column grid
 * of solid-color "category chips" — just the category title on a
 * navy block. No photo, no description, just a fast scannable
 * shortcut. Drops the section height to ~430px (down ~75%).
 *
 * Tap-state is brand-green for clear feedback, and the cards still
 * inherit the original `<a>` overlay so links continue to work
 * unchanged. */
@media (max-width: 767px) {
  body .card-grid {
    margin-left: 12px;
    margin-right: 12px;
    gap: 8px;
  }

  body .card-grid-item {
    width: calc(50% - 4px) !important;
    padding: 0;
  }

  /* The clickable transparent overlay anchor — keep it positioned
   * to fill the card chip exactly. */
  body .card-grid-item > a {
    border-radius: 8px;
  }

  body .card-grid-item .card-grid-item-content {
    background-image: none !important;          /* hide decorative photo on mobile */
    background-color: #2c3a4f;                  /* brand navy chip */
    box-shadow: none !important;                /* drop the dark inset overlay (was for photo legibility) */
    padding: 14px 12px;
    min-height: 78px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.18s ease, transform 0.18s ease;
    /* Hide the raw description text-node by zeroing the font-size on
     * the parent; the h2 chip title gets its own explicit font-size
     * below so it stays visible. */
    font-size: 0;
    line-height: 0;
  }

  /* Tap / hover feedback — brand-green chip with subtle lift */
  body .card-grid-item:hover .card-grid-item-content,
  body .card-grid-item:active .card-grid-item-content,
  body .card-grid-item:focus-within .card-grid-item-content {
    background-color: var(--lt-brand-green, #6ab75a);
    transform: translateY(-1px);
  }

  body .card-grid-item .card-grid-item-content h2,
  body .card-grid-item .card-grid-item-content h2.headline,
  body .card-grid-item .card-grid-item-content h2.text-muted {
    font-family: var(--lt-font-display);
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    padding: 0;
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 0.015em;
    text-transform: none;
  }

  /* Catch the trailing description span/text inside .card-grid-item-content
   * just in case any browsers honor inline font-size differently. */
  body .card-grid-item .card-grid-item-content span {
    display: none !important;
  }
}

/* ============================================================ Bootstrap utility patches */

body .text-muted {
  color: var(--lt-ink-mute);
}

body .text-success,
body a.text-success {
  color: var(--lt-green-text);
}
body .text-success:hover,
body a.text-success:hover {
  color: var(--lt-green-strong);
}

/* ============================================================ RealtyPress patches
 * RealtyPress uses 4-class selectors like
 *   `.bootstrap-realtypress .rps-grid-result .rps-property-info .city-province-postalcode`
 * so we have to match (or beat) that specificity to win.
 */

/* RealtyPress injects an inline <style> setting these to #777 with 4-class
 * specificity, so we both match that specificity AND use !important. */
.bootstrap-realtypress .rps-grid-result .rps-property-info .city-province-postalcode,
.bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .city-province-postalcode,
.bootstrap-realtypress .rps-listing-preview-shortcode .rps-property-info .city-province-postalcode,
.bootstrap-realtypress .rps-favorites .rps-favorites-result .rps-property-info .city-province-postalcode {
  font-size: 15px !important;
  color: #4b5563 !important;          /* darker than #666; >= 7:1 on #f6f6f6 */
}

.bootstrap-realtypress .rps-grid-result .rps-property-info .address,
.bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .address {
  font-size: 16px;
  color: var(--lt-ink-display);
  font-weight: 600;
}

body .price,
body .pricing,
body .property-price {
  font-weight: 700;
  color: var(--lt-ink-display);
}

/* ============================================================ Estatik patches */

body .es-field__description,
body .es-field__label,
body .es-form .es-field__description {
  font-size: 14px !important;       /* Estatik uses em-based sizing in deeply nested rules */
  color: var(--lt-ink-soft);
  line-height: 1.5;
}

/* ============================================================ Limelight team plugin
 * Ensure the role text reads at a sensible size everywhere.
 * (Plugin already uses rem; with html-size reset above, sizes are correct.)
 */

body .lt-team__role {
  font-size: 14px;
  letter-spacing: 0.12em;
}

body .lt-team__name {
  font-size: 19px;
}

body .lt-team__title {
  font-size: clamp(24px, 2.4vw, 32px);
}

body .lt-team__subtitle {
  font-size: 17px;
  color: var(--lt-ink-mute);
}

/* ============================================================ Print + reduced motion */

@media print {
  body { font-size: 12pt; line-height: 1.5; color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  body a,
  body .btn { transition: none; }
}

/* ============================================================
 * BODY-FONT ENFORCEMENT (must stay LAST in this file)
 *
 * Plenty of plugin / Bootstrap / legacy theme CSS hardcodes
 * `font-family: "Helvetica Neue", Helvetica, Arial, sans-serif`
 * (or similar) directly on body, inputs, buttons, .navbar, tables,
 * RealtyPress search forms, Estatik widgets, etc. — bypassing our
 * --lt-font-body variable entirely. This block forces Inter onto
 * every real text-bearing element with !important so the cascade
 * wins regardless of plugin specificity / load order.
 *
 * Icon-font glyphs (FontAwesome `.fa::before`, Glyphicons
 * `.glyphicon::before`, dashicons, etc.) are unaffected: each icon
 * library declares its own `font-family` directly on the
 * `::before` pseudo-element, and pseudo-element rules win over
 * inheritance from the parent — so icons keep rendering correctly.
 *
 * Headings (h1-h6) are explicitly re-bound to --lt-font-display
 * (Oswald) below so they don't get sucked into the body-font sweep.
 * ============================================================ */

html,
body,
body * {
  font-family: var(--lt-font-body) !important;
}

/* Re-assert display font on headings + heading-like elements so
 * Oswald wins over the `body *` body-font sweep above. Specificity
 * ties (both single class/element selectors), so source order wins —
 * this rule MUST appear after the body-font sweep. */
body h1, body h2, body h3, body h4, body h5, body h6,
body .h1, body .h2, body .h3, body .h4, body .h5, body .h6,
body .lt-font-display,
body .display-title,
body .hero-title,
body .section-title,
body .lt-stats-hero__title,
body .lt-careers-hero h1,
body .lt-page-hero h1,
body .lt-page-hero h2 {
  font-family: var(--lt-font-display) !important;
}

/* Restore monospace where it's actually wanted (code, kbd, pre, samp).
 * Without this, code blocks would render in Nexa which looks wrong. */
body code,
body kbd,
body pre,
body samp,
body tt,
body var,
body .lt-mono,
body [class*="hljs"] {
  font-family: var(--lt-font-mono) !important;
}

/* Restore each icon library's font-family explicitly. The previous
 * version of this rule used `font-family: revert !important`, but
 * `revert` rolls back to the user-agent stylesheet (where font-family
 * is just `serif`), NOT to the icon library's `font-family: FontAwesome`
 * declaration. That made every .fa / .glyphicon / .dashicons render
 * as a serif glyph (essentially invisible squares), which is why the
 * header + footer social media icons looked "missing". Re-state each
 * font-family by name so icons paint correctly. */
body .fa,
body [class*=" fa-"],
body [class^="fa-"],
body .fas, body .far, body .fab, body .fal, body .fad,
body i.fa, body i.fas, body i.far, body i.fab,
body .fa::before,
body [class*=" fa-"]::before,
body [class^="fa-"]::before {
  font-family: "FontAwesome" !important;
}

/* Header phone CTA — rectangle button styling.
 * Replaces the old `<i class="fa fa-phone">` + plain text combo in
 * the top utility bar. The FontAwesome 4 phone glyph orientation
 * was inconsistent across browsers and looked upside-down to many
 * users, so we dropped the icon entirely and present the phone
 * number as a bordered call-to-action rectangle instead. */
body .lt-header-phone {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

body .lt-header-phone:hover,
body .lt-header-phone:focus,
body .lt-header-phone:active {
  border-color: var(--lt-brand-green, #6ab75a);
  background-color: var(--lt-brand-green, #6ab75a);
  color: #fff !important;
  text-decoration: none;
}

body .lt-header-phone strong {
  font-weight: 600;
}

/* Legacy: FontAwesome 4's `.fa-phone` glyph (\f095) is drawn with
 * the handset speaker at upper-left. Some users perceive this as
 * "upside-down" relative to modern iOS / Material phone icons.
 * Flip horizontally for any remaining `<i class="fa fa-phone">`
 * occurrences (e.g. inside CTA buttons on /careers/ and /market-stats/). */
body .fa-phone,
body .fa-phone-square {
  display: inline-block;
  transform: scaleX(-1);
}

body .glyphicon,
body [class*=" glyphicon-"],
body [class^="glyphicon-"],
body i.glyphicon,
body .glyphicon::before,
body [class*=" glyphicon-"]::before,
body [class^="glyphicon-"]::before {
  font-family: "Glyphicons Halflings" !important;
}

body .dashicons,
body [class*=" dashicons-"],
body [class^="dashicons-"],
body .dashicons::before,
body [class*=" dashicons-"]::before,
body [class^="dashicons-"]::before {
  font-family: "dashicons" !important;
}

/* ============================================================
 * SOCIAL MEDIA ICON BUTTONS (footer + anywhere `.social-networks` lives)
 *
 * Without this block the icons inherit Bootstrap "social-button"
 * classes (`.btn-twitter`, `.btn-facebook`, `.btn-instagram`,
 * `.btn-linkedin`, `.btn-youtube`) which paint each icon in the
 * source platform's brand colour — Twitter sky-blue, Facebook navy,
 * Instagram orange, LinkedIn cyan, YouTube red. That's the "random
 * colours" complaint from the original brief.
 *
 * Replace with one consistent treatment: monochrome circular pill,
 * subtle translucent fill on dark footers, hover lifts to Limelight
 * brand green. Works on light and dark surfaces because the fill
 * is a translucent neutral (not a hard colour).
 * ============================================================ */

body .social-networks {
  padding: 0 !important;
  margin: 8px 0 0 !important;
  list-style: none !important;
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
}

body .social-networks li {
  float: none !important;
  display: inline-block !important;
  margin: 0 !important;
}

/* Reset every flavour of social .btn-* to one neutral chip */
body .social-networks li a,
body .social-networks li a.btn,
body .social-networks li a.btn-twitter,
body .social-networks li a.btn-facebook,
body .social-networks li a.btn-instagram,
body .social-networks li a.btn-linkedin,
body .social-networks li a.btn-youtube,
body .social-networks li a.btn-google-plus,
body .social-networks li a.btn-vimeo,
body .social-networks li a.btn-flickr {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.10) !important;
  background-color: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease !important;
}

body .social-networks li a:hover,
body .social-networks li a:focus,
body .social-networks li a.btn:hover,
body .social-networks li a.btn:focus,
body .social-networks li a.btn-twitter:hover,
body .social-networks li a.btn-facebook:hover,
body .social-networks li a.btn-instagram:hover,
body .social-networks li a.btn-linkedin:hover,
body .social-networks li a.btn-youtube:hover {
  background: var(--lt-brand-green, #6ab75a) !important;
  background-color: var(--lt-brand-green, #6ab75a) !important;
  border-color: var(--lt-brand-green, #6ab75a) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

body .social-networks li a .fa {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

/* ============================================================
 * HEADER TOP-BAR SOCIAL ICONS
 *
 * The header's top utility strip (.bg-primary inside .navbar)
 * holds a list of social links rendered as a plain Bootstrap
 * `.list-inline` (NOT `.social-networks`), so the rules above
 * don't reach them. Match the same pill treatment so the header
 * + footer feel like a coherent set.
 *
 * Selector is scoped to `.bg-primary .list-inline` so we don't
 * accidentally restyle every list-inline elsewhere on the site.
 * ============================================================ */

body .navbar .bg-primary .list-inline,
body .bg-primary .list-inline {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

body .navbar .bg-primary .list-inline > li,
body .bg-primary .list-inline > li {
  float: none !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .navbar .bg-primary .list-inline > li > a,
body .bg-primary .list-inline > li > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  padding: 4px 6px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.18s ease, transform 0.12s ease !important;
}

body .navbar .bg-primary .list-inline > li > a:hover,
body .navbar .bg-primary .list-inline > li > a:focus,
body .bg-primary .list-inline > li > a:hover,
body .bg-primary .list-inline > li > a:focus {
  background: transparent !important;
  border: 0 !important;
  color: var(--lt-brand-green, #6ab75a) !important;
  transform: translateY(-1px) !important;
}

body .navbar .bg-primary .list-inline > li > a > .fa,
body .bg-primary .list-inline > li > a > .fa {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  color: inherit !important;
}

/* ============================================================
 * FACEBOOK PAGE FEED SECTION
 *
 * Rendered by lt_render_fb_page_feed() in functions.php and placed
 * on the homepage (front-page.php) below the existing content. The
 * iframe is the official Facebook Page Plugin; the link below is
 * always-rendered fallback for users where the iframe is blocked
 * (privacy modes, ad blockers, dev hosts, etc.).
 * ============================================================ */

body .lt-fb-section {
  padding: 64px 16px;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body .lt-fb-section__head {
  text-align: center;
  margin-bottom: 28px;
}

body .lt-fb-section__head h2 {
  margin: 0 0 8px;
}

body .lt-fb-section__head p {
  margin: 0;
  color: var(--lt-ink-mute);
  font-size: 16px;
}

/* Card wrapper around the iframe so it doesn't read as a raw embed */
body .lt-fb-feed {
  margin: 0 auto;
  max-width: 500px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Branded header bar -- replaces FB's default cover so the embed feels native */
body .lt-fb-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--lt-navy, #2d3b4f);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body .lt-fb-feed__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

body .lt-fb-feed__brand .fa {
  font-size: 20px;
  color: #fff;
}

body .lt-fb-feed__visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

body .lt-fb-feed__visit:hover,
body .lt-fb-feed__visit:focus {
  background: var(--lt-brand-green, #6ab75a);
  border-color: var(--lt-brand-green, #6ab75a);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

body .lt-fb-feed__visit .fa {
  font-size: 11px;
}

/* The iframe itself sits inside a clipped frame so the FB chrome
 * blends with the card. We give it a fixed height (900px) so visitors
 * see 3-4 posts without scrolling — the iframe handles internal
 * scroll only when needed, and the card never overflows the page. */
body .lt-fb-feed__frame {
  position: relative;
  background: #fff;
  height: 900px;
  overflow: hidden;
}

/* --- Personal-profile fallback card ---
 * Used when the FB URL is a personal profile (which the Page Plugin
 * can't embed). Same chrome as the embedded version, but the iframe
 * is replaced with a static "Visit our profile" CTA so the section
 * stays useful instead of showing a blank box.
 */
body .lt-fb-feed__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 32px 56px;
  background: #fff;
  min-height: 360px;
}

body .lt-fb-feed__fallback-icon {
  font-size: 56px;
  color: #1877f2;            /* Facebook blue, only used here */
  margin-bottom: 22px;
  opacity: 0.92;
}

body .lt-fb-feed__fallback h3 {
  margin: 0 0 14px;
  font-family: var(--lt-font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--lt-ink-display);
  text-transform: none;
}

body .lt-fb-feed__fallback p {
  margin: 0 0 28px;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--lt-ink-soft);
}

body .lt-fb-feed__fallback-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--lt-brand-green, #6ab75a);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  border: 0;
}

body .lt-fb-feed__fallback-cta:hover,
body .lt-fb-feed__fallback-cta:focus {
  background: var(--lt-brand-green-dark, #5aa44a);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(106, 183, 90, 0.25);
  color: #fff;
  text-decoration: none;
}

body .lt-fb-feed__fallback-cta .fa {
  font-size: 13px;
}

body .lt-fb-feed__iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

@media (max-width: 600px) {
  /* Section + heading: tighter padding so the card has more room */
  body .lt-fb-section {
    padding: 40px 12px;
    overflow-x: hidden;
  }
  body .lt-fb-section__head {
    margin-bottom: 20px;
  }
  body .lt-fb-section__head h2 {
    font-size: 22px;
  }
  body .lt-fb-section__head p {
    font-size: 14px;
    line-height: 1.45;
  }

  /* FB card: trimmer chrome + much shorter iframe so it fits the viewport */
  body .lt-fb-feed {
    max-width: 100%;
    width: 100%;
  }
  body .lt-fb-feed__header {
    padding: 11px 14px;
    gap: 10px;
  }
  body .lt-fb-feed__brand {
    font-size: 13px;
    gap: 8px;
    min-width: 0;          /* allow truncation if needed */
  }
  body .lt-fb-feed__brand .fa {
    font-size: 17px;
  }
  body .lt-fb-feed__visit {
    font-size: 11px;
    padding: 5px 10px;
    gap: 5px;
    flex-shrink: 0;        /* don't let it wrap awkwardly */
  }
  /* Iframe height clamps to the smaller of 540px or 65% of viewport
   * height. On a 700-tall phone that's ~455px, on 800 it's 520px,
   * and on 900+ it caps at 540px. The whole card now fits on screen
   * comfortably without needing an in-iframe scroll mid-paragraph. */
  body .lt-fb-feed__frame {
    height: min(540px, 65vh);
  }
  body .lt-fb-feed__iframe {
    max-width: 100%;
  }

  /* Fallback (personal-profile) card: tighten padding on phones */
  body .lt-fb-feed__fallback {
    padding: 44px 24px 40px;
    min-height: 280px;
  }
  body .lt-fb-feed__fallback-icon {
    font-size: 44px;
    margin-bottom: 16px;
  }
  body .lt-fb-feed__fallback h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  body .lt-fb-feed__fallback p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  body .lt-fb-feed__fallback-cta {
    padding: 11px 18px;
    font-size: 12px;
  }
}

/* --- Side-by-side social feeds (Facebook + YouTube) ---
 * Two-column responsive grid that hosts both feed cards.
 * Stacks on narrow viewports.
 */
body .lt-social-row {
  display: grid;
  /* Columns are capped at 500px each to match Facebook's Page Plugin
   * content-width hard limit (anything wider just leaves an empty strip
   * inside the iframe). On wide viewports we get a centered 2-column
   * layout (500px + 28px gap + 500px = 1028px); on narrower viewports
   * the grid auto-fits to one column. */
  grid-template-columns: repeat(auto-fit, minmax(440px, 500px));
  gap: 28px;
  align-items: start;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* Cards inside the row stretch to fill their (now capped) grid cell. */
body .lt-social-row .lt-fb-feed,
body .lt-social-row .lt-yt-feed {
  margin: 0;
  max-width: 100%;
  width: 100%;
}

/* --- YouTube card (mirrors FB card chrome, different iframe) --- */
body .lt-yt-feed {
  margin: 0 auto;
  max-width: 500px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body .lt-yt-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--lt-navy, #2d3b4f);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body .lt-yt-feed__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

/* The YouTube glyph keeps its platform red so it reads instantly,
 * even though the rest of the card chrome stays on-brand (navy). */
body .lt-yt-feed__brand .fa {
  font-size: 20px;
  color: #ff0033;
}

body .lt-yt-feed__visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

body .lt-yt-feed__visit:hover,
body .lt-yt-feed__visit:focus {
  background: var(--lt-brand-green, #6ab75a);
  border-color: var(--lt-brand-green, #6ab75a);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

body .lt-yt-feed__visit .fa {
  font-size: 11px;
}

/* Iframe frame: fixed 600px tall on desktop. Shorter than FB (which is
 * a feed scroll), but tall enough that the player + playlist nav both
 * have breathing room. The iframe fills the frame. */
/* YouTube player frame.
 *
 * We use a 16:9 aspect ratio rather than a fixed pixel height so the
 * embedded video fills the card edge-to-edge with no left/right black
 * bars (which is what the player would otherwise render to fit a 16:9
 * video into a square-ish container). On a ~500px-wide desktop card
 * this gives a ~281px-tall player; on a narrower mobile card the
 * player scales down proportionally.
 */
body .lt-yt-feed__frame {
  position: relative;
  background: #000;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

body .lt-yt-feed__iframe {
  display: block;
  border: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/* --- "More videos" thumbnail row ---
 * Sits below the player to make it obvious there's more content
 * on the channel beyond the currently-loaded video. Each item links
 * directly to the video on YouTube. */
body .lt-yt-feed__more {
  background: #fff;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

body .lt-yt-feed__more-label {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lt-ink-soft);
  font-weight: 500;
}

body .lt-yt-feed__more-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}

body .lt-yt-feed__more-list li {
  margin: 0;
}

body .lt-yt-feed__more-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 6px;
  margin: -6px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

body .lt-yt-feed__more-item:hover,
body .lt-yt-feed__more-item:focus {
  background: rgba(0,0,0,0.03);
  text-decoration: none;
  color: inherit;
}

body .lt-yt-feed__more-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 54px;
  background-color: #000;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

body .lt-yt-feed__more-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
  transition: background 0.15s ease;
}

body .lt-yt-feed__more-item:hover .lt-yt-feed__more-thumb::before {
  background: rgba(0,0,0,0.05);
}

body .lt-yt-feed__more-thumb .fa {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

body .lt-yt-feed__more-thumb--placeholder {
  background: linear-gradient(135deg, #1a1a1a, #333);
}

body .lt-yt-feed__more-title {
  font-size: 13px;
  line-height: 1.4;
  color: var(--lt-ink-display);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body .lt-yt-feed__more-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px dashed rgba(0,0,0,0.08);
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.18s ease;
}

body .lt-yt-feed__more-cta:hover,
body .lt-yt-feed__more-cta:focus {
  color: var(--lt-brand-green-dark, #5aa44a);
  gap: 12px;
  text-decoration: none;
}

body .lt-yt-feed__more-cta .fa {
  font-size: 11px;
}

@media (max-width: 600px) {
  /* Stack the two cards vertically. max-width:100% prevents the
   * grid from forcing horizontal overflow on narrow viewports. */
  body .lt-social-row {
    gap: 18px;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* YouTube card: full-width with a true 16:9 player.
   * aspect-ratio means the player scales perfectly to whatever
   * width the phone gives us — no fixed pixel guesswork. */
  body .lt-yt-feed {
    max-width: 100%;
    width: 100%;
  }
  body .lt-yt-feed__header {
    padding: 11px 14px;
    gap: 10px;
  }
  body .lt-yt-feed__brand {
    font-size: 13px;
    gap: 8px;
    min-width: 0;
  }
  body .lt-yt-feed__brand .fa {
    font-size: 17px;
  }
  body .lt-yt-feed__visit {
    font-size: 11px;
    padding: 5px 10px;
    gap: 5px;
    flex-shrink: 0;
  }
  body .lt-yt-feed__frame {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* "More videos" thumbnail strip — slightly tighter on phones */
  body .lt-yt-feed__more {
    padding: 14px 14px 16px;
  }
  body .lt-yt-feed__more-list {
    gap: 8px;
  }
  body .lt-yt-feed__more-item {
    grid-template-columns: 84px 1fr;
    gap: 10px;
  }
  body .lt-yt-feed__more-thumb {
    width: 84px;
    height: 47px;
  }
  body .lt-yt-feed__more-title {
    font-size: 12.5px;
  }
}

/* ============================================================
 * MARKET STATS PAGE  (template: page-market-stats.php)
 *
 * Replaces the legacy homepage "Click Here For Market Stats"
 * modal. Self-contained so removing this section + the template
 * fully retires the feature.
 * ============================================================ */

body .lt-stats-hero {
  position: relative;
  min-height: clamp(360px, 46vw, 560px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Soft dim so the title reads cleanly over the room photo without
 * turning the whole image dark. */
body .lt-stats-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 100%);
  z-index: 1;
}

/* Centered title band -- mimics the baked-in look of the old image
 * but as live text (selectable, scales with the type system). */
body .lt-stats-hero__title-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 18px clamp(16px, 5vw, 64px);
  background: rgba(0, 0, 0, 0.55);
}

body .lt-stats-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--lt-font-display);
  font-weight: 500;
  font-size: clamp(28px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

body .lt-stats-intro {
  padding: 64px 16px 8px;
  text-align: center;
}

body .lt-stats-intro__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lt-ink-mute);
}

body .lt-stats-intro h1 {
  margin: 0 auto 18px;
  max-width: 760px;
}

body .lt-stats-intro__lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--lt-ink-soft);
}

body .lt-stats-report {
  padding: 48px 16px 64px;
}

body .lt-stats-report__card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: clamp(16px, 3vw, 32px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

body .lt-stats-report__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

body .lt-stats-report__image.is-missing {
  min-height: 240px;
  background: repeating-linear-gradient(45deg, #f4f4f4 0 16px, #ececec 16px 32px);
  border: 1px dashed rgba(0,0,0,0.15);
}

body .lt-stats-report__caption {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--lt-ink-mute);
  text-align: center;
}

body .lt-stats-cta {
  padding: 64px 16px;
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

body .lt-stats-cta h2 {
  margin: 0 auto 12px;
  max-width: 720px;
}

body .lt-stats-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--lt-ink-soft);
  font-size: 17px;
}

body .lt-stats-cta__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0;
}

body .lt-stats-extra {
  padding: 48px 16px;
}

body .lt-stats-extra .container {
  max-width: 760px;
}

@media (max-width: 600px) {
  body .lt-stats-intro { padding: 48px 12px 4px; }
  body .lt-stats-report { padding: 32px 12px 48px; }
  body .lt-stats-cta { padding: 48px 12px; }
}

/* ============================================================
 * HOMEPAGE NAVIGATION TEASER
 *
 * Editorial 3-column grid that previews each top-level menu item.
 * Built dynamically from lt_get_homepage_teasers() in functions.php.
 *
 * Visual: soft #fafafa section, white cards, fine 1px hairline,
 * Oswald display titles, numbered eyebrows for editorial polish,
 * arrow CTA that slides 4px on hover, card lifts 2px on hover.
 * Responsive via auto-fit so layout collapses gracefully on mobile.
 * ============================================================ */

body .lt-teaser {
  padding: clamp(56px, 7vw, 96px) 16px;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body .lt-teaser__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

body .lt-teaser__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
}

body .lt-teaser__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 42px);
}

body .lt-teaser__lead {
  margin: 0;
  color: var(--lt-ink-mute);
  font-size: 17px;
  line-height: 1.55;
}

body .lt-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

body .lt-teaser__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
  isolation: isolate;
}

body .lt-teaser__card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--lt-brand-green, #6ab75a);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
  z-index: 1;
}

body .lt-teaser__card:hover,
body .lt-teaser__card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

body .lt-teaser__card:hover::before,
body .lt-teaser__card:focus-visible::before {
  transform: scaleX(1);
}

body .lt-teaser__num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--lt-ink-mute);
  font-weight: 500;
  font-feature-settings: "tnum";
}

body .lt-teaser__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(106, 183, 90, 0.10);
  color: var(--lt-brand-green, #6ab75a);
  margin-bottom: 18px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

body .lt-teaser__card:hover .lt-teaser__icon {
  background: var(--lt-brand-green, #6ab75a);
  color: #fff;
}

body .lt-teaser__icon .fa {
  font-size: 18px;
}

body .lt-teaser__card-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--lt-ink-display);
}

body .lt-teaser__desc {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--lt-ink-soft);
  flex: 1 1 auto;
}

body .lt-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lt-ink-display);
  font-weight: 500;
  transition: color 0.18s ease, gap 0.18s ease;
}

body .lt-teaser__cta .fa {
  font-size: 12px;
  transition: transform 0.18s ease;
}

body .lt-teaser__card:hover .lt-teaser__cta {
  color: var(--lt-brand-green, #6ab75a);
  gap: 12px;
}

body .lt-teaser__card:hover .lt-teaser__cta .fa {
  transform: translateX(2px);
}

@media (max-width: 600px) {
  body .lt-teaser { padding: 48px 12px; }
  body .lt-teaser__card { padding: 24px 22px 20px; }
}

/* ==========================================================================
   /careers/  — internal Limelight Realty careers page
   Replaces the external joinlimelight.ca microsite with the same content,
   rendered using design-system tokens so it stays consistent sitewide.
   ========================================================================== */

body .lt-careers-hero {
  background: var(--lt-navy, #2d3b4f);
  color: #fff;
  padding: 120px 16px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body .lt-careers-hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 1px;
  background: rgba(255,255,255,0.08);
}

body .lt-careers-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

body .lt-careers-hero__title {
  margin: 0 0 22px;
  font-family: var(--lt-font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}

body .lt-careers-hero__lead {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

body .lt-careers-hero__lead strong {
  color: #fff;
  font-weight: 600;
}

body .lt-careers-hero__cta .btn {
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body .lt-careers-hero__cta .btn .fa {
  margin-left: 10px;
  font-size: 12px;
}

/* --- 4-stat strip --- */
body .lt-careers-stats {
  background: #fff;
  padding: 80px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

body .lt-careers-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

body .lt-careers-stats__item {
  text-align: center;
  padding: 8px;
}

body .lt-careers-stats__item .fa {
  font-size: 38px;
  color: var(--lt-brand-green, #6ab75a);
  margin-bottom: 18px;
  display: inline-block;
}

body .lt-careers-stats__item h3 {
  font-family: var(--lt-font-display);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--lt-ink-display);
  letter-spacing: 0.02em;
  font-weight: 500;
  text-transform: none;
}

body .lt-careers-stats__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lt-ink-soft);
}

/* --- long-form pitch --- */
body .lt-careers-pitch {
  background: #f8f8f6;
  padding: 96px 16px;
}

body .lt-careers-pitch .container {
  max-width: 800px;
  margin: 0 auto;
}

body .lt-careers-pitch__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
}

body .lt-careers-pitch h2 {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  margin: 0 0 28px;
  color: var(--lt-ink-display);
  font-weight: 400;
  text-transform: none;
}

body .lt-careers-pitch p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lt-ink-soft);
  margin: 0 0 18px;
}

body .lt-careers-pitch p strong {
  color: var(--lt-ink-display);
  font-weight: 600;
}

/* --- advantages checklist --- */
body .lt-careers-advantages {
  background: #fff;
  padding: 96px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

body .lt-careers-advantages__head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

body .lt-careers-advantages__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
}

body .lt-careers-advantages h2 {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  margin: 0;
  color: var(--lt-ink-display);
  font-weight: 400;
  text-transform: none;
}

body .lt-careers-advantages__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px 32px;
}

body .lt-careers-advantages__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
  color: var(--lt-ink-display);
}

body .lt-careers-advantages__list li .fa {
  color: var(--lt-brand-green, #6ab75a);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* --- new-agent signup promo --- */
body .lt-careers-promo {
  background: #0e0e10;
  color: #fff;
  padding: 96px 16px;
  text-align: center;
}

body .lt-careers-promo__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
}

body .lt-careers-promo h2 {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  margin: 0 0 56px;
  color: #fff;
  font-weight: 400;
  text-transform: none;
}

body .lt-careers-promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

body .lt-careers-promo__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body .lt-careers-promo__item:hover {
  transform: translateY(-3px);
  border-color: var(--lt-brand-green, #6ab75a);
  background: rgba(106,183,90,0.06);
}

body .lt-careers-promo__item .fa {
  font-size: 32px;
  color: var(--lt-brand-green, #6ab75a);
  margin-bottom: 18px;
  display: inline-block;
}

body .lt-careers-promo__item h4 {
  font-family: var(--lt-font-display);
  font-size: 17px;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
}

body .lt-careers-promo__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* --- testimonials --- */
body .lt-careers-testimonials {
  background: #f8f8f6;
  padding: 96px 16px;
}

body .lt-careers-testimonials .container {
  max-width: 1180px;
}

body .lt-careers-testimonials__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
  text-align: center;
}

body .lt-careers-testimonials h2 {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  margin: 0 0 56px;
  color: var(--lt-ink-display);
  font-weight: 400;
  text-transform: none;
  text-align: center;
}

body .lt-careers-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

body .lt-careers-testimonial {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 32px;
  margin: 0;
  position: relative;
}

body .lt-careers-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 4px; left: 22px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--lt-brand-green, #6ab75a);
  line-height: 1;
  opacity: 0.4;
}

body .lt-careers-testimonial blockquote {
  border: 0;
  padding: 0;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--lt-ink-display);
  font-style: italic;
  position: relative;
  z-index: 1;
}

body .lt-careers-testimonial blockquote p {
  margin: 0;
}

body .lt-careers-testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

body .lt-careers-testimonial figcaption strong {
  font-family: var(--lt-font-display);
  font-size: 15px;
  color: var(--lt-ink-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

body .lt-careers-testimonial figcaption span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lt-ink-soft);
}

/* --- apply CTA --- */
body .lt-careers-apply {
  background: var(--lt-navy, #2d3b4f);
  color: #fff;
  padding: 96px 16px;
  text-align: center;
}

body .lt-careers-apply__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

body .lt-careers-apply h2 {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  margin: 0 0 24px;
  color: #fff;
  font-weight: 400;
  text-transform: none;
}

body .lt-careers-apply__lead {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

body .lt-careers-apply__address {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 32px;
}

body .lt-careers-apply__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

body .lt-careers-apply__buttons .btn {
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body .lt-careers-apply__buttons .btn-default {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

body .lt-careers-apply__buttons .btn-default:hover,
body .lt-careers-apply__buttons .btn-default:focus {
  background: #fff;
  color: var(--lt-navy, #2d3b4f);
  border-color: #fff;
}

body .lt-careers-apply__buttons .btn .fa { font-size: 12px; }
body .lt-careers-apply__buttons .btn-info .fa { margin-right: 8px; }
body .lt-careers-apply__buttons .btn-default .fa { margin-left: 8px; }

/* --- editor-supplied extra content (optional) --- */
body .lt-careers-extra {
  background: #fff;
  padding: 80px 16px;
}
body .lt-careers-extra .container {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  body .lt-careers-hero { padding: 80px 12px 64px; }
  body .lt-careers-stats,
  body .lt-careers-pitch,
  body .lt-careers-advantages,
  body .lt-careers-promo,
  body .lt-careers-testimonials,
  body .lt-careers-apply { padding-left: 12px; padding-right: 12px; padding-top: 64px; padding-bottom: 64px; }
  body .lt-careers-apply__buttons .btn { width: 100%; }
}

/* ==========================================================================
   Generic page sections (.lt-page-*)
   Reusable building blocks for editorial / service pages such as
   /about-me/, /buying/, /selling/. They mirror the careers page design
   language so all pages feel like one coherent site.
   ========================================================================== */

body .lt-page-hero {
  background: var(--lt-navy, #2d3b4f);
  color: #fff;
  padding: 120px 16px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body .lt-page-hero--image {
  background-size: cover;
  background-position: center;
}

body .lt-page-hero--image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,59,79,0.62) 0%, rgba(45,59,79,0.88) 100%);
}

body .lt-page-hero .container { position: relative; z-index: 1; }

body .lt-page-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

body .lt-page-hero__title {
  margin: 0 0 22px;
  font-family: var(--lt-font-display);
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: none;
}

body .lt-page-hero__lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* --- centered prose body --- */
body .lt-page-prose {
  background: #fff;
  padding: 96px 16px;
}

body .lt-page-prose .container {
  max-width: 760px;
  margin: 0 auto;
}

body .lt-page-prose__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
  text-align: center;
}

body .lt-page-prose__title {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  margin: 0 0 36px;
  color: var(--lt-ink-display);
  font-weight: 400;
  text-transform: none;
  text-align: center;
}

body .lt-page-prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lt-ink-soft);
  margin: 0 0 18px;
}

body .lt-page-prose p strong {
  color: var(--lt-ink-display);
  font-weight: 600;
}

body .lt-page-prose__signature {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

body .lt-page-prose__signature-name {
  font-family: var(--lt-font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--lt-ink-display);
  font-weight: 500;
  margin: 0;
}

body .lt-page-prose__signature-role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lt-ink-soft);
  margin: 4px 0 0;
}

/* --- feature grid (service cards with icon + checklist) --- */
body .lt-page-feature {
  background: #f8f8f6;
  padding: 96px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

body .lt-page-feature__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

body .lt-page-feature__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lt-brand-green, #6ab75a);
  font-weight: 500;
}

body .lt-page-feature__title {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  margin: 0;
  color: var(--lt-ink-display);
  font-weight: 400;
  text-transform: none;
}

body .lt-page-feature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

body .lt-page-feature__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 32px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}

body .lt-page-feature__card:hover {
  transform: translateY(-3px);
  border-color: var(--lt-brand-green, #6ab75a);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

body .lt-page-feature__card .fa {
  font-size: 28px;
  color: var(--lt-brand-green, #6ab75a);
  margin-bottom: 18px;
  display: inline-block;
  width: 28px;
}

body .lt-page-feature__card h3 {
  font-family: var(--lt-font-display);
  font-size: 19px;
  margin: 0 0 18px;
  color: var(--lt-ink-display);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

body .lt-page-feature__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body .lt-page-feature__card li {
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  line-height: 1.55;
  color: var(--lt-ink-soft);
}

body .lt-page-feature__card li:first-child { border-top: 0; padding-top: 0; }

body .lt-page-feature__card li strong {
  display: block;
  color: var(--lt-ink-display);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* --- credentials / badges row --- */
body .lt-page-badges {
  background: #fff;
  padding: 64px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

body .lt-page-badges__eyebrow {
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lt-ink-soft);
  font-weight: 500;
  text-align: center;
}

body .lt-page-badges__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px;
  max-width: 900px;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

body .lt-page-badges__row:hover {
  filter: grayscale(0);
  opacity: 1;
}

body .lt-page-badges__row img {
  max-height: 52px;
  height: auto;
  width: auto;
  max-width: 180px;
}

/* --- contact CTA band --- */
body .lt-page-cta {
  background: var(--lt-navy, #2d3b4f);
  color: #fff;
  padding: 96px 16px;
  text-align: center;
}

body .lt-page-cta__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

body .lt-page-cta__title {
  font-family: var(--lt-font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  margin: 0 0 22px;
  color: #fff;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.005em;
}

body .lt-page-cta__lead {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

body .lt-page-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

body .lt-page-cta__buttons .btn {
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body .lt-page-cta__buttons .btn-default {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

body .lt-page-cta__buttons .btn-default:hover,
body .lt-page-cta__buttons .btn-default:focus {
  background: #fff;
  color: var(--lt-navy, #2d3b4f);
  border-color: #fff;
}

body .lt-page-cta__buttons .btn .fa { font-size: 12px; }
body .lt-page-cta__buttons .btn-info .fa { margin-right: 8px; }
body .lt-page-cta__buttons .btn-default .fa { margin-left: 8px; }

@media (max-width: 600px) {
  body .lt-page-hero { padding: 80px 12px 64px; }
  body .lt-page-prose,
  body .lt-page-feature,
  body .lt-page-cta { padding: 64px 12px; }
  body .lt-page-badges { padding: 48px 12px; }
  body .lt-page-badges__row { gap: 32px; }
  body .lt-page-cta__buttons .btn { width: 100%; }
}

/* ============================================================
 * MARKET STATS — body content (the editable, master-source-of-truth
 * area below the hero). Renders the monthly graphics, quickstats
 * grids, and section headings.
 *
 * These styles live in the .lt-stats-extra wrapper that
 * page-market-stats.php emits; the editable HTML uses
 * .lt-stats-body as the inner wrapper so the styles apply
 * consistently whether the post is rendered locally (master) or
 * pulled in via switch_to_blog (subsites) / REST (alisaadat).
 * ============================================================ */

body .lt-stats-extra .lt-stats-body {
  max-width: 880px;
  margin: 0 auto;
}

body .lt-stats-extra .lt-stats-body__lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--lt-ink-display, #0f172a);
  margin: 0 0 48px;
  font-weight: 400;
}

body .lt-stats-extra .lt-stats-body__h {
  font-family: var(--lt-font-display) !important;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lt-ink-display, #0f172a);
  margin: 56px 0 20px;
  font-weight: 500;
}

body .lt-stats-extra .lt-stats-body__h::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--lt-brand-green, #6ab75a);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-4px);
}

body .lt-stats-extra .lt-stats-body__figure {
  margin: 0 0 24px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px -16px rgba(0,0,0,0.18);
  background: #fff;
}

body .lt-stats-extra .lt-stats-body__figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* Quickstats: textual mirror of the graphic so the data is
 * accessible (screen readers, search engines, copy/paste). Sits
 * directly under each figure as a clean grid of numbers. */
body .lt-stats-extra .lt-stats-body__quickstats {
  list-style: none;
  margin: 0 0 32px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #f7f8f9;
  border-radius: 10px;
  border-left: 3px solid var(--lt-brand-green, #6ab75a);
}

body .lt-stats-extra .lt-stats-body__quickstats--three {
  grid-template-columns: repeat(3, 1fr);
}

body .lt-stats-extra .lt-stats-body__quickstats--compact {
  grid-template-columns: repeat(4, 1fr);
}

body .lt-stats-extra .lt-stats-body__quickstats li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

body .lt-stats-extra .lt-stats-body__qs-num {
  display: block;
  font-family: var(--lt-font-display) !important;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--lt-brand-green, #6ab75a);
  line-height: 1.05;
}

body .lt-stats-extra .lt-stats-body__qs-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lt-ink-mute, #5b6470);
  font-weight: 500;
}

body .lt-stats-extra .lt-stats-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lt-ink, #1f2937);
  margin: 0 0 1.2em;
}

body .lt-stats-extra .lt-stats-body__contact {
  margin-top: 40px !important;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 19px;
  text-align: center;
}

body .lt-stats-extra .lt-stats-body__contact a {
  color: var(--lt-ink-display, #0f172a);
  text-decoration: none;
  border-bottom: 1px solid var(--lt-brand-green, #6ab75a);
  padding-bottom: 1px;
  transition: color 0.18s ease;
}

body .lt-stats-extra .lt-stats-body__contact a:hover,
body .lt-stats-extra .lt-stats-body__contact a:focus {
  color: var(--lt-brand-green-dark, #5aa44a);
  text-decoration: none;
}

@media (max-width: 720px) {
  body .lt-stats-extra .lt-stats-body__lead {
    font-size: 18px;
    margin-bottom: 36px;
  }
  body .lt-stats-extra .lt-stats-body__h {
    margin: 40px 0 16px;
  }
  body .lt-stats-extra .lt-stats-body__quickstats,
  body .lt-stats-extra .lt-stats-body__quickstats--compact {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
    gap: 18px;
  }
  body .lt-stats-extra .lt-stats-body__quickstats--three {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  body .lt-stats-extra .lt-stats-body__qs-num {
    font-size: 22px;
  }
  body .lt-stats-extra .lt-stats-body p {
    font-size: 16px;
  }
}

/* ============================================================
 * MARKET STATS — homepage CTA band
 *
 * Modern replacement for the legacy "Click Here For Market Stats"
 * Bootstrap modal that lived in homepage post content. Renders a
 * full-bleed dark band with the London-night skyline behind a
 * gradient overlay, an Oswald headline, a short pitch, and a green
 * pill button that deep-links to /market-stats/.
 *
 * The corresponding HTML lives in the homepage post_content of
 * each site (page 32 on master + alisaadat, page 19 on lukas/susan/
 * vijay). Updating this CSS once restyles the band on all 5 sites.
 * ============================================================ */

body .lt-mstats-cta {
  position: relative;
  padding: 96px 24px;
  text-align: center;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  margin: 0;
}

body .lt-mstats-cta__bg {
  position: absolute; inset: 0;
  background-image: url('/wp-content/themes/realEstate/assets/img/london-night.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}

body .lt-mstats-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.55), rgba(15,23,42,0.82));
  z-index: 1;
}

body .lt-mstats-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

body .lt-mstats-cta__eyebrow {
  font-size: 12px !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px !important;
  color: var(--lt-brand-green, #6ab75a) !important;
  font-weight: 500 !important;
}

body .lt-mstats-cta__title {
  font-family: var(--lt-font-display) !important;
  color: #fff !important;
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.02em;
  margin: 0 0 22px !important;
  text-transform: none;
}

body .lt-mstats-cta__lead {
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.82) !important;
  margin: 0 auto 32px !important;
  max-width: 600px;
}

body .lt-mstats-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--lt-brand-green, #6ab75a);
  color: #fff !important;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 500;
  transition: background 0.18s ease, gap 0.18s ease;
}

body .lt-mstats-cta__btn:hover,
body .lt-mstats-cta__btn:focus {
  background: var(--lt-brand-green-dark, #5aa44a);
  gap: 16px;
  color: #fff !important;
}

body .lt-mstats-cta__btn .fa {
  font-size: 12px;
}

@media (max-width: 600px) {
  body .lt-mstats-cta { padding: 72px 16px; }
  body .lt-mstats-cta__lead { font-size: 16px !important; }
  body .lt-mstats-cta__btn {
    padding: 14px 24px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }
}

/* ============================================================
 * HOMEPAGE LISTINGS — desktop vs mobile
 *
 * Desktop (>768px) sees the existing [rps-listings] paginated grid.
 * Mobile (<=768px) instead sees [lt-mobile-listings] which renders
 * a slider — either Limelight's office_id=286606 listings (when
 * inventory is healthy) or a London-area generic feed (when there
 * are 2 or fewer Limelight listings).
 *
 * The two wrappers live next to each other in the homepage post
 * content; CSS toggles which one is visible based on viewport.
 * ============================================================ */

body .lt-listings-mobile { display: none; }

@media (max-width: 768px) {
  body .lt-listings-desktop { display: none !important; }
  body .lt-listings-mobile  { display: block; }
}

/* ============================================================
 * REALTYPRESS LISTING SLIDER — sitewide letterbox fix
 *
 * The shipped Bootstrap-3 carousel uses position-based sliding
 * (`left` or `transform: translate3d`) to transition between
 * slides. With property photos at varying aspect ratios, this
 * causes "black bars" at top/bottom because each slide collapses
 * to its image's intrinsic height, and the .carousel-inner shows
 * its background between slides.
 *
 * Fix (applied to every [rps-listing-slider] sitewide):
 *   - lock .carousel-inner to a 4:3 aspect ratio so it never reflows
 *   - force every slide (.item) to fill 100%/100% of that box
 *   - force every <img> to object-fit: cover, filling the slide
 *   - paint the carousel-inner background with a neutral navy so
 *     any micro-flicker between slides is invisible against the
 *     dark section behind it
 *
 * We deliberately DO NOT touch Bootstrap's transition classes —
 * the native slide animation is fine once every slide is the same
 * size and the background never shows.
 *
 * The visual chrome (rounded corners, caption gradient, branded
 * controls/indicators) is layered on TOP for the mobile homepage
 * slider only, via the .lt-listings-mobile selector.
 * ============================================================ */

body .rps-listing-slider-shortcode .carousel.slide,
body .lt-listings-mobile .carousel.slide {
  position: relative;
}

body .rps-listing-slider-shortcode .carousel-inner {
  position: relative;
  width: 100%;
  /* 16:9 by default — desktop /properties/ "Featured Listings"
   * slider stays a sensible height (~50% of width) instead of
   * blowing out to ~75% with a tall 4:3 ratio. The mobile
   * homepage slider opts into a tighter 4:3 via .lt-listings-mobile
   * (see further down) for a more "card-like" focal feel. */
  aspect-ratio: 16 / 9;
  max-height: 520px;
  background: #2c3a4f;     /* matches the navy section behind so any flicker is invisible */
  overflow: hidden;
}

/* Force every slide (active or transitioning) to fill 100% of the
 * .carousel-inner box.
 *
 * IMPORTANT: RealtyPress's `shortcodes.css` ships with hardcoded
 * `min-height: 600px; max-height: 600px` (and 260-500px at smaller
 * breakpoints) directly on `.carousel-inner > .item`. Without
 * `!important` overrides these heights win, so the `.item` ends up
 * taller than the `.carousel-inner` aspect-ratio box and we get a
 * "black bar" (the navy section behind) showing below the photo.
 *
 * The `.bootstrap-realtypress .rps-listing-slider-shortcode` chain
 * matches the plugin's specificity; `!important` is needed because
 * the plugin uses `min-height`/`max-height` which can't be cleanly
 * cascade-overridden by a regular `height` declaration. */
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0;
}

/* During Bootstrap's slide animation, .next/.prev get
 * position:absolute with width:100%. We add height:100% to keep
 * them the same size as the active slide. */
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item.next,
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item.prev,
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item.active.left,
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item.active.right {
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Slide content (anchor) fills the .item box */
body .rps-listing-slider-shortcode .carousel-inner > .item .slide-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

/* Image fills the slide via object-fit cover — no letterbox */
body .rps-listing-slider-shortcode .carousel-inner > .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 !important;
}

/* Make sure the prev/next/indicator controls float above slides */
body .rps-listing-slider-shortcode .carousel-control,
body .rps-listing-slider-shortcode .carousel-indicators {
  z-index: 10;
}

/* ============================================================
 * MOBILE HOMEPAGE SLIDER — branded chrome on top of fade base
 *
 * Layers card chrome (rounded corners, shadow), the gradient
 * caption strip, and branded prev/next arrows on top of the
 * sitewide RealtyPress carousel-fade base above.
 * ============================================================ */

body .lt-listings-mobile {
  margin: 0 0 24px;
}

body .lt-listings-mobile .bootstrap-realtypress {
  padding: 0 12px;
}

body .lt-listings-mobile .rps-listing-slider-shortcode {
  margin: 0 auto;
  max-width: 600px;
}

body .lt-listings-mobile .carousel.slide {
  /* Transparent background so any small height delta between the
   * .carousel.slide wrapper and the .carousel-inner aspect-ratio
   * box doesn't show as a "black bar" at the bottom — the navy
   * section behind the slider takes over instead. */
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.25);
}

body .lt-listings-mobile .carousel-inner {
  border-radius: 14px;
  /* Neutral background matching the section behind — visible only
   * during the brief moment a slide image is still decoding. */
  background: #2c3a4f;
  /* Mobile homepage gets a tighter 4:3 ratio for a more "card"-like
   * focal feel; overrides the global 16:9 default. */
  aspect-ratio: 4 / 3;
  max-height: none;
}

/* Slide overlay — a subtle full-image gradient that ensures the
 * caption text remains legible regardless of the photo's content.
 * Painted on the slide's <a class="slide-link"> wrapper so it sits
 * above the photo but below the caption text.
 *
 * NOTE on selector specificity (applies to all rules below):
 * the RealtyPress plugin ships its own caption CSS with selectors
 * like `.bootstrap-realtypress .rps-listing-slider-shortcode
 * .carousel-inner .carousel-caption` (specificity 0,4,0). Our
 * mobile-homepage chrome must match-or-exceed that chain to win
 * the cascade — otherwise the plugin's right-aligned, top-pinned
 * pill overlay re-asserts itself and content gets clipped. */
/* No full-slide overlay — the photo stays fully visible. The
 * caption itself carries a localized translucent backdrop (see
 * `.carousel-caption` rule below) so the text is legible without
 * darkening the whole image. */
body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item > a.slide-link::after {
  display: none !important;
}

/* Caption: visually centered on the image (not pinned to the bottom).
 *
 * Layout: tight 3-line column, all centered both horizontally and
 * vertically over the slide:
 *   Row 1 — price (Oswald, brand green, 26px)
 *   Row 2 — address (white, 13px, single-line ellipsis)
 *   Row 3 — feature pills inline (beds | baths | sqft), separated
 *           by thin dividers so they read as one tight info line
 *
 * The caption uses absolute positioning + translateY(-50%) to
 * center on the slide's mid-line, with a soft text-shadow for
 * additional legibility against high-detail photos. The
 * `body .lt-listings-mobile .bootstrap-realtypress
 * .rps-listing-slider-shortcode .carousel-inner` chain is required
 * to beat RealtyPress's shortcodes.css default caption styling. */
/* Caption: pill-shaped backdrop centered on the slide.
 * `left: 50%; top: 50%; translate(-50%, -50%)` shrinks the caption
 * to its content width and centers it. The
 * `max-width: calc(100% - 110px)` leaves ~55px of clear space on
 * each side so the prev/next chevron buttons never overlap the
 * caption text.
 *
 * Applied SITE-WIDE (not just `.lt-listings-mobile`) so the
 * /properties/ "Our Featured Listings" slider gets the same
 * centered pill treatment. */
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption {
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 14px 22px;
  width: auto;
  max-width: calc(100% - 110px);
  height: auto;
  text-align: center;
  text-shadow: none;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  color: #fff;
  z-index: 2;
  display: block;
  box-sizing: border-box;
}

body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .slider-price {
  display: block;
  font-family: var(--lt-font-display) !important;
  font-size: 26px !important;
  font-weight: 500;
  line-height: 1.05;
  color: var(--lt-brand-green, #6ab75a) !important;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}

body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption p {
  display: block;
  font-size: 12.5px !important;
  line-height: 1.25 !important;
  color: rgba(255,255,255,0.92) !important;
  margin: 0 0 8px 0 !important;
  padding: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  /* single-line ellipsis — keep caption a fixed compact height */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}

/* Feature row: beds / baths / sqft as inline pills with thin
 * vertical dividers between them. Centered as a horizontal row;
 * wraps to a second line as a safety on tiny screens. */
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .clearfix {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  margin: 2px 0 0 0;
  padding: 0;
  width: 100%;
}

/* Override RealtyPress's default `.rps-result-feature-label-sm`
 * which is `display: block; float: right` with a blue pill
 * background — we want plain text, inline, no chrome. */
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .rps-result-feature-label-sm {
  display: inline-block;
  float: none;
  font-size: 10.5px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 0;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  text-shadow: none;
}

/* Vertical divider between feature pills (skipped on the first one) */
body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .rps-result-feature-label-sm + .rps-result-feature-label-sm::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.35);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Indicator dots — small row tucked at bottom of slide, in the
 * 24px space we reserved with caption padding-bottom. */
body .lt-listings-mobile .carousel-indicators {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 15;
}

body .lt-listings-mobile .carousel-indicators li {
  width: 6px;
  height: 6px;
  margin: 0;
  border: 0;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  text-indent: -999em;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

body .lt-listings-mobile .carousel-indicators li.active {
  background: var(--lt-brand-green, #6ab75a);
  transform: scale(1.25);
}

/* Prev / next chevrons — circular buttons dead-centered vertically
 * on the slide. Bootstrap's default `.carousel-control` ships with
 * `top: 0; bottom: 0; width: 15%` which stretches the control full-
 * height; we have to explicitly null `bottom` and force an explicit
 * height so the chevron is a fixed 36×36 pill. The
 * `.bootstrap-realtypress .rps-listing-slider-shortcode` qualifier
 * is needed to beat the plugin's own carousel-control styling. */
body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control {
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  margin: 0;
  background-color: rgba(0,0,0,0.42);
  background-image: none;
  border: 0;
  border-radius: 50%;
  text-shadow: none;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
  filter: none;
  z-index: 5;
}

body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control.left  { left: 10px; right: auto; background-image: none; }
body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control.right { right: 10px; left: auto;  background-image: none; }

body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control:hover,
body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control:focus {
  background-color: var(--lt-brand-green, #6ab75a);
  text-decoration: none;
  color: #fff;
}

body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control::after {
  font-family: "FontAwesome" !important;
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control.left::after  { content: "\f053"; margin-right: 2px; }  /* fa-chevron-left  */
body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control.right::after { content: "\f054"; margin-left: 2px; }  /* fa-chevron-right */

/* Hide RealtyPress's own indicator wrap (we use ours above) */
body .lt-listings-mobile .carousel-indicators-wrap { display: none !important; }

@media (max-width: 420px) {
  body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption {
    padding: 12px 16px;
    /* Even tighter on phones — leave 60px (=2x ~30px chevrons) per side */
    max-width: calc(100% - 130px);
  }
  body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .slider-price {
    font-size: 22px !important;
  }
  body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption p {
    font-size: 12px !important;
  }
  body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .rps-result-feature-label-sm {
    font-size: 10px !important;
    letter-spacing: 0.1em;
  }
  body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .clearfix {
    gap: 4px 8px;
  }
  body .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption
    .rps-result-feature-label-sm + .rps-result-feature-label-sm::before {
    margin-right: 8px;
    height: 8px;
  }
  body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control {
    width: 32px;
    height: 32px;
  }
  body .lt-listings-mobile .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-control::after {
    font-size: 12px;
  }
}
