  /* =========================================================================
     SCOPED RESET -- everything is namespaced .bspx- to coexist with Divi/theme
  ========================================================================= */
  .bspx { all: initial; display: block; }
  .bspx, .bspx *, .bspx *::before, .bspx *::after { box-sizing: border-box; }

  .bspx {
    /* PALETTE -- warm off-white canvas, near-black ink, single luxury accent */
    --paper:        #F6F4EE;
    --paper-2:      #EFEBE2;
    --surface:      #FFFFFF;
    --ink:          #0B0D10;
    --ink-2:        #14181D;
    --ink-3:        #1E242C;
    --rule:         #E2DDD2;
    --rule-2:       #D4CDBE;
    --rule-dark:    #2A3038;
    --text:         #0B0D10;
    --text-2:       #5A5F66;
    --text-3:       #8B8F95;
    --text-on-dark: #F2EEE5;
    --text-on-dark-2: #9CA3AB;
    --accent:       #B66A1C;     /* cognac -- luxury accent */
    --accent-2:     #8E5215;
    --brand:        #4A8AC2;     /* Bespoke brand blue */
    --brand-2:      #2E6BA8;     /* deeper for hover/active */
    --brand-bg:     #EDF3FA;     /* tint for dashboard hover */
    --signal:       #1F6F4A;     /* terminal green -- reserved for "live" status */
    --highlight:    #FFF8E6;

    /* TYPE */
    --serif:   "Fraunces", "Times New Roman", Georgia, serif;
    --sans:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

    /* MOTION */
    --tx: cubic-bezier(0.2, 0, 0, 1);

    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    background: var(--paper);
    width: 100%;
    margin: 0 auto;
  }

  /* =========================================================================
     TOP STRIPE -- thin colored stripe like a publication's masthead bar
  ========================================================================= */
  .bspx-stripe {
    height: 4px;
    background: var(--accent);
    width: 100%;
  }

  /* =========================================================================
     MASTHEAD -- dark bar, brand left, search center, meta right
  ========================================================================= */
  .bspx-mast {
    background: var(--ink);
    color: var(--text-on-dark);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .bspx-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
  }
  .bspx-brand-logo {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
  }
  .bspx-brand-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .bspx-brand-mark {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--text-on-dark);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .bspx-brand-sub {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand);
    font-weight: 600;
    padding: 3px 7px;
    border: 1px solid var(--brand);
    border-radius: 2px;
  }
  .bspx-mast-search {
    flex: 1;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
  }
  .bspx-mast-search input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-on-dark);
    padding: 9px 16px 9px 38px;
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.15s var(--tx), background 0.15s var(--tx);
  }
  .bspx-mast-search input::placeholder { color: var(--text-on-dark-2); }
  .bspx-mast-search input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
  }
  .bspx-mast-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-on-dark-2);
    pointer-events: none;
  }
  .bspx-mast-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-on-dark-2);
    flex-shrink: 0;
  }
  .bspx-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--signal);
    margin-right: 6px;
    box-shadow: 0 0 0 0 rgba(31, 111, 74, 0.5);
    animation: bspx-pulse 2s infinite;
  }
  @keyframes bspx-pulse {
    0% { box-shadow: 0 0 0 0 rgba(31, 111, 74, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(31, 111, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 111, 74, 0); }
  }

  /* =========================================================================
     STATS BAR -- Bloomberg-style data ribbon below masthead
  ========================================================================= */
  .bspx-ticker-bar {
    background: var(--ink-2);
    color: var(--text-on-dark);
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 1px solid var(--rule-dark);
    border-bottom: 2px solid var(--brand);
    overflow: hidden;
  }
  .bspx-ticker-stat { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
  .bspx-ticker-label { color: var(--text-on-dark-2); }
  .bspx-ticker-value { color: var(--brand); font-weight: 600; }
  .bspx-ticker-sep { color: var(--rule-dark); }

  /* =========================================================================
     PAGE TITLE -- editorial headline section
  ========================================================================= */
  .bspx-headline {
    padding: 40px 32px 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--rule);
  }
  .bspx-headline-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-2);
    margin: 0 0 10px;
    font-weight: 600;
  }
  .bspx-headline h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
  }
  .bspx-headline h1 em {
    font-style: italic;
    color: var(--accent);
  }
  .bspx-headline-aside {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--text-2);
    max-width: 320px;
    text-align: right;
    line-height: 1.5;
  }

  /* =========================================================================
     LAYOUT -- sidebar + main
  ========================================================================= */
  .bspx-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
  }
  .bspx-sidebar {
    background: var(--paper-2);
    border-right: 1px solid var(--rule);
    padding: 28px 24px;
    min-height: 600px;
  }
  .bspx-main { padding: 28px 32px 64px; min-width: 0; }

  /* =========================================================================
     SIDEBAR FILTERS
  ========================================================================= */
  .bspx-filter-block { margin-bottom: 28px; }
  .bspx-filter-block:last-child { margin-bottom: 0; }
  .bspx-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rule-2);
  }
  .bspx-filter-title {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink);
  }
  .bspx-filter-count {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: 0.06em;
  }
  .bspx-filter-search {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--rule);
    padding: 7px 10px;
    border-radius: 3px;
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--text);
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.15s var(--tx);
  }
  .bspx-filter-search:focus { border-color: var(--accent); }
  .bspx-filter-search::placeholder { color: var(--text-3); }

  .bspx-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
  }
  .bspx-chips.bspx-stretch { max-height: none; }
  .bspx-chips::-webkit-scrollbar { width: 4px; }
  .bspx-chips::-webkit-scrollbar-track { background: transparent; }
  .bspx-chips::-webkit-scrollbar-thumb { background: var(--rule-2); border-radius: 2px; }

  .bspx-chip {
    background: var(--surface);
    border: 1px solid var(--rule);
    color: var(--text);
    padding: 4px 9px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.12s var(--tx);
    font-family: var(--sans);
    line-height: 1.4;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .bspx-chip-ticker {
    font-family: var(--mono);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 11.5px;
  }
  .bspx-chip:hover {
    border-color: var(--ink-3);
    background: var(--surface);
  }
  .bspx-chip.bspx-on {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
  }
  .bspx-chip-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-3);
    font-weight: 400;
  }
  .bspx-chip.bspx-on .bspx-chip-num { color: rgba(255,255,255,0.55); }

  .bspx-show-toggle {
    background: none;
    border: none;
    color: var(--accent-2);
    font-family: var(--mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  .bspx-show-toggle:hover { color: var(--accent); }

  /* sidebar empty/no-match state inside ticker or sector chip area */
  .bspx-chip-empty {
    padding: 12px 4px 4px;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.5;
  }
  .bspx-chip-empty-msg {
    font-style: italic;
    margin-bottom: 8px;
    color: var(--text-3);
  }
  .bspx-chip-empty-cta {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--brand-2);
    font-family: var(--mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  .bspx-chip-empty-cta:hover { color: var(--brand); }

  /* =========================================================================
     MAIN -- control bar
  ========================================================================= */
  .bspx-control-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
    gap: 12px;
  }
  .bspx-result-line {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-2);
    letter-spacing: 0.04em;
  }
  .bspx-result-line strong {
    color: var(--ink);
    font-weight: 600;
  }
  .bspx-control-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .bspx-clear {
    background: none;
    border: 1px solid transparent;
    color: var(--text-2);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 3px;
    transition: all 0.12s var(--tx);
  }
  .bspx-clear:not(:disabled):hover {
    color: var(--accent);
    border-color: var(--rule);
  }
  .bspx-clear:disabled { opacity: 0.35; cursor: default; }
  .bspx-sort-wrap { position: relative; }
  .bspx-sort {
    appearance: none;
    -webkit-appearance: none;
    background: var(--surface);
    border: 1px solid var(--rule);
    color: var(--text);
    padding: 7px 30px 7px 12px;
    border-radius: 3px;
    font-family: var(--sans);
    font-size: 12.5px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.15s var(--tx);
  }
  .bspx-sort:focus, .bspx-sort:hover { border-color: var(--ink-3); }
  .bspx-sort-wrap::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--text-2);
    border-bottom: 1.5px solid var(--text-2);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

  /* =========================================================================
     ACTIVE FILTERS PILLS
  ========================================================================= */
  .bspx-active-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    min-height: 24px;
  }
  .bspx-active-label {
    font-family: var(--mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    margin-right: 4px;
  }
  .bspx-active-pill {
    background: var(--brand);
    color: #fff;
    padding: 4px 8px 4px 10px;
    border-radius: 3px;
    font-size: 11.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    font-family: var(--sans);
    transition: background 0.12s var(--tx);
  }
  .bspx-active-pill.bspx-pill-ticker { font-family: var(--mono); font-weight: 600; }
  .bspx-active-pill:hover { background: var(--brand-2); }
  .bspx-active-pill::after {
    content: "x";
    font-size: 14px;
    line-height: 1;
    margin-left: 2px;
    opacity: 0.7;
  }

  /* =========================================================================
     CARD GRID
  ========================================================================= */
  .bspx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .bspx-card {
    background: var(--surface);
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    transition: background 0.15s var(--tx);
    position: relative;
    cursor: default;
    min-height: 280px;
  }
  .bspx-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color 0.15s var(--tx);
  }
  .bspx-card:hover { background: #FDFCF8; }
  .bspx-card:hover::before { border-color: var(--brand); }

  .bspx-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
  }
  .bspx-card-id { font-weight: 600; color: var(--text-2); }
  .bspx-card-date {  }

  .bspx-card-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .bspx-card-type-survey { color: var(--accent); }
  .bspx-card-type-dashboard { color: var(--brand-2); }
  .bspx-card-type-dashboard::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--brand);
    border-radius: 50%;
  }
  .bspx-card-type-survey::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--accent);
  }

  .bspx-card-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 14px;
    /* clamp 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .bspx-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
    min-height: 22px;
  }
  .bspx-tag {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 2px;
    font-weight: 500;
    line-height: 1.4;
  }
  .bspx-tag-ticker {
    font-family: var(--mono);
    font-weight: 600;
    background: var(--paper-2);
    color: var(--ink);
    letter-spacing: 0.02em;
    border: 1px solid var(--rule-2);
  }
  .bspx-tag-sector {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--rule-2);
  }
  .bspx-tag-more {
    background: transparent;
    color: var(--text-3);
    font-style: italic;
    font-family: var(--serif);
    border: none;
  }

  .bspx-card-foot {
    display: flex;
    gap: 0;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
  }
  .bspx-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s var(--tx);
    border: none;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
  }
  .bspx-btn-pdf {
    color: var(--ink);
  }
  .bspx-btn-pdf:hover {
    color: var(--accent);
  }
  .bspx-btn-dash {
    color: var(--ink);
    border-left: 1px solid var(--rule);
  }
  .bspx-btn-dash:hover {
    color: var(--brand-2);
    background: var(--brand-bg);
  }
  .bspx-btn-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  /* =========================================================================
     EMPTY STATE
  ========================================================================= */
  .bspx-empty {
    grid-column: 1 / -1;
    background: var(--surface);
    text-align: center;
    padding: 80px 32px;
  }
  .bspx-empty-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-2);
    margin-bottom: 12px;
    font-weight: 600;
  }
  .bspx-empty h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 28px;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .bspx-empty p {
    color: var(--text-2);
    margin: 0;
    font-size: 14px;
  }

  /* =========================================================================
     VIEW TOGGLE (Cards / List)
  ========================================================================= */
  .bspx-view-toggle {
    display: inline-flex;
    border: 1px solid var(--rule);
    border-radius: 3px;
    overflow: hidden;
    background: var(--surface);
  }
  .bspx-view-btn {
    background: transparent;
    border: none;
    padding: 7px 10px;
    cursor: pointer;
    color: var(--text-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.12s var(--tx);
    font-family: inherit;
  }
  .bspx-view-btn + .bspx-view-btn { border-left: 1px solid var(--rule); }
  .bspx-view-btn:hover { color: var(--ink); }
  .bspx-view-btn.bspx-on {
    background: var(--ink);
    color: #fff;
  }
  .bspx-view-btn svg { width: 14px; height: 14px; display: block; }

  /* =========================================================================
     LIST VIEW
  ========================================================================= */
  .bspx-list {
    background: var(--surface);
    border: 1px solid var(--rule);
    overflow: hidden;
  }
  .bspx-list-head {
    display: grid;
    grid-template-columns: 110px 110px 1fr 200px 120px 120px;
    gap: 16px;
    padding: 12px 18px;
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-2);
    font-weight: 600;
  }
  .bspx-list-row {
    display: grid;
    grid-template-columns: 110px 110px 1fr 200px 120px 120px;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--rule);
    align-items: center;
    transition: background 0.12s var(--tx);
    font-size: 13px;
  }
  .bspx-list-row:last-child { border-bottom: none; }
  .bspx-list-row:hover { background: #FDFCF8; }
  .bspx-list-cell-date {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-2);
    letter-spacing: 0.04em;
  }
  .bspx-list-cell-code {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.04em;
  }
  .bspx-list-cell-title {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--ink);
    line-height: 1.3;
    font-weight: 500;
  }
  .bspx-list-cell-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    overflow: hidden;
    max-height: 24px;
  }
  .bspx-list-cell-type {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .bspx-list-cell-type.bspx-list-type-survey { color: var(--accent); }
  .bspx-list-cell-type.bspx-list-type-survey::before {
    content: ""; width: 6px; height: 6px; background: var(--accent);
  }
  .bspx-list-cell-type.bspx-list-type-dashboard { color: var(--brand-2); }
  .bspx-list-cell-type.bspx-list-type-dashboard::before {
    content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 50%;
  }
  .bspx-list-cell-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
  }
  .bspx-list-action {
    text-decoration: none;
    color: var(--ink);
    font-family: var(--mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 5px 9px;
    border: 1px solid var(--rule);
    border-radius: 3px;
    transition: all 0.12s var(--tx);
    white-space: nowrap;
  }
  .bspx-list-action.bspx-list-action-pdf:hover {
    color: var(--accent);
    border-color: var(--accent);
  }
  .bspx-list-action.bspx-list-action-dash:hover {
    color: var(--brand-2);
    border-color: var(--brand);
    background: var(--brand-bg);
  }
  @media (max-width: 880px) {
    .bspx-list-head { display: none; }
    .bspx-list-row {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 16px;
    }
    .bspx-list-cell-actions { justify-content: flex-start; }
  }

  /* =========================================================================
     EMPTY STATE -- Request Coverage CTA
  ========================================================================= */
  .bspx-empty-cta {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    transition: background 0.12s var(--tx);
  }
  .bspx-empty-cta:hover { background: var(--brand); }
  .bspx-empty-cta svg { width: 14px; height: 14px; }
  .bspx-empty-tertiary {
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-3);
  }
  .bspx-empty-tertiary a {
    color: var(--brand-2);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  .bspx-empty-tertiary a:hover { color: var(--brand); }

  /* =========================================================================
     MODAL -- Request Coverage form
  ========================================================================= */
  .bspx-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 16, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: bspx-fade-in 0.2s var(--tx);
  }
  .bspx-modal-overlay.bspx-open { display: flex; }
  @keyframes bspx-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .bspx-modal {
    background: #FFFFFF;
    border-radius: 4px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(11,13,16,0.08);
    animation: bspx-modal-in 0.25s var(--tx);
    border-top: 4px solid var(--accent);
  }
  @keyframes bspx-modal-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .bspx-modal-head {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .bspx-modal-eyebrow {
    font-family: var(--mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-2);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .bspx-modal-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 6px;
  }
  .bspx-modal-subtitle {
    color: var(--text-2);
    font-size: 13.5px;
    margin: 0;
  }
  .bspx-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid var(--rule);
    border-radius: 3px;
    cursor: pointer;
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 18px;
    line-height: 1;
    transition: all 0.12s var(--tx);
  }
  .bspx-modal-close:hover {
    color: var(--ink);
    border-color: var(--ink);
  }
  .bspx-modal-body { padding: 24px 32px 28px; }
  .bspx-field { margin-bottom: 16px; }
  .bspx-field-label {
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-2);
    margin-bottom: 6px;
  }
  .bspx-field-label .bspx-req { color: var(--accent); }
  .bspx-field input,
  .bspx-field select,
  .bspx-field textarea {
    width: 100%;
    background: #FAFAF7;
    border: 1px solid var(--rule);
    padding: 10px 12px;
    border-radius: 3px;
    font-family: var(--sans);
    font-size: 13.5px;
    color: var(--text);
    outline: none;
    transition: border-color 0.15s var(--tx), background 0.15s var(--tx);
  }
  .bspx-field textarea {
    resize: vertical;
    min-height: 70px;
    font-family: var(--sans);
  }
  .bspx-field input:focus,
  .bspx-field select:focus,
  .bspx-field textarea:focus {
    border-color: var(--brand);
    background: #FFFFFF;
  }
  .bspx-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5F66' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }
  .bspx-modal-foot {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
  }
  .bspx-btn-submit {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    transition: background 0.12s var(--tx);
  }
  .bspx-btn-submit:hover { background: var(--brand); }
  .bspx-btn-submit:disabled { opacity: 0.6; cursor: wait; }
  .bspx-btn-cancel {
    background: transparent;
    border: 1px solid var(--rule);
    color: var(--text-2);
    padding: 10px 18px;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    transition: all 0.12s var(--tx);
  }
  .bspx-btn-cancel:hover { color: var(--ink); border-color: var(--ink); }
  .bspx-modal-success {
    text-align: center;
    padding: 28px 12px 8px;
  }
  .bspx-modal-success-icon {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    color: var(--brand);
  }
  .bspx-modal-success h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 8px;
  }
  .bspx-modal-success p {
    color: var(--text-2);
    margin: 0;
    font-size: 14px;
  }
  .bspx-modal-error {
    background: #FEF2F0;
    border: 1px solid #F4C7BD;
    color: #8E2A14;
    padding: 10px 12px;
    border-radius: 3px;
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  /* =========================================================================
     LOADING SHIMMER (used during initial render)
  ========================================================================= */
  .bspx-skel {
    background: linear-gradient(90deg, var(--paper-2) 0%, #f5f1e8 50%, var(--paper-2) 100%);
    background-size: 200% 100%;
    animation: bspx-shimmer 1.4s infinite;
    border-radius: 2px;
  }
  @keyframes bspx-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* =========================================================================
     RESPONSIVE
  ========================================================================= */
  @media (max-width: 960px) {
    .bspx-body { grid-template-columns: 1fr; }
    .bspx-sidebar {
      border-right: none;
      border-bottom: 1px solid var(--rule);
      padding: 20px 24px;
    }
    .bspx-main { padding: 24px; }
    .bspx-headline { padding: 32px 24px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .bspx-headline-aside { text-align: left; max-width: none; }
    .bspx-mast { padding: 12px 20px; flex-wrap: wrap; }
    .bspx-mast-search { order: 3; flex-basis: 100%; max-width: none; margin: 6px 0 0; }
    .bspx-mast-meta { display: none; }
    .bspx-ticker-bar { padding: 8px 20px; gap: 16px; font-size: 10px; overflow-x: auto; }
  }
  @media (max-width: 520px) {
    .bspx-grid { grid-template-columns: 1fr; }
    .bspx-headline h1 { font-size: 32px; }
  }
