/* ================================================================
   GoYatchify — Yacht Listings CSS
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --gy-navy:      #0b1f6f;
    --gy-gold:      #0073ff;
    --gy-gold-dark: #005fd6;
    --gy-blue:      #0073ff;
    --gy-light:     #f4f6f9;
    --gy-border:    #e0e4ea;
    --gy-text:      #2c2c2c;
    --gy-muted:     #666;
    --gy-radius:    6px;
    --gy-shadow:    0 2px 12px rgba(0,0,0,0.08);
    --gy-shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
    --gy-trans:     all 0.22s ease;
}

/* ── Utility Buttons ───────────────────────────────────────────── */
.gy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--gy-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gy-trans);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.gy-btn--primary  { background: var(--gy-gold); color: #fff; border-color: var(--gy-gold); }
.gy-btn--primary:hover { background: var(--gy-gold-dark); border-color: var(--gy-gold-dark); color: #fff; }
.gy-btn--ghost    { background: transparent; color: var(--gy-navy); border-color: var(--gy-border); }
.gy-btn--ghost:hover { border-color: var(--gy-navy); background: var(--gy-light); }
.gy-btn--sm       { padding: 7px 14px; font-size: 13px; }
.gy-btn--block    { width: 100%; margin-bottom: 10px; }

/* ── Badges ────────────────────────────────────────────────────── */
.gy-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.badge--available  { background: #e8f5e9; color: #2e7d32; }
.badge--offer      { background: #fff3e0; color: #e65100; }
.badge--sold       { background: #fce4ec; color: #c62828; }
.gy-badge--featured { background: var(--gy-gold); color: #fff; }

/* ─────────────────────────────────────────────────────────────────
   ARCHIVE — Filter Bar
   ───────────────────────────────────────────────────────────────── */
.gy-filter-wrap {
    background: var(--gy-navy);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.gy-filter-form { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.gy-filter-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.gy-filter-row--advanced { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.15); margin-top: 10px; }

.gy-filter-field { display: flex; flex-direction: column; gap: 4px; flex: 1 1 160px; min-width: 130px; }
.gy-filter-field label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gy-filter-field select,
.gy-filter-field input[type="number"],
.gy-filter-field input[type="text"] {
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--gy-radius);
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 13px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.gy-filter-field select option { background: var(--gy-navy); color: #fff; }
.gy-filter-field select:focus,
.gy-filter-field input:focus { outline: none; border-color: var(--gy-gold); background: rgba(255,255,255,.15); }

.gy-filter-field--actions { flex-direction: row; flex: 0 0 auto; gap: 8px; align-items: flex-end; padding-bottom: 1px; }
.gy-filter-field--range .gy-range-inputs { display: flex; gap: 6px; align-items: center; }
.gy-filter-field--range .gy-range-inputs span { color: rgba(255,255,255,.5); }
.gy-filter-field--range input { max-width: 100px; }

.gy-clear-filters { color: rgba(255,255,255,.6); font-size: 12px; text-decoration: underline; cursor: pointer; align-self: center; }
.gy-clear-filters:hover { color: #fff; }

/* ── Archive Header ────────────────────────────────────────────── */
.gy-archive-header {
    background: var(--gy-navy) !important;
    padding: 40px 0 20px;
    color: #fff !important;
}
.gy-archive-header *,
.gy-archive-header h1 { color: #fff !important; }
.gy-archive-title { font-size: 30px !important; font-weight: 800 !important; margin: 0 !important; color: #fff !important; }
.gy-archive-title  { color: #fff; font-size: 28px; font-weight: 700; margin: 0; }

/* ── Results Bar ───────────────────────────────────────────────── */
.gy-results-bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 10px; color: var(--gy-muted); font-size: 14px; }

/* ── Listing Grid ──────────────────────────────────────────────── */
.gy-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 40px;
}
@media (max-width: 1280px) { .gy-listing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px)  { .gy-listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .gy-listing-grid { grid-template-columns: 1fr; } }

/* View Details button text always white */
.gy-card .gy-btn--primary,
.gy-card .gy-btn--primary:hover { color: #fff !important; }

/* ── Listing Card ──────────────────────────────────────────────── */
.gy-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--gy-shadow);
    transition: var(--gy-trans);
    border: 1px solid var(--gy-border);
}
.gy-card:hover { box-shadow: var(--gy-shadow-hover); transform: translateY(-3px); }
.gy-card--featured { border-color: var(--gy-gold); }

.gy-card__thumb-wrap { position: relative; }
.gy-card__thumb-link { display: block; }
.gy-card__thumb {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e0e4ea;
}
.gy-card__thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 50%); }

.gy-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}
.gy-card__badge--featured  { background: var(--gy-gold); color: #fff; }
.gy-card__badge--condition { background: rgba(255,255,255,.9); color: var(--gy-navy); top: 12px; left: auto; right: 44px; }

.gy-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(255,255,255,.9);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--gy-trans);
    color: var(--gy-muted);
}
.gy-wishlist-btn:hover,
.gy-wishlist-btn.is-wishlisted { color: #0b1f6f; }
.gy-wishlist-btn.is-wishlisted svg { fill: #0b1f6f; }

.gy-card__body { padding: 16px; }

.gy-card__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.gy-card__type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gy-gold); }
.gy-card__location { font-size: 12px; color: var(--gy-muted); display: flex; align-items: center; gap: 3px; }

.gy-card__title { font-size: 16px; font-weight: 700; margin: 0 0 10px; line-height: 1.3; }
.gy-card__title a { color: var(--gy-navy); text-decoration: none; }
.gy-card__title a:hover { color: var(--gy-gold); }

.gy-card__specs { list-style: none; margin: 0; padding: 14px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; border-top: 1px solid var(--gy-border); }
.gy-card__specs li { font-size: 14px; font-weight: 700; color: var(--gy-navy); }
.gy-card__specs li span { display: block; font-size: 10px; letter-spacing: .5px; text-transform: uppercase; color: var(--gy-muted); font-weight: 600; margin-bottom: 3px; }

.gy-card__footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gy-border); padding-top: 12px; margin-top: 4px; }
.gy-card__price { font-size: 20px; font-weight: 800; color: var(--gy-navy); }
.gy-card__price--poa { font-size: 14px; color: var(--gy-muted); font-style: italic; }

/* ── No Results ────────────────────────────────────────────────── */
.gy-no-results { text-align: center; padding: 80px 20px; }
.gy-no-results h3 { color: var(--gy-navy); margin: 16px 0 8px; }
.gy-no-results p  { color: var(--gy-muted); }

/* ── Pagination ────────────────────────────────────────────────── */
.page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid var(--gy-border); border-radius: var(--gy-radius); color: var(--gy-navy); text-decoration: none; font-size: 14px; }
.page-numbers.current { background: var(--gy-navy); color: #fff; border-color: var(--gy-navy); }
.page-numbers:hover { border-color: var(--gy-gold); color: var(--gy-gold); }
.gy-archive-wrap .page-numbers { margin-bottom: 40px; }

/* ─────────────────────────────────────────────────────────────────
   SINGLE LISTING
   ───────────────────────────────────────────────────────────────── */
.gy-breadcrumb { font-size: 13px; color: var(--gy-muted); padding: 14px 0 8px; }
.gy-breadcrumb a { color: var(--gy-muted); text-decoration: none; }
.gy-breadcrumb a:hover { color: var(--gy-navy); }
.gy-breadcrumb span { margin: 0 5px; }

.gy-single-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; padding: 24px 0 60px; }
@media (max-width: 900px) { .gy-single-layout { grid-template-columns: 1fr; } }

/* Gallery */
.gy-gallery { margin-bottom: 28px; border-radius: 8px; overflow: hidden; }
.gy-gallery__main { position: relative; background: #000; }
.gy-gallery__main-img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.gy-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    transition: var(--gy-trans);
}
.gy-gallery__nav:hover { background: #fff; }
.gy-gallery__nav--prev { left: 12px; }
.gy-gallery__nav--next { right: 12px; }
.gy-gallery__count { position: absolute; bottom: 12px; right: 14px; background: rgba(0,0,0,.55); color: #fff; font-size: 12px; padding: 3px 8px; border-radius: 3px; }

.gy-gallery__thumbs { display: flex; gap: 8px; padding: 10px; background: #1a1a1a; overflow-x: auto; }
.gy-gallery__thumb { flex: 0 0 80px; height: 60px; cursor: pointer; border-radius: 4px; overflow: hidden; opacity: .6; border: 2px solid transparent; transition: var(--gy-trans); }
.gy-gallery__thumb.active,
.gy-gallery__thumb:hover { opacity: 1; border-color: var(--gy-gold); }
.gy-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Description */
.gy-single-description { margin-bottom: 28px; }
.gy-single-description h2 { font-size: 20px; color: var(--gy-navy); margin-bottom: 12px; }

/* Specs table */
.gy-specs-section h2 { font-size: 20px; color: var(--gy-navy); margin-bottom: 12px; }
.gy-specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gy-specs-table tr { border-bottom: 1px solid var(--gy-border); }
.gy-specs-table tr:last-child { border-bottom: none; }
.gy-specs-table th { width: 40%; padding: 10px 14px; text-align: left; color: var(--gy-muted); font-weight: 600; background: var(--gy-light); }
.gy-specs-table td { padding: 10px 14px; color: var(--gy-text); font-weight: 500; }

/* Sidebar */
.gy-single-sidebar {
    background: #fff;
    border: 1px solid var(--gy-border);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--gy-shadow);
    position: sticky;
    top: 90px;
}
.gy-single-badges { margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.gy-single-title { font-size: 22px; color: var(--gy-navy); margin: 0 0 14px; line-height: 1.3; }

.gy-single-keystats { list-style: none; margin: 0 0 18px; padding: 0; background: var(--gy-light); border-radius: var(--gy-radius); }
.gy-single-keystats li { display: flex; justify-content: space-between; padding: 8px 14px; border-bottom: 1px solid var(--gy-border); font-size: 13px; }
.gy-single-keystats li:last-child { border-bottom: none; }
.gy-single-keystats strong { color: var(--gy-muted); font-weight: 600; }

.gy-single-price { font-size: 32px; font-weight: 800; color: var(--gy-navy); margin-bottom: 18px; }
.gy-single-price--poa { font-size: 18px; color: var(--gy-muted); font-style: italic; }

.gy-sold-notice { padding: 12px; background: #fce4ec; color: #c62828; border-radius: var(--gy-radius); font-size: 13px; margin-bottom: 12px; }
.gy-listing-ref { font-size: 12px; color: var(--gy-muted); text-align: center; margin-top: 14px; }

/* ─────────────────────────────────────────────────────────────────
   ENQUIRY MODAL
   ───────────────────────────────────────────────────────────────── */
.gy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.gy-modal {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.gy-modal h3 { color: var(--gy-navy); font-size: 22px; margin: 0 0 4px; }
.gy-modal__subtitle { color: var(--gy-muted); font-size: 14px; margin-bottom: 20px; }
.gy-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--gy-muted);
    line-height: 1;
}
.gy-modal__close:hover { color: var(--gy-navy); }

/* Enquiry form */
.gy-form-field { margin-bottom: 14px; }
.gy-form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--gy-navy); margin-bottom: 4px; }
.gy-form-field input,
.gy-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gy-border);
    border-radius: var(--gy-radius);
    font-size: 14px;
    transition: var(--gy-trans);
    box-sizing: border-box;
}
.gy-form-field input:focus,
.gy-form-field textarea:focus { outline: none; border-color: var(--gy-gold); }
.gy-form-note { font-size: 12px; color: var(--gy-muted); text-align: center; margin-top: 10px; }

/* ─────────────────────────────────────────────────────────────────
   HOME PAGE
   ───────────────────────────────────────────────────────────────── */

/* Hero Slider wrapper (SS3) */
.gy-hero-slider-wrap { line-height: 0; }
.gy-hero-slider-wrap .n2-ss-slider-wrapper-inside { margin: 0 !important; }

/* Static fallback hero (shown until SS3 slider is configured) */
.gy-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.gy-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,35,66,.72) 0%, rgba(10,35,66,.55) 100%);
}
.gy-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 24px;
    width: 100%;
}
.gy-hero__eyebrow {
    display: inline-block;
    background: var(--gy-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}
.gy-hero__title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.gy-hero__subtitle {
    color: rgba(255,255,255,.88);
    font-size: 18px;
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Search bar below slider */
.gy-home-search-bar {
    background: var(--gy-navy);
    padding: 18px 0;
    border-bottom: 3px solid var(--gy-gold);
}
.gy-home-search-bar .gy-hero-search {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: none;
}
.gy-home-search-bar .gy-hero-search__field label { color: rgba(255,255,255,.65); }
.gy-home-search-bar .gy-hero-search__field select {
    background-color: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.gy-home-search-bar .gy-hero-search__field select option { background: var(--gy-navy); }

/* Hero Search Bar (shared styles — used both on home and in hero) */
.gy-hero-search {
    background: #fff;
    border-radius: 8px;
    padding: 14px 14px 14px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    text-align: left;
}
.gy-hero-search__fields { display: flex; gap: 10px; flex: 1; flex-wrap: wrap; }
.gy-hero-search__field { display: flex; flex-direction: column; gap: 4px; flex: 1 1 140px; }
.gy-hero-search__field label { font-size: 11px; font-weight: 700; color: var(--gy-muted); text-transform: uppercase; letter-spacing: .4px; }
.gy-hero-search__field select {
    padding: 10px 12px;
    border: 1px solid var(--gy-border);
    border-radius: var(--gy-radius);
    font-size: 14px;
    color: var(--gy-text);
    -webkit-appearance: none;
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 10px center;
}
.gy-hero-search__field select:focus { outline: none; border-color: var(--gy-gold); }
.gy-hero-search__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gy-gold);
    color: #fff;
    border: none;
    border-radius: var(--gy-radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--gy-trans);
    flex-shrink: 0;
}
.gy-hero-search__btn:hover { background: var(--gy-gold-dark); }

/* Stats Bar */
.gy-statsbar { background: var(--gy-navy); padding: 20px 0; }
.gy-statsbar__inner { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.gy-stat { text-align: center; color: #fff; }
.gy-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--gy-gold); }
.gy-stat span { font-size: 13px; opacity: .75; text-transform: uppercase; letter-spacing: .5px; }

/* Section common */
.gy-section { padding: 60px 0; }
.gy-section--grey { background: var(--gy-light); }
.gy-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 14px; }
.gy-section-header--center { flex-direction: column; align-items: center; text-align: center; }
.gy-section-eyebrow { display: block; font-size: 12px; font-weight: 700; color: var(--gy-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.gy-section-title { font-size: 30px; font-weight: 800; color: var(--gy-navy); margin: 0; }

/* Browse by Type */
.gy-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px)  { .gy-type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .gy-type-grid { grid-template-columns: 1fr 1fr; } }

.gy-type-card {
    background: #fff;
    border: 1px solid var(--gy-border);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: var(--gy-trans);
    display: block;
}
.gy-type-card:hover { border-color: var(--gy-gold); box-shadow: var(--gy-shadow-hover); transform: translateY(-3px); }
.gy-type-card__icon { font-size: 36px; margin-bottom: 12px; }
.gy-type-card__name { font-size: 16px; font-weight: 700; color: var(--gy-navy); margin: 0 0 6px; }
.gy-type-card__count { font-size: 12px; color: var(--gy-muted); }

/* CTA Split */
.gy-section--cta { background: var(--gy-navy); }
.gy-cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
@media (max-width: 700px) { .gy-cta-split { grid-template-columns: 1fr; } }

.gy-cta-block { padding: 50px 40px; text-align: center; }
.gy-cta-block--sell   { background: rgba(255,255,255,.05); }
.gy-cta-block--broker { background: rgba(0,115,255,.12); }
.gy-cta-block__icon { font-size: 40px; display: block; margin-bottom: 16px; }
.gy-cta-block h3 { color: #fff; font-size: 24px; font-weight: 700; margin: 0 0 10px; }
.gy-cta-block p  { color: rgba(255,255,255,.75); font-size: 15px; margin: 0 0 24px; line-height: 1.6; }
.gy-btn--outline-white { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.gy-btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* Ad spaces */
.gy-section--ads { padding: 30px 0; background: #f9f9f9; border-top: 1px solid var(--gy-border); }
.gy-ad-strip { display: flex; gap: 20px; }
.gy-ad-slot {
    flex: 1;
    min-height: 90px;
    border: 2px dashed var(--gy-border);
    border-radius: var(--gy-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 13px;
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────
   HOME — EXPANDED SEARCH BAR
   ───────────────────────────────────────────────────────────────── */
.gy-home-search-bar {
    background: var(--gy-navy);
    padding: 22px 0;
    border-top: 3px solid var(--gy-gold);
}
.gy-home-search-form { width: 100%; }

.gy-home-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.gy-home-search-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 150px;
    min-width: 130px;
}
.gy-home-search-field label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gy-home-search-field select,
.gy-home-search-field input[type="number"] {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--gy-radius);
    color: #fff;
    padding: 9px 12px;
    font-size: 13px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: var(--gy-trans);
}
.gy-home-search-field select:focus,
.gy-home-search-field input[type="number"]:focus {
    border-color: var(--gy-gold);
    background: rgba(255,255,255,.14);
}
.gy-home-search-field select option { background: #0b1f6f; color: #fff; }
.gy-home-search-field input[type="number"]::placeholder { color: rgba(255,255,255,.4); }

.gy-home-search-field--range { flex: 1 1 180px; }
.gy-range-pair {
    display: flex;
    align-items: center;
    gap: 6px;
}
.gy-range-pair span { color: rgba(255,255,255,.5); font-size: 13px; flex-shrink: 0; }
.gy-range-pair select,
.gy-range-pair input { flex: 1; min-width: 0; }

.gy-home-search-field--btn { flex: 0 0 auto; min-width: unset; justify-content: flex-end; }
.gy-home-search-field--btn button {
    margin-top: 20px; /* align with inputs that have labels */
}

@media (max-width: 900px) {
    .gy-home-search-field { flex: 1 1 calc(50% - 10px); }
    .gy-home-search-field--btn { flex: 1 1 100%; }
    .gy-home-search-field--btn button { width: 100%; justify-content: center; }
}
@media (max-width: 540px) {
    .gy-home-search-field { flex: 1 1 100%; }
    .gy-range-pair { flex-wrap: nowrap; }
}

/* ─────────────────────────────────────────────────────────────────
   HEADER EXTRAS — Notifications, Language Switcher, Login/Messages
   ───────────────────────────────────────────────────────────────── */
.gy-header-extras {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
}

.gy-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--gy-radius);
    color: #fff;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gy-trans);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.gy-header-btn:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

/* Notification bell */
.gy-notif-btn { position: relative; }
.gy-notif-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0 3px;
}

/* Language switcher */
.gy-lang-switch { position: relative; }
.gy-lang-btn { gap: 4px; }

.gy-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--gy-border);
    border-radius: var(--gy-radius);
    box-shadow: var(--gy-shadow-hover);
    min-width: 155px;
    z-index: 9999;
    overflow: hidden;
}
.gy-lang-dropdown.is-open { display: block; }

.gy-lang-item {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--gy-text);
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}
.gy-lang-item:hover,
.gy-lang-item.active { background: var(--gy-light); color: var(--gy-navy); }

/* Broker Login button in header */
.gy-header-login.gy-btn--primary {
    padding: 7px 14px;
    font-size: 13px;
}

/* Message icon */
.gy-msg-btn svg { display: block; }

/* ─────────────────────────────────────────────────────────────────
   BROKERS SECTION
   ───────────────────────────────────────────────────────────────── */
.gy-section--brokers { background: #fff; }

.gy-broker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) { .gy-broker-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .gy-broker-grid { grid-template-columns: 1fr; } }

/* Broker Card */
.gy-broker-card {
    background: #fff;
    border: 1px solid var(--gy-border);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--gy-trans);
}
.gy-broker-card:hover { box-shadow: var(--gy-shadow-hover); transform: translateY(-2px); }

.gy-broker-card__header { display: flex; gap: 14px; align-items: flex-start; }

.gy-broker-card__logo { flex-shrink: 0; width: 56px; height: 56px; }
.gy-broker-card__logo img {
    width: 56px; height: 56px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--gy-border);
}
.gy-broker-card__logo-placeholder {
    width: 56px; height: 56px;
    border-radius: 8px;
    background: var(--gy-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -1px;
}

.gy-broker-card__info { flex: 1; min-width: 0; }
.gy-broker-card__name {
    font-size: 15px; font-weight: 700;
    color: var(--gy-navy);
    margin: 0 0 3px;
    display: flex; align-items: center; gap: 5px;
    flex-wrap: wrap;
}
.gy-broker-card__name a { color: inherit; text-decoration: none; }
.gy-broker-card__name a:hover { color: var(--gy-gold); }
.gy-broker-card__verified { display: inline-flex; align-items: center; }
.gy-broker-card__tagline  { font-size: 12px; color: var(--gy-muted); margin: 0 0 5px; }
.gy-broker-card__location {
    font-size: 11px; color: var(--gy-muted);
    display: inline-flex; align-items: center; gap: 3px;
}

.gy-broker-card__specialty {
    font-size: 12px; color: var(--gy-muted);
    border-top: 1px solid var(--gy-border);
    padding-top: 10px;
    margin: 0;
    font-style: italic;
}

.gy-broker-card__stats {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
}
.gy-broker-stat { display: flex; flex-direction: column; gap: 2px; }
.gy-broker-stat strong { font-size: 18px; font-weight: 800; color: var(--gy-navy); line-height: 1; }
.gy-broker-stat span   { font-size: 11px; color: var(--gy-muted); text-transform: uppercase; letter-spacing: .4px; }
.gy-broker-stat a { color: var(--gy-navy); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; font-size: 13px; }
.gy-broker-stat a:hover { color: var(--gy-gold); }

.gy-broker-card__cta { margin-top: auto; }

/* ─────────────────────────────────────────────────────────────────
   BROKER ARCHIVE — Page Header + Filter Bar
   ───────────────────────────────────────────────────────────────── */
.gy-broker-archive-header {
    background: var(--gy-navy) !important;
    padding: 40px 0 30px;
    color: #fff !important;
}
.gy-broker-archive-header *,
.gy-broker-archive-header h1,
.gy-broker-archive-header p {
    color: #fff !important;
}
.gy-broker-archive-header .gy-archive-title {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 6px !important;
}
.gy-archive-subtitle {
    color: rgba(255,255,255,.7) !important;
    font-size: 15px !important;
    margin: 0 !important;
}

.gy-broker-filter-bar {
    background: var(--gy-navy);
    padding: 20px 0;
    border-top: 3px solid var(--gy-gold);
}
.gy-broker-filter-form { width: 100%; }
.gy-broker-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}
.gy-broker-filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 200px;
}
.gy-broker-filter-field--search { flex: 2 1 260px; }
.gy-broker-filter-field--btn    { flex: 0 0 auto; flex-direction: row; align-items: flex-end; gap: 8px; }

.gy-broker-filter-field label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gy-broker-filter-field input[type="text"],
.gy-broker-filter-field select {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--gy-radius);
    color: #fff;
    padding: 9px 12px;
    font-size: 13px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: var(--gy-trans);
}
.gy-broker-filter-field { min-width: 0; }
.gy-broker-filter-field input[type="text"]:focus,
.gy-broker-filter-field select:focus {
    border-color: var(--gy-gold);
    background: rgba(255,255,255,.14);
}
.gy-broker-filter-field select option { background: #0b1f6f; }
.gy-broker-filter-field input::placeholder { color: rgba(255,255,255,.4); }

.gy-broker-search-wrap { position: relative; }
.gy-broker-search-wrap svg {
    position: absolute;
    left: 10px; top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.4);
    pointer-events: none;
}
.gy-broker-search-wrap input { padding-left: 34px !important; }

.gy-clear-filters {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    text-decoration: underline;
    white-space: nowrap;
    align-self: center;
}
.gy-clear-filters:hover { color: #fff; }

/* Archive grid override — 3 columns on archive, 4 on home */
.gy-broker-grid--archive {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px)  { .gy-broker-grid--archive { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .gy-broker-grid--archive { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────
   SINGLE BROKER PROFILE
   ───────────────────────────────────────────────────────────────── */
.gy-broker-profile__header {
    background: var(--gy-navy) !important;
    padding: 40px 0;
    /* Force all text white regardless of theme overrides */
    color: #fff !important;
}
/* Nuke any theme colour overrides on every child element */
.gy-broker-profile__header *,
.gy-broker-profile__header h1,
.gy-broker-profile__header h2,
.gy-broker-profile__header h3,
.gy-broker-profile__header p,
.gy-broker-profile__header span,
.gy-broker-profile__header a {
    color: #fff;
}

.gy-broker-profile__header-inner {
    display: grid;
    grid-template-columns: 88px 1fr 240px;
    gap: 28px;
    align-items: flex-start;
}
@media (max-width: 960px) {
    .gy-broker-profile__header-inner {
        grid-template-columns: 88px 1fr;
    }
    .gy-broker-profile__contact-box {
        grid-column: 1 / -1;
    }
}
@media (max-width: 540px) {
    .gy-broker-profile__header-inner { grid-template-columns: 1fr; }
    .gy-broker-profile__logo { margin: 0 auto; }
}

/* Logo */
.gy-broker-profile__logo {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
}
.gy-broker-profile__logo img {
    width: 88px; height: 88px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.3);
    display: block;
}
.gy-broker-profile__logo-placeholder {
    width: 88px; height: 88px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.25);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

/* Info */
.gy-broker-profile__name {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 8px !important;
    line-height: 1.2 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.gy-broker-profile__verified {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    background: rgba(21,101,192,.3);
    border: 1px solid rgba(144,202,249,.4);
    color: #90caf9 !important;
    font-size: 12px !important;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.gy-broker-profile__tagline {
    color: rgba(255,255,255,.75) !important;
    font-size: 15px !important;
    margin: 0 0 12px !important;
    line-height: 1.5 !important;
}
.gy-broker-profile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 4px;
}
.gy-broker-profile__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.7) !important;
    font-size: 13px;
}

/* Tier badge */
.gy-broker-tier-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gy-broker-tier--enterprise { background: rgba(0,115,255,.25); color: var(--gy-gold); border: 1px solid rgba(0,115,255,.4); }
.gy-broker-tier--growth     { background: rgba(21,101,192,.2);  color: #90caf9;        border: 1px solid rgba(21,101,192,.4); }
.gy-broker-tier--starter    { background: rgba(255,255,255,.08);color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.gy-broker-tier--custom     { background: rgba(255,255,255,.08);color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }

/* Contact Box */
.gy-broker-profile__contact-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 20px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.gy-broker-profile__contact-box h3 {
    color: rgba(255,255,255,.65) !important;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin: 0 0 14px !important;
}
.gy-broker-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--gy-radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--gy-trans);
}
.gy-broker-contact-btn--phone { background: var(--gy-gold);        color: #fff; }
.gy-broker-contact-btn--phone:hover { background: var(--gy-gold-dark); color: #fff; }
.gy-broker-contact-btn--email { background: rgba(255,255,255,.1);  color: #fff; border: 1px solid rgba(255,255,255,.2); }
.gy-broker-contact-btn--email:hover { background: rgba(255,255,255,.18); color: #fff; }
.gy-broker-contact-btn--web   { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.gy-broker-contact-btn--web:hover { border-color: rgba(255,255,255,.3); color: #fff; }

.gy-broker-profile__stat-row { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); }
.gy-broker-profile__stat { text-align: center; flex: 1; }
.gy-broker-profile__stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--gy-gold); line-height: 1; }
.gy-broker-profile__stat span   { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .4px; }

/* Profile body */
.gy-broker-profile__body {
    display: block;
    padding: 40px 20px;
    max-width: 1200px;
}
.gy-broker-profile__main { width: 100%; }
.gy-broker-profile__section { margin-bottom: 48px; }
.gy-broker-profile__section h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gy-navy);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gy-border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.gy-broker-listings-count {
    background: var(--gy-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
}
.gy-broker-profile__bio { font-size: 15px; line-height: 1.8; color: var(--gy-text); }

/* ─────────────────────────────────────────────────────────────────
   FOOTER CLEANUP
   ───────────────────────────────────────────────────────────────── */

/* Hide default "all pages" fallback footer nav */
.foot_sidebar .widget_pages,
.foot_sidebar .widget_archives,
.foot_sidebar .widget_categories,
.foot_sidebar .widget_recent_entries,
.foot_sidebar .widget_recent_comments,
.foot_sidebar .widget_meta { display: none !important; }

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .gy-filter-wrap { position: relative; }
    .gy-filter-field { flex: 1 1 100%; }
    .gy-filter-field--actions { justify-content: stretch; }
    .gy-archive-title { font-size: 22px; }
    .gy-single-sidebar { position: static; }
}


/* ── Lock card design inside the Premium Vessels carousel (defeats SmartSlider layer CSS) ── */
.gy-pv .gy-card { background:#fff !important; border-radius:8px !important; box-shadow:0 2px 12px rgba(0,0,0,.08) !important; overflow:hidden !important; }
.gy-pv .gy-card__thumb { height:220px !important; }
.gy-pv .gy-card__body { padding:16px !important; }
.gy-pv .gy-card__type { font-family:'DM Sans',sans-serif !important; font-size:11px !important; font-weight:700 !important; letter-spacing:.5px !important; text-transform:uppercase !important; color:var(--gy-gold) !important; }
.gy-pv .gy-card__location { font-family:'Inter',sans-serif !important; font-size:12px !important; color:var(--gy-muted) !important; }
.gy-pv .gy-card__title, .gy-pv .gy-card__title a { font-family:'DM Sans',sans-serif !important; font-size:16px !important; font-weight:700 !important; line-height:1.3 !important; color:var(--gy-navy) !important; }
.gy-pv .gy-card__specs li { font-family:'Inter',sans-serif !important; font-size:14px !important; font-weight:700 !important; color:var(--gy-navy) !important; }
.gy-pv .gy-card__specs li span { font-family:'Inter',sans-serif !important; font-size:10px !important; font-weight:600 !important; color:var(--gy-muted) !important; }
.gy-pv .gy-card__price { font-family:'DM Sans',sans-serif !important; font-size:20px !important; font-weight:800 !important; color:var(--gy-navy) !important; }
.gy-pv .gy-card .gy-btn--primary { background:var(--gy-gold) !important; color:#fff !important; border-color:var(--gy-gold) !important; font-family:'DM Sans',sans-serif !important; font-weight:600 !important; }
.gy-pv .gy-card .gy-btn--primary:hover { background:var(--gy-gold-dark) !important; border-color:var(--gy-gold-dark) !important; color:#fff !important; }

/* ── Clean yacht card (Boats archive / category pages) — matches home cards ── */
.gy-card--clean { display: flex; flex-direction: column; }
.gy-card--clean .gy-card__thumb::after { display: none; }           /* remove dark gradient */
.gy-card--clean .gy-wishlist-btn { left: 12px; right: auto; color: #0073ff; }
.gy-card--clean .gy-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1 1 auto; }
.gy-card--clean .gy-card__type { display: block; margin-bottom: 6px; }
.gy-card--clean .gy-card__title { margin: 0 0 6px; }
.gy-card--clean .gy-card__location { display: flex; align-items: center; gap: 4px; margin: 0; }
.gy-card--clean .gy-card__footer { margin-top: auto; padding-top: 18px; border-top: none; display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* ── "More Filters" toggle — white bg, dark-blue text (on the navy filter bar) ── */
#gyToggleAdvanced {
    background: #fff !important;
    color: #0b1f6f !important;
    border-color: #fff !important;
}
#gyToggleAdvanced:hover { background: #eef2ff !important; color: #0b1f6f !important; border-color: #eef2ff !important; }
#gyToggleAdvanced .gy-chevron { color: #0b1f6f !important; }

/* ================================================================
   BROKER CARD — matches reference design
   ================================================================ */
.gy-bcard {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f2f7ff 100%);
  border: 1px solid #e8eefc;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px -12px rgba(11,31,111,.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #0b1f6f;
}
.gy-bcard__wm { position: absolute; top: 18px; right: 18px; width: 66px; height: 66px; color: #cfe0ff; opacity: .6; pointer-events: none; }

/* Head */
.gy-bcard__head { display: flex; gap: 16px; align-items: flex-start; position: relative; z-index: 1; }
.gy-bcard__avatar { width: 66px; height: 66px; flex: 0 0 66px; border-radius: 16px; overflow: hidden; background: #0b1f6f; box-shadow: 0 6px 16px -6px rgba(11,31,111,.5); display: flex; align-items: center; justify-content: center; }
.gy-bcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.gy-bcard__avatar span { color: #fff; font-weight: 700; font-size: 20px; }
.gy-bcard__id { min-width: 0; }
.gy-bcard__name { display: flex; align-items: center; gap: 7px; margin: 0 0 3px; font-size: 20px; font-weight: 800; line-height: 1.15; }
.gy-bcard__name a { color: #0b1f6f; text-decoration: none; }
.gy-bcard__name a:hover { color: #0073ff; }
.gy-bcard__verified { display: inline-flex; flex: 0 0 auto; }
.gy-bcard__tagline { margin: 0 0 7px; font-style: italic; font-size: 14px; color: #64748b; line-height: 1.4; }
.gy-bcard__loc { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: #0073ff; }

/* Specializations */
.gy-bcard__specs-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #94a3b8; margin-bottom: 10px; }
.gy-bcard__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.gy-bcard__pill { font-size: 12.5px; font-weight: 600; padding: 6px 14px; border-radius: 999px; border: 1px solid transparent; }
.gy-bcard__pill--0 { background: #e6f0ff; color: #0073ff; border-color: #cfe0ff; }
.gy-bcard__pill--1 { background: #e7f8ef; color: #16a34a; border-color: #cdeeda; }
.gy-bcard__pill--2 { background: #fef3e2; color: #d97706; border-color: #f8e2be; }

/* Stat boxes */
.gy-bcard__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gy-bcard__stat { display: block; background: #f4f7fc; border: 1px solid #e8eefc; border-radius: 14px; padding: 14px 16px; text-decoration: none; color: inherit; transition: .18s; }
.gy-bcard__stat:hover { background: #eef3fd; border-color: #d6e2fb; }
.gy-bcard__stat--phone { cursor: pointer; }
.gy-bcard__stat-head { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #64748b; margin-bottom: 6px; }
.gy-bcard__stat-big { display: flex; align-items: center; gap: 8px; font-size: 26px; font-weight: 800; color: #0b1f6f; line-height: 1; }
.gy-bcard__active { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: #16a34a; }
.gy-bcard__phone { font-size: 17px; font-weight: 800; color: #0b1f6f; letter-spacing: -.01em; }
.gy-bcard__stat-sub { font-size: 11px; color: #94a3b8; margin-top: 3px; }

/* CTA */
.gy-bcard__cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(90deg, #00a3ff 0%, #0073ff 45%, #0b3fd0 100%);
  color: #fff !important; font-weight: 700; font-size: 15px;
  padding: 15px 20px; border-radius: 14px; text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(0,115,255,.55); transition: .2s;
}
.gy-bcard__cta:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 14px 28px -8px rgba(0,115,255,.65); }

@media (max-width: 420px) { .gy-bcard__stats { grid-template-columns: 1fr; } }

/* Broker archive results — top/bottom breathing room */
.gy-broker-archive-wrap #content { padding: 40px 0 64px; }
.gy-broker-archive-wrap .gy-results-bar { margin-bottom: 20px; }