/* =====================================================================
   Call Girls Udaipur  —  site.css
   Theme: Crimson + Charcoal (citydesires-style)
   Sections:
   1.  Tokens / CSS Variables
   2.  Reset + base typography
   3.  Layout helpers (.wrap, .stack, .grid, etc.)
   4.  Buttons
   5.  Top bar + sticky header
   6.  Hero with background image + inline search bar
   7.  Sticky filter chip strip
   8.  Listings grid (4-col responsive, tall portrait cards)
   9.  Listing card content (name + age, hover, badge)
   10. SEO prose section
   11. Detail modal (gallery slider + sticky CTA)
   12. Footer
   13. Account + auth pages
   14. Forms, notices, tables, misc
   15. Responsive breakpoints
   ===================================================================== */

/* 1. Tokens ---------------------------------------------------------- */
:root {
    --c-primary: #c8102E;
    --c-accent:  #9a0c23;
    --c-bg:      #f5f5f8;

    --crimson:        var(--c-primary);
    --crimson-dark:   var(--c-accent);
    --crimson-light:  #e63950;
    --crimson-tint:   #fbe6ea;

    --ink:            #0f0f10;
    --charcoal:       #1a1a1d;
    --charcoal-2:     #232327;
    --charcoal-3:     #2c2c31;

    --paper:          #ffffff;
    --paper-2:        #f7f7f9;
    --paper-3:        #ededf0;

    --line:           rgba(0, 0, 0, .08);
    --line-strong:    rgba(0, 0, 0, .16);

    --muted:          #6b6b73;
    --muted-2:        #9a9aa3;

    --gold:           #e9b949;

    --radius:         14px;
    --radius-sm:      10px;
    --radius-lg:      22px;

    --shadow-sm:      0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow:         0 8px 24px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .06);
    --shadow-lg:      0 20px 60px rgba(0, 0, 0, .22), 0 6px 16px rgba(0, 0, 0, .08);
    --shadow-crimson: 0 10px 30px rgba(200, 16, 46, .28);

    --maxw:           1280px;

    --ff-sans:        "Inter", "Segoe UI", "Helvetica Neue", "Noto Sans", -apple-system, system-ui, sans-serif;
    --ff-display:     "Playfair Display", "Georgia", "Times New Roman", serif;

    --header-h:      72px;
    --topbar-h:      36px;
}
/* Also expose CSS variables for the legacy admin theme overrides */
:root {
    --font: var(--ff-display);
    --ui:   var(--ff-sans);
    --c-ink: var(--ink);
    --c-muted: var(--muted);
    --c-line: var(--line);
    --c-soft: var(--paper-2);
}

/* 2. Reset + base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: var(--ff-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--crimson); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--crimson-dark); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 .5em;
    color: var(--ink);
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: .9rem; }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25rem; }
small { color: var(--muted); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
code { background: var(--paper-3); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
strong { color: var(--ink); }

/* 3. Layout helpers ------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 24px;
}
.wrap-narrow { max-width: 880px; }
.section { padding: 60px 0; }
.section-tight { padding: 36px 0; }
.stack { display: flex; flex-direction: column; gap: 14px; }
.stack > * + * { margin-top: 0; }
.stack-sm > * + * { margin-top: 8px; }
.stack-lg > * + * { margin-top: 22px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.flex { display: flex; gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

.muted { color: var(--muted); }
.muted-2 { color: var(--muted-2); }
.center { text-align: center; }
.uppercase { text-transform: uppercase; letter-spacing: .12em; font-size: .8em; }
.text-crimson { color: var(--crimson); }
.text-white { color: #fff; }

/* 4. Buttons -------------------------------------------------------- */
.btn {
    --btn-bg: var(--crimson);
    --btn-fg: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    border: 0;
    background: var(--btn-bg);
    color: var(--btn-fg) !important;
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    box-shadow: var(--shadow-crimson);
    -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); background: var(--crimson-dark); color: #fff !important; }
.btn:active { transform: translateY(0); }
.btn.ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: none;
    backdrop-filter: blur(8px);
}
.btn.ghost:hover { background: rgba(255, 255, 255, .22); color: #fff !important; }
.btn.outline {
    background: #fff;
    color: var(--ink) !important;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
}
.btn.outline:hover { background: var(--paper-2); color: var(--ink) !important; }
.btn.lg { padding: 16px 32px; font-size: 1.05rem; }
.btn.sm { padding: 8px 14px; font-size: .85rem; border-radius: 8px; }
.btn.block { width: 100%; }
.btn.primary { background: var(--crimson); color: #fff !important; }
.btn.success { background: #0f9d58; box-shadow: 0 10px 30px rgba(15, 157, 88, .25); color: #fff !important; }
.btn.wa { background: #25d366; color: #033d22 !important; box-shadow: 0 10px 30px rgba(37, 211, 102, .25); }
.btn.wa:hover { background: #1ebe55; color: #033d22 !important; }
.btn-dark { background: var(--charcoal); box-shadow: var(--shadow); color: #fff !important; }
.btn-dark:hover { background: #000; color: #fff !important; }

/* 5. Top bar + sticky header --------------------------------------- */
.topbar {
    background: var(--ink);
    color: #cfcfd4;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar .wrap,
.topbar-inner {
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-left,
.topbar-inner > span:first-child { display: flex; align-items: center; gap: 18px; }
.topbar-left .dot,
.topbar-inner .dot { color: var(--crimson); }
.topbar-right,
.topbar-inner .clock { display: flex; align-items: center; gap: 18px; }
.topbar-right a,
.topbar-inner .clock { color: #cfcfd4; }
.topbar-right a:hover { color: #fff; }
.topbar-right .top-phone,
.topbar-inner .clock { color: #fff; font-weight: 500; white-space: nowrap; opacity: .92; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(15, 15, 16, .82);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .18s ease;
}
.site-header.is-scrolled { background: rgba(15, 15, 16, .95); }
.site-header .wrap,
.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}
.brand img.logo,
.brand-logo { height: 40px; width: auto; }
.brand .brand-text {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1;
}
.brand .brand-text .accent,
.brand .brand-text span { color: var(--crimson-light); }
.brand .brand-tag {
    font-size: .65rem;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-top: 4px;
    display: block;
    font-family: var(--ff-sans);
}

/* nav */
.primary-nav,
.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; flex-wrap: wrap; }
.primary-nav a,
.main-nav a {
    color: rgba(255, 255, 255, .82);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 500;
    transition: background .18s ease, color .18s ease;
    text-decoration: none;
}
.primary-nav a:hover,
.primary-nav a.active,
.main-nav a:hover,
.main-nav a.active { color: #fff !important; background: rgba(255, 255, 255, .08); }

.header-user,
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-user .btn,
.header-actions .btn { padding: 10px 18px; font-size: .88rem; }
.header-user a:not(.btn),
.header-actions a:not(.btn) { color: rgba(255, 255, 255, .82); font-size: .9rem; }
.header-user a:not(.btn):hover,
.header-actions a:not(.btn):hover { color: #fff; }

.nav-toggle,
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.nav-toggle { display: none; }
.nav-toggle .bars { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 20px; }
.nav-toggle .bars span { display: block; height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: transform .25s ease, opacity .18s ease; }
.nav-toggle.active .bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .bars span:nth-child(2) { opacity: 0; }
.nav-toggle.active .bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer backdrop + close button */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, .55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .22s ease;
    z-index: 58;
}
.nav-backdrop.show { display: block; opacity: 1; }
.nav-close {
    display: none;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* 6. Hero with background image ----------------------------------- */
.hero {
    position: relative;
    background:
        linear-gradient(180deg, rgba(15, 15, 16, .65) 0%, rgba(15, 15, 16, .55) 40%, rgba(15, 15, 16, .92) 100%),
        var(--charcoal);
    color: #fff;
    padding: 90px 0 70px;
    overflow: hidden;
}
.hero.has-bg {
    background-color: var(--charcoal);
    background-image: linear-gradient(180deg, rgba(15, 15, 16, .52) 0%, rgba(15, 15, 16, .30) 40%, rgba(15, 15, 16, .78) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero.no-bg,
.hero-city {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(200, 16, 46, .25), transparent 60%);
    pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; max-width: 940px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, .15);
    border: 1px solid rgba(200, 16, 46, .4);
    color: #ffb6c1;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
}
.hero h1 {
    color: #fff;
    margin-bottom: .35em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}
.hero h1 .accent,
.hero h1 strong { color: var(--crimson-light); }
.hero .sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: .8em;
    max-width: 640px;
}
.hero .lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 28px;
    max-width: 580px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Hero search bar */
.hero-search {
    margin-top: 30px;
    background: rgba(255, 255, 255, .97);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 8px;
    max-width: 940px;
}
.hero-search .field,
.filter-bar { display: flex; flex-direction: column; gap: 2px; padding: 4px 10px; border-radius: var(--radius-sm); background: var(--paper-2); border: 1px solid var(--line); }
.hero-search .field label {
    font-size: .68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    padding-left: 2px;
}
.hero-search .field input,
.hero-search .field select,
.filter-bar input,
.filter-bar select {
    border: 0;
    background: transparent;
    font-size: .92rem;
    font-family: var(--ff-sans);
    color: var(--ink);
    padding: 4px 0;
    outline: none;
    width: 100%;
}
.hero-search .btn { padding-inline: 24px; }

/* Stats strip under hero */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-stat strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.9rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* 7. Sticky filter chip strip -------------------------------------- */
.filter-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: var(--header-h);
    z-index: 40;
    box-shadow: var(--shadow-sm);
}
.filter-strip .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 56px;
}
.filter-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
}
.filter-chips::-webkit-scrollbar { display: none; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all .18s ease;
    text-decoration: none;
}
.chip:hover { background: var(--paper-3); color: var(--ink); }
.chip.active {
    background: var(--crimson);
    color: #fff !important;
    border-color: var(--crimson);
}
.filter-meta {
    color: var(--muted);
    font-size: .85rem;
    white-space: nowrap;
}
.filter-meta strong { color: var(--ink); font-weight: 600; }

/* 8. Listings grid (4-col responsive, tall portrait) -------------- */
.listings-section { padding: 40px 0 60px; }
.listings-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.listings-head h2,
.listings-head h3 { margin: 0; font-size: 1.6rem; }
.listings-head .sort-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: var(--muted);
}
.listings-head .sort-bar select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    background: #fff;
    font-size: .88rem;
    color: var(--ink);
}

.listings,
.listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.listings-grid .empty,
.listings .empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    padding: 60px 30px;
    text-align: center;
    color: var(--muted);
}
.listings-grid .empty h3,
.listings .empty h3 { color: var(--ink); margin-bottom: 8px; }

/* 9. Listing card (compact popup-friendly) ------------------------- */
.listing-card,
.listing-row {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .26s ease, box-shadow .26s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
}
.listing-card:hover,
.listing-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.listing-card .thumb {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--paper-3);
}
.listing-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .26s ease;
}
.listing-card:hover .thumb img { transform: scale(1.05); }
.listing-card .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 15, 16, .82);
    color: #fff;
    backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
.listing-card .badge.verified {
    background: var(--crimson);
    box-shadow: 0 4px 12px rgba(200, 16, 46, .35);
}
.listing-card .fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 15, 16, .55);
    backdrop-filter: blur(6px);
    border: 0;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .18s ease;
}
.listing-card .fav-btn:hover { background: rgba(15, 15, 16, .85); }
.listing-card .fav-btn svg { width: 18px; height: 18px; }
.listing-card .fav-btn.is-fav svg { fill: var(--crimson); color: var(--crimson); }

.listing-card .body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.listing-card .name-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: space-between;
}
.listing-card .name,
.listing-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}
.listing-card .age {
    font-size: .82rem;
    color: var(--muted);
    background: var(--paper-2);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 500;
}
.listing-card .listing-excerpt,
.listing-excerpt {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.listing-card .city-line {
    font-size: .82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}
.listing-card .city-line svg { width: 13px; height: 13px; }
.listing-card .meta-tags,
.listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 4px 0 0;
    font-size: .82rem;
    color: var(--crimson);
    font-weight: 600;
}
.listing-card .meta-tags .tag {
    font-size: .7rem;
    color: var(--crimson);
    background: var(--crimson-tint);
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 500;
    text-transform: capitalize;
}
.listing-card .view-cta {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--crimson);
    font-size: .82rem;
    font-weight: 600;
}
.listing-card .view-cta svg {
    width: 16px;
    height: 16px;
    transition: transform .18s ease;
}
.listing-card:hover .view-cta svg { transform: translateX(3px); }

/* Legacy listing-row (used in older view templates) */
.listing-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
}
.listing-row .listing-thumb { width: 80px; height: 100px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--paper-3); }
.listing-row .listing-main { flex: 1; min-width: 0; }
.listing-row .listing-name { font-size: 1.1rem; margin: 0 0 4px; }
.listing-row .listing-meta { gap: 8px 14px; font-size: .82rem; color: var(--crimson); }
.listing-row .more-btn {
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    color: var(--crimson);
    padding: 0 4px;
    line-height: 1;
    font-weight: 700;
}

/* 10. SEO prose section -------------------------------------------- */
.prose,
.prose-section,
.page-body {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid var(--line);
    font-size: 1rem;
    line-height: 1.75;
    color: #2a2a30;
}
.prose-section .wrap,
.prose { max-width: 940px; }
.prose-section h3,
.prose h2, .prose h3, .prose h4, .prose h5, .prose h6,
.page-body h2, .page-body h3, .page-body h4, .page-body h5, .page-body h6 {
    font-size: 1.7rem;
    margin-bottom: .6em;
    position: relative;
    padding-left: 16px;
    color: var(--crimson);
}
.prose-section h3::before,
.prose h2::before, .prose h3::before, .prose h4::before, .prose h5::before, .prose h6::before,
.page-body h2::before, .page-body h3::before, .page-body h4::before, .page-body h5::before, .page-body h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: .35em;
    bottom: .35em;
    width: 4px;
    background: var(--crimson);
    border-radius: 4px;
}
.prose-section .big-content,
.prose-section .small-content,
.prose .big-content, .prose .small-content,
.page-body .big-content, .page-body .small-content,
.page-content {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #38383f;
    margin-bottom: 1.4em;
}
.prose-section .big-content p,
.prose-section .small-content p,
.prose .big-content p,
.prose .small-content p,
.page-body p { margin-bottom: .9em; }
.prose-section a,
.prose a,
.page-body a { font-weight: 500; }
.prose strong,
.page-body strong { color: var(--ink); }

.notice,
.notice-strip,
.flash {
    background: var(--crimson-tint);
    border-left: 4px solid var(--crimson);
    padding: 14px 20px;
    border-radius: 8px;
    margin: 24px 0;
    color: #6b1822;
    font-size: .92rem;
}
.flash.success { background: #e3f6ed; border-left-color: #0f9d58; color: #0f7a42; }
.flash.error { background: #fdebee; border-left-color: #c8102E; color: #a30f25; }

/* 11. Detail modal (gallery slider + sticky CTA) ------------------ */
.modal[hidden] { display: none; }

/* The overlay container — fixed, full screen, scrollable */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: flex-start center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 16px;
}
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, .82);
    backdrop-filter: blur(6px);
    z-index: 1;
}

/* The white card inside the overlay */
.modal-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 1080px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    margin: auto;
    z-index: 2;
    animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 15, 16, .55);
    backdrop-filter: blur(6px);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    cursor: pointer;
    z-index: 5;
    font-weight: 600;
    font-size: .88rem;
    transition: background .18s ease;
}
.modal-close:hover { background: var(--crimson); }

.modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}
.modal-gallery {
    background: var(--ink);
    position: relative;
    display: flex;
    flex-direction: column;
}
.modal-gallery .main-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000;
}
.modal-gallery .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-photos {
    display: flex;
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.modal-photos img {
    width: 64px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .55;
    transition: opacity .18s ease;
    flex-shrink: 0;
}
.modal-photos img:hover { opacity: .85; }
.modal-photos img.is-active { opacity: 1; outline: 2px solid var(--crimson); }

.modal-info {
    padding: 28px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal-info .badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-info .pill {
    background: var(--crimson-tint);
    color: var(--crimson);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: capitalize;
}
.modal-info h2 {
    font-size: 1.9rem;
    margin: 0;
}
.modal-info .sub-line {
    color: var(--muted);
    font-size: .95rem;
    margin-top: -8px;
}
.modal-info .desc,
#modal-desc {
    color: #2a2a30;
    line-height: 1.7;
    font-size: .95rem;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 6px;
    white-space: pre-wrap;
    word-break: break-word;
}
.modal-info .detail-grid,
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
    margin: 4px 0 0;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.detail-grid {
    grid-template-columns: 140px 1fr;
    gap: 8px 12px;
    margin: 16px 0;
}
.modal-info .detail-grid dt,
.detail-grid dt {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
.modal-info .detail-grid dd,
.detail-grid dd {
    margin: 0;
    font-size: .95rem;
    color: var(--ink);
    font-weight: 500;
}

.modal-cta,
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}
.modal-cta .btn,
.contact-row .btn { padding: 14px 16px; font-size: .92rem; }

.modal-sticky-cta {
    display: none;
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
}

/* 12. Footer ------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: #c0c0c6;
    padding: 60px 0 0;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand .brand-text { color: #fff; }
.footer-brand p,
.site-footer p {
    color: var(--muted-2);
    font-size: .9rem;
    line-height: 1.65;
    margin: 14px 0 18px;
    max-width: 320px;
}
.footer-brand .social { display: flex; gap: 10px; }
.footer-brand .social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: #c0c0c6;
    display: grid;
    place-items: center;
    transition: all .18s ease;
}
.footer-brand .social a:hover { background: var(--crimson); color: #fff; }
.footer-brand .social svg { width: 18px; height: 18px; }

.footer-col,
.site-footer > div > div { flex-direction: column; gap: 10px; }
.site-footer h4,
.footer-col h4,
.site-footer strong {
    color: #fff;
    font-family: var(--ff-sans);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-nav,
.site-footer nav { display: flex; flex-direction: column; gap: 10px; }
.footer-col a,
.footer-nav a,
.site-footer a { color: #c0c0c6; font-size: .92rem; transition: color .18s ease; }
.footer-col a:hover,
.footer-nav a:hover,
.site-footer a:hover { color: var(--crimson-light); }

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 18px;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .85rem;
    color: var(--muted-2);
}
.copyright .links { display: flex; gap: 18px; }
.copyright .links a { color: var(--muted-2); }
.copyright .links a:hover { color: #fff; }

/* 13. Account + auth pages ---------------------------------------- */
.account,
.account-section { padding: 40px 0 60px; min-height: 60vh; }
.account-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.account-head h1 { font-size: 1.9rem; margin: 0; }
.account-nav {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}
.account-nav a {
    padding: 12px 20px;
    color: var(--muted);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all .18s ease;
}
.account-nav a.is-on { color: var(--crimson); border-bottom-color: var(--crimson); }
.account-nav a:hover { color: var(--ink); }

.account-grid,
.account .listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.account-card,
.account .listing-row {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    display: flex;
    gap: 14px;
    align-items: center;
}
.account-card .thumb,
.account .listing-thumb {
    width: 80px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--paper-3);
    flex-shrink: 0;
}
.account-card .thumb img,
.account .listing-thumb img { width: 100%; height: 100%; object-fit: cover; }
.account-card .info,
.account .listing-main { flex: 1; min-width: 0; }
.account-card .info h3,
.account .listing-name {
    font-size: 1.05rem;
    margin: 0 0 4px;
    font-family: var(--ff-display);
}
.account-card .info .status,
.row-actions {
    display: inline-flex;
    font-size: .72rem;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--paper-2);
    color: var(--muted);
    font-weight: 600;
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
}
.account-card .info .status.published,
.row-actions { background: #e3f6ed; color: #0f7a42; }
.account-card .info .status.pending { background: #fff5e0; color: #b8860b; }
.account-card .info .actions,
.row-actions { margin-top: 8px; display: flex; gap: 10px; font-size: .85rem; background: transparent; padding: 0; }

/* Auth card */
.auth-card,
.form-card {
    max-width: 560px;
    padding: 8px 0 48px;
    background: transparent;
}
/* Readability fix: auth pages sit on a dark wrap, so the card itself must be
   a solid white card — otherwise the black heading/labels are invisible. */
.auth-card {
    width: 100%;
    padding: 34px 32px 26px;
    background: #fff;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--crimson);
    box-shadow: var(--shadow-lg);
    color: var(--ink);
}
.auth-card h1 { color: var(--ink); }
.auth-card .muted,
.auth-card small { color: var(--muted); }
.auth-card-wrap {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(15, 15, 16, .85), rgba(15, 15, 16, .95)), var(--charcoal);
}

/* Admin login (auth layout) */
.login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background:
        radial-gradient(circle at 20% 30%, rgba(200, 16, 46, .25), transparent 50%),
        linear-gradient(135deg, var(--ink), var(--charcoal));
}
.login-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px 36px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--crimson);
}
.login-brand {
    text-align: center;
    margin-bottom: 24px;
}
.login-brand img {
    height: 56px;
    margin: 0 auto 12px;
}
.login-brand p,
.login-brand .muted { color: var(--muted); font-size: .9rem; margin: 0; }
.login-back { text-align: center; margin: 18px 0 0; font-size: .88rem; }

/* 14. Forms, notices, tables -------------------------------------- */
label {
    display: block;
    font-size: .88rem;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 6px;
}
input, select, textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font-family: var(--ff-sans);
    font-size: .95rem;
    transition: border .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--crimson);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, .12);
}
input[type="checkbox"] { width: auto; margin-right: 8px; }
input[type="color"] { height: 44px; padding: 4px; cursor: pointer; }
label input, label select, label textarea { margin-top: 6px; }
label:has(input[type="checkbox"]),
label.checkbox { display: flex; align-items: center; font-weight: 500; }

.form-card,
.form-wide {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    max-width: 720px;
}
.form-wide { max-width: 860px; }

.thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.thumbs img, .thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

/* Notice + flash variants */
.notice.success { background: #e3f6ed; border-color: #b8e6cf; color: #0f7a42; }
.notice.error { background: #fdebee; border-color: #f6c2cb; color: #a30f25; }
.notice.info { background: #e6f1ff; border-color: #b9d6ff; color: #1456a8; }

/* Tables */
table.widefat {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    font-size: .92rem;
}
table.widefat th,
table.widefat td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
table.widefat th {
    background: var(--paper-2);
    font-weight: 600;
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
table.widefat tbody tr:hover { background: var(--paper-2); }
table.widefat tbody tr:last-child td { border-bottom: 0; }
table.widefat input[type="checkbox"] { margin: 0; }

.bulk-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.bulk-bar select { width: auto; min-width: 180px; }

/* 15. Responsive --------------------------------------------------- */
@media (max-width: 1100px) {
    .listings, .listings-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-search { grid-template-columns: 1fr 1fr; }
    .hero-search .btn { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
    .nav-toggle, .menu-toggle { display: inline-flex; }

    /* Header order on small screens: brand | user links | hamburger */
    .header-inner { gap: 12px; }
    .brand { order: 1; }
    .header-user { order: 2; margin-left: auto; gap: 8px; }
    .nav-toggle { order: 3; }
    .brand .brand-text { font-size: 1.12rem; }
    .header-user .btn { padding: 9px 12px; font-size: .8rem; }
    .header-user a:not(.btn) { font-size: .82rem; }

    /* Off-canvas right drawer — fully hidden (no overflow, no click blocking) */
    .primary-nav, .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        bottom: 0;
        width: min(84vw, 320px);
        max-width: 84vw;
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        padding: 68px 16px 24px;
        gap: 4px;
        transform: translateX(110%);
        transform-origin: right center;
        transition: transform .28s ease, visibility .28s;
        height: 100vh;
        height: 100dvh;
        overflow-y: auto;
        overflow-x: hidden;
        visibility: hidden;
        z-index: 100;
        border-left: 1px solid rgba(255, 255, 255, .08);
        box-shadow: -18px 0 50px rgba(0, 0, 0, .5);
    }
    .primary-nav.open, .main-nav.is-open { transform: translateX(0); display: flex; visibility: visible; }
    .primary-nav a, .main-nav a { padding: 14px 16px; font-size: 1rem; }
    .nav-close { display: inline-flex; }

    /* Date-time clock stays visible on tablets & phones */
    .topbar-right, .topbar-inner .clock { display: flex; }

    .modal-grid { grid-template-columns: 1fr; }
    .modal-sticky-cta { display: grid; }
    .modal-cta, .contact-row { display: none; }
    .modal-info { padding: 22px 20px 18px; }

    .listings, .listings-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 60px 0 50px; }
    .hero-stats { gap: 22px; }
    .hero-stat strong { font-size: 1.5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-wide, .form-card { padding: 22px; }
}
@media (max-width: 540px) {
    .listings, .listings-grid { grid-template-columns: 1fr; }
    .hero-search { grid-template-columns: 1fr; padding: 8px; gap: 6px; }
    .hero-search .btn { padding: 14px; }
    .topbar .wrap { padding-inline: 14px; }
    .topbar .wrap, .topbar-inner { height: auto; min-height: var(--topbar-h); flex-wrap: wrap; padding-block: 4px; row-gap: 2px; }
    .topbar-left, .topbar-inner > span:first-child { font-size: .74rem; }
    .topbar-right, .topbar-inner .clock { font-size: .74rem; gap: 6px; white-space: nowrap; }
    .auth-card, .login-card { padding: 28px 22px; }
    .modal-panel, .modal { border-radius: 16px 16px 0 0; }
    .modal { padding: 0; align-items: flex-end; }
    .modal-gallery .main-img { aspect-ratio: 4 / 5; }
}

/* Print-friendly */
@media print {
    .site-header, .site-footer, .filter-strip, .hero-actions, .nav-toggle, .menu-toggle { display: none; }
    body { background: #fff; }
}

/* =====================================================================
   Prose content container — proper max-width + padding for readability
   ===================================================================== */
.prose-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4,
.prose-content h5,
.prose-content h6 {
    font-family: var(--ff-display);
    color: var(--ink);
    margin: 1.4em 0 .6em;
    line-height: 1.25;
}
.prose-content h1 { font-size: 2rem; }
.prose-content h2 { font-size: 1.6rem; color: var(--crimson); position: relative; padding-left: 0; }
.prose-content h2::before { display: none; }
.prose-content h3 { font-size: 1.3rem; }
.prose-content h4 { font-size: 1.1rem; }
.prose-content p {
    margin: 0 0 1.1em;
    line-height: 1.8;
    color: #333338;
    font-size: 1rem;
}
.prose-content a {
    color: var(--crimson);
    font-weight: 500;
    text-decoration: underline;
}
.prose-content a:hover { color: var(--crimson-dark); }
.prose-content strong { color: var(--ink); font-weight: 700; }
.prose-content ul,
.prose-content ol {
    margin: 0 0 1.1em;
    padding-left: 1.5em;
    line-height: 1.8;
}
.prose-content li { margin-bottom: .4em; }
.prose-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0; }
.prose-content blockquote {
    border-left: 4px solid var(--crimson);
    padding: 10px 20px;
    margin: 1em 0;
    background: var(--paper-2);
    border-radius: 0 8px 8px 0;
    color: #444;
    font-style: italic;
}

/* Override the prose-section .wrap max-width */
.prose-section .wrap.prose-content,
.prose-section .prose-content {
    max-width: 900px;
    padding: 0 24px;
}

/* Page body — proper horizontal padding so text doesn't touch edges */
.page-body.wrap.prose-content,
.page-body.prose-content {
    max-width: 900px;
    padding: 40px 24px 60px;
    margin: 0 auto;
}

/* Big content / small content inside prose */
.prose-content .big-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333338;
    margin-bottom: 1.4em;
}
.prose-content .big-content p { margin-bottom: 1em; }
.prose-content .big-content h2,
.prose-content .big-content h3,
.prose-content .big-content h4 { margin-top: 1.6em; }
.prose-content .small-content {
    font-size: .92rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 1.4em;
}

/* =====================================================================
   Listings list view (homepage + city pages)
   ===================================================================== */
.listings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.listings-list .empty {
    background: #fff;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    padding: 60px 30px;
    text-align: center;
    color: var(--muted);
}
.listings-list .empty h3 { color: var(--ink); margin-bottom: 8px; }

.listing-row-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.listing-row-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    border-color: var(--crimson);
}
.listing-row-card .row-thumb {
    width: 120px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper-3);
    position: relative;
}
.listing-row-card .row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.listing-row-card .row-thumb .badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(15, 15, 16, .82);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}
.listing-row-card .row-body { min-width: 0; }
.listing-row-card .row-body h3 {
    font-size: 1.1rem;
    margin: 0 0 4px;
    color: var(--ink);
    font-family: var(--ff-display);
}
.listing-row-card .row-body h3 .age-pill {
    background: var(--paper-2);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--crimson);
    font-family: var(--ff-sans);
    vertical-align: middle;
}
.listing-row-card .row-body .row-excerpt {
    font-size: .85rem;
    color: var(--muted);
    margin: 0 0 8px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.listing-row-card .row-body .row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 12px;
    color: var(--muted);
}
.listing-row-card .row-body .row-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.listing-row-card .row-body .row-meta .meta-item svg { width: 12px; height: 12px; }
.listing-row-card .row-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--paper-2);
    color: var(--crimson);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .18s, color .18s;
}
.listing-row-card:hover .row-arrow { background: var(--crimson); color: #fff; }
.listing-row-card .row-arrow svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
    .listing-row-card {
        grid-template-columns: 80px 1fr;
        gap: 10px;
        padding: 10px;
    }
    .listing-row-card .row-thumb { width: 80px; height: 100px; }
    .listing-row-card .row-arrow { display: none; }
    .listing-row-card .row-body h3 { font-size: 1rem; }
    .listing-row-card .row-body .row-excerpt { font-size: .8rem; -webkit-line-clamp: 1; }
    .listing-row-card .row-body .row-meta { font-size: 11px; gap: 4px 10px; }
}
