/* Behavior and utility refinements for the Business / Economy / Politics /
   Law cluster. The homepage/category center and the header VISUAL DESIGN are
   approved by another designer and are deliberately NOT restyled here — this
   layer only carries the v2.1 mandate: sticky header with a compact logo,
   the Cover Story sidebar unit, article chrome (crumb, ink rule, share),
   Coming-soon states, and the branded utility/author/404/data pages.
   Bump ?v= in EVERY attach point when editing: layouts/business-paper/*.ejs,
   sector-shared/_utility.ejs, sector-shared/author.ejs, sector-shared/404.ejs,
   and the sector test. */

/* Pages without the .bp body class (author, 404) still need the sector
   palette custom properties; mirror the .bp definitions at the layout level. */
.layout-business-paper {
  --paper: #fff1e5;
  --card: #fffaf5;
  --ink: #33302e;
  --ink-soft: #4a4540;
  --rule: #cec6b9;
  --rule2: #e6ddd1;
  --muted: #66605c;
  --gold: #b08d3b;
  --accent: var(--vuga-color-accent, #0d7680);
}

/* 🔒 Sticky header behavior (v2.1): masthead + rubric menu stay pinned to the
   top while scrolling, and the wordmark shrinks into a compact mode. Colors,
   fonts, and composition of the approved header are untouched; the compaction
   is a scroll-driven animation that leaves the resting design pixel-identical
   and simply holds the full-size logo in browsers without scroll timelines. */
.layout-business-paper .sector-sticky-head { position: sticky; top: 0; z-index: 30; background: var(--paper); }
@supports (animation-timeline: scroll()) {
  .layout-business-paper .sector-sticky-head .sector-masthead { animation: bp-masthead-compact linear both; animation-timeline: scroll(root); animation-range: 0 9rem; }
  .layout-business-paper .sector-sticky-head .sector-brand strong { animation: bp-wordmark-compact linear both; animation-timeline: scroll(root); animation-range: 0 9rem; }
  .layout-business-paper .sector-sticky-head .sector-brand span { animation: bp-tagline-compact linear both; animation-timeline: scroll(root); animation-range: 0 9rem; }
}
@keyframes bp-masthead-compact { to { min-height: 3.4rem; padding-top: .35rem; padding-bottom: .3rem; } }
@keyframes bp-wordmark-compact { to { font-size: 1.45rem; } }
@keyframes bp-tagline-compact { to { font-size: 7px; letter-spacing: .18em; } }

/* 🔒 Market ticker under the menu (user directive 2026-08-24): the quotes
   strip replaces the section-label bar — same dark rule, real instruments,
   up/down coloring, data link on data-enabled sites. */
.layout-business-paper .bp-market { background: #262220; color: #efe7dc; }
.layout-business-paper .bp-market > div { max-width: 75rem; margin: 0 auto; display: flex; align-items: baseline; gap: 1.6rem; padding: .5rem clamp(1rem, 3vw, 2rem); overflow-x: auto; white-space: nowrap; }
.layout-business-paper .bp-market-item { display: flex; gap: .45rem; align-items: baseline; font: 400 .72rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); }
.layout-business-paper .bp-market-name { color: #b8afa6; }
.layout-business-paper .bp-market-up { color: #5fc48f; font-weight: 600; }
.layout-business-paper .bp-market-down { color: #f08a8a; font-weight: 600; }
.layout-business-paper .bp-market-link { margin-left: auto; color: var(--gold); font: 600 .7rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); }
.layout-business-paper .bp-market-link:hover { color: #efe7dc; }
@media (max-width: 700px) { .layout-business-paper .bp-market-link { display: none; } }

/* 🔒 Cover Story sidebar unit (the only homepage addition): vertical 3:4
   cover, up to two text lines, closing link; Coming soon while empty. */
.layout-business-paper .bp-cs-side { margin-top: 1.3rem; padding-top: 1.1rem; border-top: 2px solid var(--ink); }
.layout-business-paper .bp-cs-side h2 { font: 700 1.15rem/1 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: 0 0 .7rem; }
.layout-business-paper .bp-cs-side p { margin: .5rem 0; color: var(--ink-soft); line-height: 1.5; }
.layout-business-paper .bp-cs-side > a { color: var(--accent); font: 700 .68rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .05em; text-transform: uppercase; }
.layout-business-paper .bp-cs-feature { display: block; }
.layout-business-paper .bp-cs-feature .sector-media { aspect-ratio: 3 / 4; }
.layout-business-paper .bp-cs-feature h3 { font: 600 1rem/1.22 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .4rem 0 .3rem; }
.layout-business-paper .bp-cs-feature small { color: var(--muted); font: 500 .74rem/1.4 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); }
.layout-business-paper .bp-cs-more { display: block; padding: .8rem 0; border-top: 1px dotted var(--rule); }
.layout-business-paper .bp-cs-more h4 { font: 600 .95rem/1.25 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .25rem 0 0; }
.layout-business-paper .bp-cs-all { display: block; margin-top: .8rem; padding-top: .8rem; border-top: 1px dotted var(--rule); }

/* 🔒 Empty approved rubrics publish a Coming soon card instead of a bare
   line; the Most read rail is hidden when there is nothing to list. */
.layout-business-paper .bp-coming-soon { padding: 1.6rem 1.4rem; margin-top: .4rem; border: 1px dashed var(--rule); background: var(--card); }
.layout-business-paper .bp-coming-soon .bp-kicker { margin-top: 0; color: var(--gold); }
.layout-business-paper .bp-coming-soon p { margin: .5rem 0 0; color: var(--ink-soft); line-height: 1.5; }

/* 🔒 Article chrome: breadcrumb, ink rule under the byline, share chips. */
.layout-business-paper .bp-crumb { display: block; margin-bottom: .9rem; font: 700 .72rem/1.3 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.layout-business-paper .bp-crumb a { color: var(--accent); }
.layout-business-paper .bp-byline { border-bottom: 2px solid var(--ink); margin-bottom: 1.2rem; }
.layout-business-paper .bp-share { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; }
.layout-business-paper .bp-share > span { font: 700 .68rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-right: .2rem; }
.layout-business-paper .bp-share a { border: 1px solid var(--rule); background: var(--card); padding: .45rem .7rem; font: 700 .68rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.layout-business-paper .bp-share a:hover { border-color: var(--accent); color: var(--accent); }
.layout-business-paper .sector-author { background: var(--card); border: 1px solid var(--rule); border-left: 4px solid var(--gold); }

/* 🔒 Utility pages (about, advertise, legal, contact) wear the edition's
   editorial header: interface-font crumb, Spectral headline, ink rule. */
.layout-business-paper .sector-utility-wrap { max-width: 75rem; margin: 0 auto; padding: clamp(1.6rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) 3.4rem; }
.layout-business-paper .sector-utility .sector-crumb { font: 700 .72rem/1.3 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.layout-business-paper .sector-utility .sector-crumb a { color: var(--accent); }
.layout-business-paper .sector-utility > h1 { font: 700 clamp(2.1rem, 5vw, 3.2rem)/1.05 var(--vuga-font-heading, 'Spectral', Georgia, serif); letter-spacing: 0; margin: .55rem 0 0; padding-bottom: 1.1rem; border-bottom: 2px solid var(--ink); }
.layout-business-paper .sector-utility .sector-utility-intro { font-size: 1.12rem; line-height: 1.6; color: var(--ink-soft); max-width: 44rem; font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); }
.layout-business-paper .sector-about-body { font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); }
.layout-business-paper .sector-utility h2 { font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); }
.layout-business-paper .sector-utility a { text-decoration-color: var(--gold); }

/* 🔒 Contact page: the form speaks the edition's language (one h1 on page). */
.layout-business-paper .sector-utility #contact-page-title { font: 700 clamp(2.1rem, 5vw, 3.2rem)/1.05 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .55rem 0 0; padding-bottom: 1.1rem; border-bottom: 2px solid var(--ink); }
.layout-business-paper .vuga-contact-form label { font: 700 .72rem/1.2 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.layout-business-paper .vuga-contact-form input, .layout-business-paper .vuga-contact-form textarea { width: 100%; border: 1px solid var(--rule); padding: .7rem .85rem; font: 400 .95rem/1.4 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); background: var(--card); }
.layout-business-paper .vuga-contact-form input:focus, .layout-business-paper .vuga-contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent); }
.layout-business-paper .vuga-contact-form button[type="submit"] { border: 0; padding: .8rem 1.4rem; background: var(--ink); color: var(--paper); font: 700 .72rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.layout-business-paper .vuga-contact-form button[type="submit"]:hover { background: var(--accent); }

/* 🔒 Author page in the edition's voice: AUTHOR label, Spectral name over an
   ink rule, portrait tile, sector-card article grid. */
.layout-business-paper .sector-wrap { max-width: 75rem; margin: 0 auto; padding: 1.6rem clamp(1rem, 3vw, 2rem) 3.4rem; }
.layout-business-paper .sector-author-page { display: grid; grid-template-columns: 7.5rem minmax(0, 1fr); gap: 1.6rem; align-items: start; padding-bottom: 1.4rem; border-bottom: 2px solid var(--ink); }
.layout-business-paper .sector-author-page-photo { width: 7.5rem; height: 7.5rem; border-radius: .4rem; object-fit: cover; background: var(--card); }
.layout-business-paper .sector-author-page .sector-kicker { font: 700 .72rem/1.2 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .1em; color: var(--gold); }
.layout-business-paper .sector-author-page h1 { font: 700 clamp(2rem, 4.4vw, 3.2rem)/1.05 var(--vuga-font-heading, 'Spectral', Georgia, serif); letter-spacing: 0; margin: .4rem 0 .7rem; }
.layout-business-paper .sector-author-bio { max-width: 44rem; color: var(--ink-soft); line-height: 1.6; font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); }
.layout-business-paper .sector-author-title, .layout-business-paper .sector-author-credentials { margin: .45rem 0 0; font: 600 .72rem/1.4 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.layout-business-paper .sector-author-title { color: var(--accent); }
.layout-business-paper .sector-section-head { border-bottom: 2px solid var(--ink); }
.layout-business-paper .sector-section-head h2 { font: 700 1.15rem/1 var(--vuga-font-heading, 'Spectral', Georgia, serif); }
.layout-business-paper .sector-card .sector-media { aspect-ratio: 16 / 10; }
.layout-business-paper .sector-card h3 { font: 600 1.05rem/1.22 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .45rem 0 .3rem; }
@media (max-width: 640px) { .layout-business-paper .sector-author-page { grid-template-columns: 1fr; } .layout-business-paper .sector-author-page-photo { width: 5.5rem; height: 5.5rem; } }

/* 🔒 Data pages keep the shared data markup, framed by the edition's rules. */
.layout-business-paper .bp-data-main { width: min(75rem, 100% - 2rem); margin: 0 auto; }
.layout-business-paper .bp-data-main .data-breadcrumb { font: 600 .72rem/1.4 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .04em; text-transform: uppercase; }
.layout-business-paper .bp-data-main .data-breadcrumb a { color: var(--accent); }
.layout-business-paper .bp-data-main > h1 { font: 700 clamp(2rem, 4.5vw, 3.2rem)/1.05 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .4rem 0 1rem; padding-bottom: .9rem; border-bottom: 2px solid var(--ink); }
.layout-business-paper .bp-data-main > .data-capsule { border: 0; border-left: 5px solid var(--gold); background: var(--card); padding: 1rem 1.25rem; margin: 1rem 0 1.5rem; font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); }
.layout-business-paper .bp-data-main .data-meta div { border-color: var(--rule2); }
.layout-business-paper .bp-data-main .data-table thead { background: var(--ink); }
.layout-business-paper .bp-data-main .data-table th, .layout-business-paper .bp-data-main .data-table td { border-color: var(--rule2); }
.layout-business-paper .bp-data-main .data-table a { color: var(--accent); }
.layout-business-paper .bp-data-main .data-pagination a, .layout-business-paper .bp-data-main .data-pagination > span { border: 1px solid var(--rule); font: 600 .72rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); }
.layout-business-paper .bp-data-main .data-attribution { border-top: 3px solid var(--gold); }

/* 🔒 v6 adjustments (user review 2026-08-24): the rubric menu centers under
   the masthead; utility-page headlines drop the ink rule; the network block
   links and the footer advertise link take the site accent; Previous/Next
   pagers (no digit buttons) for categories and author pages. */
.layout-business-paper .sector-nav[data-business-nav] > div { justify-content: center; }
.layout-business-paper .sector-utility > h1,
.layout-business-paper .sector-utility #contact-page-title { border-bottom: 0; padding-bottom: 0; }
.layout-business-paper .about-network-links a { color: var(--accent); }
.layout-business-paper .sector-footer .sector-footer-advertise { color: var(--accent); border-color: var(--accent); }
.layout-business-paper .bp-pages--adjacent { display: flex; justify-content: space-between; gap: .8rem; margin-top: 1.6rem; }
.layout-business-paper .bp-pages--adjacent a { display: inline-block; border: 1px solid var(--rule); padding: .55rem .95rem; font: 700 .7rem/1 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .05em; text-transform: uppercase; }
.layout-business-paper .bp-pages--adjacent a:hover { border-color: var(--accent); color: var(--accent); }
.layout-business-paper .bp-author-pages { margin-top: 2rem; }

/* 🔒 v7 (user review 2026-08-24): every category owns a homepage section —
   NYT-style blocks, three per row over hairline rules, no repeated stories
   (the spread above has already claimed its own). */
.layout-business-paper .bp-sections { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 2.4rem; margin-top: 2.4rem; }
.layout-business-paper .bp-cat { min-width: 0; padding-left: 1.2rem; border-left: 1px solid var(--rule); }
.layout-business-paper .bp-cat:nth-child(3n+1) { padding-left: 0; border-left: 0; }
.layout-business-paper .bp-cat .bp-section { margin-bottom: .9rem; }
.layout-business-paper .bp-cat .bp-section a { white-space: nowrap; }
.layout-business-paper .bp-cat-lead .sector-media { aspect-ratio: 16 / 10; margin-bottom: .55rem; }
.layout-business-paper .bp-cat-lead h3 { font: 600 1.02rem/1.22 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .3rem 0; }
.layout-business-paper .bp-cat-text { padding-top: .8rem; margin-top: .8rem; border-top: 1px dotted var(--rule); }
.layout-business-paper .bp-cat-text:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.layout-business-paper .bp-cat-text h3 { font: 600 .95rem/1.25 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .25rem 0; }
.layout-business-paper .bp-cat-text p { font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); color: var(--ink-soft); font-size: .9rem; line-height: 1.45; }
@media (max-width: 900px) { .layout-business-paper .bp-sections { grid-template-columns: 1fr; } .layout-business-paper .bp-cat { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 1.2rem; margin-top: 1.2rem; } .layout-business-paper .bp-cat:first-child { border-top: 0; margin-top: 0; padding-top: 0; } }

/* 🔒 Advertise page: the Publish-your-story / For-agencies buttons speak the
   site accent (user review 2026-08-24). */
.layout-business-paper .partner-content-secondary { color: var(--accent); border-color: var(--accent); }

/* 🔒 Data pages as a dashboard (user review 2026-08-24): the metadata strip
   becomes big-number metric cards, indicator records become framed cards,
   and the capsule reads as the highlighted answer of the page. */
.layout-business-paper .bp-data-main .data-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 1rem; border: 0; background: transparent; padding: 0; margin: 1.4rem 0; }
.layout-business-paper .bp-data-main .data-meta > div { background: var(--card); border: 1px solid var(--rule); border-top: 3px solid var(--gold); padding: 1rem 1.1rem; margin: 0; }
.layout-business-paper .bp-data-main .data-meta dt { font: 700 .66rem/1.2 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.layout-business-paper .bp-data-main .data-meta dd { margin: .45rem 0 0; font: 700 1.5rem/1.1 var(--vuga-font-heading, 'Spectral', Georgia, serif); color: var(--ink); }
.layout-business-paper .bp-data-main > .data-capsule { border: 1px solid var(--rule); border-left: 5px solid var(--gold); background: var(--card); padding: 1.1rem 1.3rem; font-size: 1.05rem; line-height: 1.6; }
.layout-business-paper .bp-data-main .data-indicators { display: grid; grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 1rem; margin: 1.4rem 0; }
.layout-business-paper .bp-data-main .data-indicator-fields { background: var(--card); border: 1px solid var(--rule); padding: 1rem 1.1rem; margin: 0; }
.layout-business-paper .bp-data-main .data-indicator-fields h2 { font: 600 1.05rem/1.2 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: 0 0 .6rem; padding-bottom: .5rem; border-bottom: 1px dotted var(--rule); }
.layout-business-paper .bp-data-main .data-indicator-fields dt { font: 700 .62rem/1.2 var(--vuga-font-interface, 'IBM Plex Sans', sans-serif); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.layout-business-paper .bp-data-main .data-indicator-fields dd { margin: .15rem 0 .5rem; font-weight: 600; color: var(--ink); }
.layout-business-paper .bp-data-main .data-controls { background: var(--card); border: 1px solid var(--rule); }
@media (max-width: 700px) { .layout-business-paper .bp-data-main .data-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* 🔒 v8 (user review 2026-08-24): the spread's side columns fill to the
   center's height — text windows of other desks under the lead, photo
   category windows under Editor's picks; no story repeats anywhere. */
.layout-business-paper .bp-cat-window { padding-top: 1rem; margin-top: 1rem; border-top: 1px dotted var(--rule); }
.layout-business-paper .bp-cat-window .sector-media { aspect-ratio: 16 / 10; margin-bottom: .5rem; }
.layout-business-paper .bp-cat-window h3 { font: 600 1rem/1.22 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .25rem 0; }

/* 🔒 v9: the two article windows live under the lead in the left column
   (no dotted text items there); the third stays under Editor's picks. */
.layout-business-paper .bp-cat-window--side .sector-media { aspect-ratio: 16 / 9; }

/* 🔒 v10: the left column is a single grid cell — lead plus two article
   windows stack inside it, no vertical rule on the column's left edge and
   the two windows align on the column's own left line. */
.layout-business-paper .bp-front-left { min-width: 0; display: flex; flex-direction: column; }
.layout-business-paper .bp-front-left .bp-cat-window--side { border-top: 0; margin-top: 1.1rem; }
.layout-business-paper .bp-front-left .bp-cat-window--side + .bp-cat-window--side { border-top: 1px dotted var(--rule); padding-top: 1rem; }

/* 🔒 v11 (user 2026-08-25): the Cover Story category page is a magazine
   spread — one portrait cover hero plus rows of vertical cover cards. */
.layout-business-paper .bp-cs-page { padding-top: 1.6rem; }
.layout-business-paper .bp-cs-hero { display: grid; grid-template-columns: minmax(0, 30rem) minmax(0, 1fr); gap: 1.8rem; padding-bottom: 1.8rem; border-bottom: 2px solid var(--ink); margin-bottom: 1.6rem; }
.layout-business-paper .bp-cs-hero .sector-media { aspect-ratio: 3 / 4; }
.layout-business-paper .bp-cs-hero h2 { font: 700 clamp(1.8rem, 3vw, 2.6rem)/1.08 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .5rem 0 .4rem; }
.layout-business-paper .bp-cs-hero p { margin-top: .6rem; color: var(--ink-soft); line-height: 1.55; font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); }
.layout-business-paper .bp-cs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.8rem 1.6rem; }
.layout-business-paper .bp-cs-grid .sector-media { aspect-ratio: 3 / 4; }
.layout-business-paper .bp-cs-grid h3 { font: 600 1.08rem/1.22 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .45rem 0 .3rem; }
@media (max-width: 900px) { .layout-business-paper .bp-cs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .layout-business-paper .bp-cs-hero { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .layout-business-paper .bp-cs-grid { grid-template-columns: 1fr; } }

/* 🔒 v12 (user 2026-08-25): the center column carries one more window — a
   thumbnail card with its category under the main story. */
.layout-business-paper .bp-front-center { min-width: 0; display: flex; flex-direction: column; }
.layout-business-paper .bp-cat-window--center { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px dotted var(--rule); }
.layout-business-paper .bp-cat-window--center .sector-media { aspect-ratio: 16 / 9; margin-bottom: .5rem; }
.layout-business-paper .bp-cat-window--center h3 { font: 600 1.02rem/1.22 var(--vuga-font-heading, 'Spectral', Georgia, serif); margin: .25rem 0; }

/* 🔒 v13 (user 2026-08-25): the right column keeps only the top horizontal
   category window with the Cover Story unit lifted right under it. */
.layout-business-paper .bp-picks .bp-cat-window { border-top: 0; padding-top: 0; margin-top: 0; }
.layout-business-paper .bp-picks .bp-cat-window .sector-media { aspect-ratio: 3 / 2; }

/* 🔒 v14 (user 2026-08-25): every article window in the left, center, and
   right columns carries its excerpt — the small-type opening standfirst. */
.layout-business-paper .bp-window-excerpt { margin: .3rem 0 .2rem; font-family: var(--vuga-font-heading, 'Spectral', Georgia, serif); font-size: .9rem; line-height: 1.45; color: var(--ink-soft); }

/* 🔒 v15 (user 2026-08-25): the Cover Story unit shows only the current
   cover; previous cover lines are withdrawn, the archive link remains. */
