/* ============================================================================
   Behavior Secrets — the Field Guide layer
   Loads LAST, after theme-variables.css and main.css. This file is the only
   place site styling lives; main.css is the shared core and is never edited.

   Design source: house-design.md (revista archetype, tinted card skin, round
   corners, one hue) + Stitch project 6501153814175714904 direction C
   (2026-09-14): cream ground, plum accent, borderless tinted rounded
   panels, pill chips and buttons, Outfit headlines over Nunito Sans, no
   shadows, text-first cards (covers were generated 2026-09-14; the
   no-photo lead frame stays for future posts).
   ========================================================================= */

/* --- Base ---------------------------------------------------------------- */

body {
    background: var(--bvs-cream);
    color: var(--bvs-ink);
    font-family: var(--bvs-text);
    font-size: var(--bvs-size-body);
    line-height: var(--bvs-lh-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bvs-display);
    color: var(--bvs-ink);
    line-height: var(--bvs-lh-head);
    letter-spacing: var(--bvs-track-head);
    font-weight: 700;
}

a { color: var(--bvs-primary); }
a:hover { color: var(--bvs-primary-dark); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible { outline: 2px solid var(--bvs-primary); outline-offset: 2px; }

button, input, select, textarea { font-family: var(--bvs-ui); }

/* The off-canvas mobile drawer doubles scrollWidth — without this, touch
   devices pan sideways into a void. */
html { overflow-x: clip; }

.site-container {
    max-width: var(--bvs-page-max);
    margin: 0 auto;
    padding-left: var(--bvs-gutter);
    padding-right: var(--bvs-gutter);
}

/* main.css gives .site-main 3rem top padding, which stacks with each
   template's own head padding. The templates own their top spacing. */
.site-main { padding-top: 0; }

.bvs-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--bvs-primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 2000;
}
.bvs-skip-link:focus { left: 0; color: #fff; }

/* Caps voice: meta, labels, counts. */
.bvs-meta,
.bvs-label {
    font-family: var(--bvs-ui);
    font-size: var(--bvs-size-meta);
    font-weight: 700;
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    color: var(--bvs-meta);
    margin: 0;
    font-variant-numeric: tabular-nums;
}
.bvs-meta .sep { color: var(--bvs-primary); opacity: 0.5; padding: 0 0.4em; }

/* Category chip — plum pill, cream text. */
.bvs-chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.2rem 0.8rem;
    border-radius: var(--bvs-pill);
    background: var(--bvs-primary);
    color: #fff;
    font-family: var(--bvs-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}
a.bvs-chip:hover { background: var(--bvs-primary-dark); color: #fff; text-decoration: none; }

/* Pill link — tinted, plum text (section "See all", share row). */
.bvs-pill-link {
    display: inline-flex;
    align-items: center;
    min-height: var(--bvs-tap);
    padding: 0 1.1rem;
    border-radius: var(--bvs-pill);
    background: var(--bvs-panel);
    color: var(--bvs-primary);
    font-family: var(--bvs-ui);
    font-size: var(--bvs-size-meta);
    font-weight: 700;
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.bvs-pill-link:hover { background: var(--bvs-highlight); color: var(--bvs-primary-dark); text-decoration: none; }

/* Button — solid plum pill, 48px. The only place plum is a fill outside chips. */
.bvs-btn,
.bvs-newsletter .newsletter-form button,
.bvs-widget-news .newsletter-form button,
.bvs-empty .search-submit,
.comments-area .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.5rem;
    border: 1px solid var(--bvs-primary);
    border-radius: var(--bvs-pill);
    background: var(--bvs-primary);
    color: #fff;
    font-family: var(--bvs-ui);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}
.bvs-btn:hover,
.bvs-empty .search-submit:hover,
.comments-area .submit:hover { background: var(--bvs-primary-dark); border-color: var(--bvs-primary-dark); color: #fff; text-decoration: none; }

/* Tinted panel — the site's one container skin. */
.bvs-panel {
    background: var(--bvs-panel);
    border-radius: var(--bvs-radius);
    padding: var(--bvs-panel-pad);
}

/* --- Masthead -------------------------------------------------------------
   Cream bar, no rule: wordmark | caps nav | search on ONE row. Four links
   fit beside the wordmark comfortably; below 1024px the drawer takes over.
   The nav hooks menu.js needs are preserved; main.css supplies the drawer. */

.bvs-masthead { background: var(--bvs-cream); }

.bvs-masthead-inner {
    max-width: var(--bvs-page-max);
    margin: 0 auto;
    padding: 0 var(--bvs-gutter);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "brand nav actions"
        "search search search";
    align-items: center;
    column-gap: 1.5rem;
    min-height: 84px;
    position: relative;
}
.bvs-brand { grid-area: brand; display: flex; align-items: center; }
.bvs-brand-h1 { margin: 0; line-height: 1; display: flex; align-items: center; }
.bvs-wordmark {
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: 1.625rem;
    letter-spacing: -0.02em;
    color: var(--bvs-ink);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    min-height: var(--bvs-tap);
}
.bvs-wordmark:hover { color: var(--bvs-primary); text-decoration: none; }

.bvs-masthead .header-actions { grid-area: actions; }
.bvs-masthead .main-navigation { grid-area: nav; justify-self: center; min-width: 0; }

/* Desktop: the clip wrapper vanishes from layout; the nav stays a grid child. */
.bvs-drawer-clip { display: contents; }

.bvs-masthead .primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bvs-masthead .main-navigation a {
    display: inline-flex;
    align-items: center;
    min-height: var(--bvs-tap);
    padding: 0 0.85rem;
    font-family: var(--bvs-ui);
    font-size: var(--bvs-size-meta);
    font-weight: 700;
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    color: var(--bvs-ink);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}
.bvs-masthead .main-navigation a:hover { color: var(--bvs-primary); }
/* Underline as a positioned ::after, never a real border — a border adds
   height and shifts the whole row on hover. */
.bvs-masthead .main-navigation a::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.55rem;
    height: 2px;
    border-radius: 2px;
    background: var(--bvs-primary);
    opacity: 0;
}
.bvs-masthead .main-navigation a:hover::after { opacity: 0.4; }
.bvs-masthead .main-navigation .current-menu-item > a,
.bvs-masthead .main-navigation .current_page_item > a,
.bvs-masthead .main-navigation .current-post-ancestor > a,
.bvs-masthead .main-navigation .current-cat > a { color: var(--bvs-primary); }
.bvs-masthead .main-navigation .current-menu-item > a::after,
.bvs-masthead .main-navigation .current_page_item > a::after,
.bvs-masthead .main-navigation .current-post-ancestor > a::after,
.bvs-masthead .main-navigation .current-cat > a::after { opacity: 1; }

.bvs-masthead .header-actions { display: flex; align-items: center; gap: 0.25rem; }
.bvs-masthead .desktop-search-toggle,
.bvs-masthead .mobile-search-toggle,
.bvs-masthead .mobile-menu-toggle {
    width: var(--bvs-tap);
    height: var(--bvs-tap);
    min-width: var(--bvs-tap);
    border-radius: 50%;
    background: var(--bvs-panel);
    color: var(--bvs-primary);
}
.bvs-masthead .mobile-menu-toggle { background: transparent; }
.bvs-masthead .desktop-search-toggle svg,
.bvs-masthead .mobile-search-toggle svg { color: var(--bvs-primary); }
.bvs-masthead .desktop-search-toggle:hover,
.bvs-masthead .mobile-search-toggle:hover { background: var(--bvs-highlight); }
.bvs-masthead .desktop-search-toggle:hover svg,
.bvs-masthead .mobile-search-toggle:hover svg { color: var(--bvs-primary-dark); }
.bvs-masthead .hamburger-line { background: var(--bvs-ink); }

.bvs-masthead .desktop-search-form,
.bvs-masthead .mobile-search-form {
    grid-area: search;
    background: var(--bvs-panel);
    border: none;
    border-radius: var(--bvs-radius);
    margin: 0 0 1rem;
}
.bvs-masthead .search-field {
    font-family: var(--bvs-ui);
    font-size: 1rem;
    min-height: var(--bvs-tap);
    border-radius: var(--bvs-pill);
    border: 1px solid var(--bvs-rule);
    background: var(--bvs-cream);
    color: var(--bvs-ink);
    padding: 0 1rem;
}
.bvs-masthead .desktop-search-form button,
.bvs-masthead .mobile-search-form button {
    min-height: var(--bvs-tap);
    border-radius: var(--bvs-pill);
    font-family: var(--bvs-ui);
    font-weight: 700;
}
.bvs-masthead .desktop-search-form button[type="submit"],
.bvs-masthead .mobile-search-form button[type="submit"] { background: var(--bvs-primary); }
.bvs-masthead .desktop-search-form button[type="submit"]:hover,
.bvs-masthead .mobile-search-form button[type="submit"]:hover { background: var(--bvs-primary-dark); }
.bvs-masthead .search-close { border: 1px solid var(--bvs-rule); color: var(--bvs-meta); }

/* --- Figures: rounded, inside panels ------------------------------------------ */

.bvs-lead-figure,
.bvs-card-figure {
    display: block;
    overflow: hidden;
    border-radius: var(--bvs-radius-sm);
    background: var(--bvs-highlight);
}
.bvs-lead-figure,
.bvs-card-figure { aspect-ratio: 16 / 9; }
.bvs-lead-figure img,
.bvs-card-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Lead story (home + archive) -----------------------------------------
   Tinted panel: text stack left, highlight frame right holding the photo
   or, when the post has none, the topic name set large in plum. */

.bvs-lead-section { padding: 0.5rem 0 0; }

.bvs-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--bvs-col-gap);
    align-items: stretch;
    background: var(--bvs-panel);
    border-radius: var(--bvs-radius-lg);
    padding: clamp(1.5rem, 3.5vw, 3rem);
}
.bvs-lead-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.1rem;
    min-width: 0;
}
.bvs-lead-title {
    font-size: var(--bvs-h1-lead);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
    text-wrap: balance;
    line-height: 1.08;
}
.bvs-lead-title a { color: var(--bvs-ink); text-decoration: none; }
.bvs-lead-title a:hover { color: var(--bvs-primary); text-decoration: none; }
.bvs-lead-standfirst {
    font-family: var(--bvs-text);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--bvs-ink);
    margin: 0;
    max-width: 34rem;
}
.bvs-lead-text .bvs-btn { margin-top: 0.25rem; }

.bvs-lead-frame {
    background: var(--bvs-highlight);
    border-radius: var(--bvs-radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    min-height: 340px;
}
/* The photo keeps its 16:9 and sits matted in the frame — a cover-fill
   cropped the 1536×864 covers nearly square beside a tall headline stack
   (live, 2026-09-14). */
.bvs-lead-frame > .bvs-lead-figure {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    background: var(--bvs-panel);
}
.bvs-lead-mark {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    text-decoration: none;
    border-radius: var(--bvs-radius-sm);
}
.bvs-lead-mark span {
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: clamp(2rem, 1.2rem + 2.8vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--bvs-primary);
    text-wrap: balance;
}
.bvs-lead-mark:hover span { color: var(--bvs-primary-dark); }

/* --- Sections, section heads, grid ------------------------------------------- */

.bvs-section { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0 0; }
.site-main > .bvs-section:last-child,
.bvs-archive-grid { padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }

/* Section head: chunky title left, optional count, pill link right. */
.bvs-section-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
}
.bvs-section-title {
    margin: 0;
    font-size: var(--bvs-section);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.bvs-section-count { color: var(--bvs-meta); }
.bvs-section-head .bvs-pill-link { margin-left: auto; }
/* Auto ads like to insert a unit as this flex row's first child. Give any
   injected element its own full-width row below the title instead. */
.bvs-section-head > :not(.bvs-section-title):not(.bvs-pill-link):not(.bvs-section-count) {
    flex-basis: 100%;
    order: 4;
}

.bvs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--bvs-grid-gap);
}
.bvs-grid-3 > * { min-width: 0; }

/* Story — tinted panel: optional photo, chip, headline, one-liner, meta. */
.bvs-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bvs-panel);
    border-radius: var(--bvs-radius);
    padding: var(--bvs-panel-pad);
}
.bvs-card-figure { width: 100%; }
.bvs-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}
.bvs-card-title {
    font-size: var(--bvs-card-title);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.015em;
    text-wrap: balance;
}
.bvs-card-title a { color: var(--bvs-ink); text-decoration: none; }
.bvs-card-title a:hover { color: var(--bvs-primary); text-decoration: none; }
.bvs-card-excerpt {
    font-family: var(--bvs-text);
    color: var(--bvs-ink);
    font-size: 0.9875rem;
    line-height: 1.6;
    margin: 0;
}
.bvs-card-body .bvs-meta { margin-top: auto; padding-top: 0.5rem; }

/* --- Start here: topic pillars ---------------------------------------------------- */

.bvs-topics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--bvs-grid-gap);
}
.bvs-topic {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
    background: var(--bvs-panel);
    border-radius: var(--bvs-radius);
    padding: var(--bvs-panel-pad);
    text-decoration: none;
    color: var(--bvs-ink);
    transition: background 0.2s ease;
}
.bvs-topic:hover { background: var(--bvs-highlight); color: var(--bvs-ink); text-decoration: none; }
.bvs-topic-name {
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: 1.3125rem;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.bvs-topic:hover .bvs-topic-name { color: var(--bvs-primary); }
.bvs-topic-desc { font-size: 0.9375rem; line-height: 1.55; color: var(--bvs-ink); }
.bvs-topic-count { margin-top: auto; padding-top: 0.5rem; color: var(--bvs-primary); }

/* --- Ask the Psychologist: numbered question rows ------------------------------- */

.bvs-questions {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: bvs-q;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.bvs-question {
    counter-increment: bvs-q;
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem 1.25rem;
    background: var(--bvs-panel);
    border-radius: var(--bvs-radius);
    padding: 1rem 1.5rem;
    min-height: 64px;
}
.bvs-question::before {
    content: counter(bvs-q, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--bvs-primary);
    color: #fff;
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: 0.9375rem;
    font-variant-numeric: tabular-nums;
}
.bvs-question-title {
    font-family: var(--bvs-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--bvs-ink);
    text-decoration: none;
    min-height: var(--bvs-tap);
    display: inline-flex;
    align-items: center;
}
.bvs-question-title:hover { color: var(--bvs-primary); text-decoration: none; }
.bvs-question .bvs-meta { justify-self: end; white-space: nowrap; }

/* --- Newsletter panel (before the footer, every template) ------------------------- */

.bvs-newsletter {
    max-width: var(--bvs-page-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) var(--bvs-gutter) 0;
}
.bvs-newsletter-inner {
    background: var(--bvs-primary);
    color: #fff;
    border-radius: var(--bvs-radius-lg);
    padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}
.bvs-newsletter h2 { font-size: var(--bvs-section); font-weight: 700; margin: 0; letter-spacing: -0.02em; color: #fff; }
.bvs-newsletter p { color: #fff; margin: 0; max-width: 34rem; }
.bvs-newsletter .bvs-newsletter-note { color: var(--bvs-footer-muted); }
.bvs-newsletter .newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    width: 100%;
    max-width: 30rem;
    margin-top: 0.5rem;
    position: relative;
}
.bvs-newsletter .newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--bvs-pill);
    padding: 0 1.25rem;
    font-family: var(--bvs-ui);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}
.bvs-newsletter .newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.75); }
.bvs-newsletter .newsletter-form input[type="email"]:focus { outline: 2px solid #fff; outline-offset: 2px; border-color: #fff; box-shadow: none; }
.bvs-newsletter .newsletter-form button {
    background: var(--bvs-cream);
    border-color: var(--bvs-cream);
    color: var(--bvs-primary);
}
.bvs-newsletter .newsletter-form button:hover { background: #fff; border-color: #fff; color: var(--bvs-primary-dark); }
.bvs-newsletter .newsletter-message { background: transparent; border: none; padding: 0; margin: 0; }
.bvs-newsletter .newsletter-message.success,
.bvs-newsletter .newsletter-message.error { color: #fff; background: transparent; border: none; }

/* --- Footer (plum-black) ------------------------------------------------------------- */

.bvs-footer {
    background: var(--bvs-footer-bg);
    color: var(--bvs-footer-text);
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding: clamp(3rem, 6vw, 4rem) 0 2.25rem;
}
.bvs-footer-inner { max-width: var(--bvs-page-max); margin: 0 auto; padding: 0 var(--bvs-gutter); }
.bvs-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.bvs-footer-wordmark {
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
.bvs-footer-wordmark:hover { color: var(--bvs-footer-muted); text-decoration: none; }
.bvs-footer-tagline { color: var(--bvs-footer-text); margin: 1rem 0 1rem; font-size: 0.9875rem; line-height: 1.6; max-width: 26rem; }
.bvs-footer-owner { font-family: var(--bvs-ui); font-size: 0.9375rem; line-height: 1.65; color: var(--bvs-footer-muted); margin: 0; }
.bvs-footer-owner a { color: var(--bvs-footer-text); font-size: 0.9375rem; }
.bvs-footer-owner a:hover { color: #fff; }
.bvs-footer h3 {
    font-family: var(--bvs-ui);
    font-size: var(--bvs-size-meta);
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    color: var(--bvs-footer-muted);
    margin: 0 0 1rem;
    font-weight: 700;
}
.bvs-footer .footer-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.bvs-footer .footer-menu a {
    color: var(--bvs-footer-text);
    text-decoration: none;
    font-family: var(--bvs-ui);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
}
.bvs-footer .footer-menu a:hover { color: #fff; text-decoration: underline; }
.bvs-footer-bottom {
    border-top: 1px solid var(--bvs-footer-rule);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
}
.bvs-footer-bottom p { margin: 0; font-family: var(--bvs-ui); font-size: 0.875rem; color: var(--bvs-footer-muted); }

/* --- Single post ------------------------------------------------------------------- */

.bvs-single {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--bvs-sidebar);
    gap: var(--bvs-side-gap);
    padding: 1.5rem 0 3rem;
    align-items: start;
}
.bvs-article { min-width: 0; }

.bvs-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: var(--bvs-ui);
    font-size: var(--bvs-size-meta);
    font-weight: 700;
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    color: var(--bvs-meta);
    margin-bottom: 1rem;
}
.bvs-breadcrumb a { color: var(--bvs-meta); text-decoration: none; min-height: 32px; display: inline-flex; align-items: center; }
.bvs-breadcrumb a:hover { color: var(--bvs-primary); }
.bvs-breadcrumb .sep { color: var(--bvs-primary); opacity: 0.5; }

.bvs-article-head { margin-bottom: 1.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.bvs-article-head .bvs-breadcrumb { margin-bottom: 0; }
.bvs-title {
    font-size: var(--bvs-title);
    font-weight: 700;
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.bvs-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bvs-lead-photo {
    margin: 0 0 1.75rem;
    background: var(--bvs-highlight);
    border-radius: var(--bvs-radius);
    padding: 1rem;
}
.bvs-lead-photo img { width: 100%; height: auto; display: block; border-radius: var(--bvs-radius-sm); }
.bvs-caption,
.bvs-article .entry-content figcaption {
    font-family: var(--bvs-ui);
    font-style: normal;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bvs-meta);
    text-align: left;
    padding: 0.6rem 0 0;
}
.bvs-lead-photo .bvs-caption { padding: 0.75rem 0.25rem 0; }

.bvs-article .entry-content {
    font-size: var(--bvs-size-body);
    line-height: var(--bvs-lh-body);
    color: var(--bvs-ink);
}
.bvs-article .entry-content > * { max-width: 100%; }
.bvs-article .entry-content p { text-wrap: pretty; margin-bottom: 1.5rem; }
.bvs-article .entry-content h2 {
    font-size: var(--bvs-h2);
    font-weight: 700;
    margin: 2.75rem 0 1rem;
    padding-bottom: 0;
    border-bottom: none;
    letter-spacing: -0.02em;
    scroll-margin-top: 1.5rem;
    text-wrap: balance;
}
.bvs-article .entry-content h3 { font-size: var(--bvs-h3); margin: 2.25rem 0 0.8rem; letter-spacing: -0.015em; scroll-margin-top: 1.5rem; text-wrap: balance; }
.bvs-article .entry-content h4 { font-size: 1.125rem; margin: 1.75rem 0 0.6rem; }
.bvs-article .entry-content a { color: var(--bvs-primary); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(126, 46, 95, 0.35); text-underline-offset: 0.15em; }
.bvs-article .entry-content a:hover { color: var(--bvs-primary-dark); text-decoration-color: currentColor; }
.bvs-article .entry-content strong,
.bvs-article .entry-content b { color: var(--bvs-ink); font-weight: 700; }
.bvs-article .entry-content img { border-radius: var(--bvs-radius-sm); box-shadow: none; }
.bvs-article .entry-content figure { margin: 2rem 0; }
.bvs-article .entry-content ul,
.bvs-article .entry-content ol { margin-left: 1.5rem; }
.bvs-article .entry-content li { margin-bottom: 0.5rem; }

/* "In this article" — collapsed tinted panel (details/summary). */
.bvs-toc {
    background: var(--bvs-panel);
    border-radius: var(--bvs-radius);
    padding: 0.25rem 1.5rem;
    margin: 2rem 0;
}
.bvs-toc-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: var(--bvs-tap);
    padding: 0.5rem 0;
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--bvs-ink);
}
.bvs-toc-summary::-webkit-details-marker { display: none; }
.bvs-toc-summary::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--bvs-primary);
    border-bottom: 2px solid var(--bvs-primary);
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 0.15rem;
}
.bvs-toc[open] .bvs-toc-summary::before { transform: rotate(45deg); }
.bvs-toc-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0.25rem 0 0;
    counter-reset: bvs-toc;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.bvs-toc-list li { margin: 0; padding: 0; list-style: none; counter-increment: bvs-toc; }
.bvs-toc-list li::before { content: none; }
.bvs-toc-list a {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--bvs-ui);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 0.45rem 0;
    color: var(--bvs-ink);
    text-decoration: none;
}
.bvs-toc-list a::before {
    content: counter(bvs-toc, decimal-leading-zero);
    font-family: var(--bvs-display);
    font-weight: 700;
    color: var(--bvs-primary);
    font-size: 0.875rem;
    font-variant-numeric: tabular-nums;
}
.bvs-toc-list a:hover { color: var(--bvs-primary); }
.bvs-toc-list .bvs-toc-l3 a { padding-left: 0; }
.bvs-toc-list .bvs-toc-l3 a { font-weight: 400; }

/* Pull quote / callout — tinted panel with a plum left bar. */
.bvs-article .entry-content blockquote {
    border-left: 4px solid var(--bvs-primary);
    background: var(--bvs-panel);
    border-radius: 0 var(--bvs-radius) var(--bvs-radius) 0;
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    font-family: var(--bvs-text);
    font-size: 1.125rem;
    font-style: normal;
    line-height: 1.6;
    color: var(--bvs-ink);
}
.bvs-article .entry-content blockquote p { margin: 0; }
.bvs-article .entry-content blockquote p + p { margin-top: 0.75rem; }

.table-scroll { overflow-x: auto; margin: 1.5rem 0; -webkit-overflow-scrolling: touch; border-radius: var(--bvs-radius-sm); }
.table-scroll table { min-width: 560px; }
.bvs-article .entry-content th { background: var(--bvs-panel); color: var(--bvs-ink); font-family: var(--bvs-ui); font-size: 0.875rem; font-weight: 700; }
.bvs-article .entry-content td, .bvs-article .entry-content th { border-color: var(--bvs-rule); }
.bvs-article .entry-content tr:hover { background: var(--bvs-cream); }

.bvs-page-links { margin: 1.75rem 0; display: flex; gap: 0.5rem; align-items: center; font-family: var(--bvs-ui); }
.bvs-page-links span { padding: 0.25rem 0.6rem; }

/* Share row — label + pill links. */
.bvs-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2.5rem 0 0;
}
.bvs-share .bvs-label { margin-right: 0.5rem; }
.bvs-share a {
    display: inline-flex;
    align-items: center;
    min-height: var(--bvs-tap);
    padding: 0 1.1rem;
    border-radius: var(--bvs-pill);
    background: var(--bvs-panel);
    color: var(--bvs-primary);
    font-family: var(--bvs-ui);
    font-weight: 700;
    font-size: var(--bvs-size-meta);
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    text-decoration: none;
}
.bvs-share a:hover { background: var(--bvs-highlight); color: var(--bvs-primary-dark); text-decoration: none; }

.bvs-related { margin-top: 3rem; }
.bvs-related .bvs-card-title { font-size: 1.125rem; }

/* --- Sidebar (tinted modules) ------------------------------------------------------ */

.bvs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}
.bvs-widget { margin: 0; }
.bvs-widget-title {
    font-family: var(--bvs-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--bvs-ink);
    margin: 0 0 0.75rem;
}

.bvs-mostread { list-style: none; margin: 0; padding: 0; counter-reset: bvs-mr; display: flex; flex-direction: column; }
.bvs-mostread li {
    counter-increment: bvs-mr;
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(126, 46, 95, 0.12);
}
.bvs-mostread li:first-child { border-top: none; padding-top: 0.25rem; }
.bvs-mostread li::before {
    content: counter(bvs-mr, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--bvs-primary);
    color: #fff;
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    margin-top: 0.1rem;
}
.bvs-mostread-text { min-width: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.bvs-mostread-title {
    font-family: var(--bvs-display);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--bvs-ink);
    text-decoration: none;
}
.bvs-mostread-title:hover { color: var(--bvs-primary); text-decoration: none; }

.bvs-cat-list { list-style: none; margin: 0; padding: 0; }
.bvs-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: var(--bvs-tap);
    padding: 0.25rem 0;
    border-top: 1px solid rgba(126, 46, 95, 0.12);
    color: var(--bvs-ink);
    text-decoration: none;
    font-family: var(--bvs-ui);
    font-size: 0.9375rem;
    font-weight: 700;
}
.bvs-cat-list li:first-child a { border-top: none; }
.bvs-cat-list a:hover { color: var(--bvs-primary); text-decoration: none; }
.bvs-cat-count {
    font-family: var(--bvs-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--bvs-primary);
    font-variant-numeric: tabular-nums;
}

/* Newsletter widget — solid plum panel. Not sticky. */
.bvs-widget-news {
    background: var(--bvs-primary);
    color: #fff;
    border-radius: var(--bvs-radius);
    padding: var(--bvs-panel-pad);
    text-align: left;
}
.bvs-widget-news .bvs-widget-title { color: #fff; margin-bottom: 0.5rem; }
.bvs-widget-news p { color: #fff; font-size: 0.9375rem; line-height: 1.5; margin: 0 0 1rem; }
.bvs-widget-news .bvs-newsletter-note { color: var(--bvs-footer-muted); font-family: var(--bvs-ui); font-size: 0.75rem; margin: 0.75rem 0 0; }
.bvs-widget-news .newsletter-form { display: flex; flex-direction: column; gap: 0.6rem; position: relative; }
.bvs-widget-news .newsletter-form input[type="email"] {
    min-height: var(--bvs-tap);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--bvs-pill);
    padding: 0 1rem;
    font-family: var(--bvs-ui);
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}
.bvs-widget-news .newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.75); }
.bvs-widget-news .newsletter-form input[type="email"]:focus { outline: 2px solid #fff; outline-offset: 2px; border-color: #fff; box-shadow: none; }
.bvs-widget-news .newsletter-form button {
    min-height: var(--bvs-tap);
    background: var(--bvs-cream);
    border-color: var(--bvs-cream);
    color: var(--bvs-primary);
    font-size: 0.875rem;
}
.bvs-widget-news .newsletter-form button:hover { background: #fff; border-color: #fff; color: var(--bvs-primary-dark); }
.bvs-widget-news .newsletter-message { background: transparent; border: none; padding: 0.5rem 0 0; margin: 0; color: #fff; }
.bvs-widget-news .newsletter-message.success,
.bvs-widget-news .newsletter-message.error { background: transparent; border: none; color: #fff; }

/* Ad slots — hairline frame on cream, labelled, reserved by the unit itself;
   an unfilled unit collapses the whole slot. */
.bvs-ad {
    text-align: center;
    border: 1px solid var(--bvs-rule);
    border-radius: var(--bvs-radius);
    padding: 0.75rem 0;   /* 304px sidebar − 2px borders = 302px ≥ a 300px unit */
    background: var(--bvs-cream);
}
.bvs-ad::before {
    content: "Advertisement";
    display: block;
    font-family: var(--bvs-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bvs-meta);
    margin-bottom: 0.5rem;
}
.bvs-ad:has(ins[data-ad-status="unfill-optimized"]),
.bvs-ad:has(ins[data-ad-status="unfilled"]) { display: none; }
.bvs-ad-placeholder {
    border: 1px dashed var(--bvs-rule);
    border-radius: var(--bvs-radius-sm);
    margin: 0 0.75rem;
    padding: 2rem 1rem;
    color: var(--bvs-meta);
    font-family: var(--bvs-ui);
    font-size: 0.875rem;
}

/* --- Archive ---------------------------------------------------------------- */

/* Masthead — tinted panel: breadcrumb, title, description, count pill. */
.bvs-archive-head {
    background: var(--bvs-panel);
    border-radius: var(--bvs-radius-lg);
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 3rem);
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}
.bvs-archive-head .bvs-breadcrumb { margin-bottom: 0; }
.bvs-archive-title {
    font-size: var(--bvs-h1);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.bvs-archive-description {
    font-family: var(--bvs-text);
    color: var(--bvs-ink);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 44rem;
}
.bvs-archive-description p { margin: 0; }
.bvs-archive-count {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0 0.9rem;
    border-radius: var(--bvs-pill);
    background: var(--bvs-primary);
    color: #fff;
    margin-top: 0.25rem;
}

.bvs-archive-grid { margin-top: var(--bvs-grid-gap); }
.bvs-archive-lead { grid-column: 1 / -1; }
/* On archives the masthead is already a tinted panel, so the lead sits on
   cream (text left, tinted frame right) — two stacked panels read heavy. */
.bvs-archive-lead .bvs-lead { margin-bottom: 0; background: transparent; padding: clamp(0.75rem, 2vw, 1.5rem) 0; }
.bvs-archive-lead .bvs-lead-frame { background: var(--bvs-panel); }
.bvs-archive-lead .bvs-lead-frame > .bvs-lead-figure { background: var(--bvs-highlight); }

/* Pager — 44px pills, current filled plum. */
.bvs-pager {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0 2rem;
    font-family: var(--bvs-ui);
}
.bvs-pager .nav-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.bvs-pager .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--bvs-tap);
    min-height: var(--bvs-tap);
    height: auto;
    padding: 0 1rem;
    border: none;
    border-radius: var(--bvs-pill);
    background: var(--bvs-panel);
    color: var(--bvs-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--bvs-size-meta);
    letter-spacing: var(--bvs-track-meta);
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}
.bvs-pager a.page-numbers:hover { background: var(--bvs-highlight); color: var(--bvs-primary-dark); }
.bvs-pager .page-numbers.current { background: var(--bvs-primary); color: #fff; }
.bvs-pager .page-numbers.dots { background: none; color: var(--bvs-meta); }
.bvs-pager-count { color: var(--bvs-meta); }

/* --- Static pages, empty states, comments ------------------------------------ */

.bvs-page { max-width: var(--bvs-content-max); margin: 0 auto; padding: 2rem 0 3rem; }
.bvs-page-head { margin-bottom: 1.5rem; }
.bvs-page-title { font-size: var(--bvs-h1); font-weight: 700; margin: 0; letter-spacing: -0.03em; text-wrap: balance; }
.bvs-page .entry-content { max-width: var(--bvs-measure); font-size: var(--bvs-size-body); line-height: var(--bvs-lh-body); }
.bvs-page .entry-content h2 { font-size: var(--bvs-h2); margin: 2.5rem 0 1rem; padding-bottom: 0; border-bottom: none; }
.bvs-page .entry-content h3 { font-size: var(--bvs-h3); }
.bvs-page .entry-content a { text-decoration: underline; }
.bvs-page .entry-content img { border-radius: var(--bvs-radius-sm); box-shadow: none; }

.bvs-empty { max-width: 38rem; margin: 0 auto; text-align: center; padding: 4rem 0 3rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.bvs-empty h1 { font-size: var(--bvs-h1); margin: 0; letter-spacing: -0.03em; }
.bvs-empty p { color: var(--bvs-ink); margin: 0 0 0.5rem; }
.bvs-empty .search-form { display: flex; gap: 0.5rem; width: 100%; max-width: 26rem; margin: 0 auto; }
.bvs-empty .search-field {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    border: 1px solid var(--bvs-rule);
    border-radius: var(--bvs-pill);
    padding: 0 1.1rem;
    background: #fff;
    font-family: var(--bvs-ui);
    font-size: 1rem;
    color: var(--bvs-ink);
}
.bvs-empty .search-submit { padding: 0 1.25rem; }

/* main.css sets content-visibility:auto on comments; full-page captures and
   some print paths then render the block blank. Paint it. */
.comments-area { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--bvs-rule); content-visibility: visible; contain-intrinsic-size: auto; }
.comments-area .comments-title,
.comments-area .comment-reply-title { font-size: var(--bvs-h3); letter-spacing: -0.015em; }
.comments-area .comment-list { list-style: none; padding: 0; }
.comments-area .comment { background: var(--bvs-panel); border-left: none; border-radius: var(--bvs-radius); }
.comments-area .children .comment { background: var(--bvs-cream); border: 1px solid var(--bvs-rule); }
.comments-area .comment-respond { background: var(--bvs-panel); border-radius: var(--bvs-radius); padding: var(--bvs-panel-pad); }
.comments-area .comment-form label { color: var(--bvs-ink); }
.comments-area input:not([type="checkbox"]):not([type="submit"]),
.comments-area textarea { border-radius: var(--bvs-radius-sm); border: 1px solid var(--bvs-rule); font-family: var(--bvs-ui); background: #fff; color: var(--bvs-ink); }
.comments-area input:focus, .comments-area textarea:focus { border-color: var(--bvs-primary); outline: none; box-shadow: 0 0 0 3px rgba(126, 46, 95, 0.15); }
.comments-area .comment-form input[type="submit"],
.comments-area #submit { border-radius: var(--bvs-pill) !important; }
.comments-area .comment-reply-link { border-radius: var(--bvs-pill); background: var(--bvs-primary); }
.comments-area .comment-reply-link:hover { background: var(--bvs-primary-dark); }
.comments-area .no-comments { background: var(--bvs-panel); border-radius: var(--bvs-radius); color: var(--bvs-ink); }

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}

/* --- Responsive ------------------------------------------------------------ */

@media (max-width: 1200px) {
    .bvs-masthead .main-navigation a { padding: 0 0.6rem; }
    .bvs-masthead .main-navigation a::after { left: 0.6rem; right: 0.6rem; }
    .bvs-masthead-inner { column-gap: 1rem; }
}

@media (max-width: 1024px) {
    .bvs-masthead-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas: "brand actions" "search search";
        min-height: 68px;
    }
    .bvs-wordmark { font-size: 1.375rem; }
    .bvs-masthead .main-navigation { grid-area: auto; }

    /* The drawer's parking spot (right: -100%) widens the page's scrollable
       area. Contain it: the wrapper becomes a fixed, full-viewport,
       overflow-hidden box and the drawer positions absolutely inside it. */
    .bvs-drawer-clip {
        display: block;
        position: fixed;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 1000;
    }
    .bvs-drawer-clip .main-navigation { position: absolute; pointer-events: auto; background: var(--bvs-cream); }

    /* main.css turns .main-navigation into a fixed drawer at this width and
       relied on `.header-main .main-navigation{display:block!important}`;
       this masthead has no .header-main, so supply it here. */
    .bvs-masthead .main-navigation { display: block; justify-self: auto; }
    .bvs-masthead .primary-menu { gap: 0; }
    .bvs-masthead .primary-menu,
    .bvs-masthead .main-navigation ul { display: block; text-align: left; }
    .bvs-masthead .main-navigation li { border-bottom: 1px solid var(--bvs-rule); }
    .bvs-masthead .main-navigation a { min-height: var(--bvs-nav-tap); padding: 0 1.5rem; font-size: 0.875rem; }
    .bvs-masthead .main-navigation a::after { display: none; }
    .bvs-masthead .main-navigation .current-menu-item > a,
    .bvs-masthead .main-navigation .current-cat > a,
    .bvs-masthead .main-navigation .current-post-ancestor > a { background: var(--bvs-panel); box-shadow: inset 3px 0 0 var(--bvs-primary); }
    .bvs-masthead .header-actions { margin-left: auto; grid-column: 2; }
    .bvs-masthead .mobile-menu-toggle.active { position: fixed; top: 0.75rem; right: 0.75rem; z-index: 1002; }

    .bvs-lead { grid-template-columns: minmax(0, 1fr); }
    .bvs-lead-frame { order: -1; min-height: 0; }
    .bvs-lead-frame > .bvs-lead-figure { aspect-ratio: 16 / 9; height: auto; }
    .bvs-lead-mark { min-height: 160px; padding: 1.5rem; }

    .bvs-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bvs-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .bvs-single { grid-template-columns: minmax(0, 1fr); }
    .bvs-sidebar { margin-top: 2rem; }
    /* Brand block on its own full row, then the four link groups in a 2×2. */
    .bvs-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bvs-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .bvs-grid-3 { grid-template-columns: minmax(0, 1fr); }
    .bvs-topics { grid-template-columns: minmax(0, 1fr); }
    .bvs-lead { padding: 1.25rem; gap: 1.25rem; }
    .bvs-lead-frame { padding: 0.6rem; }
    .bvs-lead-standfirst { font-size: 1.0625rem; }
    .bvs-section-head { gap: 0.5rem 1rem; }
    .bvs-question { grid-template-columns: 2.25rem minmax(0, 1fr); padding: 0.9rem 1rem; }
    .bvs-question::before { width: 2.25rem; height: 2.25rem; font-size: 0.8125rem; }
    .bvs-question .bvs-meta { grid-column: 2; justify-self: start; white-space: normal; }
    .bvs-question-title { font-size: 1.125rem; min-height: 0; }
    .bvs-footer-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
    .bvs-footer-bottom { flex-direction: column; }
    .bvs-newsletter .newsletter-form { flex-direction: column; gap: 0.6rem; }
    .bvs-share { gap: 0.5rem; }
    .bvs-article-meta { gap: 0.35rem; }
    .bvs-article-meta .sep { display: none; }
    .bvs-article-meta > * { flex-basis: 100%; }
    .bvs-archive-head { padding: 1.5rem 1.25rem; }
    .bvs-empty .search-form { flex-direction: column; }
    .bvs-lead-photo { padding: 0.6rem; }
    .bvs-toc { padding: 0.25rem 1rem; }
}
