/*
 * Change #014 — Yealloo Landing Page Redesign
 * File: /wp-content/themes/listingpro-child/assets/landing-page.css
 * Scoped to .yl-lp — zero impact on inner pages
 */

/* ── Suppress LP's built-in header banner — front page only ── */
body.home .lp-header-search-wrap-sidebar-banner,
body.home .lp-header-search-wrap-banner-height,
body.home .lp-banner-sidebar-search {
    display: none !important;
}

/* ── Fix LP nav link colors — LP sets white !important for sidebar-banner style ── */
body.home .header-front-page-wrap .lp-menu ul li a,
body.home .header-front-page-wrap .lp-nav-menu-after li a,
body.home .header-front-page-wrap ul#menu-main-menu-1 li a {
    color: #09090B !important;
}
body.home .header-front-page-wrap .lp-menu ul li a:hover,
body.home .header-front-page-wrap .lp-nav-menu-after li a:hover {
    color: #FFB800 !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ── Pull header content inward — logo right, nav/buttons left ── */
/* !important: LP's own sticky-header CSS forces full-width on the */
/* fixed/scrolled state with !important — must win against that too. */
body.home .header-front-page-wrap .header-container,
body.home .header-front-page-wrap.fixed .header-container,
body.home header.fixed .header-container {
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: auto !important;
}

/* ── Smart contrast — header is transparent and overlaps dark sections (Stats, How It Works) while scrolling. JS toggles body.yl-header-on-dark to keep nav text legible. ── */
body.home.yl-header-on-dark .header-front-page-wrap .lp-menu ul li a,
body.home.yl-header-on-dark .header-front-page-wrap .lp-nav-menu-after li a,
body.home.yl-header-on-dark .header-front-page-wrap ul#menu-main-menu-1 li a,
body.home.yl-header-on-dark .header-front-page-wrap .lp-join-now .app-view-popup-style {
    color: #FFFFFF !important;
}
body.home.yl-header-on-dark .header-front-page-wrap .lp-menu ul li a:hover,
body.home.yl-header-on-dark .header-front-page-wrap .lp-nav-menu-after li a:hover {
    color: #FFB800 !important;
}

/* ── Nav: Add Listing — black button + arrow ────────────────── */
/* LP style.css has .header-front-page-wrap .header-list-icon-st6 (0,2,1) !important — need (0,4,4) */
body.home .header-front-page-wrap .lp-add-listing-btn ul li a.header-list-icon-st6 {
    background: #09090B !important;
    color: #FFFFFF !important;
    border: 2px solid #09090B !important;
    font-weight: 700 !important;
}
body.home .header-front-page-wrap .lp-add-listing-btn ul li a.header-list-icon-st6:hover {
    background: #FFB800 !important;
    color: #09090B !important;
    border-color: #09090B !important;
}
body.home .header-list-icon-st6 .fa-plus-circle {
    display: none !important;
}
body.home .header-list-icon-st6::after {
    content: ' →';
}

/* ── Nav: Sign In — swap order, hide user icon, clean text link */
body.home .contentlogin-flex .lp-joinus-icon-outer { order: 1; }
body.home .contentlogin-flex .lp-add-listing-btn   { order: 2; }
body.home .lp-join-now > span { display: none !important; }
body.home .lp-join-now .app-view-popup-style {
    color: #09090B !important;
    font-size: 14px;
    font-weight: 700;
    padding: 0 16px;
    white-space: nowrap;
}
body.home .lp-join-now .app-view-popup-style:hover,
body.home .lp-join-now .app-view-popup-style:focus,
body.home .lp-join-now .app-view-popup-style:focus-visible,
body.home .lp-join-now .app-view-popup-style:active {
    color: #09090B !important;
    text-decoration: none !important;
    outline: none !important;
    outline-offset: 0 !important;
    border-color: #09090B !important;
    box-shadow: none !important;
}

/* ── Variables (global — footer renders outside .yl-lp on every page) ── */
:root {
    --y:   #FFB800;
    --bk:  #09090B;
    --wh:  #FFFFFF;
    --lg:  #F8F9FA;
    --z8:  #27272A;
    --z6:  #52525B;
    --z3:  #D4D4D8;
    --z1:  #F4F4F5;
    --fd:  'Cabinet Grotesk', 'Montserrat', sans-serif;
    --fb:  'IBM Plex Sans', sans-serif;
    --br:  0px;
    --trn: all .2s ease;
}
.yl-lp {
    font-family: var(--fb);
    background: var(--lg);
    color: var(--bk);
}

/* ── Reset inside scope ────────────────────────────────────── */
.yl-lp *, .yl-lp *::before, .yl-lp *::after { box-sizing: border-box; }
.yl-lp h1,.yl-lp h2,.yl-lp h3 { font-family: var(--fd); margin: 0; }
.yl-lp p { margin: 0; }
.yl-lp a { text-decoration: none; color: inherit; }
.yl-lp img { display: block; width: 100%; height: 100%; object-fit: cover; }
.yl-lp section { width: 100%; }
.yl-lp ul { list-style: none; margin: 0; padding: 0; }

/* ── Container ─────────────────────────────────────────────── */
.yl-c {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Labels ────────────────────────────────────────────────── */
.yl-label {
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--z6);
    margin-bottom: 12px !important;
}
.yl-label--yellow { color: var(--y) !important; }

/* ── Buttons ───────────────────────────────────────────────── */
.yl-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--y);
    color: var(--bk);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border: 2px solid var(--bk);
    cursor: pointer;
    transition: var(--trn);
}
.yl-btn-primary:hover { background: var(--bk); color: var(--wh); }

.yl-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--bk);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border: 2px solid var(--bk);
    transition: var(--trn);
}
.yl-btn-outline:hover { background: var(--bk); color: var(--wh); }

.yl-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--bk);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border: 2px solid rgba(9,9,11,.3);
    transition: var(--trn);
}
.yl-btn-ghost:hover { border-color: var(--bk); }

/* ── Section head ──────────────────────────────────────────── */
.yl-section-head { margin-bottom: 48px; }
.yl-section-head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 12px !important;
}
.yl-section-head--light h2 { color: var(--wh); }
.yl-section-head--light .yl-label { color: var(--y); }
.yl-section-sub {
    font-size: 16px;
    color: var(--z6);
    max-width: 520px;
}
.yl-section-head--light .yl-section-sub { color: rgba(255,255,255,.65); }
.yl-section-footer { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.yl-hero {
    background: #FFFFFF;
    padding: 0 0 50px;
    overflow: visible;
}
.yl-hero-grid {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 0;
    align-items: stretch;
    padding-right: 40px;
    min-height: 720px;
}
.yl-hero-content {
    color: #000000;
    padding: 80px 56px 80px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Trust badge */
.yl-hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    border: 2px solid #000000;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 24px;
    box-shadow: 4px 4px 0 #000000;
}
.yl-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFB800;
    flex-shrink: 0;
}

/* Headline */
.yl-hero-h1 {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: #000000;
    margin-bottom: 20px !important;
}
.yl-hero-hl {
    background: #FFB800;
    padding: 4px 12px;
    display: inline-block;
    font-size: inherit !important;
    font-weight: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}

/* Subtext */
.yl-hero-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #52525B;
    margin-bottom: 32px !important;
    max-width: 460px;
}
.yl-hero-sub strong { color: #000000; }

/* Custom search form — restyles the real ListingPro search component (home-search.php) restored in Change #027, so category typeahead + location matching stay fully functional while matching the landing page's pill aesthetic */
.yl-search-form-wrap .lp-search-bar {
    display: flex;
    align-items: center;
    border: 2px solid #000000;
    background: #FFFFFF;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 0;
}
.yl-search-form-wrap .lp-search-bar form.form-inline {
    display: flex;
    align-items: center;
    width: 100%;
}
.yl-search-form-wrap .form-group.lp-suggested-search,
.yl-search-form-wrap .form-group.lp-location-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    flex: 1;
    min-width: 0;
    margin: 0;
    border-right: 1px solid #D4D4D8;
}
.yl-search-form-wrap .input-group-addon.lp-border {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #52525B;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}
.yl-search-form-wrap .pos-relative,
.yl-search-form-wrap .ui-widget {
    width: 100%;
}
.yl-search-form-wrap input[type="text"],
.yl-search-form-wrap input#select,
.yl-search-form-wrap input#cities {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    height: 56px;
    font-size: 15px;
    color: #000000;
    background: transparent !important;
    width: 100%;
    font-family: var(--fb);
}
.yl-search-form-wrap input::placeholder { color: #A1A1AA; }
.yl-search-form-wrap .form-group.pull-right {
    flex-shrink: 0;
    margin: 0;
}
.yl-search-form-wrap .lp-search-bar-right {
    position: relative;
    height: 60px;
}
.yl-search-form-wrap .lp-search-btn {
    background: #FFB800;
    color: #000000;
    border: none;
    padding: 0 28px;
    height: 60px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--fd);
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.yl-search-form-wrap .lp-search-btn:hover { background: #000000; color: #FFFFFF; }
.yl-search-form-wrap .lp-search-icon,
.yl-search-form-wrap .searchloading,
.yl-search-form-wrap .cross-search-q,
.yl-search-form-wrap .loadinerSearch,
.yl-search-form-wrap .fa-crosshairs { display: none !important; }
.yl-search-form-wrap #input-dropdown {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid #D4D4D8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 50;
    max-height: 260px;
    overflow-y: auto;
    margin-top: 8px;
}

/* Trending tags */
.yl-hero-trending {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}
.yl-trending-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #52525B;
    text-transform: uppercase;
    flex-shrink: 0;
}
.yl-trend-tag {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    border: 1.5px solid #D4D4D8;
    padding: 5px 12px;
    transition: all .2s;
    text-decoration: none;
}
.yl-trend-tag:hover {
    border-color: #000000;
    background: #000000;
    color: #FFFFFF;
    text-decoration: none;
}

/* Social proof */
.yl-hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}
.yl-proof-faces {
    display: flex;
    align-items: center;
}
.yl-proof-faces img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 2px solid #FFFFFF !important;
    object-fit: cover !important;
    margin-left: -8px;
    display: inline-block !important;
    flex-shrink: 0;
}
.yl-proof-faces img:first-child { margin-left: 0; }
.yl-proof-plus {
    font-size: 10px;
    font-weight: 700;
    background: #FFB800;
    color: #000000;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    flex-shrink: 0;
    border: 2px solid #FFFFFF;
}
.yl-proof-text {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.yl-proof-stars { color: #FFB800; font-size: 14px; letter-spacing: 1px; }
.yl-proof-score { font-size: 14px; font-weight: 700; color: #000000; }
.yl-proof-desc { font-size: 13px; color: #52525B; }

/* Hero poster — right side single image, full height bleed */
.yl-hero-img-col { height: 100%; align-self: stretch; position: relative; }
.yl-hero-poster {
    position: relative;
    height: 100%;
    min-height: 720px;
    overflow: hidden;
    border: 2px solid #000000;
}
.yl-hero-poster > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* "100% FREE LISTING" badge */
.yl-poster-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: #FFB800;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 16px;
}

/* "LIVE NOW" card — sits outside poster, overflows below image */
.yl-live-card {
    position: absolute;
    bottom: -30px;
    left: 24px;
    width: 260px;
    background: #FFFFFF;
    padding: 16px 20px;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0 #000000;
    z-index: 1;
}
.yl-live-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.yl-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: yl-pulse 2s infinite;
}
@keyframes yl-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}
.yl-live-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #52525B;
    text-transform: uppercase;
}
.yl-live-text {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px !important;
}
.yl-live-link {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}
.yl-live-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════════════════ */
.yl-stats {
    background: var(--bk);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 0;
    margin-top: 50px;
}
.yl-stats .yl-c {
    max-width: 100%;
    padding: 0;
}
.yl-stats-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.yl-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    text-align: left;
    padding: 48px 40px;
    transition: background .2s, color .2s;
    cursor: default;
}
.yl-stat-item:hover {
    background: #FFB800;
}
.yl-stat-item:hover .yl-stat-num,
.yl-stat-item:hover .yl-stat-label,
.yl-stat-item:hover .yl-stat-sub {
    color: #000000;
}
.yl-stat-num {
    font-family: var(--fd);
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -.02em;
    line-height: 1;
}
.yl-stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 8px;
}
.yl-stat-sub {
    font-size: 13px;
    font-weight: 400;
    color: #FFB800;
    letter-spacing: 0;
}
.yl-stat-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
    align-self: stretch;
}

/* ════════════════════════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════════════════════════════ */
.yl-cats {
    background: var(--lg);
    padding: 100px 0;
    border-bottom: 2px solid var(--bk);
}
.yl-cats .yl-c {
    max-width: 100%;
    padding: 0 100px;
}

/* Two-column header */
.yl-cats-header {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 56px;
}
.yl-cats-header-left .yl-label { margin-bottom: 16px; }
.yl-cats-h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: #000000;
    margin: 0;
}
.yl-cats-h2 em { font-style: italic; font-weight: 900; }
.yl-cats-header-right { display: flex; align-items: flex-end; padding-bottom: 2px; }
.yl-cats-desc { font-size: 16px; line-height: 1.7; color: #52525B; max-width: 480px; }

/* 5-col x 3-row grid with shared 1px black borders */
.yl-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
}
.yl-cat-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    text-decoration: none;
    min-height: 160px;
    transition: background .2s;
    position: relative;
}
.yl-cat-card:hover { background: #FFB800; }

/* Top row: icon box + arrow */
.yl-cat-top { display: flex; justify-content: space-between; align-items: flex-start; }
.yl-cat-icon {
    width: 40px;
    height: 40px;
    background: #F4F4F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    transition: background .2s;
}
.yl-cat-icon svg { width: 100%; height: 100%; stroke: #000000; transition: stroke .2s; }
.yl-cat-icon img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1); transition: filter .2s; }
.yl-cat-card:hover .yl-cat-icon { background: #000000; }
.yl-cat-card:hover .yl-cat-icon svg { stroke: #FFFFFF; }
.yl-cat-card:hover .yl-cat-icon img { filter: grayscale(1) invert(1); }
.yl-cat-arrow { font-size: 15px; color: #A1A1AA; transition: color .2s; line-height: 1; }
.yl-cat-card:hover .yl-cat-arrow { color: #000000; }

/* Bottom row: name + count */
.yl-cat-bottom { display: flex; flex-direction: column; gap: 3px; }
.yl-cat-name { font-family: var(--fd); font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: #000000; }
.yl-cat-count { font-size: 12px; color: #71717A; transition: color .2s; }
.yl-cat-card:hover .yl-cat-count { color: #000000; }

/* Centered More Categories button */
.yl-cats-footer { display: flex; justify-content: center; margin-top: 48px; }
.yl-cats-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 48px;
    border: 2px solid #000000;
    background: transparent;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--fd);
    text-decoration: none;
    transition: background .2s, color .2s;
    box-shadow: 4px 4px 0 #000000;
}
.yl-cats-btn:hover { background: #FFB800; color: #000000; border-color: #000000; }

/* ════════════════════════════════════════════════════════════
   TOOLS
════════════════════════════════════════════════════════════════ */
.yl-tools {
    background: var(--wh);
    padding: 100px 0;
    border-bottom: 2px solid var(--bk);
}

/* Header */
.yl-tools-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 48px;
}
.yl-tools-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--y);
    color: var(--bk);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 14px;
    margin-bottom: 20px;
}
.yl-tools-h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    color: var(--bk);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 0;
}
.yl-tools-h2 em { font-style: italic; font-weight: 900; }
.yl-tools-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #52525B;
    max-width: 460px;
}

/* Tabs */
.yl-tools-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid #E4E4E7;
}
.yl-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 700;
    color: #71717A;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
}
.yl-tab-btn:hover {
    color: var(--y);
}
.yl-tab-btn--active {
    color: var(--bk);
    background: var(--bk);
    color: var(--wh);
    border-bottom-color: var(--bk);
}
.yl-tab-btn--active svg { color: var(--y); }
.yl-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--y);
    color: var(--bk);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
}
.yl-tab-btn--active .yl-tab-count { background: var(--y); color: var(--bk); }

/* Tab panels */
.yl-tab-panel--hidden { display: none; }

/* Yealloo tools grid — 1 row × 3 cols */
.yl-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.yl-tool-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    border: 2px solid rgba(255,255,255,.1);
    background: var(--bk);
    transition: var(--trn);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.yl-tool-card:hover { border-color: var(--y); background: #111; }
.yl-tool-card:hover h3 { color: var(--y); }
.yl-tool-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--y);
    border: 1px solid var(--y);
    padding: 3px 8px;
}
.yl-tool-icon { width: 36px; height: 36px; color: var(--y); }
.yl-tool-icon svg { width: 100%; height: 100%; }
.yl-tool-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wh);
    letter-spacing: -.01em;
}
.yl-tool-card p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    flex: 1;
}
.yl-tool-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--y);
    letter-spacing: .02em;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.yl-tools-coming {
    margin-top: 24px;
    font-size: 14px;
    color: #71717A;
}
.yl-tools-coming span { color: var(--bk); font-weight: 600; }

/* Resources grid — 2 rows × 4 cols */
.yl-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.yl-resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    border: 2px solid #E4E4E7;
    background: var(--wh);
    text-decoration: none;
    color: var(--bk);
    transition: var(--trn);
    text-align: center;
}
.yl-resource-card:hover { border-color: var(--bk); background: var(--y); }
.yl-resource-icon {
    width: 36px;
    height: 36px;
    color: var(--bk);
}
.yl-resource-icon svg { width: 100%; height: 100%; }
.yl-resource-name {
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 700;
    color: var(--bk);
    letter-spacing: -.01em;
}
.yl-tools-footer { display: flex; justify-content: center; margin-top: 8px; }
.yl-tools-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 48px;
    border: 2px solid var(--bk);
    background: transparent;
    color: var(--bk);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--fd);
    text-decoration: none;
    transition: background .2s, color .2s;
    box-shadow: 4px 4px 0 var(--bk);
}
.yl-tools-more-btn:hover { background: var(--y); color: var(--bk); }

/* ════════════════════════════════════════════════════════════
   CITIES
════════════════════════════════════════════════════════════════ */
.yl-cities {
    background: var(--lg);
    padding: 100px 0;
    border-bottom: 2px solid var(--bk);
}
.yl-cities-c {
    max-width: 100%;
    padding: 0 100px;
}

/* Header */
.yl-cities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.yl-cities-h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    color: var(--bk);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 8px 0 0;
}
.yl-cities-h2 em { font-style: italic; font-weight: 900; }
.yl-cities-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--bk);
    color: #FFFFFF !important;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.yl-cities-search-btn:hover { background: var(--y); color: var(--bk) !important; }

/* Grid */
.yl-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.yl-city-card {
    position: relative;
    overflow: hidden;
    height: 560px;
    display: block;
    text-decoration: none;
}
.yl-city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.yl-city-card:hover img { transform: scale(1.05); }
.yl-city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
    transition: opacity .3s;
}
.yl-city-card:hover::after { opacity: .85; }
.yl-city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.yl-city-state {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--y);
    margin-bottom: 4px;
}
.yl-city-name {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 900;
    color: var(--wh);
    letter-spacing: -.02em;
    line-height: 1;
}
.yl-city-count {
    font-size: 13px;
    color: rgba(255,255,255,.7);
}
.yl-city-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    color: var(--y);
    z-index: 1;
}

/* Search by state box */
.yl-states-box {
    border: 2px solid var(--bk);
    padding: 20px 24px;
    background: var(--wh);
}
.yl-states-box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.yl-states-box-label {
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 700;
    color: var(--bk);
}
.yl-states-all {
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 700;
    color: var(--y);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.yl-states-all:hover { color: var(--bk); }
.yl-states-pills {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.yl-state-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border: 1px solid #D4D4D8;
    background: var(--wh);
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 600;
    color: var(--bk);
    text-decoration: none;
    transition: background .2s, border-color .2s;
}
.yl-state-pill span {
    font-size: 12px;
    color: #71717A;
    font-weight: 400;
}
.yl-state-pill:hover { background: var(--y); border-color: var(--y); }
.yl-state-pill:hover span { color: var(--bk); }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════════ */
.yl-hiw {
    background: var(--bk);
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    padding: 100px 0;
    border-bottom: 2px solid rgba(255,255,255,.08);
}
.yl-hiw-c {
    max-width: 100%;
    padding: 0 100px;
}
.yl-hiw-header { margin-bottom: 56px; }
.yl-hiw-h2 {
    font-family: var(--fd);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    color: var(--wh);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 12px 0 0;
}
.yl-hiw-h2 em { font-style: italic; font-weight: 900; color: var(--y); }
.yl-hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.yl-hiw-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 36px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
    transition: border-color .2s, background .2s;
}
.yl-hiw-step:hover {
    border-color: var(--y);
    background: var(--y);
}
.yl-hiw-step:hover .yl-hiw-num { color: rgba(0,0,0,.15); }
.yl-hiw-step:hover h3 { color: var(--bk); }
.yl-hiw-step:hover p { color: rgba(0,0,0,.65); }
.yl-hiw-step:hover .yl-hiw-icon { color: var(--bk); }
.yl-hiw-step-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.yl-hiw-num {
    font-family: var(--fd);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    color: rgba(255,255,255,.12);
}
.yl-hiw-icon { width: 36px; height: 36px; color: var(--y); flex-shrink: 0; }
.yl-hiw-icon svg { width: 100%; height: 100%; }
.yl-hiw-step h3 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 700;
    color: var(--wh);
    letter-spacing: -.01em;
    margin: 0;
}
.yl-hiw-step p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin: 0;
}
.yl-hiw-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.yl-hiw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--y);
    color: var(--bk);
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border: 2px solid var(--y);
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}
.yl-hiw-btn:hover { background: var(--wh); color: var(--bk); border-color: var(--wh); }
.yl-hiw-note { font-size: 14px; color: rgba(255,255,255,.5); }
.yl-hiw-note strong { color: var(--wh); font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   LISTINGS
════════════════════════════════════════════════════════════════ */
.yl-listings {
    background: var(--wh);
    padding: 100px 0;
    border-bottom: 2px solid var(--bk);
}
.yl-listings-c {
    max-width: 100%;
    padding: 0 100px;
}
.yl-listings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.yl-listings-h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    color: var(--bk);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 8px 0 0;
}
.yl-listings-h2 em { font-style: italic; font-weight: 900; color: var(--bk); }
.yl-listings-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border: 2px solid var(--bk);
    background: transparent;
    color: var(--bk) !important;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.yl-listings-explore-btn:hover { background: var(--y); border-color: var(--bk); color: var(--bk) !important; }
.yl-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.yl-listing-card {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--z3);
    overflow: hidden;
    transition: border-color .2s;
    text-decoration: none;
    color: var(--bk);
    background: var(--wh);
}
.yl-listing-card:hover { border-color: var(--bk); }
.yl-listing-img {
    height: 300px;
    overflow: hidden;
    background: var(--z1);
    position: relative;
}
.yl-listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.yl-listing-card:hover .yl-listing-img img { transform: scale(1.04); }
.yl-listing-img-placeholder { width: 100%; height: 100%; background: var(--z1); }
.yl-listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bk);
    color: var(--wh);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 4px 10px;
    text-transform: uppercase;
}
.yl-listing-heart {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bk);
}
.yl-listing-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.yl-listing-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bk);
}
.yl-listing-title {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 700;
    color: var(--bk);
    line-height: 1.2;
}
.yl-listing-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.yl-listing-stars { color: var(--y); font-size: 14px; }
.yl-listing-score { font-size: 14px; font-weight: 700; color: var(--bk); }
.yl-listing-reviews { font-size: 13px; color: var(--z6); }
.yl-listing-loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--z6);
    transition: color .2s;
}
.yl-listing-loc svg { width: 13px; height: 13px; flex-shrink: 0; }
.yl-listings .yl-btn-outline:hover { background: var(--y); color: var(--bk); border-color: var(--bk); }

/* ════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════════ */
.yl-marquee {
    background: var(--wh);
    border-bottom: 2px solid var(--bk);
    padding: 0 100px;
}
.yl-marquee-inner {
    overflow: hidden;
    border-top: 1px solid #E4E4E7;
}
.yl-marquee-label {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bk);
    padding: 20px 0 16px;
    margin: 0;
    border-top: 1px solid #E4E4E7;
}
.yl-marquee-track {
    display: flex;
    width: max-content;
    animation: yl-scroll 40s linear infinite;
    padding: 18px 0;
    margin-left: -32px;
}
.yl-marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 32px;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #52525B;
    white-space: nowrap;
}
@keyframes yl-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   BLOG
════════════════════════════════════════════════════════════════ */
.yl-blog {
    background: var(--lg);
    padding: 80px 0;
    border-bottom: 2px solid var(--bk);
}
.yl-blog .yl-c {
    max-width: 100%;
    padding: 0 100px;
}
.yl-blog .yl-section-head h2 {
    font-family: var(--fd);
    font-weight: 900;
    font-style: normal;
}
.yl-blog .yl-section-sub {
    font-family: var(--fb);
    font-style: normal;
}
.yl-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.yl-blog-card {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--z3);
    overflow: hidden;
    background: var(--wh);
    transition: var(--trn);
}
.yl-blog-img {
    height: 340px;
    overflow: hidden;
    background: var(--z1);
}
.yl-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.yl-blog-img-placeholder { width: 100%; height: 100%; background: var(--z1); }
.yl-blog-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.yl-blog-date { font-size: 12px; font-family: var(--fb); color: var(--z6); }
.yl-blog-title {
    font-family: var(--fd);
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    color: var(--bk);
    line-height: 1.35;
    flex: 1;
}
.yl-blog-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--bk);
    margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
.yl-faq {
    background: var(--wh);
    padding: 80px 0;
    border-bottom: 2px solid var(--bk);
}
.yl-faq .yl-c {
    max-width: 100%;
    padding: 0 100px;
}
.yl-faq-inner {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 100px;
}
.yl-faq-head h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    font-style: normal;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-top: 12px !important;
}
.yl-faq-head h2 em { font-style: italic; font-weight: 900; }
.yl-faq-sub {
    font-family: var(--fb);
    font-style: normal;
    font-size: 15px;
    color: var(--z6);
    margin-top: 16px;
    line-height: 1.6;
}
a.yl-faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bk);
    color: var(--wh);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    margin-top: 24px;
    border: 2px solid var(--bk);
    transition: var(--trn);
}
a.yl-faq-contact-btn:hover { background: var(--y); color: var(--bk); border-color: var(--bk); }
.yl-faq-list { display: flex; flex-direction: column; border: 2px solid var(--bk); }
.yl-faq-item { border-bottom: 1px solid var(--z3); }
.yl-faq-item:last-child { border-bottom: none; }
.yl-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 700;
    color: var(--bk);
    text-align: left;
}
.yl-faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--z6);
    transition: transform .25s;
}
.yl-faq-a {
    padding: 0 28px 24px;
}
.yl-faq-a p {
    font-family: var(--fb);
    font-size: 15px;
    color: var(--z6);
    line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   FOOTER (site-wide — replaces ListingPro's default footer)
════════════════════════════════════════════════════════════════ */
.yl-footer {
    background: #FFB800;
    font-family: var(--fb);
    color: var(--bk);
    position: relative;
    overflow: hidden;
}
.yl-footer *, .yl-footer *::before, .yl-footer *::after { box-sizing: border-box; }
.yl-footer h1, .yl-footer h2, .yl-footer h3, .yl-footer p { margin: 0; }
.yl-footer a { text-decoration: none; color: inherit; }
.yl-footer .yl-c {
    max-width: 100%;
    padding: 0 100px;
    position: relative;
    z-index: 1;
}
.yl-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 80px 0 56px;
    position: relative;
}
.yl-footer-top > * { position: relative; z-index: 1; }
.yl-footer-logo {
    display: inline-block;
    font-family: var(--fd);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -.02em;
    color: var(--bk);
}
.yl-footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(9,9,11,.7);
    max-width: 280px;
    margin-top: 14px;
}
.yl-footer-social { display: flex; gap: 10px; margin-top: 22px; }
.yl-footer-social a {
    width: 36px;
    height: 36px;
    border: 2px solid var(--bk);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trn);
}
.yl-footer-social a:hover { background: var(--bk); color: var(--y); }
.yl-footer-social svg { width: 16px; height: 16px; }
.yl-footer-col-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bk);
    margin-bottom: 18px;
}
.yl-footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(9,9,11,.75);
    padding: 7px 0;
    transition: color .15s;
}
.yl-footer-col a:hover { color: var(--bk); }
.yl-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid rgba(9,9,11,.15);
    font-size: 13px;
    color: rgba(9,9,11,.65);
}
.yl-footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(9,9,11,.7);
    max-width: 1280px;
}
.yl-footer-wm {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: max-content;
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(90px, 16vw, 260px);
    line-height: 1;
    letter-spacing: .08em;
    color: rgba(9,9,11,.08);
    text-align: center;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════════════════════ */
.yl-cta {
    background: var(--y);
    border-bottom: 2px solid var(--bk);
    overflow: hidden;
    position: relative;
}
.yl-cta .yl-c { padding-top: 80px; padding-bottom: 0; position: relative; z-index: 1; }
.yl-cta-inner { max-width: 600px; padding-bottom: 80px; }
.yl-cta-inner .yl-label { color: rgba(9,9,11,.5); }
.yl-cta-inner h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 16px !important;
}
.yl-cta-inner p {
    font-size: 17px;
    color: rgba(9,9,11,.65);
    margin-bottom: 32px !important;
}
.yl-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.yl-cta .yl-btn-primary { background: var(--bk); color: var(--wh); border-color: var(--bk); }
.yl-cta .yl-btn-primary:hover { background: var(--wh); color: var(--bk); }

.yl-cta-wm {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 18vw;
    line-height: .85;
    letter-spacing: -.04em;
    color: rgba(9,9,11,.1);
    user-select: none;
    white-space: nowrap;
    margin-top: -40px;
    overflow: hidden;
}
.yl-cta-wm span { color: rgba(9,9,11,.18); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .yl-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .yl-hero-img-col { display: none; }
    .yl-tools-header { grid-template-columns: 1fr; gap: 24px; }
    .yl-tools-grid { grid-template-columns: 1fr 1fr; }
    .yl-resources-grid { grid-template-columns: repeat(2, 1fr); }
    .yl-cities-c { padding: 0 40px; }
    .yl-cities-grid { grid-template-columns: 1fr 1fr; }
    .yl-city-card { height: 320px; }
    .yl-faq-inner { grid-template-columns: 1fr; gap: 32px; }
    .yl-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .yl-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .yl-c { padding: 0 24px; }
    .yl-footer .yl-c { padding: 0 24px; }
    .yl-footer-top { grid-template-columns: 1fr; gap: 32px; }
    .yl-footer-bottom { flex-direction: column; align-items: flex-start; }
    .yl-hero-grid { padding: 48px 24px; }
    .yl-stats-grid { flex-wrap: wrap; gap: 24px; }
    .yl-stat-divider { display: none; }
    .yl-cats-header { grid-template-columns: 1fr; gap: 24px; }
    .yl-cats-grid { grid-template-columns: repeat(3, 1fr); }
    .yl-tools-grid { grid-template-columns: 1fr; }
    .yl-resources-grid { grid-template-columns: repeat(2, 1fr); }
    .yl-cities-c { padding: 0 24px; }
    .yl-cities-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .yl-cities-grid { grid-template-columns: 1fr 1fr; }
    .yl-city-card { height: 260px; }
    .yl-states-pills { flex-wrap: wrap; }
    .yl-hiw-c { padding: 0 24px; }
    .yl-hiw-grid { grid-template-columns: 1fr; }
    .yl-listings-grid { grid-template-columns: 1fr; }
    .yl-blog-grid { grid-template-columns: 1fr; }
}