/* ═══════════════════════════════════════════════════════════════════════
   Herald theme stylesheet — Phase 7e P3e.
   Bold tabloid energy, dark-dominant magazine-portfolio aesthetic.
   Network's only DARK-DOMINANT theme. Yellow-orange accent (#fbbf24).
   Anton (display) + Oswald (headlines/UI) + Roboto (body).
   Single-column main + right rail (~70/30) — natural-stack, no sticky.
   HotMagazine variant (dark/orange) reference.
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;700&family=Roboto:wght@300;400;500;700;900&display=swap');

/* ═══════════════════════════════════════════════════════════════════════
   :ROOT — design tokens
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    /* Ink (text) — light on dark */
    --ink: #ffffff;
    --ink-soft: #cccccc;
    --ink-mute: #888888;

    /* Paper (backgrounds) — charcoal dominant */
    --paper: #1a1a1a;
    --paper-soft: #222222;
    --paper-deep: #2a2a2a;
    --paper-deeper: #0f0f0f;

    /* Accent — Herald's signature yellow-orange */
    --accent: #fbbf24;
    --accent-soft: #fcd34d;
    --accent-deep: #d97706;

    /* Rules (borders/dividers) */
    --rule: #333333;
    --rule-soft: #2a2a2a;

    /* Type families */
    --font-headline-display: 'Anton', 'Impact', sans-serif;
    --font-headline: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-ui: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-condensed: 'Oswald', 'Arial Narrow', sans-serif;

    /* Layout */
    --max-width: 1400px;
    --content-max: 1100px;
    --rail-width: 320px;
    --gutter: 24px;
    --gap: 32px;

    /* Type scale */
    --type-body: 16px;
    --type-meta: 13px;
    --type-small: 12px;
    --type-tiny: 11px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESET / BASELINE
   ═══════════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-soft);
}

p {
    margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

ul, ol {
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--accent);
    color: var(--paper);
}

::-moz-selection {
    background: var(--accent);
    color: var(--paper);
}

/* ═══════════════════════════════════════════════════════════════════════
   CHROME — Top utility bar
   ═══════════════════════════════════════════════════════════════════════ */

.hr-topbar {
    background: var(--paper);
    color: var(--ink);
    padding: 8px 0;
    font-family: var(--font-ui);
    font-size: 12px;
    border-bottom: 1px solid var(--rule-soft);
}

.hr-topbar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.hr-topbar__left {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    min-width: 0;
}

.hr-topbar__date {
    color: var(--ink-soft);
}

.hr-topbar__sep {
    color: var(--ink-mute);
    padding: 0 8px;
}

.hr-topbar__edition {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--ink);
}

.hr-topbar__right {
    display: flex;
    align-items: center;
}

.hr-topbar__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hr-topbar__social li {
    display: flex;
    align-items: center;
}

.hr-topbar__social-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.hr-topbar__social-link:hover {
    color: var(--accent);
}

@media (max-width: 640px) {
    .hr-topbar__inner {
        font-size: 11px;
    }
    .hr-topbar__sep,
    .hr-topbar__edition {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   CHROME — Masthead
   ═══════════════════════════════════════════════════════════════════════ */

.hr-masthead {
    background: var(--paper);
    padding: 32px 0;
    text-align: center;
    border-bottom: 1px solid var(--rule-soft);
}

.hr-masthead__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hr-masthead__brand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    position: relative;
}

.hr-masthead__logo {
    max-height: 56px;
    width: auto;
}

.hr-masthead__wordmark {
    font-family: var(--font-headline-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.hr-masthead__accent-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    align-self: flex-end;
    margin-bottom: 6px;
}

.hr-masthead__tagline {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink-mute);
    margin: 12px 0 0;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .hr-masthead {
        padding: 24px 0;
    }
    .hr-masthead__wordmark {
        font-size: 40px;
    }
    .hr-masthead__accent-dot {
        width: 10px;
        height: 10px;
    }
    .hr-masthead__tagline {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   CHROME — Sticky nav
   ═══════════════════════════════════════════════════════════════════════ */

.hr-nav {
    background: var(--paper-deep);
    color: var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.hr-nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px;
}

.hr-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}

.hr-nav__list::-webkit-scrollbar {
    display: none;
}

.hr-nav__item {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}

.hr-nav__link {
    color: var(--ink);
    padding: 16px 18px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-headline);
    display: flex;
    align-items: center;
    transition: background var(--transition-fast), color var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.hr-nav__link:hover {
    background: var(--paper-soft);
    color: var(--ink);
}

.hr-nav__link[aria-current="page"],
.hr-nav__link.is-active {
    color: var(--accent);
    background: var(--paper-soft);
    border-bottom-color: var(--accent);
}

.hr-nav__search {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink-soft);
    border: 1px solid var(--rule);
    padding: 6px 14px;
    margin: 9px 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    min-width: 180px;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}

.hr-nav__search:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ink);
}

.hr-nav__search-icon {
    font-size: 14px;
    color: var(--ink-mute);
}

.hr-nav__search-placeholder {
    font-style: italic;
}

@media (max-width: 768px) {
    .hr-nav__inner {
        gap: 8px;
    }
    .hr-nav__link {
        padding: 14px 12px;
        font-size: 12px;
    }
    .hr-nav__search {
        min-width: 140px;
        font-size: 12px;
    }
    .hr-nav__search-placeholder {
        display: none;
    }
}

@media (max-width: 540px) {
    .hr-nav__search {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   CHROME — Breaking news ticker
   ═══════════════════════════════════════════════════════════════════════ */

.news-ticker.hr-ticker,
.hr-ticker {
    background: var(--paper-deep);
    color: var(--ink-soft);
    padding: 12px 24px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--rule);
}

.news-ticker__label.hr-ticker__label,
.hr-ticker__label {
    background: var(--accent);
    color: var(--paper);
    padding: 4px 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    font-family: var(--font-condensed);
    border-radius: 2px;
}

.news-ticker__track.hr-ticker__track,
.hr-ticker__track {
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.news-ticker__list.hr-ticker__list,
.hr-ticker__list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    animation: hr-ticker-scroll 60s linear infinite;
}

.news-ticker__item.hr-ticker__item,
.hr-ticker__item {
    flex-shrink: 0;
}

.news-ticker__link.hr-ticker__link,
.hr-ticker__link {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.news-ticker__link.hr-ticker__link:hover,
.hr-ticker__link:hover {
    color: var(--accent);
}

@keyframes hr-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════
   CHROME — Stock ticker strip
   ═══════════════════════════════════════════════════════════════════════ */

.stock-ticker.hr-stock-ticker,
.hr-stock-ticker {
    background: var(--paper-soft);
    border-bottom: 1px solid var(--rule);
    padding: 8px 24px;
    font-size: 12px;
    font-family: var(--font-ui);
    color: var(--ink-soft);
    overflow: hidden;
    white-space: nowrap;
}

.hr-stock-ticker .stock-ticker__symbol {
    font-family: var(--font-condensed);
    font-weight: 700;
    color: var(--ink);
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hr-stock-ticker .stock-ticker__price {
    color: var(--ink);
    font-weight: 500;
}

.hr-stock-ticker .stock-ticker__change--up {
    color: #4caf50;
    font-weight: 600;
}

.hr-stock-ticker .stock-ticker__change--down {
    color: #f44336;
    font-weight: 600;
}

.hr-stock-ticker .stock-ticker__change--neutral {
    color: var(--ink-mute);
}

.hr-stock-ticker .stock-ticker__separator {
    color: var(--ink-mute);
    margin: 0 16px;
}

.hr-stock-ticker .stock-ticker__updated {
    color: var(--ink-mute);
    font-size: 11px;
    margin-left: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════
   CHROME — Footer
   ═══════════════════════════════════════════════════════════════════════ */

.site-footer.hr-footer,
.hr-footer {
    background: var(--paper-deeper);
    color: var(--ink);
    padding: 64px 0 24px;
    margin-top: 64px;
}

.hr-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hr-footer__columns {
    display: grid;
    gap: 48px;
}

.hr-footer__columns--four {
    grid-template-columns: repeat(4, 1fr);
}

.hr-footer__col {
    min-width: 0;
}

.hr-footer__brand {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}

.hr-footer__logo {
    max-height: 48px;
    width: auto;
}

.hr-footer__wordmark {
    font-family: var(--font-headline-display);
    color: var(--ink);
    font-size: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
}

.hr-footer__tagline {
    color: var(--ink-mute);
    font-size: 13px;
    line-height: 1.5;
    margin: 12px 0 0;
}

.hr-footer__social {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hr-footer__social-link {
    color: var(--ink-soft);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hr-footer__social-link:hover {
    color: var(--accent);
}

.hr-footer__heading {
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.hr-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-footer__links li {
    line-height: 2;
}

.hr-footer__links a {
    color: var(--ink-soft);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hr-footer__links a:hover {
    color: var(--accent);
}

.hr-footer__bottom {
    border-top: 1px solid var(--rule);
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--ink-mute);
}

.hr-footer__copyright {
    margin: 0;
}

.hr-footer__meta {
    margin: 0;
    text-transform: capitalize;
}

@media (max-width: 1024px) {
    .hr-footer__columns--four {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hr-footer {
        padding: 48px 0 24px;
    }
    .hr-footer__columns--four {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hr-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE WRAPPER — single-column main + right rail (Herald geometry)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-page {
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr var(--rail-width);
    gap: var(--gap);
    align-items: start;
}

.hr-page__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hr-page__rail {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hr-main {
    min-height: 200px;
}

@media (max-width: 1280px) {
    .hr-page {
        grid-template-columns: 1fr 280px;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .hr-page {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hr-page__rail {
        gap: 32px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Hero 1 (full-bleed cinematic)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-hero,
.hr-hero--featured {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 70vh;
    min-height: 480px;
    max-height: 720px;
    overflow: hidden;
    background: var(--paper-deeper);
}

.hr-hero__image-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hr-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.hr-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 64px 24px;
    color: var(--ink);
    z-index: 2;
}

.hr-hero__overlay-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hr-hero__badge {
    display: inline-block;
    background: var(--accent);
    color: var(--paper);
    padding: 6px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-family: var(--font-condensed);
    margin: 0 8px 16px 0;
    border-radius: 2px;
}

.hr-hero__category {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-family: var(--font-condensed);
    margin: 0 0 16px;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-hero__title {
    font-family: var(--font-headline-display);
    font-size: clamp(44px, 6vw, 80px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
    color: var(--ink);
    text-transform: none;
}

.hr-hero__title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-hero__title a:hover {
    color: var(--accent);
}

.hr-hero__deck {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    max-width: 800px;
}

.hr-hero__byline {
    font-size: 14px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    margin: 0;
}

.hr-hero__author {
    font-weight: 700;
    color: var(--ink);
}

@media (max-width: 768px) {
    .hr-hero {
        height: 60vh;
        min-height: 380px;
    }
    .hr-hero__overlay {
        padding: 32px 24px;
    }
    .hr-hero__title {
        font-size: clamp(32px, 8vw, 48px);
    }
    .hr-hero__deck {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Top Stories Cluster (4-card asymmetric: 1 lead + 3 column)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-top-stories {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px var(--gutter);
    position: relative;
}

.hr-top-stories__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 24px;
}

.hr-top-stories__heading {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}

.hr-top-stories__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 480px;
}

.hr-top-stories__lead {
    grid-column: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--paper-deep);
}

.hr-top-stories__lead-image-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hr-top-stories__lead-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-top-stories__lead-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 80%);
    pointer-events: none;
}

.hr-top-stories__lead-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--ink);
    z-index: 2;
}

.hr-top-stories__lead-pill {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    margin: 0 0 12px;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-top-stories__lead-title {
    font-family: var(--font-headline);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.hr-top-stories__lead-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-top-stories__lead-title a:hover {
    color: var(--accent);
}

.hr-top-stories__lead-byline {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 12px 0 0;
}

.hr-top-stories__column {
    grid-column: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
}

.hr-top-stories__column-item {
    list-style: none;
}

.hr-top-stories__card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--paper-deep);
}

.hr-top-stories__card-image-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hr-top-stories__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-top-stories__card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    pointer-events: none;
}

.hr-top-stories__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: var(--ink);
    z-index: 2;
}

.hr-top-stories__card-pill {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-family: var(--font-condensed);
    font-weight: 700;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-top-stories__card-title {
    font-family: var(--font-headline);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-top-stories__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-top-stories__card-title a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .hr-top-stories__grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 12px;
    }
    .hr-top-stories__lead {
        grid-column: 1;
        height: 360px;
    }
    .hr-top-stories__column {
        grid-column: 1;
        grid-template-rows: repeat(3, 200px);
    }
    .hr-top-stories__lead-overlay {
        padding: 20px;
    }
    .hr-top-stories__lead-title {
        font-size: 22px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Hero 2 (TODAY'S FEATURED in main column)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-hero2 {
    margin: 0;
}

.hr-hero2__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 24px;
}

.hr-hero2__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}

.hr-hero2__lead {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--paper-deep);
}

.hr-hero2__image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.hr-hero2__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-hero2__category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    background: var(--accent);
    color: var(--paper);
    border-radius: 2px;
    z-index: 2;
}

.hr-hero2__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: var(--ink);
}

.hr-hero2__title {
    font-family: var(--font-headline-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin: 0;
    text-transform: none;
}

.hr-hero2__byline {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 8px 0 0;
}

.hr-hero2__textonly {
    padding: 32px;
    background: var(--paper-soft);
    border-left: 4px solid var(--accent);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hr-hero2__textonly .hr-hero2__title {
    font-size: 28px;
}

.hr-hero2__deck {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 12px 0 0;
}

@media (max-width: 768px) {
    .hr-hero2__lead {
        height: 280px;
    }
    .hr-hero2__title {
        font-size: 26px;
    }
    .hr-hero2__overlay {
        padding: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Editor's Picks (2x4 dense grid, 8 cards, overlay text)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-editors-picks {
    margin: 0;
}

.hr-editors-picks__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 24px;
}

.hr-editors-picks__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}

.hr-editors-picks__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}

.hr-editors-picks__card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--paper-deep);
}

.hr-editors-picks__card-image-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hr-editors-picks__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hr-editors-picks__card:hover .hr-editors-picks__card-image {
    transform: scale(1.04);
}

.hr-editors-picks__card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 70%);
    pointer-events: none;
}

.hr-editors-picks__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: var(--ink);
    z-index: 2;
}

.hr-editors-picks__card-pill {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-family: var(--font-condensed);
    font-weight: 700;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-editors-picks__card-title {
    font-family: var(--font-headline);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-editors-picks__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-editors-picks__card-title a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .hr-editors-picks__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .hr-editors-picks__card:nth-child(n+10) {
        display: none;
    }
}

@media (max-width: 768px) {
    .hr-editors-picks__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .hr-editors-picks__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Region Focus (2x2 image-led grid)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-region-focus {
    margin: 0;
}

.hr-region-focus__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 24px;
}

.hr-region-focus__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}

.hr-region-focus__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.hr-region-focus__card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    background: var(--paper-deep);
}

.hr-region-focus__card-image-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hr-region-focus__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hr-region-focus__card:hover .hr-region-focus__card-image {
    transform: scale(1.04);
}

.hr-region-focus__card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
    pointer-events: none;
}

.hr-region-focus__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: var(--ink);
    z-index: 2;
}

.hr-region-focus__card-pill {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-family: var(--font-condensed);
    font-weight: 700;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-region-focus__card-title {
    font-family: var(--font-headline);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-region-focus__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-region-focus__card-title a:hover {
    color: var(--accent);
}

.hr-region-focus__card-date {
    display: block;
    font-size: 11px;
    color: var(--ink-soft);
    margin-top: 4px;
}

@media (max-width: 640px) {
    .hr-region-focus__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Markets Band (Bloomberg-style, dark)
   ═══════════════════════════════════════════════════════════════════════ */

.bs-markets-band,
.markets-band,
.hr-markets-band {
    background: var(--paper-deep);
    padding: 32px 24px;
    margin: 0;
    border-radius: 4px;
}

.bs-markets-band__inner,
.markets-band__inner,
.hr-markets-band__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.bs-markets-band__header,
.markets-band__header,
.hr-markets-band__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 24px;
}

.bs-markets-band__heading,
.markets-band__heading,
.hr-markets-band__heading {
    font-family: var(--font-headline);
    font-size: 20px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin: 0;
}

.bs-markets-band__strip,
.markets-band__strip,
.hr-markets-band__strip {
    background: var(--paper-soft);
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
    font-family: var(--font-condensed);
    color: var(--ink-soft);
}

.bs-markets-band__grid,
.markets-band__grid,
.hr-markets-band__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bs-markets-band__card,
.markets-band__card,
.hr-markets-band__card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bs-markets-band__card-thumb,
.markets-band__card-thumb,
.hr-markets-band__card-thumb {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex: 0 0 100px;
}

.bs-markets-band__card-body,
.markets-band__card-body,
.hr-markets-band__card-body {
    flex: 1;
    min-width: 0;
}

.bs-markets-band__card-title,
.markets-band__card-title,
.hr-markets-band__card-title {
    font-family: var(--font-headline);
    font-size: 14px;
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 4px;
    font-weight: 600;
}

.bs-markets-band__card-title a,
.markets-band__card-title a,
.hr-markets-band__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.bs-markets-band__card-title a:hover,
.markets-band__card-title a:hover,
.hr-markets-band__card-title a:hover {
    color: var(--accent);
}

.bs-markets-band__card-meta,
.markets-band__card-meta,
.hr-markets-band__card-meta {
    font-size: 11px;
    color: var(--ink-mute);
}

@media (max-width: 768px) {
    .bs-markets-band__grid,
    .markets-band__grid,
    .hr-markets-band__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Photo Essay (single inline feature)
   ═══════════════════════════════════════════════════════════════════════ */

.bs-photo-essay,
.photo-essay,
.hr-photo-essay {
    margin: 0;
    padding: 0;
}

.bs-photo-essay__header,
.photo-essay__header,
.hr-photo-essay__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 24px;
}

.bs-photo-essay__heading,
.photo-essay__heading,
.hr-photo-essay__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin: 0;
}

.bs-photo-essay__figure,
.photo-essay__figure,
.hr-photo-essay__figure {
    position: relative;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
}

.bs-photo-essay__image,
.photo-essay__image,
.hr-photo-essay__image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.bs-photo-essay__overlay,
.photo-essay__overlay,
.hr-photo-essay__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--ink);
}

.bs-photo-essay__title,
.photo-essay__title,
.hr-photo-essay__title {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.bs-photo-essay__title a,
.photo-essay__title a,
.hr-photo-essay__title a {
    color: inherit;
    text-decoration: none;
}

.bs-photo-essay__title a:hover,
.photo-essay__title a:hover,
.hr-photo-essay__title a:hover {
    color: var(--accent);
}

.bs-photo-essay__caption,
.photo-essay__caption,
.hr-photo-essay__caption {
    padding: 12px 0;
    font-size: 13px;
    color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Opinion Strip (3-column overlay cards, Herald-distinctive)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-opinion {
    margin: 0;
}

.hr-opinion__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 12px;
    margin-bottom: 24px;
    gap: 16px;
}

.hr-opinion__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
}

.hr-opinion__more {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
}

.hr-opinion__more:hover {
    text-decoration: underline;
    color: var(--accent-soft);
}

.hr-opinion__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hr-opinion__card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    background: var(--paper-deep);
}

.hr-opinion__card-image-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hr-opinion__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hr-opinion__card:hover .hr-opinion__card-image {
    transform: scale(1.04);
}

.hr-opinion__card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 70%);
    pointer-events: none;
}

.hr-opinion__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: var(--ink);
    z-index: 2;
}

.hr-opinion__card-pill {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-family: var(--font-condensed);
    font-weight: 700;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-opinion__card-title {
    font-family: var(--font-headline);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-opinion__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-opinion__card-title a:hover {
    color: var(--accent);
}

.hr-opinion__card-byline {
    font-size: 12px;
    color: var(--ink-soft);
    font-style: italic;
    margin: 0;
}

.hr-opinion__card-author {
    color: var(--ink);
    font-style: normal;
    font-weight: 600;
}

.hr-opinion__empty {
    text-align: center;
    padding: 32px 0;
    color: var(--ink-mute);
    font-style: italic;
}

@media (max-width: 768px) {
    .hr-opinion__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Investigation Banner (full-width dark band)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-investigation {
    background: var(--paper-deeper);
    color: var(--ink);
    padding: 80px 24px;
    text-align: center;
}

.hr-investigation__box {
    max-width: 800px;
    margin: 0 auto;
}

.hr-investigation__rubric {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: var(--paper);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-condensed);
    margin-bottom: 24px;
    border-radius: 2px;
}

.hr-investigation__title {
    font-family: var(--font-headline-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: 0.01em;
}

.hr-investigation__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hr-investigation__title a:hover {
    color: var(--accent);
}

.hr-investigation__deck {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 auto 16px;
    max-width: 600px;
}

.hr-investigation__byline {
    font-size: 14px;
    color: var(--ink-mute);
    margin: 0;
}

.hr-investigation__author {
    color: var(--ink-soft);
    font-weight: 600;
}

.hr-investigation--placeholder .hr-investigation__title {
    color: var(--ink-soft);
}

@media (max-width: 768px) {
    .hr-investigation {
        padding: 56px 24px;
    }
    .hr-investigation__deck {
        font-size: 15px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Topic Cluster (lead + 4 text-link pattern)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-cat {
    margin: 0;
}

.hr-cat__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 12px;
    margin-bottom: 24px;
    gap: 16px;
}

.hr-cat__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
}

.hr-cat__more {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
}

.hr-cat__more:hover {
    text-decoration: underline;
    color: var(--accent-soft);
}

.hr-cat__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.hr-cat__lead {
    min-width: 0;
}

.hr-cat__lead-image-link {
    display: block;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
}

.hr-cat__lead-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hr-cat__lead-image-link:hover .hr-cat__lead-image {
    transform: scale(1.03);
}

.hr-cat__lead-body {
    padding: 0;
}

.hr-cat__lead-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    margin-bottom: 8px;
    font-family: var(--font-condensed);
    font-weight: 700;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-cat__lead-title {
    font-family: var(--font-headline);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.hr-cat__lead-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-cat__lead-title a:hover {
    color: var(--accent);
}

.hr-cat__lead-deck {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 8px 0 0;
}

.hr-cat__related {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-cat__related-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule-soft);
}

.hr-cat__related-item:last-child {
    border-bottom: none;
}

.hr-cat__related-link {
    text-decoration: none;
    color: var(--ink);
    display: block;
    transition: color var(--transition-fast);
}

.hr-cat__related-link:hover {
    color: var(--accent);
}

.hr-cat__related-title {
    font-family: var(--font-headline);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    display: block;
}

.hr-cat__related-date {
    font-size: 11px;
    color: var(--ink-mute);
    margin-top: 4px;
    display: block;
    font-family: var(--font-ui);
}

@media (max-width: 768px) {
    .hr-cat__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hr-cat__lead-title {
        font-size: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Long Read (horizontal hero with yellow-orange accent rule)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-long-read-section {
    margin: 0;
}

.hr-long-read-section__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 24px;
}

.hr-long-read-section__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
}

.hr-long-read {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.hr-long-read__image-link {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.hr-long-read__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hr-long-read__image-link:hover .hr-long-read__image {
    transform: scale(1.03);
}

.hr-long-read__body {
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.hr-long-read__label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-condensed);
}

.hr-long-read__title {
    font-family: var(--font-headline-display);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 12px;
    letter-spacing: 0.01em;
}

.hr-long-read__title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-long-read__title a:hover {
    color: var(--accent);
}

.hr-long-read__deck {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 12px;
}

.hr-long-read__byline {
    font-size: 12px;
    color: var(--ink-mute);
    margin: 0;
}

.hr-long-read__author {
    color: var(--ink-soft);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hr-long-read {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hr-long-read__title {
        font-size: 26px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   RIGHT RAIL — General widget container baseline
   ═══════════════════════════════════════════════════════════════════════ */

.hr-rail-widget,
.hr-sidebar-widget,
.hr-sidebar-cluster,
.hr-sidebar-most-read {
    background: var(--paper-soft);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 20px;
    margin: 0;
}

.hr-rail-widget__header,
.hr-sidebar-widget__header,
.hr-sidebar-cluster__header {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.hr-rail-widget__heading,
.hr-sidebar-widget__heading,
.hr-sidebar-cluster__heading {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   RIGHT RAIL — Latest Rail (vertical card list, accent line at top)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-rail-widget--latest {
    position: relative;
}

.hr-rail-widget--latest .hr-rail-widget__header {
    flex-direction: column;
    align-items: stretch;
}

.hr-rail-widget__accent {
    width: 100%;
    height: 3px;
    background: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.hr-rail-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-rail-widget__item {
    padding: 8px 0;
    border-bottom: 1px solid var(--rule-soft);
}

.hr-rail-widget__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hr-rail-widget__item:first-child {
    padding-top: 0;
}

.hr-rail-widget__link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    align-items: flex-start;
}

.hr-rail-widget__thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 2px;
    flex: 0 0 56px;
}

.hr-rail-widget__body {
    flex: 1;
    min-width: 0;
}

.hr-rail-widget__title {
    font-family: var(--font-headline);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.hr-rail-widget__link:hover .hr-rail-widget__title {
    color: var(--accent);
}

.hr-rail-widget__date {
    font-size: 10px;
    color: var(--ink-mute);
    display: block;
    margin-top: 4px;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════════
   RIGHT RAIL — Five Things (FEATURED POSTS-style carousel)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-sidebar-widget--featured-posts {
    position: relative;
}

.hr-sidebar-widget__carousel-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.hr-sidebar-widget__carousel-prev,
.hr-sidebar-widget__carousel-next {
    width: 24px;
    height: 24px;
    border: 1px solid var(--rule);
    background: transparent;
    color: var(--ink-mute);
    font-size: 14px;
    cursor: pointer;
    opacity: 0.5;
    border-radius: 2px;
    line-height: 1;
    padding: 0;
    transition: opacity var(--transition-fast);
}

.hr-sidebar-widget__carousel-prev:hover,
.hr-sidebar-widget__carousel-next:hover {
    opacity: 0.8;
}

.hr-sidebar-widget__lead {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 4px;
    background: var(--paper-deep);
}

.hr-sidebar-widget__lead-image-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hr-sidebar-widget__lead-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hr-sidebar-widget__lead:hover .hr-sidebar-widget__lead-image {
    transform: scale(1.04);
}

.hr-sidebar-widget__lead-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    pointer-events: none;
}

.hr-sidebar-widget__lead-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: var(--ink);
    z-index: 2;
}

.hr-sidebar-widget__lead-title {
    font-family: var(--font-headline);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-sidebar-widget__lead-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-sidebar-widget__lead-title a:hover {
    color: var(--accent);
}

.hr-sidebar-widget__lead-date {
    font-size: 10px;
    color: var(--ink-soft);
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--font-ui);
}

.hr-sidebar-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-sidebar-widget__item {
    padding: 8px 0;
    border-bottom: 1px solid var(--rule-soft);
}

.hr-sidebar-widget__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hr-sidebar-widget__item-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    align-items: flex-start;
}

.hr-sidebar-widget__item-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 2px;
    flex: 0 0 48px;
}

.hr-sidebar-widget__item-body {
    flex: 1;
    min-width: 0;
}

.hr-sidebar-widget__item-title {
    font-family: var(--font-headline);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.hr-sidebar-widget__item-link:hover .hr-sidebar-widget__item-title {
    color: var(--accent);
}

.hr-sidebar-widget__item-date {
    font-size: 10px;
    color: var(--ink-mute);
    display: block;
    margin-top: 4px;
    font-family: var(--font-ui);
}

/* ═══════════════════════════════════════════════════════════════════════
   RIGHT RAIL — HOT CATEGORIES widget
   ═══════════════════════════════════════════════════════════════════════ */

.hr-sidebar-cluster--hot-categories {
    position: relative;
}

.hr-sidebar-cluster__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-sidebar-cluster__item {
    padding: 8px 0;
    border-bottom: 1px solid var(--rule-soft);
}

.hr-sidebar-cluster__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hr-sidebar-cluster__item:first-child {
    padding-top: 0;
}

.hr-sidebar-cluster__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    padding: 0;
    gap: 12px;
}

.hr-sidebar-cluster__name {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ink);
    transition: color var(--transition-fast);
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-sidebar-cluster__link:hover .hr-sidebar-cluster__name {
    color: var(--accent);
}

.hr-sidebar-cluster__count {
    background: var(--accent);
    color: var(--paper);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-condensed);
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════
   RIGHT RAIL — Most Read (orange-numeral ranked list, Herald signature)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-sidebar-most-read {
    position: relative;
}

.hr-most-read__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-most-read__item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule-soft);
    align-items: flex-start;
}

.hr-most-read__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hr-most-read__item:first-child {
    padding-top: 0;
}

.hr-most-read__rank {
    font-family: var(--font-headline-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    flex: 0 0 36px;
    letter-spacing: 0;
    text-align: center;
}

.hr-most-read__body {
    flex: 1;
    min-width: 0;
}

.hr-most-read__title {
    font-family: var(--font-headline);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-most-read__title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-most-read__title a:hover {
    color: var(--accent);
}

.hr-most-read__category {
    font-size: 10px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
    font-family: var(--font-ui);
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Video Block (full-width dark NEWS IN VIDEO band, 2x3 grid)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-video-block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--paper-deeper);
    color: var(--ink);
    padding: 64px 0;
    margin-top: 48px;
    margin-bottom: 48px;
}

.hr-video-block__inner {
    max-width: var(--max-width);
    padding: 0 var(--gutter);
    margin: 0 auto;
}

.hr-video-block__header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.hr-video-block__heading {
    font-family: var(--font-headline);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
}

.hr-video-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.hr-video-block__card {
    cursor: pointer;
}

.hr-video-block__card-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: var(--paper-soft);
    display: block;
}

.hr-video-block__card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.hr-video-block__card:hover .hr-video-block__card-thumb {
    transform: scale(1.05);
}

.hr-video-block__card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 56px;
    opacity: 0.95;
    pointer-events: none;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hr-video-block__card-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--paper);
    padding: 4px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    border-radius: 2px;
}

.hr-video-block__card-title {
    font-family: var(--font-headline);
    font-size: 14px;
    color: var(--ink);
    margin: 12px 0 0;
    line-height: 1.3;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-video-block__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-video-block__card-title a:hover {
    color: var(--accent);
}

.hr-video-block__card-date {
    font-size: 11px;
    color: var(--ink-mute);
    margin-top: 4px;
    display: block;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
    .hr-video-block__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .hr-video-block {
        padding: 48px 0;
    }
    .hr-video-block__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
    }
    .hr-video-block__card-play {
        font-size: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Newsletter Inline (full-width edge-to-edge mid-page)
   ═══════════════════════════════════════════════════════════════════════ */

.hr-newsletter--inline {
  display: block;
  text-align: center;
  background: var(--paper-soft);
  padding: 48px 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hr-newsletter--inline .newsletter,
.hr-newsletter--inline .newsletter__inner,
.hr-newsletter--inline > div {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
}

.hr-newsletter--inline .newsletter__heading,
.hr-newsletter--inline h2 {
    font-family: var(--font-headline-display);
    font-size: 36px;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hr-newsletter--inline .newsletter__subline,
.hr-newsletter--inline p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink-soft);
    margin: 0 0 24px;
    line-height: 1.5;
}

.hr-newsletter--inline .newsletter__form,
.hr-newsletter--inline form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.hr-newsletter--inline .newsletter__input,
.hr-newsletter--inline input[type="email"] {
    background: var(--paper);
    border: 1px solid var(--rule);
    color: var(--ink);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    flex: 1;
    min-width: 200px;
    border-radius: 2px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.hr-newsletter--inline .newsletter__input::placeholder,
.hr-newsletter--inline input[type="email"]::placeholder {
    color: var(--ink-mute);
}

.hr-newsletter--inline .newsletter__input:focus,
.hr-newsletter--inline input[type="email"]:focus {
    border-color: var(--accent);
}

.hr-newsletter--inline .newsletter__button,
.hr-newsletter--inline button {
    background: var(--accent);
    color: var(--paper);
    padding: 12px 24px;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    border-radius: 2px;
    transition: background var(--transition-fast);
}

.hr-newsletter--inline .newsletter__button:hover,
.hr-newsletter--inline button:hover {
    background: var(--accent-deep);
    color: var(--ink);
}

@media (max-width: 600px) {
    .hr-newsletter--inline {
        padding: 48px 24px;
    }
    .hr-newsletter--inline h2,
    .hr-newsletter--inline .newsletter__heading {
        font-size: 28px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER NEWSLETTER (chrome — distinct from inline mid-page)
   ═══════════════════════════════════════════════════════════════════════ */

.newsletter:not(.hr-newsletter--inline .newsletter) {
    background: var(--paper-soft);
    padding: 48px 24px;
    color: var(--ink);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.newsletter__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.newsletter__heading {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--ink);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.newsletter__subline {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink-soft);
    margin: 0 0 20px;
}

.newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter__input {
    background: var(--paper);
    border: 1px solid var(--rule);
    color: var(--ink);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    flex: 1;
    min-width: 200px;
    border-radius: 2px;
}

.newsletter__input::placeholder {
    color: var(--ink-mute);
}

.newsletter__button {
    background: var(--accent);
    color: var(--paper);
    padding: 12px 24px;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    border-radius: 2px;
    transition: background var(--transition-fast);
}

.newsletter__button:hover {
    background: var(--accent-deep);
}

/* ═══════════════════════════════════════════════════════════════════════
   CATEGORY-PILL DATA-CAT COLOR MAP
   Default fallback (no data-cat or unmatched) is yellow-orange via base rules above.
   ═══════════════════════════════════════════════════════════════════════ */

[data-cat="politics"] {
    background: #1976d2;
    color: #fff;
}

[data-cat="business"] {
    background: #388e3c;
    color: #fff;
}

[data-cat="finance-markets"],
[data-cat="finance"],
[data-cat="markets"] {
    background: #00897b;
    color: #fff;
}

[data-cat="technology"],
[data-cat="tech"] {
    background: #5e35b1;
    color: #fff;
}

[data-cat="culture"] {
    background: #d84315;
    color: #fff;
}

[data-cat="lifestyle"] {
    background: #c2185b;
    color: #fff;
}

[data-cat="sport"],
[data-cat="sports"] {
    background: #f57c00;
    color: #fff;
}

[data-cat="opinion-and-analysis"],
[data-cat="opinion"] {
    background: #424242;
    color: #fff;
}

[data-cat="investigations"],
[data-cat="investigation"] {
    background: #b71c1c;
    color: #fff;
}

[data-cat="world"] {
    background: #0277bd;
    color: #fff;
}

[data-cat="africa"],
[data-cat="region"] {
    background: #ef6c00;
    color: #fff;
}

[data-cat="health"] {
    background: #00838f;
    color: #fff;
}

[data-cat="science"] {
    background: #283593;
    color: #fff;
}

[data-cat="environment"],
[data-cat="climate"] {
    background: #2e7d32;
    color: #fff;
}

[data-cat="entertainment"] {
    background: #ad1457;
    color: #fff;
}

[data-cat="travel"],
[data-cat="tourism"] {
    background: #6a1b9a;
    color: #fff;
}

[data-cat="education"] {
    background: #4527a0;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════
   ARTICLE V1 — long-form magazine-portfolio
   ═══════════════════════════════════════════════════════════════════════ */

.hr-article {
    color: var(--ink);
}

.hr-article--v1 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}

.hr-article__hero-figure {
    width: 100%;
    margin: 0 0 32px;
}

.hr-article__hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.hr-article__hero-caption {
    padding: 12px 0;
    font-size: 13px;
    color: var(--ink-mute);
    border-top: 1px solid var(--rule);
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.hr-article__hero-caption-text {
    flex: 1;
    min-width: 0;
}

.hr-article__hero-credit {
    color: var(--ink-soft);
    font-style: italic;
    flex-shrink: 0;
}

.hr-article__header {
    max-width: 760px;
    margin: 0 auto 32px;
}

.hr-article__category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration: none;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-article__category:hover {
    opacity: 0.85;
}

.hr-article__title {
    font-family: var(--font-headline-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin: 0 0 16px;
}

.hr-article__deck {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 16px 0 0;
    font-weight: 300;
}

.hr-article__body {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink);
}

.hr-article__body--v1 {
    font-size: 18px;
}

.hr-article__body p {
    margin: 0 0 24px;
}

.hr-article__body p:first-of-type::first-letter {
    font-family: var(--font-headline-display);
    font-size: 4em;
    float: left;
    line-height: 0.85;
    margin: 0.05em 0.1em 0 0;
    color: var(--accent);
}

.hr-article__body h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin: 32px 0 16px;
    text-transform: none;
    letter-spacing: 0;
}

.hr-article__body h3 {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 24px 0 12px;
}

.hr-article__body h4 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0 10px;
}

.hr-article__body a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent-deep);
}

.hr-article__body a:hover {
    color: var(--accent-soft);
}

.hr-article__body blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink-soft);
    font-family: var(--font-body);
    background: var(--paper-soft);
    border-radius: 0 4px 4px 0;
}

.hr-article__body blockquote p {
    margin-bottom: 0;
}

.hr-article__body ul,
.hr-article__body ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.hr-article__body li {
    margin-bottom: 8px;
}

.hr-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 24px 0;
}

.hr-article__body figure {
    margin: 32px 0;
}

.hr-article__body figcaption {
    font-size: 13px;
    color: var(--ink-mute);
    margin-top: 8px;
    text-align: center;
}

.hr-article__body strong,
.hr-article__body b {
    color: var(--ink);
    font-weight: 700;
}

.hr-article__body em,
.hr-article__body i {
    color: var(--ink-soft);
}

.hr-article__body hr {
    border: 0;
    border-top: 1px solid var(--rule);
    margin: 32px 0;
}

@media (max-width: 768px) {
    .hr-article--v1 {
        padding: 24px 16px 48px;
    }
    .hr-article__title {
        font-size: clamp(28px, 8vw, 40px);
    }
    .hr-article__body {
        font-size: 16px;
    }
    .hr-article__body blockquote {
        font-size: 18px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   ARTICLE V2 — compact news with sticky sidebar
   ═══════════════════════════════════════════════════════════════════════ */

.hr-article--v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}

.hr-article-v2__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.hr-article-v2__main {
    min-width: 0;
}

.hr-article-v2__sidebar {
    min-width: 0;
    position: sticky;
    top: 80px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hr-article__header--compact {
    margin: 0 0 24px;
    max-width: none;
}

.hr-article__title--compact {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.hr-article__hero-figure--compact {
    margin: 0 0 24px;
}

.hr-article__hero-figure--compact .hr-article__hero-image {
    max-height: 420px;
}

.hr-article__body--compact {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    max-width: none;
    margin: 0;
}

.hr-article__body--compact p {
    margin: 0 0 20px;
}

.hr-article__body--compact h2 {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 24px 0 12px;
}

.hr-article__body--compact h3 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0 10px;
}

.hr-article__body--compact a {
    color: var(--accent);
    text-decoration: underline;
}

.hr-article__body--compact blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    margin: 24px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
    background: var(--paper-soft);
}

.hr-article__tldr--sidebar,
.hr-article__takeaways--sidebar,
.hr-article__related--sidebar {
    background: var(--paper-soft);
    border: 1px solid var(--rule);
    padding: 16px;
    border-radius: 4px;
}

.hr-article__tldr--sidebar h2,
.hr-article__tldr--sidebar h3,
.hr-article__takeaways--sidebar h2,
.hr-article__takeaways--sidebar h3,
.hr-article__related--sidebar h2,
.hr-article__related--sidebar h3 {
    font-family: var(--font-headline);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    margin: 0 0 12px;
}

.hr-article__tldr--sidebar p,
.hr-article__takeaways--sidebar li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
}

@media (max-width: 1024px) {
    .hr-article-v2__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hr-article-v2__sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .hr-article--v2 {
        padding: 24px 16px 48px;
    }
    .hr-article__title--compact {
        font-size: clamp(24px, 6vw, 32px);
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   ARTICLE V3 — photo-led cinematic, edge-to-edge hero
   ═══════════════════════════════════════════════════════════════════════ */

.hr-article--v3 {
    max-width: none;
    margin: 0;
    padding: 0 0 64px;
}

.hr-article-v3__hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: var(--paper-deeper);
}

.hr-article-v3__hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-article-v3__hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 80%);
    pointer-events: none;
}

.hr-article-v3__hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 64px 24px;
    color: var(--ink);
    z-index: 2;
}

.hr-article-v3__hero-content > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hr-article-v3__category {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration: none;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
}

.hr-article-v3__title {
    font-family: var(--font-headline-display);
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin: 0 auto 16px;
}

.hr-article-v3__deck {
    color: var(--ink-soft);
    font-size: clamp(18px, 1.8vw, 26px);
    line-height: 1.4;
    margin: 0 auto;
    max-width: 800px;
}

.hr-article-v3__caption {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 13px;
    color: var(--ink-mute);
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.hr-article-v3__caption-text {
    flex: 1;
    min-width: 0;
}

.hr-article-v3__caption-credit {
    color: var(--ink-soft);
    font-style: italic;
    flex-shrink: 0;
}

.hr-article-v3__meta {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
}

.hr-article__body--v3 {
    max-width: 760px;
    margin: 32px auto 0;
    padding: 0 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
}

.hr-article__body--v3 p {
    margin: 0 0 24px;
}

.hr-article__body--v3 p:first-of-type::first-letter {
    font-family: var(--font-headline-display);
    font-size: 4em;
    float: left;
    line-height: 0.85;
    margin: 0.05em 0.1em 0 0;
    color: var(--accent);
}

.hr-article__body--v3 h2 {
    font-family: var(--font-headline);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin: 32px 0 16px;
}

.hr-article__body--v3 h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 24px 0 12px;
}

.hr-article__body--v3 a {
    color: var(--accent);
    text-decoration: underline;
}

.hr-article__body--v3 blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 22px;
    color: var(--ink-soft);
    background: var(--paper-soft);
}

.hr-article__header--no-image {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .hr-article-v3__hero {
        height: 60vh;
        min-height: 380px;
    }
    .hr-article-v3__hero-content {
        padding: 32px 24px;
    }
    .hr-article-v3__title {
        font-size: clamp(32px, 9vw, 56px);
    }
    .hr-article__body--v3 {
        font-size: 16px;
        padding: 0 16px;
    }
    .hr-article-v3__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   CATEGORY PAGE
   ═══════════════════════════════════════════════════════════════════════ */

.hr-cat-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

.hr-cat-page__header {
    text-align: center;
    margin-bottom: 48px;
}

.hr-cat-page__header-inner {
    display: inline-block;
}

.hr-cat-page__heading {
    font-family: var(--font-headline-display);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 400;
    color: var(--ink);
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.hr-cat-page__accent {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 16px auto 0;
    display: block;
}

.hr-cat-page__lead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: center;
}

.hr-cat-page__lead-image-link {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.hr-cat-page__lead-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hr-cat-page__lead-image-link:hover .hr-cat-page__lead-image {
    transform: scale(1.03);
}

.hr-cat-page__lead-body {
    padding: 16px;
}

.hr-cat-page__lead-tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    border-radius: 2px;
    margin-bottom: 12px;
    background: var(--accent);
    color: var(--paper);
}

.hr-cat-page__lead-title {
    font-family: var(--font-headline);
    font-size: 32px;
    line-height: 1.2;
    color: var(--ink);
    font-weight: 700;
    margin: 0 0 12px;
}

.hr-cat-page__lead-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.hr-cat-page__lead-title a:hover {
    color: var(--accent);
}

.hr-cat-page__lead-deck {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 12px 0;
}

.hr-cat-page__lead-byline {
    font-size: 13px;
    color: var(--ink-mute);
    margin: 0 0 16px;
}

.hr-cat-page__lead-author {
    color: var(--ink-soft);
    font-weight: 600;
}

.hr-cat-page__lead-cta {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    text-decoration: none;
    font-family: var(--font-condensed);
    transition: color var(--transition-fast);
}

.hr-cat-page__lead-cta:hover {
    text-decoration: underline;
    color: var(--accent-soft);
}

.hr-cat-page__grid-section {
    margin: 0;
}

.hr-cat-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hr-cat-page__between-ad {
    grid-column: 1 / -1;
    margin: 16px 0;
}

.hr-cat-page__empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--ink-mute);
}

.hr-cat-page__empty-text {
    font-size: 16px;
    color: var(--ink-mute);
    font-style: italic;
}

@media (max-width: 1024px) {
    .hr-cat-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hr-cat-page__lead {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hr-cat-page__lead-title {
        font-size: 24px;
    }
    .hr-cat-page__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — article_card (.bs-article-card)
   ═══════════════════════════════════════════════════════════════════════ */

.bs-article-card,
.article-card,
.hr-article-card {
    background: var(--paper-soft);
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.bs-article-card:hover,
.article-card:hover,
.hr-article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.bs-article-card__image-link,
.article-card__image-link,
.hr-article-card__image-link {
    display: block;
    overflow: hidden;
}

.bs-article-card__image,
.article-card__image,
.hr-article-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.bs-article-card:hover .bs-article-card__image,
.article-card:hover .article-card__image,
.hr-article-card:hover .hr-article-card__image {
    transform: scale(1.04);
}

.bs-article-card__body,
.article-card__body,
.hr-article-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bs-article-card__category,
.article-card__category,
.hr-article-card__category {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    margin-bottom: 8px;
    border-radius: 2px;
    background: var(--accent);
    color: var(--paper);
    text-decoration: none;
    align-self: flex-start;
}

.bs-article-card__title,
.article-card__title,
.hr-article-card__title {
    font-family: var(--font-headline);
    color: var(--ink);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bs-article-card__title a,
.article-card__title a,
.hr-article-card__title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.bs-article-card__title a:hover,
.article-card__title a:hover,
.hr-article-card__title a:hover {
    color: var(--accent);
}

.bs-article-card__deck,
.article-card__deck,
.hr-article-card__deck {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bs-article-card__meta,
.article-card__meta,
.hr-article-card__meta {
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.bs-article-card__author,
.article-card__author,
.hr-article-card__author {
    color: var(--ink-soft);
    font-weight: 600;
}

.bs-article-card__date,
.article-card__date,
.hr-article-card__date {
    color: var(--ink-mute);
    font-family: var(--font-ui);
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — ad_slot
   ═══════════════════════════════════════════════════════════════════════ */

.ad-slot,
.bs-ad-slot,
.hr-ad-slot {
    border: 2px dashed var(--rule);
    background: var(--paper-soft);
    color: var(--ink-mute);
    text-align: center;
    padding: 24px;
    font-size: 13px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin: 16px 0;
}

.ad-slot a,
.bs-ad-slot a,
.hr-ad-slot a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.ad-slot a:hover,
.bs-ad-slot a:hover,
.hr-ad-slot a:hover {
    text-decoration: underline;
    color: var(--accent-soft);
}

.ad-slot--house {
    background: var(--paper-soft);
}

.ad-slot__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    margin-bottom: 8px;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — breadcrumbs
   ═══════════════════════════════════════════════════════════════════════ */

.breadcrumbs,
.bs-breadcrumbs,
.hr-breadcrumbs {
    font-size: 12px;
    color: var(--ink-mute);
    padding: 8px 0;
    margin: 0 0 16px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.breadcrumbs li,
.bs-breadcrumbs li,
.hr-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs li::after,
.bs-breadcrumbs li::after,
.hr-breadcrumbs li::after {
    content: "›";
    color: var(--ink-mute);
    margin-left: 6px;
}

.breadcrumbs li:last-child::after,
.bs-breadcrumbs li:last-child::after,
.hr-breadcrumbs li:last-child::after {
    content: "";
    margin: 0;
}

.breadcrumbs a,
.bs-breadcrumbs a,
.hr-breadcrumbs a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover,
.bs-breadcrumbs a:hover,
.hr-breadcrumbs a:hover {
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — pagination
   ═══════════════════════════════════════════════════════════════════════ */

.pagination,
.bs-pagination,
.hr-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin: 48px 0 0;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.pagination a,
.pagination span,
.bs-pagination a,
.bs-pagination span,
.hr-pagination a,
.hr-pagination span {
    color: var(--ink);
    background: var(--paper-soft);
    border: 1px solid var(--rule);
    padding: 8px 14px;
    font-family: var(--font-condensed);
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.pagination a:hover,
.bs-pagination a:hover,
.hr-pagination a:hover {
    background: var(--paper-deep);
    border-color: var(--accent);
    color: var(--accent);
}

.pagination .is-active,
.pagination__current,
.bs-pagination .is-active,
.hr-pagination .is-active,
.hr-pagination__current {
    background: var(--accent);
    color: var(--paper);
    border-color: var(--accent);
}

.pagination__disabled,
.hr-pagination__disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — sponsored_badge
   ═══════════════════════════════════════════════════════════════════════ */

.sponsored-badge,
.bs-sponsored-badge,
.hr-sponsored-badge {
    background: var(--accent-deep);
    color: var(--paper);
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    display: inline-block;
    border-radius: 2px;
    margin: 0 8px 8px 0;
}

.sponsored-badge__by,
.hr-sponsored-badge__by {
    color: var(--ink);
    font-weight: 600;
}

.sponsored-badge__disclosure,
.hr-sponsored-badge__disclosure {
    font-size: 11px;
    color: var(--ink-mute);
    font-style: italic;
    margin-top: 8px;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — byline
   ═══════════════════════════════════════════════════════════════════════ */

.byline,
.bs-byline,
.hr-byline {
    font-size: 13px;
    color: var(--ink-mute);
    margin: 16px 0;
    font-family: var(--font-body);
}

.byline__by,
.hr-byline__by {
    font-style: italic;
    color: var(--ink-mute);
}

.byline__author,
.hr-byline__author {
    color: var(--ink-soft);
    font-weight: 600;
    font-style: normal;
}

.byline__date,
.hr-byline__date {
    color: var(--ink-mute);
    font-family: var(--font-ui);
}

.byline__sep,
.hr-byline__sep {
    color: var(--ink-mute);
    margin: 0 6px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — tldr_block
   ═══════════════════════════════════════════════════════════════════════ */

.tldr,
.tldr-block,
.bs-tldr,
.hr-tldr {
    background: var(--paper-soft);
    padding: 16px 20px;
    border-left: 3px solid var(--accent);
    margin: 24px 0;
    color: var(--ink-soft);
    border-radius: 0 4px 4px 0;
}

.tldr__heading,
.tldr-block__heading,
.hr-tldr__heading {
    font-family: var(--font-headline);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: 0 0 8px;
    font-weight: 700;
}

.tldr__body,
.tldr-block__body,
.hr-tldr__body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — key_takeaways
   ═══════════════════════════════════════════════════════════════════════ */

.key-takeaways,
.bs-key-takeaways,
.hr-key-takeaways {
    margin: 24px 0;
    padding: 16px 20px;
    background: var(--paper-soft);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
}

.key-takeaways__heading,
.hr-key-takeaways__heading {
    font-family: var(--font-headline);
    font-size: 14px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.key-takeaways__list,
.hr-key-takeaways__list {
    list-style: decimal;
    padding-left: 24px;
    margin: 0;
}

.key-takeaways__list li,
.hr-key-takeaways__list li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 6px;
}

.key-takeaways__list li::marker,
.hr-key-takeaways__list li::marker {
    color: var(--accent);
    font-family: var(--font-headline);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — faq_block + qa_block
   ═══════════════════════════════════════════════════════════════════════ */

.faq,
.faq-block,
.bs-faq,
.hr-faq,
.qa,
.qa-block,
.hr-qa {
    margin: 32px 0;
}

.faq__heading,
.faq-block__heading,
.hr-faq__heading,
.qa__heading,
.qa-block__heading,
.hr-qa__heading {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--ink);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.faq dt,
.faq-block dt,
.hr-faq dt,
.qa dt,
.qa-block dt,
.hr-qa dt {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--ink);
    font-size: 16px;
    margin: 16px 0 8px;
}

.faq dd,
.faq-block dd,
.hr-faq dd,
.qa dd,
.qa-block dd,
.hr-qa dd {
    margin: 0 0 16px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — related_articles
   ═══════════════════════════════════════════════════════════════════════ */

.related-articles,
.bs-related-articles,
.hr-related-articles {
    margin: 48px 0 0;
}

.related-articles__heading,
.hr-related-articles__heading {
    font-family: var(--font-headline);
    font-size: 22px;
    color: var(--ink);
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    font-weight: 700;
}

.related-articles__grid,
.hr-related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hr-article__related--sidebar .related-articles__grid,
.hr-article__related--sidebar .hr-related-articles__grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.hr-article__related--sidebar .related-articles__heading,
.hr-article__related--sidebar .hr-related-articles__heading {
    font-size: 14px;
}

@media (max-width: 768px) {
    .related-articles__grid,
    .hr-related-articles__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — entity_tags
   ═══════════════════════════════════════════════════════════════════════ */

.entity-tags,
.bs-entity-tags,
.hr-entity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    list-style: none;
    padding: 0;
}

.entity-tags__label,
.hr-entity-tags__label {
    font-size: 13px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
    margin-right: 8px;
    align-self: center;
}

.entity-tags a,
.entity-tag,
.hr-entity-tags a {
    background: var(--paper-soft);
    color: var(--ink-soft);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid var(--rule);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    font-family: var(--font-ui);
}

.entity-tags a:hover,
.entity-tag:hover,
.hr-entity-tags a:hover {
    background: var(--accent);
    color: var(--paper);
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — social_share
   ═══════════════════════════════════════════════════════════════════════ */

.social-share,
.bs-social-share,
.hr-social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
}

.social-share__label,
.hr-social-share__label {
    font-size: 12px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-condensed);
    font-weight: 700;
}

.social-share__list,
.hr-social-share__list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-share a,
.social-share__link,
.hr-social-share a {
    width: 32px;
    height: 32px;
    background: var(--paper-soft);
    color: var(--ink-soft);
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.social-share a:hover,
.social-share__link:hover,
.hr-social-share a:hover {
    background: var(--accent);
    color: var(--paper);
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════
   SHARED PARTIALS RESTYLE — search overlay
   ═══════════════════════════════════════════════════════════════════════ */

.search-overlay,
.hr-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.search-overlay.is-open,
.search-overlay--open,
.hr-search-overlay.is-open {
    display: flex;
}

.search-overlay__inner,
.hr-search-overlay__inner {
    background: var(--paper-deep);
    padding: 32px;
    max-width: 600px;
    width: 90%;
    border-radius: 4px;
    border: 1px solid var(--rule);
}

.search-overlay__input,
.hr-search-overlay__input {
    width: 100%;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--rule);
    padding: 16px;
    font-size: 18px;
    font-family: var(--font-body);
    border-radius: 4px;
    outline: none;
}

.search-overlay__input:focus,
.hr-search-overlay__input:focus {
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════
   ARTICLE — JSON-LD container hidden
   ═══════════════════════════════════════════════════════════════════════ */

script[type="application/ld+json"] {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════ */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--paper);
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden,
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-accent {
    color: var(--accent);
}

.text-ink {
    color: var(--ink);
}

.text-ink-soft {
    color: var(--ink-soft);
}

.text-ink-mute {
    color: var(--ink-mute);
}

.bg-paper {
    background: var(--paper);
}

.bg-paper-soft {
    background: var(--paper-soft);
}

.bg-paper-deep {
    background: var(--paper-deep);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOCUS STATES (accessibility)
   ═══════════════════════════════════════════════════════════════════════ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   PRINT (basic — keeps article body readable in print)
   ═══════════════════════════════════════════════════════════════════════ */

@media print {
    body {
        background: #fff;
        color: #000;
    }
    .hr-topbar,
    .hr-nav,
    .hr-ticker,
    .hr-stock-ticker,
    .hr-page__rail,
    .hr-newsletter--inline,
    .hr-video-block,
    .hr-investigation,
    .ad-slot,
    .hr-footer,
    .social-share,
    .search-overlay,
    .hr-nav__search {
        display: none !important;
    }
    .hr-article {
        max-width: 100%;
        padding: 0;
    }
    .hr-article__title,
    .hr-article-v3__title {
        color: #000;
    }
    .hr-article__body {
        color: #000;
        font-size: 12pt;
    }
    .hr-article__body a {
        color: #000;
        text-decoration: underline;
    }
}

/* ════════════════════════════════════════════════════════════════════
   FINAL NEWSLETTER FIX
   ════════════════════════════════════════════════════════════════════ */

.hr-newsletter--inline,
body > aside.newsletter {
  display: block;
  text-align: center;
  background: var(--paper-soft);
  padding: 48px 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.hr-newsletter--inline aside.newsletter,
.hr-newsletter--inline .newsletter {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.hr-newsletter--inline .newsletter-inner,
body > aside.newsletter .newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hr-newsletter--inline .newsletter-form,
body > aside.newsletter .newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hr-investigation {
  background: var(--paper-deeper);
  color: var(--ink);
  padding: 80px 24px;
  text-align: center;
}