/* ============================================
   CONCEPT 07 — "Blue Sage Fusion"
   Combines Concept 5's seller-first layout with
   Concept 6's blue/coral color scheme and
   bento-grid listing cards.
   ============================================ */

:root {
    /* Blue Scale — from Concept 6 */
    --blue-950: #0c1a2e;
    --blue-900: #0f2044;
    --blue-800: #162d5a;
    --blue-700: #1e3f7a;
    --blue-600: #2654a0;
    --blue-500: #3366bb;
    --blue-400: #5588cc;
    --blue-300: #7eaad9;
    --blue-200: #a8c5e6;
    --blue-100: #d0e1f2;
    --blue-50: #eaf1f9;

    /* Slate — from Concept 6 */
    --slate-900: #1a1d23;
    --slate-800: #2a2d35;
    --slate-700: #3d414c;
    --slate-600: #52576a;
    --slate-500: #6e748a;
    --slate-400: #8b91a5;
    --slate-300: #a8adc0;
    --slate-200: #c8cbd6;
    --slate-100: #e4e5ec;
    --slate-50: #f3f3f7;

    /* Coral Highlight — from Concept 6 */
    --coral-600: #c44030;
    --coral-500: #e04e3c;
    --coral-400: #ea6c5c;
    --coral-300: #f08e80;
    --coral-200: #f5b0a6;
    --coral-100: #fde8e5;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafafa;

    /* Typography — from Concept 6 */
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(12,26,46,0.06);
    --shadow-md: 0 4px 16px rgba(12,26,46,0.08);
    --shadow-lg: 0 12px 40px rgba(12,26,46,0.12);
    --shadow-xl: 0 24px 64px rgba(12,26,46,0.16);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transition */
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--coral-500);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--coral-600);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary-dark {
    background: transparent;
    color: var(--blue-700);
    border: 1.5px solid var(--blue-700);
}
.btn-secondary-dark:hover {
    background: var(--blue-700);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--blue-700);
    border: 1.5px solid var(--blue-300);
}
.btn-outline:hover {
    border-color: var(--blue-700);
    background: var(--blue-50);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-full { width: 100%; }

/* =========== NAVIGATION =========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    /* Default: light/white background with dark nav links for most pages. */
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--slate-200);
}

/* Homepage has a dark hero behind the navbar, so keep it transparent with white links. */
.home .navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

/* Homepage has a dark hero behind the navbar, so switch to white links/hamburger. */
.home .navbar .nav-link {
    color: rgba(255,255,255,0.8);
}

.home .navbar .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.home .navbar .nav-highlight {
    color: var(--coral-300);
}

.home .navbar .nav-toggle span {
    background: var(--white);
}

.home .navbar .nav-toggle:hover span,
.home .navbar .nav-toggle:focus span {
    background: var(--coral-300);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--slate-200);
    padding: 10px 0;
}

.navbar.scrolled .nav-link { color: var(--slate-600); }
.navbar.scrolled .nav-link:hover { color: var(--blue-700); }
.navbar.scrolled .nav-highlight { color: var(--coral-500); }
.navbar.scrolled .nav-cta {
    background: var(--coral-500);
    color: var(--white);
}
.navbar.scrolled .nav-toggle span { background: var(--blue-900); }

.navbar.scrolled .nav-toggle:hover span,
.navbar.scrolled .nav-toggle:focus span {
    background: var(--coral-500);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    max-height: 44px;
    width: auto;
    height: 33px;
    display: block;
}

@media (max-width: 480px) {
    .logo-img {
        max-height: 36px;
        height: 28px;
    }
}

/* Global focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--blue-400);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--blue-400);
    outline-offset: 2px;
}

/* Ensure reduced motion preferences are respected */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Screen-reader only text helper */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--blue-700);
    background: rgba(30,63,122,0.06);
}

.nav-highlight {
    color: var(--coral-500);
    font-weight: 600;
}

.nav-cta {
    background: var(--coral-500);
    color: var(--white) !important;
    margin-left: 8px;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--coral-600);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
    outline: none;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--coral-300);
    outline-offset: 2px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-900);
    border-radius: 2px;
    transition: background var(--transition);
}

.nav-toggle:hover span,
.nav-toggle:focus span {
    background: var(--coral-500);
}

/* Skip link (a11y) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    background: var(--coral-500);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--white);
    outline-offset: -2px;
}

/* Admin bar offset: only shift the fixed navbar and adjust hero spacing,
 * not the entire page, so the page doesn't feel pushed too far down. */
body.admin-bar .navbar {
    top: 32px;
}

body.admin-bar .hero-content {
    padding-top: calc(100px + 32px);
}

body.admin-bar .listing-detail-section {
    padding-top: calc(140px + 32px);
}

@media (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
    body.admin-bar .nav-menu {
        padding-top: 100px;
    }
    body.admin-bar .hero-content {
        padding-top: calc(120px + 46px);
    }
    body.admin-bar .listing-detail-section {
        padding-top: calc(120px + 46px);
    }
}

@media (max-width: 600px) {
    #wpadminbar {
        position: fixed;
    }
    body.admin-bar .nav-menu {
        padding-top: 110px;
    }
}

/* Listings page: header starts solid (page bg is off-white, white links invisible) */
body.listings-page .navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--slate-200);
}

body.listings-page .navbar .nav-link {
    color: var(--slate-600);
}

body.listings-page .navbar .nav-link:hover {
    color: var(--blue-700);
}

body.listings-page .navbar .nav-highlight {
    color: var(--coral-500);
}

body.listings-page .navbar .nav-toggle span {
    background: var(--blue-900);
}

body.listings-page .navbar .nav-toggle:hover span,
body.listings-page .navbar .nav-toggle:focus span {
    background: var(--coral-500);
}

/* =========== HERO =========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/teamwork.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(12,26,46,0.88) 0%, rgba(15,32,68,0.82) 40%, rgba(22,45,90,0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
}

.hero-left {
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-300);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--coral-300);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--coral-300);
    line-height: 1;
}

.trust-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

/* Hero Card / Quick Valuation Calculator */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--blue-700);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.hero-card-header .card-icon {
    width: 20px; height: 20px;
    color: var(--coral-300);
}

.hero-card-body {
    padding: 20px;
}

.calc-row {
    margin-bottom: 14px;
}

.calc-row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-500);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calc-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    overflow: hidden;
    transition: border-color var(--transition);
}

.calc-input-wrap:focus-within {
    border-color: var(--blue-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(51,102,187,0.1);
}

.calc-prefix {
    padding: 0 10px 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-400);
    user-select: none;
}

.calc-input {
    flex: 1;
    padding: 10px 12px 10px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-700);
    background: transparent;
    border: none;
    outline: none;
}

.calc-divider {
    height: 1px;
    background: var(--slate-200);
    margin: 16px 0;
}

.calc-result label {
    color: var(--blue-700);
    font-weight: 700;
}

.calc-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--coral-500);
    line-height: 1.2;
}

.hero-card-body .btn {
    margin-top: 16px;
}

/* =========== SECTION HEADERS =========== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header.light .section-eyebrow { color: var(--coral-300); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.6); }

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--blue-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--slate-500);
    line-height: 1.6;
}

/* =========== LISTINGS — MAP + BENTO GRID =========== */
.listings-section {
    padding: 80px 0;
    background: var(--off-white);
}

.listings-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.listings-header-left {
    max-width: 520px;
}

.listings-header-left .section-eyebrow { margin-bottom: 10px; }

.listings-header-left .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.listings-header-left .section-desc {
    font-size: 15px;
}

/* Filter Pills */
.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
}

.filter-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-500);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.pill:hover {
    border-color: var(--blue-400);
    color: var(--blue-700);
}

.pill.active {
    background: var(--blue-700);
    color: var(--white);
    border-color: var(--blue-700);
}

/* Listings Workspace — Map + Bento Grid */
.listings-workspace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Map Panel + OpenFreeMap/MapLibre canvas */
.map-panel {
    position: relative;
    display: flex;
    flex-direction: column;
}

.atbcal-map {
    width: 100%;
    min-height: 300px;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--blue-50);
    flex: 1;
}

/* Active bento card highlight synchronized from map pin hover. */
.bento-card-active {
    border-color: var(--coral-400);
    box-shadow: 0 0 0 2px var(--coral-400), var(--shadow-md);
    transform: translateY(-2px);
}

/* Ensure MapLibre controls are tappable/visible */
.atbcal-map .maplibregl-control-container button {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
}

.atbcal-map .maplibregl-ctrl-attrib-inner {
    font-size: 11px;
}

/* Custom listing pins — marker stacking context managed by JS/CSS below. */
.map-pin {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform-origin: bottom center;
    transition: transform 0.2s ease;
    z-index: 1;
}

.map-pin:focus-visible {
    outline: 3px solid var(--coral-400);
    outline-offset: 4px;
    border-radius: 50%;
}

.map-pin-dot {
    width: 18px;
    height: 18px;
    background: var(--coral-500);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(12,26,46,0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

/* Status colors: available = green, pending = orange/red. */
.map-pin[data-status="available"] .map-pin-dot {
    background: #22a559;
}

.map-pin[data-status="pending"] .map-pin-dot {
    background: var(--coral-500);
}

.map-pin:hover,
.map-pin.pin-active,
.map-pin:focus-visible {
    z-index: 9999 !important;
}

.map-pin:hover .map-pin-dot,
.map-pin.pin-active .map-pin-dot,
.map-pin:focus-visible .map-pin-dot {
    transform: scale(1.4);
    background: var(--blue-700);
}

/* Marker label: practice name + price, revealed on hover/tap/focus. */
.map-pin-label {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--blue-900);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(12,26,46,0.25);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.map-pin-label .pin-label-title {
    display: block;
    font-weight: 600;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-pin-label .pin-label-price {
    display: block;
    color: var(--coral-300);
    font-weight: 700;
    margin-top: 2px;
}

/* Reveal label on hover, active state, or keyboard focus. */
.map-pin:hover .map-pin-label,
.map-pin.pin-active .map-pin-label,
.map-pin:focus-visible .map-pin-label {
    opacity: 1;
    visibility: visible;
    z-index: 10000;
}

/* Hidden: sold listings are excluded server-side, but pins carry a
 * defensive hidden state in case client-side filtering is added later. */
.map-pin.pin-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Ensure MapLibre popups and their content render above all markers. */
.maplibregl-popup {
    z-index: 10001 !important;
}

.maplibregl-popup-content {
    position: relative;
    z-index: 10002;
}

.map-popup-link {
    color: var(--blue-700);
    font-weight: 600;
    text-decoration: none;
}

.map-popup-link:hover,
.map-popup-link:focus {
    text-decoration: underline;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.bento-wide {
    grid-column: 1 / -1;
}

.bento-card-top {
    margin-bottom: 16px;
}

.listing-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.badge-new {
    background: var(--blue-100);
    color: var(--blue-700);
}

.badge-hot {
    background: var(--coral-100);
    color: var(--coral-600);
}

.bento-card-top h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--blue-900);
    margin-bottom: 4px;
}

.listing-location {
    font-size: 13px;
    color: var(--slate-400);
}

.bento-card-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.metric-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-700);
    font-variant-numeric: tabular-nums;
}

.metric-highlight {
    color: var(--coral-500);
}

.listing-snippet {
    font-size: 13px;
    line-height: 1.5;
    color: var(--slate-500);
    margin-bottom: 12px;
}

.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--coral-500);
    transition: color var(--transition);
    margin-top: auto;
}

.card-link:hover {
    color: var(--coral-600);
}

/* CTA Bento Card */
.bento-cta {
    background: var(--blue-800);
    border-color: var(--blue-800);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bento-cta:hover {
    border-color: var(--blue-700);
    background: var(--blue-700);
}

.bento-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--coral-300);
    line-height: 1;
}

.cta-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

/* =========== SELLER SECTION =========== */
.seller-section {
    padding: 100px 0;
    background: var(--white);
}

.seller-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.seller-content .section-eyebrow { margin-bottom: 12px; }

.seller-content .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.seller-content .lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 16px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    min-width: 36px;
    background: var(--blue-50);
    color: var(--blue-600);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    border-radius: 50%;
    border: 1.5px solid var(--blue-200);
}

.step-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
}

.seller-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.highlight-card {
    position: relative;
    background: var(--white);
    border-color: var(--coral-200);
    border-width: 5px 1.5px 1.5px;
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-900);
    margin-bottom: 10px;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-checklist {
    list-style: none;
    margin-bottom: 20px;
}

.card-checklist li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 8px;
    line-height: 1.5;
}

.card-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    width: 18px; height: 18px;
    color: var(--blue-500);
    font-weight: 700;
    font-size: 14px;
}

.card-links {
    list-style: none;
}

.card-links li {
    margin-bottom: 10px;
}

.card-links a {
    font-size: 14px;
    color: var(--coral-500);
    font-weight: 500;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-links a::before {
    content: '→';
    font-size: 12px;
    transition: gap var(--transition);
}

.card-links a:hover {
    color: var(--coral-600);
}

/* =========== BUYER SECTION =========== */
.buyer-section {
    padding: 100px 0;
    background: var(--blue-50);
}

.buyer-content {
    max-width: 800px;
}

.buyer-content .section-eyebrow { margin-bottom: 12px; }

.buyer-content .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.buyer-content .lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 32px;
}

.buyer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.buyer-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon-wrap {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-md);
}

.feature-icon-wrap svg {
    width: 22px; height: 22px;
    color: var(--blue-500);
}

.buyer-feature h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 4px;
}

.buyer-feature p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
}

/* =========== WHY ATB SECTION =========== */
.why-section {
    padding: 100px 0;
    background: var(--blue-900);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(224,78,60,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(224,78,60,0.25);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224,78,60,0.12);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px; height: 24px;
    color: var(--coral-300);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

/* =========== TESTIMONIALS =========== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--slate-50);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--slate-200);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    color: var(--blue-300);
    opacity: 0.4;
    position: absolute;
    top: 16px; left: 20px;
}

.testimonial p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial footer strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-900);
}

.testimonial footer span {
    font-size: 13px;
    color: var(--slate-400);
}

/* =========== CONTACT SECTION =========== */
.contact-section {
    padding: 100px 0;
    background: var(--slate-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title { text-align: left; margin-bottom: 16px; }

.contact-info .lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 28px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
}

.contact-method:hover {
    border-color: var(--blue-400);
    box-shadow: var(--shadow-sm);
}

.contact-method svg {
    width: 20px; height: 20px;
    color: var(--blue-500);
    flex-shrink: 0;
}

.contact-method span {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-900);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--blue-200);
}

.contact-note .sm-icon {
    width: 18px; height: 18px;
    min-width: 18px;
    color: var(--blue-500);
    margin-top: 1px;
}

.contact-note span {
    font-size: 13px;
    color: var(--blue-600);
    line-height: 1.5;
}

/* Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-600);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--slate-700);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(51,102,187,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
    font-size: 12px;
    color: var(--slate-400);
    text-align: center;
    margin-top: 16px;
}

/* =========== FOOTER =========== */
.footer {
    background: var(--blue-950);
    padding: 64px 0 0;
    color: rgba(255,255,255,0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral-300); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.3);
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--coral-300); }

/* =========== SINGLE LISTING DETAIL =========== */
.listing-detail-section {
    padding: 140px 0 100px;
    background: var(--off-white);
    min-height: 100vh;
}

.listing-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.listing-detail-title .listing-badge {
    margin-bottom: 12px;
}

.listing-detail-title h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--blue-900);
    margin-bottom: 8px;
    line-height: 1.2;
}

.listing-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.listing-detail-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.listing-detail-card h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--blue-900);
    margin-bottom: 16px;
}

.listing-detail-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 12px;
}

.listing-detail-metrics {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.listing-detail-sidebar .sidebar-card {
    margin-bottom: 24px;
}

.listing-confidential-card {
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.listing-confidential-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--blue-900);
    margin-bottom: 10px;
}

.atbcal-protected-notice {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.atbcal-protected-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--blue-500);
}

.atbcal-protected-icon svg {
    width: 24px;
    height: 24px;
}

.atbcal-protected-notice h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--blue-900);
    margin-bottom: 8px;
}

.atbcal-protected-notice p {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .listing-detail-grid {
        grid-template-columns: 1fr;
    }
    .listing-detail-sidebar {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .listing-detail-section {
        padding: 120px 0 60px;
    }
    .listing-detail-header {
        flex-direction: column;
        gap: 16px;
    }
}

/* =========== LISTINGS PAGE (separate page — split list+map) =========== */
.listings-page {
    padding: 60px 0 80px;
    background: var(--off-white);
    min-height: 100vh;
}

.listings-page-header {
    margin-bottom: 40px;
}

.listings-page-header .section-eyebrow { margin-bottom: 10px; }

.listings-page-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 10px;
}

/* Split Layout: List + Map */
.listings-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    height: 700px;
}

/* List Panel */
.listings-list-panel {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--slate-200);
    overflow: hidden;
}

.listings-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    flex-shrink: 0;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toolbar-icon {
    width: 20px; height: 20px;
    color: var(--blue-500);
}

.toolbar-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-900);
}

.toolbar-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-600);
    background: var(--blue-100);
    padding: 2px 8px;
    border-radius: 10px;
}

.toolbar-right {
    display: flex;
    gap: 6px;
}

.toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-500);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.toolbar-btn:hover {
    border-color: var(--blue-400);
    color: var(--blue-700);
    background: var(--blue-50);
}

.toolbar-btn.sort-active {
    background: var(--blue-700);
    color: var(--white);
    border-color: var(--blue-700);
}

/* Sort toolbar on the listings page */
.sort-toolbar {
    align-items: center;
}

.sort-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-400);
    margin-right: 2px;
}

.sort-toolbar .sort-btn {
    position: relative;
    padding-right: 18px;
}

.sort-toolbar .sort-btn::after {
    content: '⇅';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    color: var(--slate-400);
    opacity: 0.7;
}

.sort-toolbar .sort-btn.active {
    background: var(--blue-700);
    color: var(--white);
    border-color: var(--blue-700);
}

.sort-toolbar .sort-btn.sort-asc::after {
    content: '↑';
    color: var(--white);
    opacity: 1;
}

.sort-toolbar .sort-btn.sort-desc::after {
    content: '↓';
    color: var(--white);
    opacity: 1;
}

@media (max-width: 480px) {
    .sort-toolbar {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 4px;
    }
    .sort-label {
        display: none;
    }
    .sort-toolbar .sort-btn {
        padding: 4px 14px 4px 8px;
        font-size: 11px;
    }
}

.sm-icon {
    width: 14px; height: 14px;
}

/* Scrollable List */
.listings-scroll {
    flex: 1;
    overflow-y: auto;
}

.listings-scroll::-webkit-scrollbar {
    width: 6px;
}
.listings-scroll::-webkit-scrollbar-track {
    background: var(--slate-50);
}
.listings-scroll::-webkit-scrollbar-thumb {
    background: var(--slate-300);
    border-radius: 3px;
}
.listings-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--slate-400);
}

/* Listing Rows */
.listing-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--slate-200);
    cursor: pointer;
    transition: all var(--transition);
}

.listing-row:hover {
    background: var(--blue-50);
}

.listing-row.listing-active {
    background: var(--blue-100);
    border-left: 3px solid var(--blue-600);
}

.listing-row.hidden {
    display: none;
}

.listing-row-status {
    flex-shrink: 0;
    width: 50px;
}

.listing-row-main {
    flex: 1;
    min-width: 0;
}

.listing-row-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 2px;
}

.listing-row-location {
    font-size: 12px;
    color: var(--slate-400);
}

.listing-row-metrics {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.row-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.row-metric-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--slate-400);
    letter-spacing: 0.04em;
}

.row-metric-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    font-variant-numeric: tabular-nums;
}

.row-metric-highlight {
    color: var(--coral-500);
}

/* Rows are now clickable via JS; no standalone Details link. */

/* Status Badges */
.status-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 3px;
    min-height: 18px;
    margin-right: 0.5rem;
}

/* Available has no visible label, but keep the badge area width stable. */
.status-badge:empty {
    width: 0;
    padding: 3px 0;
    background: transparent;
}

.badge-hot {
    background: var(--coral-100);
    color: var(--coral-600);
}

/* Map Panel */
.listings-map-panel {
    position: relative;
    overflow: hidden;
    background: var(--slate-100);
}

.listings-map-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.listings-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-right {
        justify-content: flex-start;
    }
    .hero-card {
        max-width: 100%;
    }
    .listings-workspace {
        grid-template-columns: 1fr;
    }
    .map-panel {
        position: relative;
        top: auto;
    }
    .seller-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .buyer-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    body { overflow-x: hidden; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: min(80%, 320px);
        height: 100vh;
        background: var(--blue-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        transition: transform 0.3s ease;
        box-shadow: -4px 0 24px rgba(12,26,46,0.2);
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-link {
        color: var(--white) !important;
        font-size: 16px;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu li + li {
        margin-top: 8px;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        padding: 12px 24px !important;
        display: inline-flex;
        width: auto;
        border-bottom: none;
    }

    .hero-content { padding-top: 120px; }
    .hero-trust { gap: 20px; }
    .trust-divider { display: none; }

    .listings-header {
        flex-direction: column;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .spreadsheet-table {
        font-size: 13px;
    }
    .spreadsheet-table thead th,
    .spreadsheet-table tbody td {
        padding: 10px 10px;
    }
    .col-location { display: none; }
    .col-cashflow { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .seller-ctas { flex-direction: column; }
    .seller-ctas .btn { width: 100%; }
    .contact-form { padding: 24px; }
    .col-revenue { display: none; }
    .filter-pills {
        gap: 8px;
    }
    .pill {
        padding: 6px 14px;
        font-size: 12px;
        white-space: normal;
    }
    .bento-card {
        padding: 16px;
        min-width: 0;
    }
    .bento-card-metrics {
        gap: 12px;
    }
    .metric-value {
        font-size: 14px;
    }
    .bento-card-top h3 {
        font-size: 16px;
    }
    .atbcal-map {
        min-height: 240px;
    }
    .listings-workspace {
        gap: 16px;
    }
}
/* Responsive for listings split layout */
@media (max-width: 768px) {
    .listings-split {
        grid-template-columns: 1fr;
        height: auto;
    }
    .listings-list-panel {
        border-right: none;
        border-bottom: 1px solid var(--slate-200);
        max-height: 400px;
    }
    .listings-map-panel {
        min-height: 350px;
    }
    .listing-row-metrics {
        display: none;
    }
}

@media (max-width: 480px) {
    .listings-list-panel {
        max-height: 350px;
    }
    .listings-map-panel {
        min-height: 250px;
    }
    .listing-row {
        padding: 10px 12px;
    }
    .listing-row-name {
        font-size: 13px;
    }
}
