/*
Theme Name:     IREHR
Theme URI:      n/a
Template:       kadence
Author:         IREHR
Author URI:     https://irehr.org/
Description:    IREHR.org child theme for Kadence
Version:        1.2
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/

/* Webfonts: Inter Tight (headings/UI) + Source Serif 4 (reading prose). @import must precede all rules. */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@600;700;800&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* ==========================================================================
   LAYOUT FIX: Full-width flush layout for all fullwidth pages
   Root cause: Kadence generates `.entry-content-wrap { padding: 2rem }` which
   creates a 32px gap above content and constrains blocks left/right on every
   page. This rule removes that padding only on fullwidth pages so Kadence Row
   blocks render flush to the viewport, matching the org profile pages.
   ========================================================================== */

.content-width-fullwidth .entry-content-wrap {
    padding: 0 !important;
}

.kb-row-layout-id1120_acd045-10 > .kt-row-column-wrap {
    padding-top: 0 !important;
}

.home .alignfull > .kt-row-layout-inner > .kt-row-column-wrap,
.home .alignfull > .kt-row-column-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home .irehr-global-footer__inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.home .irehr-global-footer__bottom {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.hp-hero__inner {
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.hp-stakes-section__inner {
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.hp-legacy {
    max-width: 1100px !important;
    margin: 0 auto !important;
}


/* ==========================================================================
   THEME TOKENS — interior hero (LIGHT treatment, prototype: org profile)
   These four vars drive the hero's color. To add a dark-mode toggle later,
   redefine them under a `.irehr-dark` class and the hero flips with no other
   edits. Accent defaults to teal (org); per-type scopes override below.
   ========================================================================== */
:root {
    --irehr-hero-bg:     #f4f6f9;  /* off-white band, just off the pure-white body sections */
    --irehr-hero-text:   #1a1a1a;  /* primary headline / identity text */
    --irehr-hero-muted:  #5b6675;  /* former names, "last reviewed", soft meta */
    --irehr-hero-accent: #0e7c7b;  /* teal */
    --irehr-hero-border: #dde3ea;
}

/* Per-post-type accent (keeps your color-coding system intact) */
.single-individual_profile { --irehr-hero-accent: #b45309; } /* amber  */
.single-variant_profile,
.single-movement,
.single-movement_variant   { --irehr-hero-accent: #c0392b; } /* red    */

/* ==========================================================================
   INTERIOR HERO
   Add the CSS class `irehr-hero` to the hero Row block
   (Kadence editor → Row block → Advanced → Additional CSS Class → irehr-hero).

   • Base `.irehr-hero`        → heading TYPOGRAPHY only (Inter Tight). Does NOT
                                 touch the background, so navy heroes stay navy.
   • Modifier `.irehr-hero--light` → opt-in LIGHT treatment (off-white band,
                                 dark text). Add it ALONGSIDE `irehr-hero` only
                                 where you want the hero lightened (org profile).
   ========================================================================== */

/* Heading typography — applies to any hero carrying `irehr-hero` (navy or light) */
.irehr-hero h1,
.irehr-hero h1 .kt-adv-heading-inner,
.irehr-hero .kadence-advancedheading-text {
    font-family: 'Inter Tight', sans-serif !important;
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 63px !important;
    line-height: 1.3 !important;
    letter-spacing: 1px !important;
}

/* 63px overflows on phones — scale the heading down on small screens. Tune freely. */
@media (max-width: 600px) {
    .irehr-hero h1,
    .irehr-hero h1 .kt-adv-heading-inner,
    .irehr-hero .kadence-advancedheading-text {
        font-size: 38px !important;
        letter-spacing: 0.5px !important;
    }
}

/* ── LIGHT variant (opt-in: add `irehr-hero--light` next to `irehr-hero`) ────── */
.irehr-hero--light {
    background: var(--irehr-hero-bg) !important;
    border-bottom: 3px solid var(--irehr-hero-accent);
    color: var(--irehr-hero-text);
}

/* Headline + identity text the template otherwise colors white.
   Selectors past h1/h2 are Kadence's generated text wrappers — best-effort;
   the metric strip (Founded / HQ) may need a small tweak once you send a shot. */
.irehr-hero--light h1,
.irehr-hero--light h2,
.irehr-hero--light h1 a,
.irehr-hero--light .kt-adv-heading-inner,
.irehr-hero--light .kadence-advancedheading-text {
    color: var(--irehr-hero-text) !important;
}

.irehr-hero--light p,
.irehr-hero--light .kt-row-column-wrap p,
.irehr-hero--light .kb-row-column-wrap p {
    color: var(--irehr-hero-text) !important;
}

.irehr-hero--light em,
.irehr-hero--light i,
.irehr-hero--light small {
    color: var(--irehr-hero-muted) !important;
}

.irehr-hero--light .op-badge,
.irehr-hero--light .ip-badge {
    border: 1px solid var(--irehr-hero-border);
}


/* ==========================================================================
   READING PROSE — Source Serif 4
   Serif is for sustained reading ONLY. Add the class `irehr-prose` to a
   long-form content area (Kadence editor → content Row/column → Advanced →
   Additional CSS Class → irehr-prose), and the paragraphs inside switch to
   Source Serif 4 at a comfortable reading size and measure.

   Headings stay Inter Tight, and tables/labels/captions/UI inside the prose
   stay sans — only p / li / blockquote become serif, so data and chrome are
   never affected. The two profile/document reading wrappers below already
   carry the treatment automatically.
   ========================================================================== */
.irehr-prose {
    max-width: 68ch;        /* caps line length — the biggest readability lever */
    margin-inline: auto;
}

.irehr-prose p,
.irehr-prose li,
.irehr-prose blockquote,
.extended-profile-content p,
.extended-profile-content li,
.adoc-description p,
.adoc-description li {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px;        /* tune to taste; 18–20px reads well for serif body */
    line-height: 1.7;
}


/* ==========================================================================
   COMPONENT STYLES
   Migrated from Customizer > Additional CSS on 2026-06-26.
   Placed AFTER the layout-fix layer so source-order ties resolve exactly as
   they did when this block lived in the Customizer (which loaded last).
   The !important rules in the layout-fix layer above still take precedence.
   --> After swapping this file in, CLEAR the Customizer Additional CSS box
       so these rules do not load twice.
   ========================================================================== */

/* ── Individual Profile Global ──────────────────────────── */
.single-individual_profile {
    --ip-amber: #b45309;
    --ip-navy:  #0d1b2a;
    --ip-red:   #c0392b;
    --ip-teal:  #0e7c7b;
}

/* Portrait */
.ip-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--ip-amber);
    flex-shrink: 0;
}
.ip-portrait__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.ip-portrait--initials {
    background: var(--ip-amber);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ip-portrait__letters {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Status badges */
.ip-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ip-badge--active   { background: #dcfce7; color: #166534; }
.ip-badge--inactive { background: #f1f5f9; color: #475569; }
.ip-badge--deceased { background: #f1f5f9; color: #64748b; }

/* Affiliations */
.ip-affiliations { display: flex; flex-direction: column; gap: 16px; }
.ip-affiliation-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    background: #fff;
}
.ip-affiliation-logo__img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 4px;
}
.ip-affiliation-logo__initials {
    width: 48px;
    height: 48px;
    background: var(--ip-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
}
.ip-affiliation-body { display: flex; flex-direction: column; gap: 3px; }
.ip-affiliation-org  { font-weight: 700; color: var(--ip-navy); text-decoration: none; }
.ip-affiliation-org:hover { text-decoration: underline; }
.ip-affiliation-role   { font-size: 0.9rem; color: #3d3d3d; }
.ip-affiliation-tenure { font-size: 0.82rem; color: #6b7280; }
.ip-affiliation-notes  { font-size: 0.82rem; color: #6b7280; font-style: italic; }

/* Timeline */
.ip-timeline-year { color: var(--ip-amber); font-weight: 700; }

/* Quotes */
.ip-quote {
    border-left: 4px solid var(--ip-red);
    padding: 16px 20px;
    margin: 0 0 20px;
    background: #fafafa;
}

/* Connections */
.ip-connections-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ip-connection-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
}
.ip-connection-row--ideological { border-left: 3px dashed rgba(255,255,255,0.3); }
.ip-connection-row--documented  { border-left: 3px solid var(--ip-amber); }
.ip-connection-name { color: #fff; font-weight: 600; text-decoration: none; }
.ip-connection-name:hover { text-decoration: underline; }
.ip-connection-rel  { font-size: 0.8rem; color: #a0b0c0; background: rgba(255,255,255,0.08); padding: 2px 8px; border-radius: 12px; }
.ip-connection-doc  { font-size: 0.8rem; color: #a0b0c0; }
.ip-network-graph   { width: 100%; min-height: 420px; background: #0d1b2a; border-radius: 8px; }

/* Coverage cards */
.ip-coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ip-coverage-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.15s;
}
.ip-coverage-card:hover { border-color: var(--ip-amber); }
.ip-coverage-card__type  { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ip-amber); }
.ip-coverage-card__title { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; line-height: 1.35; }
.ip-coverage-card__date  { font-size: 0.8rem; color: #6b7280; }

/* Action block */
.ip-action-block {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    padding: 48px;
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 12px;
}
.ip-action-block__divider { width: 1px; background: #dde3ea; align-self: stretch; }
.ip-action-block__eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #a0b0c0; margin-bottom: 8px; }
.ip-action-block__heading  { font-size: 1.2rem; font-weight: 800; color: #0d1b2a; margin: 0 0 10px; line-height: 1.3; }
.ip-action-block__body     { font-size: 0.9rem; color: #4a5a6a; line-height: 1.65; margin: 0 0 20px; }
.ip-action-block__share    { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; padding-top: 24px; border-top: 1px solid #dde3ea; flex-wrap: wrap; }
.ip-action-block__share-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #a0b0c0; }
.ip-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
}
.ip-btn--primary   { background: var(--ip-amber); color: #fff; }
.ip-btn--secondary { background: #0d1b2a; color: #fff; }
.ip-share-btn {
    padding: 5px 13px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    background: #fff;
    color: #3d3d3d;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .ip-coverage-grid         { grid-template-columns: 1fr; }
    .ip-action-block          { grid-template-columns: 1fr; }
    .ip-action-block__divider { display: none; }
}
.single-individual_profile .ip-hero h1 a,
.single-individual_profile h1 { text-decoration: none; }
/* ── Organization Profile Global ────────────────────────── */
.single-organization_profile {
    --op-teal:  #0e7c7b;
    --op-navy:  #0d1b2a;
    --op-amber: #b45309;
    --op-red:   #c0392b;
    --op-green: #166534;
}

/* Logo */
.op-logo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--op-teal);
    flex-shrink: 0;
    background: #fff;
}
.op-logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 6px;
}
.op-logo--initials {
    background: var(--op-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.op-logo__letters {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 4px;
}

/* Status badges */
.op-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.op-badge--active    { background: #dcfce7; color: #166534; }
.op-badge--inactive  { background: #f1f5f9; color: #475569; }
.
/* ── Variant Profile ─────────────────────────────────────── */
.single-variant_profile {
    --vp-red:   #c0392b;
    --vp-navy:  #0d1b2a;
    --vp-teal:  #0e7c7b;
}

/* Breadcrumb */
.vp-breadcrumb        { padding: 12px 0; }
.vp-breadcrumb__list  {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
    font-size: 0.82rem;
}
.vp-breadcrumb__item--sep     { color: #a0b0c0; }
.vp-breadcrumb__item--current { color: #1a1a1a; font-weight: 600; }
.vp-breadcrumb__link { color: var(--vp-red); text-decoration: none; }
.vp-breadcrumb__link:hover { text-decoration: underline; }

/* Geographic scope badge */
.vp-scope-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Core beliefs */
.vp-belief-row {
    border-left: 3px solid var(--vp-red);
    padding: 12px 16px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 0 6px 6px 0;
}
.vp-belief-text   { font-size: 0.95rem; color: #1a1a1a; line-height: 1.65; margin: 0 0 6px; }
.vp-belief-source { font-size: 0.78rem; color: #9ca3af; font-style: italic; }

/* Connections */
.vp-connections-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.vp-connection-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    padding: 10px 14px; background: rgba(255,255,255,0.07); border-radius: 6px;
}
.vp-connection-row--documented  { border-left: 3px solid var(--vp-red); }
.vp-connection-row--ideological { border-left: 3px dashed rgba(255,255,255,0.3); }
.vp-connection-name { color: #fff; font-weight: 600; text-decoration: none; }
.vp-connection-name:hover { text-decoration: underline; }
.vp-connection-rel { font-size: 0.8rem; color: #a0b0c0; background: rgba(255,255,255,0.08); padding: 2px 8px; border-radius: 12px; }
.vp-connection-doc { font-size: 0.8rem; color: #a0b0c0; }
.vp-network-graph  { width: 100%; min-height: 420px; background: #0d1b2a; border-radius: 8px; }

/* Source documents */
.vp-source-docs { display: flex; flex-direction: column; gap: 10px; }
.vp-source-doc-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid #f0f4f8;
}
.vp-source-doc-row:last-child { border-bottom: none; }
.vp-source-doc__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.vp-source-doc__body { display: flex; flex-direction: column; gap: 3px; }
.vp-source-doc__name { font-weight: 600; color: #0d1b2a; text-decoration: none; font-size: 0.9rem; }
.vp-source-doc__name:hover { text-decoration: underline; }
.vp-source-doc__meta { font-size: 0.75rem; color: #9ca3af; }
/* ── Movement Variant Global ─────────────────────────────── */
.single-movement_variant {
    --mv-red:   #c0392b;
    --mv-navy:  #0d1b2a;
    --mv-green: #166534;
}

/* Breadcrumb */
.mv-breadcrumb { padding: 12px 0; }
.mv-breadcrumb__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
    font-size: 0.82rem;
}
.mv-breadcrumb__item--sep { color: #a0b0c0; }
.mv-breadcrumb__item--current { color: #1a1a1a; font-weight: 600; }
.mv-breadcrumb__link { color: var(--mv-red); text-decoration: none; }
.mv-breadcrumb__link:hover { text-decoration: underline; }

/* Threat badges */
.mv-threat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.mv-threat--active     { background: #fee2e2; color: #991b1b; border: 1.5px solid #fca5a5; }
.mv-threat--emerging   { background: #fef3c7; color: #92400e; border: 1.5px solid #fcd34d; }
.mv-threat--historical { background: #f1f5f9; color: #475569; border: 1.5px solid #cbd5e1; }
.mv-threat--defunct    { background: #f1f5f9; color: #64748b; border: 1.5px solid #e2e8f0; }
.mv-threat-mini--active     { color: #991b1b; }
.mv-threat-mini--emerging   { color: #92400e; }
.mv-threat-mini--historical { color: #475569; }
.mv-threat-mini--defunct    { color: #64748b; }

/* Active program block */
.mv-active-program {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 24px;
    border-left: 4px solid var(--mv-green);
    background: #f0fdf4;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}
.mv-active-program__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--mv-green); margin-top: 6px; flex-shrink: 0;
    box-shadow: 0 0 0 3px #bbf7d0;
}
.mv-active-program__eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--mv-green); margin-bottom: 4px; }
.mv-active-program__name { display: block; font-weight: 700; font-size: 1.05rem; color: #14532d; text-decoration: none; margin-bottom: 6px; }
.mv-active-program__name:hover { text-decoration: underline; }
.mv-active-program__desc { font-size: 0.9rem; color: #166534; margin: 0 0 10px; line-height: 1.6; }
.mv-active-program__link { font-size: 0.85rem; font-weight: 600; color: var(--mv-green); text-decoration: none; }
.mv-active-program__link:hover { text-decoration: underline; }

/* Sub-variants */
.mv-sub-variants { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.mv-sub-variant-card {
    padding: 16px; border: 1px solid #dde3ea;
    border-left: 3px solid var(--mv-red);
    border-radius: 0 6px 6px 0; background: #fff;
}
.mv-sub-variant-card__name { display: block; font-weight: 700; color: #0d1b2a; margin-bottom: 6px; font-size: 0.95rem; }
.mv-sub-variant-card__name--linked { color: var(--mv-red); text-decoration: none; }
.mv-sub-variant-card__name--linked:hover { text-decoration: underline; }
.mv-sub-variant-card__desc { font-size: 0.875rem; color: #3d3d3d; line-height: 1.6; margin: 0; }

/* Distinctions */
.mv-distinctions { display: flex; flex-direction: column; gap: 24px; }
.mv-distinction-group {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    padding: 20px; border: 1px solid #dde3ea; border-radius: 8px; background: #fafafa;
}
.mv-distinction-col__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #6b7280; margin-bottom: 10px; }
.mv-distinction-col--similar { border-right: 1px solid #dde3ea; padding-right: 24px; }
.mv-distinction-movement-link { display: inline-block; font-weight: 700; color: var(--mv-red); text-decoration: none; margin-bottom: 8px; font-size: 0.95rem; }
.mv-distinction-movement-link:hover { text-decoration: underline; }
.mv-distinction-desc { font-size: 0.875rem; color: #3d3d3d; line-height: 1.6; margin: 0 0 8px; }
.mv-distinct-from-entry { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #eef2f7; }
.mv-distinct-from-entry:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* Overlaps */
.mv-overlap-row { padding: 14px 0; border-bottom: 1px solid #f0f4f8; }
.mv-overlap-row:last-child { border-bottom: none; }
.mv-overlap-row__header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mv-overlap-row__name { font-weight: 700; color: var(--mv-red); text-decoration: none; font-size: 0.95rem; }
.mv-overlap-row__name:hover { text-decoration: underline; }
.mv-overlap-row__type { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; background: #f1f5f9; padding: 2px 8px; border-radius: 10px; }
.mv-overlap-row__desc { font-size: 0.875rem; color: #3d3d3d; line-height: 1.6; margin: 0; }

/* Profile grids */
.mv-profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.mv-profile-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 16px 12px;
    border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none;
    text-align: center; transition: border-color 0.15s;
}
.mv-profile-card--org:hover       { border-color: #0e7c7b; }
.mv-profile-card--individual:hover { border-color: var(--mv-red); }
.mv-profile-card__avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mv-profile-card__avatar--org { border-radius: 8px; background: #0e7c7b; border: 2px solid #0e7c7b; }
.mv-profile-card__avatar--individual { border-radius: 50%; background: var(--mv-red); border: 2px solid var(--mv-red); }
.mv-profile-card__img { width: 100%; height: 100%; object-fit: cover; }
.mv-profile-card__img--portrait { object-position: top center; }
.mv-profile-card__initials { color: #fff; font-weight: 700; font-size: 1rem; }
.mv-profile-card__name { font-weight: 700; color: #0d1b2a; font-size: 0.88rem; line-height: 1.3; }
.mv-profile-card__role { font-size: 0.78rem; color: #6b7280; }

/* Related issues */
.mv-related-issues { display: flex; flex-wrap: wrap; gap: 10px; }
.mv-related-issue-tag {
    display: inline-block; padding: 6px 14px;
    border: 1px solid var(--mv-red); border-radius: 20px;
    color: var(--mv-red); text-decoration: none; font-size: 0.85rem; font-weight: 600;
    transition: background 0.15s, color 0.15s;
}
.mv-related-issue-tag:hover { background: var(--mv-red); color: #fff; }

/* Sibling variants */
.mv-siblings { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.mv-sibling-card {
    display: flex; flex-direction: column; gap: 6px;
    padding: 14px; border: 1px solid #dde3ea; border-radius: 8px;
    text-decoration: none; transition: border-color 0.15s; background: #fff;
}
.mv-sibling-card:hover { border-color: var(--mv-red); }
.mv-sibling-card__name   { font-weight: 700; color: #0d1b2a; font-size: 0.9rem; }
.mv-sibling-card__status { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.mv-sibling-card__lede   { font-size: 0.8rem; color: #6b7280; line-height: 1.45; }

/* Research feed */
.mv-research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mv-research-card {
    display: flex; flex-direction: column; gap: 6px;
    padding: 14px; border: 1px solid #dde3ea; border-radius: 6px;
    text-decoration: none; transition: border-color 0.15s;
}
.mv-research-card:hover { border-color: var(--mv-red); }
.mv-research-card__type  { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--mv-red); }
.mv-research-card__title { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; line-height: 1.35; }
.mv-research-card__date  { font-size: 0.78rem; color: #6b7280; }

/* Responsive */
@media (max-width: 900px) {
    .mv-distinction-group { grid-template-columns: 1fr; }
    .mv-distinction-col--similar { border-right: none; padding-right: 0; border-bottom: 1px solid #dde3ea; padding-bottom: 20px; }
    .mv-research-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .mv-research-grid { grid-template-columns: 1fr; }
    .mv-profile-grid  { grid-template-columns: repeat(2, 1fr); }
    .mv-siblings      { grid-template-columns: 1fr; }
}
/* ── Movement Page ───────────────────────────────────────── */
.single-movement {
    --movement-red:   #c0392b;
    --movement-navy:  #0d1b2a;
    --movement-green: #166534;
    --movement-amber: #b45309;
    --movement-teal:  #0e7c7b;
}

/* Active programs */
.movement-programs { display: flex; flex-direction: column; gap: 12px; }
.movement-program {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 22px; border-radius: 0 8px 8px 0;
}
.movement-program--active  { border-left: 4px solid var(--movement-green); background: #f0fdf4; }
.movement-program--winding { border-left: 4px solid var(--movement-amber); background: #fffbeb; }
.movement-program__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.movement-program__dot--active  { background: var(--movement-green); box-shadow: 0 0 0 3px #bbf7d0; }
.movement-program__dot--winding { background: var(--movement-amber); box-shadow: 0 0 0 3px #fde68a; }
.movement-program__eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.movement-program--active  .movement-program__eyebrow { color: var(--movement-green); }
.movement-program--winding .movement-program__eyebrow { color: var(--movement-amber); }
.movement-program__name { display: block; font-weight: 700; font-size: 1rem; text-decoration: none; margin-bottom: 6px; }
.movement-program--active  .movement-program__name { color: #14532d; }
.movement-program--winding .movement-program__name { color: #78350f; }
.movement-program__name:hover { text-decoration: underline; }
.movement-program__desc { font-size: 0.88rem; line-height: 1.6; margin: 0 0 8px; }
.movement-program--active  .movement-program__desc { color: #166534; }
.movement-program--winding .movement-program__desc { color: #92400e; }
.movement-program__link { font-size: 0.83rem; font-weight: 600; text-decoration: none; }
.movement-program--active  .movement-program__link { color: var(--movement-green); }
.movement-program--winding .movement-program__link { color: var(--movement-amber); }
.movement-program__link:hover { text-decoration: underline; }

/* Variants grid */
.movement-variants-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.movement-variant-card {
    display: flex; flex-direction: column; gap: 8px;
    padding: 18px 16px; border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.movement-variant-card:hover { border-color: var(--movement-red); box-shadow: 0 2px 8px rgba(192,57,43,0.08); }
.movement-variant-card__badge   { font-size: 0.68rem; align-self: flex-start; }
.movement-variant-card__name    { font-weight: 700; font-size: 1rem; color: #0d1b2a; line-height: 1.3; }
.movement-variant-card__summary { font-size: 0.82rem; color: #6b7280; line-height: 1.5; }

/* Featured profiles grid */
.movement-profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.movement-profile-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 14px 10px; border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none; text-align: center; transition: border-color 0.15s;
}
.movement-profile-card--org        { border-top: 3px solid var(--movement-teal); }
.movement-profile-card--individual { border-top: 3px solid var(--movement-amber); }
.movement-profile-card--org:hover        { border-color: var(--movement-teal); }
.movement-profile-card--individual:hover { border-color: var(--movement-amber); }
.movement-profile-avatar { width: 54px; height: 54px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.movement-profile-avatar--org        { border-radius: 8px; background: var(--movement-teal); }
.movement-profile-avatar--individual { border-radius: 50%; background: var(--movement-amber); }
.movement-profile-avatar__img        { width: 100%; height: 100%; }
.movement-profile-avatar__img--portrait { object-position: top center; }
.movement-profile-avatar__initials   { color: #fff; font-weight: 700; font-size: 0.95rem; }
.movement-profile-card__name         { font-weight: 700; font-size: 0.85rem; color: #0d1b2a; line-height: 1.3; }
.movement-profile-card__subtitle     { font-size: 0.75rem; color: #6b7280; }

/* Featured issues */
.movement-issues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.movement-issue-card {
    display: flex; flex-direction: column; gap: 6px; padding: 16px;
    border: 1px solid #dde3ea; border-radius: 8px; background: #fff; text-decoration: none;
    border-left: 3px solid var(--movement-red); transition: border-color 0.15s;
}
.movement-issue-card:hover { box-shadow: 0 2px 6px rgba(192,57,43,0.07); }
.movement-issue-card__eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--movement-red); }
.movement-issue-card__name    { font-weight: 700; color: #0d1b2a; font-size: 0.95rem; line-height: 1.35; }
.movement-issue-card__summary { font-size: 0.82rem; color: #3d3d3d; line-height: 1.5; }
.movement-issue-card__date    { font-size: 0.75rem; color: #9ca3af; }

/* Related movements */
.movement-related-grid { display: flex; flex-direction: column; gap: 10px; }
.movement-related-card {
    display: flex; flex-direction: column; gap: 4px; padding: 12px 14px;
    border: 1px solid #dde3ea; border-radius: 6px; background: #fff; text-decoration: none;
    transition: border-color 0.15s;
}
.movement-related-card:hover { border-color: var(--movement-red); }
.movement-related-card__name { font-weight: 700; color: #0d1b2a; font-size: 0.9rem; }
.movement-related-card__lede { font-size: 0.8rem; color: #6b7280; line-height: 1.45; }

/* Data pages */
.movement-data-grid { display: flex; flex-direction: column; gap: 10px; }
.movement-data-card {
    display: flex; flex-direction: column; gap: 4px; padding: 12px 14px;
    border: 1px solid #dde3ea; border-radius: 6px; background: #fff; text-decoration: none;
    border-left: 3px solid #a0b0c0; transition: border-color 0.15s;
}
.movement-data-card:hover { border-color: #0d1b2a; }
.movement-data-card__eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; }
.movement-data-card__name    { font-weight: 700; color: #0d1b2a; font-size: 0.9rem; }
.movement-data-card__desc    { font-size: 0.8rem; color: #6b7280; line-height: 1.45; }

/* Responsive */
@media (max-width: 900px) {
    .movement-variants-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .movement-variants-grid { grid-template-columns: 1fr; }
    .movement-profiles-grid { grid-template-columns: repeat(3, 1fr); }
    .movement-issues-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
    .movement-profiles-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── Program Page ────────────────────────────────────────── */
.single-program {
    --prog-green:       #166534;
    --prog-green-light: #dcfce7;
    --prog-green-mid:   #16a34a;
    --prog-navy:        #0d1b2a;
    --prog-amber:       #b45309;
    --prog-teal:        #0e7c7b;
}

/* Status badges */
.prog-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.prog-badge--active    { background: var(--prog-green-light); color: var(--prog-green); }
.prog-badge--completed { background: #f1f5f9; color: #475569; }
.prog-badge--paused    { background: #fef3c7; color: #92400e; }
.prog-badge--planned   { background: #eff6ff; color: #1d4ed8; }
.prog-badge__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--prog-green);
    animation: prog-pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes prog-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,101,52,0.4); }
    50%       { box-shadow: 0 0 0 5px rgba(22,101,52,0); }
}

/* Donate block */
.prog-donate-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; border: 2px solid var(--prog-green); border-radius: 12px; overflow: hidden;
}
.prog-donate-block__primary   { padding: 36px 40px; background: var(--prog-green); color: #fff; }
.prog-donate-block__secondary { padding: 36px 40px; background: #fff; }
.prog-donate-block__eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; opacity: 0.75; }
.prog-donate-block__primary   .prog-donate-block__eyebrow { color: #bbf7d0; }
.prog-donate-block__secondary .prog-donate-block__eyebrow { color: #6b7280; }
.prog-donate-block__heading { font-size: 1.3rem; font-weight: 800; margin: 0 0 12px; line-height: 1.3; }
.prog-donate-block__primary   .prog-donate-block__heading { color: #fff; }
.prog-donate-block__secondary .prog-donate-block__heading { color: #0d1b2a; }
.prog-donate-block__ask,
.prog-donate-block__body { font-size: 0.95rem; line-height: 1.65; margin: 0 0 24px; }
.prog-donate-block__primary   .prog-donate-block__ask  { color: #dcfce7; }
.prog-donate-block__secondary .prog-donate-block__body { color: #4a5a6a; }
.prog-donate-block__share {
    grid-column: 1 / -1; display: flex; align-items: center; gap: 12px;
    padding: 18px 40px; background: #f4f6f9; border-top: 1px solid #dde3ea; flex-wrap: wrap;
}
.prog-donate-block__share-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #9ca3af; }

/* Buttons */
.prog-btn { display: inline-block; padding: 11px 22px; border-radius: 6px; font-size: 0.9rem; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: opacity 0.15s; }
.prog-btn:hover { opacity: 0.88; }
.prog-btn--donate     { background: #fff; color: var(--prog-green); }
.prog-btn--newsletter { background: var(--prog-navy); color: #fff; }
.prog-share-btn { padding: 5px 13px; font-size: 0.8rem; font-weight: 600; border: 1px solid #dde3ea; border-radius: 6px; background: #fff; color: #3d3d3d; text-decoration: none; cursor: pointer; transition: border-color 0.15s; }
.prog-share-btn:hover { border-color: #a0b0c0; }

/* Issues grid */
.prog-issues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.prog-issue-card {
    display: flex; flex-direction: column; gap: 6px; padding: 16px;
    border: 1px solid #dde3ea; border-left: 3px solid var(--prog-green);
    border-radius: 0 8px 8px 0; background: #fff; text-decoration: none; transition: border-color 0.15s;
}
.prog-issue-card:hover { border-color: var(--prog-green); box-shadow: 0 2px 6px rgba(22,101,52,0.08); }
.prog-issue-card__eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--prog-green); }
.prog-issue-card__name    { font-weight: 700; color: #0d1b2a; font-size: 0.95rem; line-height: 1.35; }
.prog-issue-card__summary { font-size: 0.82rem; color: #3d3d3d; line-height: 1.5; }
.prog-issue-card__date    { font-size: 0.75rem; color: #9ca3af; }

/* Profiles grid */
.prog-profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.prog-profile-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 14px 10px; border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none; text-align: center; transition: border-color 0.15s;
}
.prog-profile-card--org        { border-top: 3px solid var(--prog-teal); }
.prog-profile-card--individual { border-top: 3px solid var(--prog-amber); }
.prog-profile-card--org:hover        { border-color: var(--prog-teal); }
.prog-profile-card--individual:hover { border-color: var(--prog-amber); }
.prog-profile-avatar { width: 50px; height: 50px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prog-profile-avatar--org        { border-radius: 8px; background: var(--prog-teal); }
.prog-profile-avatar--individual { border-radius: 50%; background: var(--prog-amber); }
.prog-profile-avatar__initials   { color: #fff; font-weight: 700; font-size: 0.9rem; }
.prog-profile-card__name         { font-weight: 700; font-size: 0.82rem; color: #0d1b2a; line-height: 1.3; }
.prog-profile-card__subtitle     { font-size: 0.72rem; color: #6b7280; }

/* Output feed */
.prog-output-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.prog-output-card {
    display: flex; flex-direction: column; gap: 6px; padding: 14px;
    border: 1px solid #dde3ea; border-radius: 6px; background: #fff; text-decoration: none; transition: border-color 0.15s;
}
.prog-output-card:hover { border-color: var(--prog-green); }
.prog-output-card__type  { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--prog-green); }
.prog-output-card__title { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; line-height: 1.35; }
.prog-output-card__date  { font-size: 0.78rem; color: #6b7280; }

/* Responsive */
@media (max-width: 768px) {
    .prog-donate-block { grid-template-columns: 1fr; }
    .prog-donate-block__primary,
    .prog-donate-block__secondary { padding: 28px 24px; }
    .prog-donate-block__share { padding: 16px 24px; }
    .prog-output-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .prog-output-grid   { grid-template-columns: 1fr; }
    .prog-issues-grid   { grid-template-columns: 1fr; }
    .prog-profiles-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ── Issue Page ──────────────────────────────────────────── */
.single-issue {
    --issue-red:   #c0392b;
    --issue-navy:  #0d1b2a;
    --issue-green: #166534;
    --issue-teal:  #0e7c7b;
    --issue-amber: #b45309;
}

/* Status badges */
.issue-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.issue-badge--active     { background: #fee2e2; color: #991b1b; }
.issue-badge--developing { background: #fef3c7; color: #92400e; }
.issue-badge--historical { background: #f1f5f9; color: #475569; }
.issue-badge__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #991b1b;
    animation: issue-pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes issue-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(153,27,27,0.4); }
    50%       { box-shadow: 0 0 0 4px rgba(153,27,27,0); }
}

/* Connected movement/variant pills */
.issue-connected-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.issue-connected-strip__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }
.issue-movement-tag, .issue-variant-tag {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: opacity 0.15s;
}
.issue-movement-tag { background: rgba(192,57,43,0.25); color: #fca5a5; border: 1px solid rgba(192,57,43,0.4); }
.issue-variant-tag  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.15); }
.issue-movement-tag:hover, .issue-variant-tag:hover { opacity: 0.8; }

/* Active program block */
.issue-active-program {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 24px; border-left: 4px solid var(--issue-green);
    background: #f0fdf4; border-radius: 0 8px 8px 0;
}
.issue-active-program__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--issue-green); margin-top: 6px; flex-shrink: 0; box-shadow: 0 0 0 3px #bbf7d0; }
.issue-active-program__eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--issue-green); margin-bottom: 4px; }
.issue-active-program__name { display: block; font-weight: 700; font-size: 1rem; color: #14532d; text-decoration: none; margin-bottom: 6px; }
.issue-active-program__name:hover { text-decoration: underline; }
.issue-active-program__desc { font-size: 0.88rem; color: #166534; line-height: 1.6; margin: 0 0 10px; }
.issue-active-program__links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.issue-active-program__learn { font-size: 0.83rem; font-weight: 600; color: var(--issue-green); text-decoration: none; }
.issue-active-program__learn:hover { text-decoration: underline; }
.issue-active-program__donate { font-size: 0.83rem; font-weight: 700; padding: 5px 14px; background: var(--issue-green); color: #fff; border-radius: 5px; text-decoration: none; }
.issue-active-program__donate:hover { opacity: 0.88; }

/* Profile grids */
.issue-profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.issue-profile-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 14px 10px; border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none; text-align: center; transition: border-color 0.15s;
}
.issue-profile-card--org        { border-top: 3px solid var(--issue-teal); }
.issue-profile-card--individual { border-top: 3px solid var(--issue-amber); }
.issue-profile-avatar { width: 50px; height: 50px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.issue-profile-avatar--org        { border-radius: 8px; background: var(--issue-teal); }
.issue-profile-avatar--individual { border-radius: 50%; background: var(--issue-amber); }
.issue-profile-avatar__initials   { color: #fff; font-weight: 700; font-size: 0.9rem; }
.issue-profile-card__name { font-weight: 700; font-size: 0.82rem; color: #0d1b2a; line-height: 1.3; }
.issue-profile-card__sub  { font-size: 0.72rem; color: #6b7280; }

/* Featured reports */
.issue-reports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.issue-report-card {
    display: flex; gap: 14px; padding: 14px; border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none; transition: border-color 0.15s; align-items: flex-start;
}
.issue-report-card:hover { border-color: var(--issue-red); }
.issue-report-card__cover { flex-shrink: 0; }
.issue-report-card__cover-img { width: 52px; height: 68px; object-fit: cover; border-radius: 3px; box-shadow: 0 2px 6px rgba(0,0,0,0.2); display: block; }
.issue-report-card__body    { display: flex; flex-direction: column; gap: 4px; }
.issue-report-card__type    { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--issue-red); }
.issue-report-card__title   { font-size: 0.88rem; font-weight: 700; color: #0d1b2a; line-height: 1.3; }
.issue-report-card__authors { font-size: 0.75rem; color: #6b7280; }
.issue-report-card__date    { font-size: 0.72rem; color: #9ca3af; }

/* CTA block */
.issue-cta-block { display: grid; grid-template-columns: 1fr auto; gap: 40px; padding: 40px 48px; border-radius: 10px; align-items: center; }
.issue-cta-block__eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; opacity: 0.8; }
.issue-cta-block__heading { font-size: 1.4rem; font-weight: 800; margin: 0 0 12px; line-height: 1.3; }
.issue-cta-block__body    { font-size: 0.92rem; line-height: 1.65; margin: 0 0 24px; }
.issue-cta-block__secondary { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.issue-cta-block__share-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.6; }
.issue-cta-block__share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.issue-share-btn { padding: 5px 12px; font-size: 0.78rem; font-weight: 600; border-radius: 5px; cursor: pointer; text-decoration: none; transition: opacity 0.15s; }
.issue-share-btn:hover { opacity: 0.8; }
.issue-cta-block--donate { background: #166534; color: #fff; }
.issue-cta-block--donate .issue-share-btn { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.issue-cta-block--newsletter,
.issue-cta-block--tip,
.issue-cta-block--report,
.issue-cta-block--contact { background: #0d1b2a; color: #fff; }
.issue-cta-block--newsletter .issue-share-btn,
.issue-cta-block--tip .issue-share-btn,
.issue-cta-block--report .issue-share-btn,
.issue-cta-block--contact .issue-share-btn { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.issue-cta-btn { display: inline-block; padding: 12px 24px; border-radius: 6px; font-size: 0.92rem; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: opacity 0.15s; }
.issue-cta-btn:hover { opacity: 0.88; }
.issue-cta-btn--donate     { background: #fff; color: #166534; }
.issue-cta-btn--newsletter { background: var(--issue-red); color: #fff; }
.issue-cta-btn--tip        { background: #fff; color: #0d1b2a; }
.issue-cta-btn--report     { background: var(--issue-red); color: #fff; }
.issue-cta-btn--contact    { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* Research feed */
.issue-research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.issue-research-card {
    display: flex; flex-direction: column; gap: 6px; padding: 14px;
    border: 1px solid #dde3ea; border-radius: 6px; background: #fff; text-decoration: none; transition: border-color 0.15s;
}
.issue-research-card:hover { border-color: var(--issue-red); }
.issue-research-card__type  { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--issue-red); }
.issue-research-card__title { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; line-height: 1.35; }
.issue-research-card__date  { font-size: 0.78rem; color: #6b7280; }

/* Responsive */
@media (max-width: 768px) {
    .issue-cta-block { grid-template-columns: 1fr; padding: 28px 24px; }
    .issue-cta-block__secondary { align-items: flex-start; }
    .issue-research-grid { grid-template-columns: repeat(2, 1fr); }
    .issue-reports-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .issue-research-grid { grid-template-columns: 1fr; }
    .issue-profiles-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ── Report Page ─────────────────────────────────────────── */
.single-irehr_report,
.single-report {
    --rpt-red:   #c0392b;
    --rpt-navy:  #0d1b2a;
    --rpt-teal:  #0e7c7b;
    --rpt-amber: #b45309;
}

/* Report type badges */
.rpt-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.rpt-badge--flagship { background: var(--rpt-red);  color: #fff; }
.rpt-badge--program  { background: #1a3a5c;          color: #fff; }
.rpt-badge--brief    { background: #374151;          color: #fff; }
.rpt-badge--data     { background: #0e7c7b;          color: #fff; }

/* Cover image */
.rpt-cover {
    width: 100%;
    max-width: 280px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.rpt-cover__img { width: 100%; height: auto; display: block; }
.rpt-cover--placeholder {
    background: #1a3a5c;
    aspect-ratio: 7 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rpt-cover__placeholder-text {
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* Download block */
.rpt-download-block {
    padding: 32px 40px;
    border: 2px solid var(--rpt-navy);
    border-radius: 10px;
    background: #fff;
}
.rpt-download-block__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 6px;
}
.rpt-download-block__heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0d1b2a;
    margin: 0 0 16px;
}
.rpt-download-block__note { font-size: 0.82rem; color: #9ca3af; margin: 12px 0 0; }
.rpt-download-block__unavailable { font-size: 0.9rem; color: #6b7280; }
.rpt-download-block__error { font-size: 0.9rem; color: var(--rpt-red); }

/* Buttons */
.rpt-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s;
}
.rpt-btn:hover { opacity: 0.88; }
.rpt-btn--download { background: var(--rpt-navy); color: #fff; }

/* Cite button */
.rpt-cite-btn {
    display: inline-block;
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}
.rpt-cite-btn:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Cite modal */
.rpt-cite-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.rpt-cite-modal[hidden] { display: none; }
.rpt-cite-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.rpt-cite-modal__box {
    position: relative; z-index: 1;
    background: #fff; border-radius: 12px;
    padding: 36px; max-width: 560px; width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.rpt-cite-modal__close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: #6b7280; }
.rpt-cite-modal__title { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; margin: 0 0 24px; }
.rpt-cite-modal__entry { margin-bottom: 20px; }
.rpt-cite-modal__format { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #6b7280; margin-bottom: 6px; }
.rpt-cite-modal__text { font-size: 0.85rem; color: #1a1a1a; line-height: 1.6; background: #f4f6f9; padding: 10px 14px; border-radius: 4px; margin-bottom: 8px; }
.rpt-cite-modal__copy { font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border: 1px solid #dde3ea; border-radius: 4px; background: #fff; cursor: pointer; color: #3d3d3d; }

/* Press coverage */
.rpt-press-list { display: flex; flex-direction: column; gap: 0; }
.rpt-press-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f4f8;
}
.rpt-press-row:last-child { border-bottom: none; }
.rpt-press-row__outlet   { font-size: 0.82rem; font-weight: 700; color: #0d1b2a; }
.rpt-press-row__headline { font-size: 0.88rem; color: #3d3d3d; text-decoration: none; line-height: 1.4; }
.rpt-press-row__headline:hover { color: var(--rpt-red); text-decoration: underline; }
.rpt-press-row__date { font-size: 0.75rem; color: #9ca3af; white-space: nowrap; }

/* Related profiles */
.rpt-profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.rpt-profile-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 14px 10px;
    border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none; text-align: center;
    transition: border-color 0.15s;
}
.rpt-profile-card--org        { border-top: 3px solid var(--rpt-teal); }
.rpt-profile-card--individual { border-top: 3px solid var(--rpt-amber); }
.rpt-profile-card--org:hover        { border-top-color: var(--rpt-teal); }
.rpt-profile-card--individual:hover { border-top-color: var(--rpt-amber); }
.rpt-profile-avatar { width: 50px; height: 50px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.rpt-profile-avatar--org        { border-radius: 8px; background: var(--rpt-teal); }
.rpt-profile-avatar--individual { border-radius: 50%; background: var(--rpt-amber); }
.rpt-profile-avatar__initials   { color: #fff; font-weight: 700; font-size: 0.9rem; }
.rpt-profile-card__name { font-weight: 700; font-size: 0.82rem; color: #0d1b2a; line-height: 1.3; }
.rpt-profile-card__sub  { font-size: 0.72rem; color: #6b7280; }

/* Related issues */
.rpt-related-issues { display: flex; flex-wrap: wrap; gap: 10px; }
.rpt-issue-tag {
    display: inline-block; padding: 5px 14px;
    border: 1px solid #dde3ea; border-radius: 20px;
    color: #3d3d3d; text-decoration: none; font-size: 0.83rem;
    transition: border-color 0.15s, color 0.15s;
}
.rpt-issue-tag:hover { border-color: var(--rpt-red); color: var(--rpt-red); }

/* Archive docs */
.rpt-archive-docs { display: flex; flex-direction: column; gap: 10px; }
.rpt-archive-doc-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f4f8; }
.rpt-archive-doc-row:last-child { border-bottom: none; }
.rpt-archive-doc__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.rpt-archive-doc__body { display: flex; flex-direction: column; gap: 2px; }
.rpt-archive-doc__name { font-weight: 600; color: #0d1b2a; text-decoration: none; font-size: 0.9rem; }
.rpt-archive-doc__name:hover { text-decoration: underline; }
.rpt-archive-doc__date { font-size: 0.75rem; color: #9ca3af; }

/* Responsive */
@media (max-width: 768px) {
    .rpt-download-block { padding: 24px; }
    .rpt-press-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 480px) {
    .rpt-profiles-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ── Archive Document ────────────────────────────────────── */
.single-archive_document {
    --adoc-slate:  #475569;
    --adoc-navy:   #0d1b2a;
    --adoc-teal:   #0e7c7b;
    --adoc-amber:  #b45309;
    --adoc-yellow: #92400e;
    --adoc-red:    #991b1b;
}

/* Breadcrumb */
.adoc-breadcrumb { padding: 12px 0; }
.adoc-breadcrumb__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
    font-size: 0.82rem;
}
.adoc-breadcrumb__item--sep     { color: #a0b0c0; }
.adoc-breadcrumb__item--current { color: #1a1a1a; font-weight: 600; }
.adoc-breadcrumb__link { color: var(--adoc-slate); text-decoration: none; }
.adoc-breadcrumb__link:hover { text-decoration: underline; }

/* Meta strip */
.adoc-meta-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.adoc-type-badge {
    display: inline-block; padding: 3px 10px;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
}
.adoc-meta-strip__item { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.adoc-meta-strip__item + .adoc-meta-strip__item::before { content: '·'; margin-right: 10px; color: rgba(255,255,255,0.3); }
.adoc-quality-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 10px; }
.adoc-quality--digital    { background: rgba(14,124,123,0.2);  color: #6ee7e7; }
.adoc-quality--good       { background: rgba(22,101,52,0.2);   color: #86efac; }
.adoc-quality--fair       { background: rgba(146,64,14,0.2);   color: #fcd34d; }
.adoc-quality--poor       { background: rgba(153,27,27,0.2);   color: #fca5a5; }
.adoc-quality--incomplete { background: rgba(153,27,27,0.3);   color: #f87171; }
.adoc-meta-strip__condition { font-size: 0.78rem; color: #fcd34d; font-style: italic; }

/* Download block */
.adoc-download { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.adoc-download__btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; background: #fff; color: var(--adoc-navy);
    border-radius: 6px; text-decoration: none; font-weight: 700;
    font-size: 0.95rem; width: fit-content; transition: opacity 0.15s;
}
.adoc-download__btn:hover { opacity: 0.88; }
.adoc-download__icon { font-size: 1.1rem; }
.adoc-download__size { font-weight: 400; color: #6b7280; font-size: 0.85rem; }
.adoc-download__warning { font-size: 0.82rem; color: #fbbf24; display: flex; align-items: flex-start; gap: 6px; margin: 0; line-height: 1.5; }
.adoc-download--unavailable { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* Description */
.single-archive_document .adoc-description { font-size: 1rem; line-height: 1.8; color: #1a1a1a; max-width: 720px; }

/* Context note */
.adoc-context-note { padding: 16px 20px; border-left: 4px solid var(--adoc-slate); background: #f8f9fb; border-radius: 0 6px 6px 0; }
.adoc-context-note__label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--adoc-slate); margin-bottom: 6px; }
.adoc-context-note__text { font-size: 0.92rem; color: #1a1a1a; line-height: 1.65; margin: 0; }

/* Disclaimer */
.adoc-disclaimer { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; background: #f4f6f9; border-radius: 6px; font-size: 0.82rem; }
.adoc-disclaimer__icon { color: #a0b0c0; flex-shrink: 0; margin-top: 1px; }
.adoc-disclaimer__text { color: #6b7280; line-height: 1.6; margin: 0; }

/* Related profiles */
.adoc-related-profiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.adoc-profile-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 14px 10px; border: 1px solid #dde3ea; border-radius: 8px;
    background: #fff; text-decoration: none; text-align: center; transition: border-color 0.15s;
}
.adoc-profile-card--org        { border-top: 3px solid var(--adoc-teal); }
.adoc-profile-card--individual { border-top: 3px solid var(--adoc-amber); }
.adoc-profile-card--org:hover        { border-color: var(--adoc-teal); }
.adoc-profile-card--individual:hover { border-color: var(--adoc-amber); }
.adoc-profile-avatar { width: 48px; height: 48px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.adoc-profile-avatar--org        { border-radius: 8px; background: var(--adoc-teal); }
.adoc-profile-avatar--individual { border-radius: 50%; background: var(--adoc-amber); }
.adoc-profile-avatar__initials   { color: #fff; font-weight: 700; font-size: 0.88rem; }
.adoc-profile-card__name { font-weight: 700; font-size: 0.8rem; color: #0d1b2a; line-height: 1.3; }
.adoc-profile-card__sub  { font-size: 0.7rem; color: #6b7280; }

/* Related reports */
.adoc-related-reports { display: flex; flex-direction: column; gap: 8px; }
.adoc-related-report-row {
    display: flex; align-items: center; gap: 12px; padding: 12px 14px;
    border: 1px solid #dde3ea; border-radius: 6px; background: #fff; text-decoration: none; transition: border-color 0.15s;
}
.adoc-related-report-row:hover { border-color: var(--adoc-slate); }
.adoc-related-report-row__type { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--adoc-slate); background: #f1f5f9; padding: 2px 8px; border-radius: 10px; flex-shrink: 0; }
.adoc-related-report-row__title { font-weight: 600; color: #0d1b2a; font-size: 0.88rem; flex: 1; }
.adoc-related-report-row__date  { font-size: 0.75rem; color: #9ca3af; flex-shrink: 0; }

/* Provenance */
.adoc-provenance { display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; font-size: 0.88rem; }
.adoc-provenance__term { font-weight: 700; color: #475569; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; align-self: center; }
.adoc-provenance__def { color: #1a1a1a; margin: 0; }

/* Copyright */
.adoc-copyright { font-size: 0.78rem; color: #9ca3af; line-height: 1.55; display: flex; gap: 6px; align-items: flex-start; margin: 0; }
.adoc-copyright__symbol { flex-shrink: 0; }

/* Responsive */
@media (max-width: 600px) {
    .adoc-related-profiles { grid-template-columns: repeat(3, 1fr); }
    .adoc-related-report-row { flex-wrap: wrap; }
    .adoc-related-report-row__date { width: 100%; }
}
/* ── Data Page ───────────────────────────────────────────── */
.single-data_page {
    --data-teal:  #0e7c7b;
    --data-navy:  #0d1b2a;
    --data-red:   #c0392b;
}

/* Hero meta */
.data-hero-meta { margin-bottom: 16px; }
.data-hero-meta__eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.data-hero-meta__strip { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.82rem; }
.data-hero-meta__item  { display: flex; gap: 5px; }
.data-hero-meta__label { color: rgba(255,255,255,0.45); font-weight: 600; }
.data-hero-meta__value { color: rgba(255,255,255,0.8); }

/* Visualization */
.data-viz { border: 1px solid #dde3ea; border-radius: 8px; overflow: hidden; }
.data-viz__header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #dde3ea; background: #fafafa; }
.data-viz__title { font-weight: 700; color: #0d1b2a; font-size: 1rem; }
.data-viz__type-badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--data-teal); background: #e6f4f4; padding: 3px 10px; border-radius: 12px; }
.data-viz__chart-stub,
.data-viz__map-stub,
.data-viz__facetwp-stub { min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f9fafb; padding: 40px; text-align: center; gap: 12px; }
.data-viz__stub-note { font-size: 0.85rem; color: #6b7280; max-width: 520px; line-height: 1.6; margin: 0; }
.data-viz--stub { border: 2px dashed #dde3ea; border-radius: 8px; padding: 32px; text-align: center; color: #9ca3af; font-size: 0.88rem; }

/* Download block */
.data-download-block { padding: 28px 32px; border: 1px solid #dde3ea; border-radius: 8px; background: #fff; }
.data-download-block--stub { border: 2px dashed #dde3ea; background: #fafafa; }
.data-download-block__eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--data-teal); margin-bottom: 6px; }
.data-download-block__heading { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; margin-bottom: 12px; }
.data-download-block__stub-note { font-size: 0.85rem; color: #6b7280; margin: 0 0 8px; }

/* Related reports */
.data-related-reports { display: flex; flex-direction: column; gap: 10px; }
.data-related-report-card {
    display: flex; flex-direction: column; gap: 4px; padding: 14px 16px;
    border: 1px solid #dde3ea; border-left: 3px solid var(--data-teal);
    border-radius: 6px; background: #fff; text-decoration: none; transition: border-color 0.15s;
}
.data-related-report-card:hover { border-color: var(--data-teal); box-shadow: 0 2px 6px rgba(14,124,123,0.08); }
.data-related-report-card__type  { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--data-teal); }
.data-related-report-card__title { font-weight: 700; color: #0d1b2a; font-size: 0.92rem; line-height: 1.35; }
.data-related-report-card__date  { font-size: 0.75rem; color: #9ca3af; }

/* Related profiles */
.data-profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.data-profile-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 14px 10px;
    border: 1px solid #dde3ea; border-top: 3px solid var(--data-teal);
    border-radius: 8px; background: #fff; text-decoration: none; text-align: center; transition: border-color 0.15s;
}
.data-profile-card:hover { border-color: var(--data-teal); }
.data-profile-avatar { width: 50px; height: 50px; border-radius: 8px; background: var(--data-teal); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.data-profile-avatar__initials { color: #fff; font-weight: 700; font-size: 0.9rem; }
.data-profile-card__name { font-weight: 700; font-size: 0.82rem; color: #0d1b2a; line-height: 1.3; }
.data-profile-card__sub  { font-size: 0.72rem; color: #6b7280; }

/* Related issues */
.data-related-issues { display: flex; flex-wrap: wrap; gap: 10px; }
.data-issue-tag {
    display: inline-block; padding: 5px 14px;
    border: 1px solid #dde3ea; border-radius: 20px;
    color: #3d3d3d; text-decoration: none; font-size: 0.83rem;
    transition: border-color 0.15s, color 0.15s;
}
.data-issue-tag:hover { border-color: var(--data-teal); color: var(--data-teal); }
/* ═══════════════════════════════════════════════════════════════
   GLOSSARY PAGE (ID 419)
═══════════════════════════════════════════════════════════════ */
.page-id-419 {
    --glossary-navy:  #0d1b2a;
    --glossary-slate: #475569;
    --glossary-teal:  #0e7c7b;
    --glossary-red:   #c0392b;
    --glossary-amber: #b45309;
}

.glossary-az-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 28px;
}
.glossary-az-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
a.glossary-az-nav__link {
    background: #0d1b2a !important;
    color: #fff !important;
}
a.glossary-az-nav__link:hover {
    background: var(--glossary-teal);
}
.glossary-az-nav__link--empty {
    color: #d1d5db;
    cursor: default;
    font-weight: 400;
}

.glossary-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dde3ea;
}
.glossary-filter__btn {
    padding: 5px 14px;
    border: 1px solid #dde3ea;
    border-radius: 20px;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.glossary-filter__btn:hover { border-color: #0d1b2a; color: #0d1b2a; }
.glossary-filter__btn--active { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }

.glossary-letter-group { margin-bottom: 48px; }
.glossary-letter-group__header {
    font-size: 2rem;
    font-weight: 900;
    color: #cbd5e1;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 20px;
    line-height: 1;
}

.glossary-term {
    padding: 20px 0;
    border-bottom: 1px solid #f0f4f8;
    scroll-margin-top: 80px;
}
.glossary-term:last-child { border-bottom: none; }
.glossary-term__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}
.glossary-term__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0d1b2a;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}
.glossary-term__cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 2px 9px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}
.glossary-term__cat--legal     { background: #eff6ff; color: #1d4ed8; }
.glossary-term__cat--movement  { background: #fee2e2; color: #991b1b; }
.glossary-term__cat--research  { background: #f0fdf4; color: #166534; }
.glossary-term__cat--financial { background: #fefce8; color: #713f12; }
.glossary-term__cat--general   { background: #f1f5f9; color: #475569; }

.glossary-term__aka {
    font-size: 0.82rem;
    color: #6b7280;
    font-style: italic;
    margin: 0 0 10px;
}
.glossary-term__definition {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.glossary-term__definition p { margin: 0 0 8px; }
.glossary-term__definition a { color: var(--glossary-teal); }
.glossary-term__usage-note {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 10px;
    padding: 8px 12px;
    background: #f8f9fb;
    border-radius: 4px;
}
.glossary-term__related {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 8px;
}
.glossary-term__related-label { font-weight: 600; }
.glossary-term__related-link { color: var(--glossary-teal); text-decoration: none; }
.glossary-term__related-link:hover { text-decoration: underline; }
.glossary-term__top-link {
    display: inline-block;
    font-size: 0.75rem;
    color: #a0b0c0;
    text-decoration: none;
    margin-top: 4px;
}
.glossary-term__top-link:hover { color: var(--glossary-slate); }
.glossary-empty { color: #9ca3af; font-style: italic; text-align: center; padding: 40px 0; }

@media (max-width: 600px) {
    .glossary-term__header { flex-direction: column; gap: 6px; }
    .glossary-az-nav__link { width: 28px; height: 28px; font-size: 0.78rem; }
}


/* ═══════════════════════════════════════════════════════════════
   METHODOLOGY PAGE (ID 395)
═══════════════════════════════════════════════════════════════ */
.page-id-395 {
    --meth-navy:  #0d1b2a;
    --meth-slate: #475569;
    --meth-teal:  #0e7c7b;
}

.methodology-toc {
    background: #f4f6f9;
    border-left: 3px solid var(--meth-navy);
    padding: 18px 20px;
    border-radius: 0 6px 6px 0;
    position: sticky;
    top: 24px;
}
.methodology-toc__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 12px;
}
.methodology-toc__list { margin: 0; padding-left: 18px; }
.methodology-toc__list li { margin-bottom: 8px; }
.methodology-toc__list a {
    font-size: 0.85rem;
    color: var(--meth-navy);
    text-decoration: none;
    line-height: 1.4;
}
.methodology-toc__list a:hover { color: var(--meth-teal); text-decoration: underline; }

.page-id-395 h2[id],
.page-id-395 h3[id] { scroll-margin-top: 80px; }

.page-id-395 .methodology-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--meth-navy);
    margin: 24px 0 10px;
}
.page-id-395 .methodology-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0 0 14px;
}
.page-id-395 .methodology-content ul,
.page-id-395 .methodology-content ol {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #1a1a1a;
    margin: 0 0 14px 20px;
}
.page-id-395 .methodology-content li { margin-bottom: 6px; }
.page-id-395 .methodology-content a { color: var(--meth-teal); }

.methodology-media-use-section {
    background: #f0f4f8;
    padding: 32px 40px;
    border-radius: 8px;
}

.methodology-press-contact {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    margin-top: 20px;
}
.methodology-press-contact__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 4px;
}
.methodology-press-contact__email {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--meth-navy);
    text-decoration: none;
}
.methodology-press-contact__email:hover { text-decoration: underline; }
.methodology-press-contact__note {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 4px 0 0;
}

.methodology-financial { margin-top: 8px; }
.methodology-financial__statement { font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.methodology-financial__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.methodology-financial__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
}
.methodology-financial__link:hover { opacity: 0.85; }
.methodology-financial__link--pdf        { background: #0d1b2a; color: #fff; }
.methodology-financial__link--propublica { background: #f1f5f9; color: #0d1b2a; border: 1px solid #dde3ea; }

@media (max-width: 768px) {
    .methodology-toc { position: static; margin-bottom: 24px; }
    .methodology-media-use-section { padding: 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   RESOURCES PAGE (ID 374)
═══════════════════════════════════════════════════════════════ */
.page-id-374 {
    --res-navy:  #0d1b2a;
    --res-amber: #b45309;
    --res-teal:  #0e7c7b;
    --res-red:   #c0392b;
}

.resources-scope-statement {
    background: #fffbeb;
    border-left: 4px solid var(--res-amber);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 32px;
}
.resources-scope-statement p { font-size: 0.92rem; color: #3d3d3d; line-height: 1.7; margin: 0 0 8px; }
.resources-scope-statement p:last-child { margin-bottom: 0; }
.resources-scope-statement a { color: var(--res-amber); }
.resources-scope-statement strong { color: #1a1a1a; }

.resources-category { margin-bottom: 48px; }
.resources-category__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--res-navy);
    border-bottom: 2px solid #dde3ea;
    padding-bottom: 10px;
    margin: 0 0 12px;
}
.resources-category__desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 20px;
}
.resources-category__empty { font-size: 0.85rem; color: #9ca3af; font-style: italic; }

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.resource-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.resource-card:hover {
    border-color: var(--res-teal);
    box-shadow: 0 2px 8px rgba(14,124,123,0.08);
}
.resource-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.resource-card__name {
    font-weight: 700;
    color: var(--res-navy);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.3;
    flex: 1;
    transition: color 0.15s;
}
.resource-card__name:hover { color: var(--res-teal); }

.resource-card__scope {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}
.resource-card__scope--national      { background: #eff6ff; color: #1d4ed8; }
.resource-card__scope--regional      { background: #f0fdf4; color: #166534; }
.resource-card__scope--state         { background: #fefce8; color: #713f12; }
.resource-card__scope--local         { background: #f9f0ff; color: #6b21a8; }
.resource-card__scope--international { background: #f1f5f9; color: #475569; }

.resource-card__desc { font-size: 0.875rem; color: #3d3d3d; line-height: 1.65; margin: 0; }

.resource-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.resource-card__tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.resource-card__tag--community   { background: #dcfce7; color: #166534; }
.resource-card__tag--journalists { background: #dbeafe; color: #1e40af; }
.resource-card__tag--researchers { background: #f3e8ff; color: #6b21a8; }
.resource-card__tag--legal       { background: #fee2e2; color: #991b1b; }
.resource-card__tag--crisis      { background: #fef3c7; color: #92400e; }

.resources-empty { font-size: 0.88rem; color: #9ca3af; font-style: italic; text-align: center; padding: 40px 0; }

@media (max-width: 600px) {
    .resources-grid { grid-template-columns: 1fr; }
    .resource-card__header { flex-direction: column; gap: 6px; }
}


/* ═══════════════════════════════════════════════════════════════
   TIPS & SUBMISSIONS PAGE (ID 360)
═══════════════════════════════════════════════════════════════ */
.page-id-360 {
    --tips-navy:  #0d1b2a;
    --tips-slate: #475569;
    --tips-green: #166534;
}

.tips-confidentiality {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: #f0fdf4;
    border-left: 4px solid var(--tips-green);
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
}
.tips-confidentiality__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.tips-confidentiality__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tips-green);
    margin-bottom: 6px;
}
.tips-confidentiality__text { font-size: 0.92rem; color: #166534; line-height: 1.65; margin: 0; }

.tips-process {
    padding: 16px 20px;
    background: #f8f9fb;
    border-radius: 6px;
    margin-bottom: 32px;
}
.tips-process__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--tips-slate);
    margin-bottom: 8px;
}
.tips-process__text { font-size: 0.9rem; color: #1a1a1a; line-height: 1.65; margin: 0; }

.tips-form-wrapper { margin-top: 32px; }
.tips-form-wrapper--unavailable,
.tips-form-wrapper--pending {
    padding: 24px;
    background: #f4f6f9;
    border: 1px dashed #dde3ea;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

.page-id-360 .gform_wrapper { max-width: 100%; }
.page-id-360 .gfield_label { font-weight: 600; font-size: 0.9rem; color: #0d1b2a; margin-bottom: 6px; }
.page-id-360 .gfield_description { font-size: 0.78rem; color: #6b7280; margin-top: 3px; }
.page-id-360 input[type="text"],
.page-id-360 input[type="email"],
.page-id-360 textarea,
.page-id-360 select {
    border: 1px solid #dde3ea;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    width: 100%;
    background: #fff;
    transition: border-color 0.15s;
}
.page-id-360 input[type="text"]:focus,
.page-id-360 input[type="email"]:focus,
.page-id-360 textarea:focus,
.page-id-360 select:focus { outline: none; border-color: #0d1b2a; }
.page-id-360 .gform_button,
.page-id-360 input[type="submit"] {
    background: #0d1b2a;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}
.page-id-360 .gform_button:hover,
.page-id-360 input[type="submit"]:hover { opacity: 0.88; }
.page-id-360 .gfield_required { color: #c0392b; }
.page-id-360 .gform_confirmation_message {
    padding: 20px 24px;
    background: #f0fdf4;
    border-left: 4px solid var(--tips-green);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: #166534;
    line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════
   LANDSCAPE MAP PAGE (ID 340)
═══════════════════════════════════════════════════════════════ */
.page-id-340 {
    --map-navy:  #0d1b2a;
    --map-red:   #c0392b;
    --map-teal:  #0e7c7b;
    --map-slate: #475569;
}

.landscape-map__container {
    width: 100%;
    height: 600px;
    background: #e8eff5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.landscape-map__stub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
    gap: 12px;
}
.landscape-map__stub-icon { font-size: 3rem; opacity: 0.4; }
.landscape-map__stub-heading { font-size: 1.1rem; font-weight: 700; color: var(--map-slate); }
.landscape-map__stub-text {
    font-size: 0.88rem;
    color: #6b7280;
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
}
.landscape-map__stub-prereq {
    font-size: 0.82rem;
    color: #9ca3af;
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 6px;
}
.landscape-map__stub-prereq code {
    font-family: monospace;
    font-size: 0.8rem;
    background: #e2e8f0;
    padding: 1px 5px;
    border-radius: 3px;
}

.map-filter-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0;
    margin-bottom: 12px;
}
.map-filter-toolbar__label { font-size: 0.78rem; font-weight: 600; color: var(--map-slate); flex-shrink: 0; }
.map-filter-toolbar__buttons { display: flex; flex-wrap: wrap; gap: 6px; }
.map-filter-btn {
    padding: 4px 12px;
    border: 1px solid #dde3ea;
    border-radius: 20px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--map-slate);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.map-filter-btn:hover { border-color: var(--map-navy); color: var(--map-navy); }
.map-filter-btn--active { background: var(--map-navy); color: #fff; border-color: var(--map-navy); }

.map-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 12px 0;
    font-size: 0.82rem;
    color: #6b7280;
    border-top: 1px solid #f0f4f8;
}
.map-stats-row__item strong { color: #0d1b2a; }

.map-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 12px 0; }
.map-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
}
.map-action-btn:hover { opacity: 0.85; }
.map-action-btn--csv { background: #0d1b2a; color: #fff; }
.map-action-btn--tip { background: #f4f6f9; color: #0d1b2a; border: 1px solid #dde3ea; }

.map-methodology-note {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.65;
    padding: 14px 18px;
    background: #f8f9fb;
    border-radius: 6px;
    margin-top: 12px;
}
.map-methodology-note strong { color: #0d1b2a; }

@media (max-width: 768px) {
    .landscape-map__container { height: 400px; }
    .map-filter-toolbar { flex-direction: column; align-items: flex-start; }
}
.page-id-395 h2 {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}
.op-network-graph {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}
.op-network-graph {
    clear: both;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.op-connections-list {
    position: relative;
    z-index: 2;
    background: #fff;
    padding-bottom: 16px;
}
.op-connections-list {
    background: #fff;
    padding: 16px 0;
    margin-bottom: 16px;
}

.op-connection-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.9rem;
}

.op-connection-name {
    font-weight: 700;
    color: #0d1b2a;
    text-decoration: none;
}

.op-connection-rel {
    font-size: 0.75rem;
    background: #f1f5f9;
    color: #475569;
    padding: 2px 8px;
    border-radius: 10px;
}
.op-connections-list {
    background: transparent;
    padding: 16px 0;
    margin-bottom: 16px;
}

.op-connection-row {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.op-connection-name {
    color: #fff;
}

.op-connection-rel {
    background: rgba(255,255,255,0.1);
    color: #e2e8f0;
}
.op-connection-doc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
.ip-connections-list {
    background: transparent;
    padding: 16px 0;
    margin-bottom: 16px;
}

.ip-connection-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.ip-connection-name {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.ip-connection-rel {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.1);
    color: #e2e8f0;
    padding: 2px 8px;
    border-radius: 10px;
}

.ip-connection-doc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.ip-network-graph {
    width: 100%;
    min-height: 420px;
    background: #0d1b2a;
    border-radius: 8px;
}
/* ═══════════════════════════════════════════════════════════════
   INDEX & DIRECTORY PAGES — SHARED
═══════════════════════════════════════════════════════════════ */

.irehr-index-empty {
    color: #9ca3af;
    font-style: italic;
    text-align: center;
    padding: 48px 0;
}

.irehr-index-filter,
.irehr-dir-toolbar__group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.irehr-index-filter__btn,
.irehr-dir-filter__btn,
.irehr-ind-filter__btn {
    padding: 5px 14px;
    border: 1px solid #dde3ea;
    border-radius: 20px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.irehr-index-filter__btn:hover,
.irehr-dir-filter__btn:hover,
.irehr-ind-filter__btn:hover {
    border-color: #0d1b2a;
    color: #0d1b2a;
}
.irehr-index-filter__btn--active,
.irehr-dir-filter__btn--active,
.irehr-ind-filter__btn--active {
    background: #0d1b2a;
    color: #fff;
    border-color: #0d1b2a;
}

.irehr-dir-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}
.irehr-dir-toolbar__filters { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.irehr-dir-toolbar__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #6b7280; margin-right: 8px; }
.irehr-dir-toolbar__count { font-size: 0.82rem; color: #6b7280; white-space: nowrap; padding-top: 4px; }
.irehr-dir-toolbar__count span { font-weight: 700; color: #0d1b2a; }

.irehr-dir-no-results { color: #9ca3af; font-style: italic; text-align: center; padding: 32px 0; }


/* ═══════════════════════════════════════════════════════════════
   MOVEMENTS INDEX
═══════════════════════════════════════════════════════════════ */

.irehr-movement-group { margin-bottom: 48px; }
.irehr-movement-group__header { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #0d1b2a; }
.irehr-movement-group__name { font-size: 1.2rem; font-weight: 800; color: #0d1b2a; margin: 0 0 4px; }
.irehr-movement-group__desc { font-size: 0.85rem; color: #6b7280; margin: 0; }

.irehr-movement-group__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.irehr-movement-card {
    display: block;
    text-decoration: none;
    border: 1px solid #dde3ea;
    border-top: 3px solid #c0392b;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.15s, border-color 0.15s;
}
.irehr-movement-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-top-color: #e74c3c; }
.irehr-movement-card__inner { padding: 18px; }
.irehr-movement-card__name { font-size: 1rem; font-weight: 800; color: #0d1b2a; margin: 0 0 8px; line-height: 1.3; }
.irehr-movement-card__lede { font-size: 0.85rem; color: #475569; line-height: 1.6; margin: 0 0 12px; }
.irehr-movement-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.irehr-movement-card__variants { font-size: 0.72rem; font-weight: 600; color: #6b7280; background: #f1f5f9; padding: 2px 8px; border-radius: 10px; }
.irehr-movement-card__cta { font-size: 0.78rem; font-weight: 700; color: #c0392b; }


/* ═══════════════════════════════════════════════════════════════
   ORGANIZATION DIRECTORY
═══════════════════════════════════════════════════════════════ */

.irehr-org-directory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px;
}

.irehr-org-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.irehr-org-card:hover { border-color: #0e7c7b; box-shadow: 0 2px 8px rgba(14,124,123,0.08); }

.irehr-org-card__logo { flex-shrink: 0; }
.irehr-org-card__img { width: 48px; height: 48px; object-fit: contain; border-radius: 4px; }
.irehr-org-card__initials {
    width: 48px; height: 48px;
    background: #0d1b2a; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800;
    border-radius: 4px;
}

.irehr-org-card__body { flex: 1; min-width: 0; }
.irehr-org-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
.irehr-org-card__name { font-size: 0.95rem; font-weight: 800; color: #0d1b2a; line-height: 1.3; }
.irehr-org-card__fullname { display: block; font-size: 0.78rem; color: #6b7280; margin-bottom: 4px; }
.irehr-org-card__hq { display: block; font-size: 0.78rem; color: #6b7280; margin-bottom: 6px; }
.irehr-org-card__summary { font-size: 0.82rem; color: #3d3d3d; line-height: 1.55; margin: 6px 0 0; }

.irehr-org-card__status {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 2px 7px; border-radius: 10px; flex-shrink: 0; margin-top: 2px;
}
.irehr-org-card__status--active    { background: #dcfce7; color: #166534; }
.irehr-org-card__status--inactive  { background: #f1f5f9; color: #475569; }
.irehr-org-card__status--dissolved { background: #fee2e2; color: #991b1b; }
.irehr-org-card__status--unknown   { background: #f1f5f9; color: #64748b; }

.irehr-org-card__types { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.irehr-org-card__type {
    font-size: 0.65rem; font-weight: 600; padding: 2px 7px;
    border-radius: 10px; background: #f1f5f9; color: #475569;
}


/* ═══════════════════════════════════════════════════════════════
   INDIVIDUALS DIRECTORY
═══════════════════════════════════════════════════════════════ */

.irehr-ind-directory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
}

.irehr-ind-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.irehr-ind-card:hover { border-color: #b45309; box-shadow: 0 2px 8px rgba(180,83,9,0.08); }

.irehr-ind-card__portrait { flex-shrink: 0; }
.irehr-ind-card__img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.irehr-ind-card__initials {
    width: 48px; height: 48px;
    background: #b45309; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800;
    border-radius: 50%;
}

.irehr-ind-card__body { flex: 1; min-width: 0; }
.irehr-ind-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
.irehr-ind-card__name { font-size: 0.95rem; font-weight: 800; color: #0d1b2a; line-height: 1.3; }
.irehr-ind-card__role { display: block; font-size: 0.8rem; color: #6b7280; margin-bottom: 4px; }
.irehr-ind-card__summary { font-size: 0.82rem; color: #3d3d3d; line-height: 1.55; margin: 6px 0 0; }

.irehr-ind-card__status {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 2px 7px; border-radius: 10px; flex-shrink: 0; margin-top: 2px;
}
.irehr-ind-card__status--active   { background: #dcfce7; color: #166534; }
.irehr-ind-card__status--inactive { background: #f1f5f9; color: #475569; }
.irehr-ind-card__status--deceased { background: #f1f5f9; color: #64748b; }

.irehr-ind-card__types { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.irehr-ind-card__type {
    font-size: 0.65rem; font-weight: 600; padding: 2px 7px;
    border-radius: 10px; background: #fef3c7; color: #92400e;
}

@media (max-width: 600px) {
    .irehr-org-directory,
    .irehr-ind-directory,
    .irehr-movement-group__cards { grid-template-columns: 1fr; }
    .irehr-dir-toolbar { flex-direction: column; }
}
.irehr-movement-group__cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 16px !important;
}
.irehr-movement-card__inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
}

.irehr-movement-card__name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.3;
}

.irehr-movement-card__lede {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
}

.irehr-movement-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.irehr-movement-card__cta {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c0392b;
    margin-top: auto;
}
/* ── Directory A–Z Nav ───────────────────────────────────────── */
.irehr-dir-az-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 20px 0 28px;
}
.irehr-dir-az-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
a.irehr-dir-az-nav__link {
    background: #0d1b2a !important;
    color: #fff !important;
}
a.irehr-dir-az-nav__link:hover { background: #0e7c7b !important; }
.irehr-dir-az-nav__link--empty {
    color: #d1d5db;
    cursor: default;
    font-weight: 400;
}

/* ── Directory Letter Groups ─────────────────────────────────── */
.irehr-dir-letter-group {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
}
.irehr-dir-letter-heading {
    font-size: 1.6rem;
    font-weight: 900;
    color: #cbd5e1;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 16px;
    line-height: 1;
}
.irehr-org-directory__grid,
.irehr-ind-directory__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px;
}
/* ── Directory Search Box ────────────────────────────────────── */
.irehr-dir-search {
    margin-bottom: 16px;
}
.irehr-dir-search__input {
    width: 100%;
    max-width: 420px;
    padding: 9px 16px 9px 40px;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 12px center;
    transition: border-color 0.15s;
}
.irehr-dir-search__input:focus {
    outline: none;
    border-color: #0d1b2a;
}
/* ═══════════════════════════════════════════════════════════════
   REPORTS INDEX
═══════════════════════════════════════════════════════════════ */
.irehr-reports-index {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.irehr-report-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.irehr-report-card:hover { border-color: #0d1b2a; box-shadow: 0 2px 8px rgba(13,27,42,0.08); }

.irehr-report-card__cover { flex-shrink: 0; }
.irehr-report-card__img { width: 80px; height: auto; border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }

.irehr-report-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.irehr-report-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.irehr-report-card__type {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; padding: 2px 8px; border-radius: 10px;
}
.irehr-report-card__type--flagship  { background: #0d1b2a; color: #fff; }
.irehr-report-card__type--program   { background: #eff6ff; color: #1d4ed8; }
.irehr-report-card__type--brief     { background: #f0fdf4; color: #166534; }
.irehr-report-card__type--data      { background: #fefce8; color: #713f12; }
.irehr-report-card__date { font-size: 0.78rem; color: #6b7280; }
.irehr-report-card__title { font-size: 1rem; font-weight: 800; color: #0d1b2a; line-height: 1.3; }
.irehr-report-card__subtitle { font-size: 0.88rem; color: #475569; line-height: 1.4; }
.irehr-report-card__authors { font-size: 0.78rem; color: #6b7280; }
.irehr-report-card__summary { font-size: 0.85rem; color: #3d3d3d; line-height: 1.6; margin: 0; }
.irehr-report-card__cta { font-size: 0.78rem; font-weight: 700; color: #0d1b2a; margin-top: 4px; }

.irehr-rpt-filter__btn {
    padding: 5px 14px; border: 1px solid #dde3ea; border-radius: 20px;
    background: #fff; font-size: 0.78rem; font-weight: 600; color: #475569; cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.irehr-rpt-filter__btn:hover { border-color: #0d1b2a; color: #0d1b2a; }
.irehr-rpt-filter__btn--active { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }


/* ═══════════════════════════════════════════════════════════════
   ISSUES INDEX
═══════════════════════════════════════════════════════════════ */
.irehr-issue-group { margin-bottom: 40px; }
.irehr-issue-group__header { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #0d1b2a; }
.irehr-issue-group__name { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; margin: 0 0 4px; }
.irehr-issue-group__desc { font-size: 0.82rem; color: #6b7280; margin: 0; }

.irehr-issue-group__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.irehr-issue-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.irehr-issue-card:hover { border-color: #c0392b; box-shadow: 0 2px 8px rgba(192,57,43,0.08); }
.irehr-issue-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.irehr-issue-card__title { font-size: 0.95rem; font-weight: 800; color: #0d1b2a; line-height: 1.3; flex: 1; }
.irehr-issue-card__dot {
    width: 8px; height: 8px; border-radius: 50%; background: #166534;
    flex-shrink: 0; margin-top: 5px;
}
.irehr-issue-card__types { display: flex; flex-wrap: wrap; gap: 4px; }
.irehr-issue-card__type { font-size: 0.65rem; font-weight: 600; padding: 2px 7px; border-radius: 10px; background: #f1f5f9; color: #475569; }
.irehr-issue-card__summary { font-size: 0.82rem; color: #3d3d3d; line-height: 1.55; margin: 0; }
.irehr-issue-card__updated { font-size: 0.72rem; color: #9ca3af; margin-top: auto; }

.irehr-iss-filter__btn {
    padding: 5px 14px; border: 1px solid #dde3ea; border-radius: 20px;
    background: #fff; font-size: 0.78rem; font-weight: 600; color: #475569; cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.irehr-iss-filter__btn:hover { border-color: #0d1b2a; color: #0d1b2a; }
.irehr-iss-filter__btn--active { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }
.irehr-iss-filter__count { font-size: 0.7rem; opacity: 0.7; }


/* ═══════════════════════════════════════════════════════════════
   DATA INDEX
═══════════════════════════════════════════════════════════════ */
.irehr-data-index {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
}

.irehr-data-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border: 1px solid #dde3ea;
    border-top: 3px solid #b45309;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.irehr-data-card:hover { border-top-color: #92400e; box-shadow: 0 2px 8px rgba(180,83,9,0.08); }
.irehr-data-card__eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #b45309; }
.irehr-data-card__title { font-size: 0.95rem; font-weight: 800; color: #0d1b2a; line-height: 1.3; }
.irehr-data-card__summary { font-size: 0.82rem; color: #3d3d3d; line-height: 1.55; margin: 0; }
.irehr-data-card__footer { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.irehr-data-card__source, .irehr-data-card__updated { font-size: 0.72rem; color: #9ca3af; }
.irehr-data-card__types { display: flex; flex-wrap: wrap; gap: 4px; }
.irehr-data-card__type { font-size: 0.65rem; font-weight: 600; padding: 2px 7px; border-radius: 10px; background: #fef3c7; color: #92400e; }

.irehr-data-filter__btn {
    padding: 5px 14px; border: 1px solid #dde3ea; border-radius: 20px;
    background: #fff; font-size: 0.78rem; font-weight: 600; color: #475569; cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.irehr-data-filter__btn:hover { border-color: #0d1b2a; color: #0d1b2a; }
.irehr-data-filter__btn--active { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }

@media (max-width: 600px) {
    .irehr-report-card { flex-direction: column; }
    .irehr-issue-group__cards,
    .irehr-data-index { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════════════════
   ARCHIVE INDEX
═══════════════════════════════════════════════════════════════ */
.irehr-archive-index {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.irehr-archive-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.irehr-archive-card:hover { border-color: #475569; box-shadow: 0 2px 8px rgba(71,85,105,0.08); }

.irehr-archive-card__type {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; padding: 2px 8px; border-radius: 10px;
    align-self: flex-start;
    background: #f1f5f9; color: #475569;
}
.irehr-archive-card__type--legal     { background: #eff6ff; color: #1d4ed8; }
.irehr-archive-card__type--internal  { background: #fee2e2; color: #991b1b; }
.irehr-archive-card__type--report    { background: #f0fdf4; color: #166534; }
.irehr-archive-card__type--newsletter{ background: #fefce8; color: #713f12; }

.irehr-archive-card__title { font-size: 0.92rem; font-weight: 700; color: #0d1b2a; line-height: 1.35; }
.irehr-archive-card__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.irehr-archive-card__source { font-size: 0.78rem; color: #475569; }
.irehr-archive-card__year  { font-size: 0.78rem; color: #9ca3af; }
.irehr-archive-card__pages { font-size: 0.72rem; color: #9ca3af; }
.irehr-archive-card__collections { display: flex; flex-wrap: wrap; gap: 4px; margin-top: auto; }
.irehr-archive-card__collection {
    font-size: 0.65rem; font-weight: 600; padding: 2px 7px;
    border-radius: 10px; background: #f8f9fb; color: #6b7280;
    border: 1px solid #e2e8f0;
}
.irehr-archive-card__cta { font-size: 0.75rem; font-weight: 700; color: #475569; }

.irehr-arc-filter__btn {
    padding: 5px 14px; border: 1px solid #dde3ea; border-radius: 20px;
    background: #fff; font-size: 0.78rem; font-weight: 600; color: #475569; cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.irehr-arc-filter__btn:hover { border-color: #0d1b2a; color: #0d1b2a; }
.irehr-arc-filter__btn--active { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }


/* ═══════════════════════════════════════════════════════════════
   PROGRAMS INDEX
═══════════════════════════════════════════════════════════════ */
.irehr-program-group { margin-bottom: 40px; }
.irehr-program-group__header { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #0d1b2a; }
.irehr-program-group__name { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; margin: 0 0 4px; }
.irehr-program-group__desc { font-size: 0.82rem; color: #6b7280; margin: 0; }

.irehr-program-group__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.irehr-program-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.irehr-program-card:hover { border-color: #0e7c7b; box-shadow: 0 2px 8px rgba(14,124,123,0.08); }

.irehr-program-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.irehr-program-card__name { font-size: 0.95rem; font-weight: 800; color: #0d1b2a; line-height: 1.3; flex: 1; }
.irehr-program-card__status {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 2px 7px; border-radius: 10px; flex-shrink: 0;
}
.irehr-program-card__status--active    { background: #dcfce7; color: #166534; }
.irehr-program-card__status--paused    { background: #fefce8; color: #713f12; }
.irehr-program-card__status--planned   { background: #eff6ff; color: #1d4ed8; }
.irehr-program-card__status--completed { background: #f1f5f9; color: #475569; }

.irehr-program-card__dates { font-size: 0.75rem; color: #6b7280; }
.irehr-program-card__types { display: flex; flex-wrap: wrap; gap: 4px; }
.irehr-program-card__type { font-size: 0.65rem; font-weight: 600; padding: 2px 7px; border-radius: 10px; background: #f1f5f9; color: #475569; }
.irehr-program-card__summary { font-size: 0.82rem; color: #3d3d3d; line-height: 1.55; margin: 0; }
.irehr-program-card__cta { font-size: 0.75rem; font-weight: 700; color: #0e7c7b; margin-top: auto; }

.irehr-prg-filter__btn {
    padding: 5px 14px; border: 1px solid #dde3ea; border-radius: 20px;
    background: #fff; font-size: 0.78rem; font-weight: 600; color: #475569; cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.irehr-prg-filter__btn:hover { border-color: #0d1b2a; color: #0d1b2a; }
.irehr-prg-filter__btn--active { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }
.irehr-prg-filter__count { font-size: 0.7rem; opacity: 0.7; }

@media (max-width: 600px) {
    .irehr-archive-index,
    .irehr-program-group__cards { grid-template-columns: 1fr; }
}
/* ── Header Donate Button ──────────────────────────────── */
.header-button-wrap a,
.header-button-wrap a:visited {
    background-color: #c0392b !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.header-button-wrap a:hover {
    background-color: #9a2d22 !important;
    color: #ffffff !important;
}
/* ── Global Footer ─────────────────────────────────────────────────────────── */
.irehr-global-footer {
    background-color: #0d1b2a;
    color: #e8edf2;
    padding: 60px 0 0;
    margin-top: 60px;
    font-size: 14px;
}

.irehr-global-footer__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.irehr-global-footer__logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.irehr-global-footer__tagline {
    color: #a0b0c0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.irehr-global-footer__press-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a0b0c0;
    margin-bottom: 6px;
}

.irehr-global-footer__press-email {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.irehr-global-footer__press-email:hover {
    color: #a0b0c0 !important;
}

.irehr-global-footer__press-note {
    color: #a0b0c0;
    font-size: 13px;
    line-height: 1.6;
}

.irehr-global-footer__press-note a {
    color: #a0b0c0 !important;
    text-decoration: underline;
}

.irehr-global-footer__col-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a0b0c0;
    margin-bottom: 16px;
}

.irehr-global-footer__col a {
    display: block;
    color: #e8edf2 !important;
    text-decoration: none !important;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.irehr-global-footer__col a:hover {
    color: #a0b0c0 !important;
}

.irehr-global-footer__bottom {
    max-width: 100%;
    margin: 48px auto 0;
    padding: 20px 40px;
    border-top: 1px solid #1a3a5c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.irehr-global-footer__legal {
    color: #a0b0c0;
    font-size: 13px;
}

.irehr-global-footer__legal a {
    color: #a0b0c0 !important;
    text-decoration: none;
}

.irehr-global-footer__legal a:hover {
    color: #ffffff !important;
}

/* ── Footer responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .irehr-global-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .irehr-global-footer__brand {
        grid-column: 1 / -1;
    }
    .irehr-global-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .irehr-global-footer__inner {
        grid-template-columns: 1fr;
    }
}
/* ── A-Z Nav — active letter highlight ─────────────────────────────────────── */
.glossary-az-nav__link:target,
.glossary-az-nav__link.active,
.irehr-index__az-link:target,
.irehr-index__az-link.active {
    color: #c0392b !important;
    font-weight: 700;
}

/* ── Index pages shared styles ──────────────────────────────────────────────── */
.irehr-index__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.irehr-index__filter-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
}
.irehr-index__filter-btn--active {
    background: #0d1b2a;
    color: #fff;
    border-color: #0d1b2a;
}
.irehr-index__search-wrap {
    margin-bottom: 20px;
}
.irehr-index__search {
    width: 100%;
    max-width: 400px;
    padding: 8px 14px;
    font-size: 14px;
    border: 1px solid #dde3ea;
    border-radius: 6px;
}
.irehr-index__az-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 32px;
}
.irehr-index__az-link {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    background: #f4f6f9;
    color: #0d1b2a;
    text-decoration: none;
}
.irehr-index__az-link--empty {
    color: #a0b0c0;
    background: transparent;
}
.irehr-index__az-link:hover:not(.irehr-index__az-link--empty) {
    background: #c0392b;
    color: #fff;
}
.irehr-index__letter-header {
    font-size: 22px;
    font-weight: 800;
    color: #dde3ea;
    padding: 16px 0 8px;
    border-bottom: 1px solid #dde3ea;
    margin-bottom: 16px;
}
.irehr-index__entry {
    padding: 16px 0;
    border-bottom: 1px solid #f4f6f9;
}
.irehr-index__entry-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.irehr-index__entry-title {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b2a !important;
    text-decoration: none !important;
}
.irehr-index__entry-title:hover {
    color: #c0392b !important;
}
.irehr-index__entry-aka,
.irehr-index__entry-role,
.irehr-index__entry-meta {
    font-size: 13px;
    color: #a0b0c0;
    margin-bottom: 6px;
}
.irehr-index__entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}
.irehr-index__entry-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    background: #f4f6f9;
    color: #475569;
}
.irehr-index__entry-summary {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 4px 0 0;
}
.irehr-index__status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.irehr-index__status-badge--active    { background: #dcfce7; color: #166534; }
.irehr-index__status-badge--inactive  { background: #f4f6f9; color: #475569; }
.irehr-index__status-badge--defunct   { background: #fee2e2; color: #991b1b; }
.irehr-index__status-badge--deceased  { background: #f4f6f9; color: #475569; }
.irehr-index__status-badge--developing { background: #fef3c7; color: #92400e; }
.irehr-index__status-badge--historical { background: #f4f6f9; color: #475569; }

/* Glossary search */
.glossary-search-wrap {
    margin-bottom: 20px;
}
.glossary-search {
    width: 100%;
    max-width: 400px;
    padding: 8px 14px;
    font-size: 14px;
    border: 1px solid #dde3ea;
    border-radius: 6px;
}
/* ── Index pages — consistent with glossary styling ───────────────────────── */
.irehr-index__az-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 28px;
}
.irehr-index__az-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    background: #0d1b2a;
    color: #fff;
}
.irehr-index__az-link--empty {
    background: transparent;
    color: #d1d5db;
    cursor: default;
    font-weight: 400;
}
.irehr-index__az-link:hover:not(.irehr-index__az-link--empty) {
    background: #c0392b;
    color: #fff;
}
.irehr-index__az-link.active {
    background: #c0392b !important;
    color: #fff !important;
}
.irehr-index__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dde3ea;
}
.irehr-index__filter-btn {
    padding: 5px 14px;
    border: 1px solid #dde3ea;
    border-radius: 20px;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.irehr-index__filter-btn:hover { border-color: #0d1b2a; color: #0d1b2a; }
.irehr-index__filter-btn--active { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }
.irehr-index__search-wrap {
    margin-bottom: 20px;
}
.irehr-index__search,
.glossary-search {
    width: 100%;
    max-width: 400px;
    padding: 8px 14px;
    font-size: 0.85rem;
    border: 1px solid #dde3ea;
    border-radius: 6px;
}
.irehr-index__letter-group { margin-bottom: 48px; }
.irehr-index__letter-header {
    font-size: 2rem;
    font-weight: 900;
    color: #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 20px;
    line-height: 1;
}
.irehr-index__entry {
    padding: 16px 0;
    border-bottom: 1px solid #f0f4f8;
}
.irehr-index__entry:last-child { border-bottom: none; }
.irehr-index__entry-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.irehr-index__entry-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0d1b2a !important;
    text-decoration: none !important;
}
.irehr-index__entry-title:hover { color: #c0392b !important; }
.irehr-index__entry-aka,
.irehr-index__entry-role,
.irehr-index__entry-meta {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 6px;
}
.irehr-index__entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}
.irehr-index__entry-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 9px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
}
.irehr-index__entry-summary {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.75;
    margin: 4px 0 0;
}
.irehr-index__status-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.irehr-index__status-badge--active     { background: #f0fdf4; color: #166534; }
.irehr-index__status-badge--inactive   { background: #f1f5f9; color: #475569; }
.irehr-index__status-badge--defunct    { background: #fee2e2; color: #991b1b; }
.irehr-index__status-badge--deceased   { background: #f1f5f9; color: #475569; }
.irehr-index__status-badge--developing { background: #fefce8; color: #713f12; }
.irehr-index__status-badge--historical { background: #f1f5f9; color: #475569; }
.index-empty { color: #9ca3af; font-style: italic; text-align: center; padding: 40px 0; }

/* ── A-Z active letter on click ─────────────────────────────────────────────── */
.glossary-az-nav__link.active {
    background: #c0392b !important;
    color: #fff !important;
}

@media (max-width: 600px) {
    .irehr-index__az-link { width: 28px; height: 28px; font-size: 0.78rem; }
}
/* ── Archive index dual filters ─────────────────────────────────────────────── */
.irehr-index__filters--collections,
.irehr-index__filters--years {
    padding-bottom: 12px;
    border-bottom: none;
}
.irehr-index__filters--years {
    margin-bottom: 32px;
    border-bottom: 1px solid #dde3ea;
}
.irehr-index__filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #a0b0c0;
    align-self: center;
    margin-right: 4px;
}
/* ── Financial Section ──────────────────────────────────────────────────────── */
.op-financials { margin: 24px 0; }
.op-financials__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.op-metric-card {
    display: flex;
    flex-direction: column;
    background: #f4f6f9;
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 160px;
    flex: 1;
}
.op-metric-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #a0b0c0;
    margin-bottom: 6px;
}
.op-metric-card__value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1;
    margin-bottom: 4px;
}
.op-metric-card__year {
    font-size: 0.75rem;
    color: #a0b0c0;
}
.op-financials__chart {
    margin: 24px 0;
    max-height: 280px;
}
.op-financials__filings-toggle {
    margin: 16px 0;
    font-size: 0.85rem;
}
.op-financials__filings-toggle summary {
    cursor: pointer;
    color: #0d1b2a;
    font-weight: 600;
    padding: 8px 0;
}
.op-financials__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-top: 12px;
}
.op-financials__table th {
    text-align: left;
    padding: 8px 12px;
    background: #f4f6f9;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
}
.op-financials__table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f4f8;
    color: #1a1a1a;
}
.op-financials__propublica-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #0d1b2a;
    text-decoration: underline;
}
.op-financials__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 2px solid #dde3ea;
}
.op-financials__tab {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;
    color: #475569;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.op-financials__tab--active {
    color: #0d1b2a;
    border-bottom-color: #c0392b;
}
/* ── Social media tracker section ─────────────────────────── */
.op-social-wrap { margin-bottom: 32px; }
.op-social__stale-notice { font-size: 0.82rem; color: #92400e; background: #fef3c7; padding: 8px 12px; border-radius: 6px; margin-bottom: 12px; }
.op-social__demo-notice { font-size: 0.82rem; color: #475569; background: #f1f5f9; padding: 8px 12px; border-radius: 6px; margin-bottom: 12px; }

/* Toolbar */
.op-social-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.op-social-toolbar__right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.op-social-live-badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #166534; background: #dcfce7; padding: 3px 10px; border-radius: 12px; }
.op-social-range-label { font-size: 0.78rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.04em; }
.op-social-range { font-size: 0.82rem; padding: 4px 8px; border: 1px solid #dde3ea; border-radius: 6px; background: #fff; color: #0d1b2a; cursor: pointer; }
.op-social-btn { font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border: 1px solid #dde3ea; border-radius: 6px; background: #fff; color: #0d1b2a; cursor: pointer; letter-spacing: 0.03em; }
.op-social-btn:hover { background: #f1f5f9; }

/* Metric cards */
.op-social-cards { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.op-social-metric-card { padding: 14px 18px; border: 1px solid #dde3ea; border-radius: 8px; background: #fff; cursor: pointer; min-width: 120px; transition: border-color 0.15s, box-shadow 0.15s; border-top: 3px solid #dde3ea; }
.op-social-metric-card[data-platform="__total__"] { border-top-color: #0e7c7b; }
.op-social-metric-card:not([data-platform="__total__"]) { border-top-color: var(--card-color, #dde3ea); }
.op-social-metric-card:hover { border-color: #b0c0d0; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.op-social-metric-card--active { border-color: #0d1b2a !important; box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important; }
.op-social-metric-card__header { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.op-social-metric-card__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; }
.op-social-metric-card__value { font-size: 1.5rem; font-weight: 800; color: #0d1b2a; line-height: 1.1; margin-bottom: 3px; }
.op-social-metric-card__delta { font-size: 0.8rem; font-weight: 600; color: #6b7280; }
.op-social-metric-card__sub { font-size: 0.72rem; color: #9ca3af; margin-top: 2px; }
.op-social-delta--pos { color: #166534; }
.op-social-delta--neg { color: #991b1b; }

/* Chart */
.op-social-chart-wrap { background: #fff; border: 1px solid #dde3ea; border-radius: 8px; padding: 18px 20px 14px; margin-bottom: 16px; }
.op-social-chart-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7280; margin-bottom: 12px; }
.op-social-chart-area { height: 200px; }

/* History log */
.op-social-history { border: 1px solid #dde3ea; border-radius: 8px; overflow: hidden; }
.op-social-history__toggle { width: 100%; text-align: left; padding: 12px 16px; background: #f8fafc; border: none; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #0d1b2a; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.op-social-history__toggle:hover { background: #f1f5f9; }
.op-social-history__chevron { font-size: 0.7rem; color: #6b7280; }
.op-social-history__body { overflow-x: auto; }
.op-social-log-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.op-social-log-table th { padding: 8px 12px; background: #f8fafc; font-weight: 700; text-align: left; border-bottom: 2px solid #dde3ea; white-space: nowrap; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: #6b7280; }
.op-social-log-table td { padding: 7px 12px; border-bottom: 1px solid #f0f4f8; color: #0d1b2a; white-space: nowrap; }
.op-social-log-table tr:last-child td { border-bottom: none; }
.op-social-log-table tr:hover td { background: #f8fafc; }
.op-log-platform-badge { display: inline-block; padding: 2px 8px; border-radius: 10px; color: #fff; font-size: 0.7rem; font-weight: 700; }
.op-log-change--pos { color: #166534; font-weight: 700; }
.op-log-change--neg { color: #991b1b; font-weight: 700; }
.op-social-metric-card .op-sm-badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 7px;
    border-radius: 10px;
    display: inline-block;
    line-height: 1.4;
}
.op-social-metric-card .op-sm-badge--active     { background: #dcfce7; color: #166534; }
.op-social-metric-card .op-sm-badge--suspended  { background: #fef3c7; color: #92400e; }
.op-social-metric-card .op-sm-badge--deleted    { background: #fee2e2; color: #991b1b; }
.op-social-metric-card .op-sm-badge--restricted { background: #f1f5f9; color: #475569; }
.op-social-metric-card .op-sm-badge--unknown    { background: #f1f5f9; color: #64748b; }
/* ── Timeline ──────────────────────────────────────────────── */
.irehr-timeline {
    position: relative;
    padding: 4px 0;
    margin-top: 8px;
}
.irehr-timeline::before {
    content: '';
    position: absolute;
    left: 65px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dde3ea;
    z-index: 0;
}
.irehr-timeline__entry {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
}
.irehr-timeline__entry:last-child {
    margin-bottom: 0;
}
.irehr-timeline__year {
    flex-shrink: 0;
    width: 44px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6b7280;
    padding-top: 2px;
    text-align: right;
}
.irehr-timeline__dot {
    flex-shrink: 0;
    width: 18px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
    position: relative;
    z-index: 1;
    margin: 0 12px;
}
.irehr-timeline__dot::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0e7c7b;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #0e7c7b;
    display: block;
}
.irehr-timeline__body {
    flex: 1;
    padding-top: 0;
}
.irehr-timeline__description {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d1b2a;
    margin: 0 0 3px;
    line-height: 1.4;
}
.irehr-timeline__source {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
}
.irehr-timeline__source:hover {
    color: #0e7c7b;
    text-decoration: underline;
}
/* Action block button — org profile */
.single-organization_profile .ip-btn--primary {
    background: #c0392b;
    color: #fff;
}
.single-organization_profile .ip-btn--secondary {
    background: #0d1b2a;
    color: #fff;
}
/* ── Landscape Map ─────────────────────────────────────────── */
.lmap-wrap { position: relative; }

/* Stats bar */
.lmap-stats { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.82rem; color: #6b7280; margin-bottom: 12px; }
.lmap-stats__sep { color: #dde3ea; }
.lmap-stats strong { color: #0d1b2a; }
.lmap-stats__csv { margin-left: auto; font-size: 0.78rem; font-weight: 700; color: #0e7c7b; text-decoration: none; border: 1px solid #0e7c7b; padding: 3px 10px; border-radius: 6px; }
.lmap-stats__csv:hover { background: #0e7c7b; color: #fff; }

/* Filter toolbar */
.lmap-filters { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; padding: 14px 16px; background: #f8fafc; border: 1px solid #dde3ea; border-radius: 8px; }
.lmap-filter-group { display: flex; flex-direction: column; gap: 4px; min-width: 160px; }
.lmap-filter-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; }
.lmap-filter-select { font-size: 0.82rem; padding: 6px 10px; border: 1px solid #dde3ea; border-radius: 6px; background: #fff; color: #0d1b2a; cursor: pointer; }
.lmap-filter-reset { align-self: flex-end; font-size: 0.78rem; font-weight: 700; padding: 6px 14px; border: 1px solid #dde3ea; border-radius: 6px; background: #fff; color: #6b7280; cursor: pointer; white-space: nowrap; }
.lmap-filter-reset:hover { background: #f1f5f9; color: #0d1b2a; }

/* Map container */
.lmap-container { height: 600px; border-radius: 8px; border: 1px solid #dde3ea; overflow: hidden; margin-bottom: 12px; z-index: 0; position: relative; }

/* Pin styles */
.lmap-pin { border-radius: 50%; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.lmap-pin--hq { width: 14px; height: 14px; border-radius: 50%; }
.lmap-pin--chapter { width: 12px; height: 12px; border-radius: 2px; }

/* Cluster styles */
.lmap-cluster { display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 800; color: #fff; background: #0d1b2a; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.lmap-cluster--sm { width: 32px; height: 32px; font-size: 0.78rem; }
.lmap-cluster--md { width: 40px; height: 40px; font-size: 0.85rem; }
.lmap-cluster--lg { width: 50px; height: 50px; font-size: 0.95rem; }

/* Popup */
.lmap-popup { font-size: 0.82rem; line-height: 1.5; min-width: 220px; }
.lmap-popup__type { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; margin-bottom: 4px; }
.lmap-popup__name { font-size: 1rem; font-weight: 700; color: #0d1b2a; margin-bottom: 6px; }
.lmap-popup__name a { color: #0d1b2a; text-decoration: none; }
.lmap-popup__name a:hover { color: #0e7c7b; }
.lmap-popup__meta { margin-bottom: 6px; }
.lmap-popup__badge { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; padding: 2px 7px; border-radius: 10px; }
.lmap-popup__badge--active { background: #dcfce7; color: #166534; }
.lmap-popup__badge--inactive, .lmap-popup__badge--dissolved { background: #fee2e2; color: #991b1b; }
.lmap-popup__badge--unknown { background: #f1f5f9; color: #6b7280; }
.lmap-popup__row { color: #374151; margin-bottom: 2px; }
.lmap-popup__row strong { color: #0d1b2a; }
.lmap-popup__link { display: inline-block; margin-top: 8px; font-size: 0.78rem; font-weight: 700; color: #0e7c7b; text-decoration: none; }
.lmap-popup__link:hover { text-decoration: underline; }

/* Legend */
.lmap-legend { background: #fff; border: 1px solid #dde3ea; border-radius: 8px; padding: 14px 16px; margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.lmap-legend__title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; width: 100%; margin-bottom: 4px; }
.lmap-legend__item { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 0.8rem; color: #374151; }
.lmap-legend__item:hover .lmap-legend__label { color: #0e7c7b; }
.lmap-legend__dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.lmap-legend__hq { color: #0d1b2a; font-size: 1rem; line-height: 1; }
.lmap-legend__ch { color: #0d1b2a; font-size: 0.9rem; line-height: 1; }
.lmap-legend__divider { width: 1px; height: 20px; background: #dde3ea; margin: 0 4px; }
.lmap-legend__label { font-size: 0.78rem; }

/* Result count */
.lmap-result-count { font-size: 0.8rem; color: #6b7280; margin-bottom: 8px; min-height: 1.2em; }

/* Methodology note */
.lmap-methodology { font-size: 0.78rem; color: #6b7280; padding: 12px 16px; background: #f8fafc; border: 1px solid #dde3ea; border-radius: 6px; line-height: 1.6; }
.lmap-methodology a { color: #0e7c7b; }
/* Leaflet choropleth tooltip */
.leaflet-tooltip {
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: #0d1b2a;
    font-size: 0.82rem;
    padding: 6px 10px;
}
.leaflet-tooltip::before {
    display: none;
}/* Remove Leaflet focus outline on GeoJSON layers */
.leaflet-interactive:focus {
    outline: none;
}
/* ── Chapters map ──────────────────────────────────────────── */
.op-chapters { margin-bottom: 8px; }
.op-chapters__meta { font-size: 0.82rem; color: #6b7280; margin: -8px 0 16px; }
.op-chapters__map { height: 320px; border-radius: 8px; border: 1px solid #dde3ea; margin-bottom: 20px; }
.op-chapters__map-pending { font-size: 0.82rem; color: #6b7280; font-style: italic; padding: 12px 0; margin-bottom: 16px; }
.op-chapter-pin { width: 14px; height: 14px; border-radius: 3px; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.op-chapters__list { display: flex; flex-direction: column; gap: 0; }
.op-chapter-row { display: flex; align-items: center; gap: 16px; padding: 10px 0; border-bottom: 1px solid #f0f4f8; flex-wrap: wrap; }
.op-chapter-row:last-child { border-bottom: none; }
.op-chapter-row__name { font-weight: 600; color: #0d1b2a; font-size: 0.9rem; min-width: 160px; }
.op-chapter-row__city { font-size: 0.85rem; color: #374151; }
.op-chapter-row__since { font-size: 0.75rem; color: #9ca3af; margin-left: auto; }
.op-chapter-row__status { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 10px; }
.op-chapter-status--active   { background: #dcfce7; color: #166534; }
.op-chapter-status--inactive { background: #fee2e2; color: #991b1b; }
.op-chapter-status--unknown  { background: #f1f5f9; color: #6b7280; }
.op-chapter-row--highlighted { background: #f0fafa; border-radius: 6px; padding-left: 8px; padding-right: 8px; }
.op-chapter-row--highlighted .op-chapter-row__name { color: #0e7c7b; }
/* ── vis.js Network Graph ──────────────────────────────────── */
.op-network-graph,
.ip-network-graph,
.vp-network-graph {
    width: 100%;
    height: 400px;
    background: #0d1b2a;
    border-radius: 8px;
    margin-bottom: 16px;
}
/* ── Fix post type content container constraints ─────────────────────────── */
.single-organization_profile .content-container,
.single-organization_profile .content-wrap,
.single-individual_profile .content-container,
.single-individual_profile .content-wrap,
.single-movement .content-container,
.single-movement .content-wrap,
.single-movement_variant .content-container,
.single-movement_variant .content-wrap,
.single-program .content-container,
.single-program .content-wrap,
.single-issue .content-container,
.single-issue .content-wrap,
.single-irehr_report .content-container,
.single-irehr_report .content-wrap,
.single-irehr_data .content-container,
.single-irehr_data .content-wrap,
.single-archive_document .content-container,
.single-archive_document .content-wrap,
.single-variant_profile .content-container,
.single-variant_profile .content-wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}/* ── Force Row Layouts to fill available width on post type pages ─────────── */
.single-organization_profile .kb-row-layout-wrap,
.single-individual_profile .kb-row-layout-wrap,
.single-movement .kb-row-layout-wrap,
.single-movement_variant .kb-row-layout-wrap,
.single-program .kb-row-layout-wrap,
.single-issue .kb-row-layout-wrap,
.single-irehr_report .kb-row-layout-wrap,
.single-irehr_data .kb-row-layout-wrap,
.single-archive_document .kb-row-layout-wrap,
.single-variant_profile .kb-row-layout-wrap {
    width: 100% !important;
    max-width: 100% !important;
}

.single-organization_profile .kt-row-column-wrap,
.single-individual_profile .kt-row-column-wrap,
.single-movement .kt-row-column-wrap,
.single-movement_variant .kt-row-column-wrap,
.single-program .kt-row-column-wrap,
.single-issue .kt-row-column-wrap,
.single-irehr_report .kt-row-column-wrap,
.single-irehr_data .kt-row-column-wrap,
.single-archive_document .kt-row-column-wrap,
.single-variant_profile .kt-row-column-wrap {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    box-sizing: border-box;
}
.single-organization_profile .entry-content.element-single-replace {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.single-organization_profile .kt-row-column-wrap {
    max-width: 1200px !important;
}
.single-organization_profile .kt-row-column-wrap.kb-theme-content-width {
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}
.single-organization_profile .content-wrap {
    padding-top: 0 !important;
}
/* ── Org profile hero — logo column background + gap fixes ── */

/* Remove white gap above hero */
.single-organization_profile #inner-wrap,
.single-organization_profile .content-area,
.single-organization_profile #main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Force logo column (first column in hero row) to match navy background */
.single-organization_profile .kb-row-layout-id632_1e3719-f6 
    .kadence-column632_d93dec-69 {
    background-color: #0d1b2a !important;
}

/* Make logo column fill full height of the row */
.single-organization_profile .kb-row-layout-id632_1e3719-f6 
    .kadence-column632_d93dec-69 .kt-inside-inner-col {
    background-color: #0d1b2a !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px !important;
}
.single-movement .content-wrap,
.single-organization_profile .content-wrap,
.single-individual_profile .content-wrap,
.single-movement_variant .content-wrap,
.single-program .content-wrap,
.single-issue .content-wrap,
.single-irehr_report .content-wrap,
.single-irehr_data .content-wrap,
.single-archive_document .content-wrap,
.single-variant_profile .content-wrap {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* Remove Kadence default content-area top margin on post type pages */
.single-organization_profile .content-area,
.single-individual_profile .content-area,
.single-movement .content-area,
.single-movement_variant .content-area,
.single-program .content-area,
.single-issue .content-area,
.single-irehr_report .content-area,
.single-irehr_data .content-area,
.single-archive_document .content-area,
.single-variant_profile .content-area {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* Remove gap between header and hero on post type pages */
.single-organization_profile header.site-header,
.single-individual_profile header.site-header,
.single-movement header.site-header,
.single-movement_variant header.site-header,
.single-program header.site-header,
.single-issue header.site-header,
.single-irehr_report header.site-header,
.single-irehr_data header.site-header,
.single-archive_document header.site-header,
.single-variant_profile header.site-header {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}
/* ── Remove content-area top margin on specific pages ── */
.page-id-819 .content-area,
.page-id-814 .content-area,
.page-id-419 .content-area,
.page-id-811 .content-area,
.page-id-340 .content-area,
.page-id-395 .content-area,
.page-id-777 .content-area,
.page-id-781 .content-area,
.page-id-783 .content-area,
.page-id-779 .content-area,
.page-id-822 .content-area,
.page-id-808 .content-area,
.page-id-374 .content-area,
.page-id-360 .content-area {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* Statewide diamond marker — rotated square with forced sharp corners */
.lmap-pin--statewide {
    width: 14px !important;
    height: 14px !important;
    border-radius: 0 !important;
    transform: rotate(45deg);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1.5px rgba(0,0,0,0.35);
}

/* Legend diamond glyph */
.lmap-legend__sw {
    display: inline-block;
    color: #6b7280;
    font-size: 0.85em;
}

/* Choropleth toggle */
.lmap-choropleth-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1rem;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
}
.lmap-choropleth-toggle input {
    cursor: pointer;
}/* /* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — HERO SECTION  ([hp_hero])
   Add to Appearance → Customize → Additional CSS
   ═══════════════════════════════════════════════════════════════ */

.hp-hero {
    background: #0d1b2a;
    padding: 90px 24px;
    width: 100%;
}

.hp-hero__inner {
    max-width: 820px;
    margin: 0 auto;
}

.hp-hero__headline {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.2rem;
    letter-spacing: -0.01em;
}

.hp-hero__subheadline {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 0 2.5rem;
}

/* Stat cards */
.hp-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 0 0 2.5rem;
}

.hp-hero__stat {
    display: flex;
    flex-direction: column;
}

.hp-hero__stat-value {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.hp-hero__stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    max-width: 160px;
}

/* CTA buttons */
.hp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hp-hero__btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.hp-hero__btn--primary {
    background: #c0392b;
    color: #ffffff !important;
    border: 2px solid #c0392b;
}

.hp-hero__btn--primary:hover {
    background: #a93226;
    border-color: #a93226;
}

.hp-hero__btn--ghost {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.hp-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Mobile */
@media (max-width: 640px) {
    .hp-hero { padding: 60px 20px; }
    .hp-hero__stats { gap: 1.5rem; }
    .hp-hero__stat-value { font-size: 1.9rem; }
    .hp-hero__btn { width: 100%; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — THE STAKES  ([hp_stakes])
   ═══════════════════════════════════════════════════════════════ */

.hp-stakes-section {
    background: #f4f6f8;
    padding: 70px 24px;
    width: 100%;
}

.hp-stakes-section__inner {
    max-width: 820px;
    margin: 0 auto;
}

.hp-stakes-section__eyebrow {
    display: block;
    color: #c0392b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.hp-stakes-section__heading {
    color: #0d1b2a;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 2.5rem;
    max-width: 700px;
}

.hp-stakes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hp-stakes__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hp-stakes__rule {
    flex: 0 0 auto;
    width: 3px;
    align-self: stretch;
    background: #c0392b;
    border-radius: 2px;
    margin-top: 0.15rem;
}

.hp-stakes__text {
    color: #1f2d3d;
    font-size: 1.15rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.hp-stakes-section__pull {
    color: #5a6b7b;
    font-style: italic;
    font-size: 1rem;
    margin: 2.5rem 0 0;
}

@media (max-width: 640px) {
    .hp-stakes-section { padding: 50px 20px; }
    .hp-stakes__text { font-size: 1.05rem; }
}
/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — GLOBAL HARDENING
   Forces every homepage section to true full width and centers the
   inner content regardless of the Kadence content-area wrapper.
   ═══════════════════════════════════════════════════════════════ */

/* Every homepage section spans edge to edge */
.hp-hero,
.hp-stakes-section,
.hp-start-section,
.hp-legacy-section,
.hp-news-section,
.hp-landscape-section,
.hp-donate-section,
.hp-newsletter-section,
.hp-reports-section {
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

/* Every inner container centers and never overflows */
.hp-hero__inner,
.hp-stakes-section__inner,
.hp-start-section__inner,
.hp-legacy,
.hp-news-section__inner,
.hp-landscape-section__inner,
.hp-donate-section__inner,
.hp-newsletter-section__inner,
.hp-reports-section__inner {
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
    width: 100%;
}

/* Belt-and-suspenders: prevent any grid child from overflowing its track */
.hp-start-here,
.hp-news-feed,
.hp-reports-grid,
.hp-landscape-section__inner {
    min-width: 0;
}
.hp-start-here__col,
.hp-news-card,
.hp-report-card {
    min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — HERO SECTION  ([hp_hero])
   Add to Appearance → Customize → Additional CSS
   ═══════════════════════════════════════════════════════════════ */

.hp-hero {
    background: #0d1b2a;
    padding: 90px 24px;
    width: 100%;
}

.hp-hero__inner {
    max-width: 820px;
    margin: 0 auto;
}

.hp-hero__headline {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.2rem;
    letter-spacing: -0.01em;
}

.hp-hero__subheadline {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 0 2.5rem;
}

/* Stat cards */
.hp-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 0 0 2.5rem;
}

.hp-hero__stat {
    display: flex;
    flex-direction: column;
}

.hp-hero__stat-value {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.hp-hero__stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    max-width: 160px;
}

/* CTA buttons */
.hp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hp-hero__btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.hp-hero__btn--primary {
    background: #c0392b;
    color: #ffffff !important;
    border: 2px solid #c0392b;
}

.hp-hero__btn--primary:hover {
    background: #a93226;
    border-color: #a93226;
}

.hp-hero__btn--ghost {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.hp-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Mobile */
@media (max-width: 640px) {
    .hp-hero { padding: 60px 20px; }
    .hp-hero__stats { gap: 1.5rem; }
    .hp-hero__stat-value { font-size: 1.9rem; }
    .hp-hero__btn { width: 100%; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — THE STAKES  ([hp_stakes])
   ═══════════════════════════════════════════════════════════════ */

.hp-stakes-section {
    background: #f4f6f8;
    padding: 70px 24px;
    width: 100%;
}

.hp-stakes-section__inner {
    max-width: 820px;
    margin: 0 auto;
}

.hp-stakes-section__eyebrow {
    display: block;
    color: #c0392b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.hp-stakes-section__heading {
    color: #0d1b2a;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 2.5rem;
    max-width: 700px;
}

.hp-stakes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hp-stakes__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hp-stakes__rule {
    flex: 0 0 auto;
    width: 3px;
    align-self: stretch;
    background: #c0392b;
    border-radius: 2px;
    margin-top: 0.15rem;
}

.hp-stakes__text {
    color: #1f2d3d;
    font-size: 1.15rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.hp-stakes-section__pull {
    color: #5a6b7b;
    font-style: italic;
    font-size: 1rem;
    margin: 2.5rem 0 0;
}

@media (max-width: 640px) {
    .hp-stakes-section { padding: 50px 20px; }
    .hp-stakes__text { font-size: 1.05rem; }
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — START HERE  ([hp_start_here])
   ═══════════════════════════════════════════════════════════════ */

.hp-start-section {
    background: #ffffff;
    padding: 70px 24px;
    width: 100%;
}
.hp-start-section__inner { max-width: 1100px; margin: 0 auto; }
.hp-start-section__eyebrow {
    display: block; color: #0e7490; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.6rem;
}
.hp-start-section__heading {
    color: #0d1b2a; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800;
    margin: 0 0 0.75rem;
}
.hp-start-section__intro {
    color: #4a5b6b; font-size: 1.1rem; line-height: 1.6; max-width: 680px;
    margin: 0 0 2.5rem;
}
.hp-start-here {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.hp-start-here__col {
    display: flex; flex-direction: column; padding: 1.75rem;
    background: #f4f6f8; border-radius: 8px; border-top: 3px solid #0e7490;
}
.hp-start-here__eyebrow {
    color: #0e7490; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.hp-start-here__heading {
    color: #0d1b2a; font-size: 1.2rem; font-weight: 700; line-height: 1.3;
    margin: 0 0 0.75rem;
}
.hp-start-here__body {
    color: #4a5b6b; font-size: 0.97rem; line-height: 1.55; margin: 0 0 1.25rem;
    flex-grow: 1;
}
.hp-start-here__cta {
    color: #c0392b; font-weight: 600; font-size: 0.95rem; text-decoration: none;
    margin-top: auto;
}
.hp-start-here__cta:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — LEGACY STRIP  ([hp_legacy_strip])
   ═══════════════════════════════════════════════════════════════ */

.hp-legacy-section { background: #0d1b2a; padding: 70px 24px; width: 100%; }
.hp-legacy { max-width: 1000px; margin: 0 auto; }
.hp-legacy__statement { margin-bottom: 2.5rem; }
.hp-legacy__eyebrow {
    display: block; color: #92400e; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.hp-legacy__text {
    color: rgba(255,255,255,0.85); font-size: 1.25rem; line-height: 1.5;
    max-width: 760px; margin: 0; font-weight: 500;
}
.hp-legacy__people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.hp-legacy__person { display: flex; gap: 1.25rem; align-items: flex-start; }
.hp-legacy__portrait {
    flex: 0 0 auto; width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
    background: #1a2e40;
}
.hp-legacy__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hp-legacy__portrait--placeholder { border: 1px dashed rgba(255,255,255,0.25); }
.hp-legacy__person-body { display: flex; flex-direction: column; }
.hp-legacy__name { color: #fff; font-weight: 700; font-size: 1.05rem; }
.hp-legacy__role {
    color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.45;
    margin-top: 0.35rem;
}
.hp-legacy__role em { color: rgba(255,255,255,0.8); }
.hp-legacy__link {
    color: #f0a868; font-weight: 600; font-size: 0.9rem; text-decoration: none;
    margin-top: 0.6rem;
}
.hp-legacy__link:hover { text-decoration: underline; }
.hp-legacy__book {
    display: flex; gap: 1.5rem; align-items: center; margin-top: 2.5rem;
    padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.hp-legacy__book-cover { flex: 0 0 auto; width: 90px; }
.hp-legacy__book-cover img { width: 100%; border-radius: 4px; }
.hp-legacy__book-body { display: flex; flex-direction: column; }
.hp-legacy__book-eyebrow {
    color: #92400e; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hp-legacy__book-label { color: #fff; font-weight: 600; font-size: 1.05rem; margin: 0.3rem 0; }
.hp-legacy__book-cta { color: #f0a868; font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.hp-legacy__book-cta:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — WHAT'S HAPPENING NOW  ([hp_news_feed])
   ═══════════════════════════════════════════════════════════════ */

.hp-news-section { background: #f4f6f8; padding: 60px 24px; width: 100%; }
.hp-news-section__inner { max-width: 1100px; margin: 0 auto; }
.hp-news-section__eyebrow {
    display: block; color: #c0392b; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.6rem;
}
.hp-news-section__heading {
    color: #0d1b2a; font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800;
    margin: 0 0 2rem;
}
.hp-news-feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.hp-news-card {
    display: flex; flex-direction: column; padding: 1.5rem; background: #fff;
    border-radius: 8px; text-decoration: none; border-left: 3px solid #c0392b;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hp-news-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,27,42,0.1); }
.hp-news-card--irehr_report { border-left-color: #0d1b2a; }
.hp-news-card--irehr_data { border-left-color: #0e7490; }
.hp-news-card__type {
    color: #c0392b; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; margin-bottom: 0.5rem;
}
.hp-news-card__type--irehr_report { color: #0d1b2a; }
.hp-news-card__type--irehr_data { color: #0e7490; }
.hp-news-card__title { color: #0d1b2a; font-weight: 700; font-size: 1.1rem; line-height: 1.3; }
.hp-news-card__excerpt {
    color: #4a5b6b; font-size: 0.92rem; line-height: 1.5; margin-top: 0.5rem; flex-grow: 1;
}
.hp-news-card__date { color: #8a99a8; font-size: 0.8rem; margin-top: 0.75rem; }
.hp-news-section__all {
    display: inline-block; margin-top: 1.75rem; color: #c0392b; font-weight: 600;
    text-decoration: none;
}
.hp-news-section__all:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — LANDSCAPE TEASER  ([hp_landscape_teaser])
   ═══════════════════════════════════════════════════════════════ */

.hp-landscape-section { background: #0d1b2a; padding: 70px 24px; width: 100%; }
.hp-landscape-section__inner {
    max-width: 1100px; margin: 0 auto; display: grid;
    grid-template-columns: 42% 58%; gap: 3rem; align-items: center;
}
.hp-landscape-section__eyebrow {
    display: block; color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.hp-landscape-section__heading {
    color: #fff; font-size: clamp(1.7rem, 3vw, 2.1rem); font-weight: 800;
    line-height: 1.2; margin: 0 0 1rem;
}
.hp-landscape-section__body {
    color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.6; margin: 0 0 1rem;
}
.hp-landscape-section__note {
    color: rgba(255,255,255,0.45); font-size: 0.85rem; margin: 0 0 1.75rem;
}
.hp-landscape-section__btn {
    display: inline-block; padding: 13px 26px; background: #c0392b; color: #fff !important;
    font-weight: 600; text-decoration: none; border-radius: 4px;
}
.hp-landscape-section__btn:hover { background: #a93226; }
.hp-landscape-preview {
    display: block; position: relative; border-radius: 8px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.hp-landscape-preview__img { width: 100%; display: block; }
.hp-landscape-preview__overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.25rem 1rem;
    background: linear-gradient(transparent, rgba(13,27,42,0.85));
}
.hp-landscape-preview__label { color: #fff; font-weight: 600; font-size: 0.95rem; }
.hp-landscape-placeholder {
    display: flex; align-items: center; justify-content: center; min-height: 280px;
    background: #1a2e40; border: 1px dashed rgba(255,255,255,0.25); border-radius: 8px;
    color: rgba(255,255,255,0.5); font-size: 0.9rem; text-align: center; padding: 2rem;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — DONATE BLOCK  ([hp_donate])
   ═══════════════════════════════════════════════════════════════ */

.hp-donate-section { background: #1a2e40; padding: 80px 24px; width: 100%; }
.hp-donate-section__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.hp-donate-section__eyebrow {
    display: block; color: rgba(255,255,255,0.55); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.hp-donate-section__heading {
    color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.3rem); font-weight: 800; margin: 0 0 1.5rem;
}
.hp-donate-section__body {
    color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.7; margin: 0 0 1.25rem;
}
.hp-donate-section__btn {
    display: inline-block; margin: 1rem 0 1.5rem; padding: 16px 36px; background: #c0392b;
    color: #fff !important; font-weight: 700; font-size: 1.1rem; text-decoration: none;
    border-radius: 4px;
}
.hp-donate-section__btn:hover { background: #a93226; }
.hp-donate-section__fine { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin: 0; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — NEWSLETTER CTA  ([hp_newsletter])
   ═══════════════════════════════════════════════════════════════ */

.hp-newsletter-section { background: #c0392b; padding: 70px 24px; width: 100%; }
.hp-newsletter-section__inner { max-width: 580px; margin: 0 auto; text-align: center; }
.hp-newsletter-section__heading { color: #fff; font-size: clamp(1.7rem, 3vw, 2.1rem); font-weight: 800; margin: 0 0 1rem; }
.hp-newsletter-section__body { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.6; margin: 0 0 1.75rem; }
.hp-newsletter-section__btn {
    display: inline-block; padding: 14px 32px; background: #fff; color: #c0392b !important;
    font-weight: 700; text-decoration: none; border-radius: 4px;
}
.hp-newsletter-section__btn:hover { background: #f4f6f8; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — FEATURED REPORTS  ([hp_featured_reports])
   ═══════════════════════════════════════════════════════════════ */

.hp-reports-section { background: #ffffff; padding: 60px 24px 70px; width: 100%; }
.hp-reports-section__inner { max-width: 1100px; margin: 0 auto; }
.hp-reports-section__eyebrow {
    display: block; color: #c0392b; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.6rem;
}
.hp-reports-section__heading {
    color: #0d1b2a; font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 2rem;
}
.hp-reports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hp-report-card {
    display: flex; flex-direction: column; background: #fff; border-radius: 8px;
    overflow: hidden; text-decoration: none; border: 1px solid #e3e8ed;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hp-report-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,27,42,0.12); }
.hp-report-card__cover { width: 100%; aspect-ratio: 3/2; overflow: hidden; background: #f4f6f8; }
.hp-report-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.hp-report-card__body { padding: 1.25rem; display: flex; flex-direction: column; }
.hp-report-card__type {
    color: #c0392b; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; margin-bottom: 0.4rem;
}
.hp-report-card__title { color: #0d1b2a; font-weight: 700; font-size: 1.05rem; line-height: 1.3; }
.hp-report-card__sub { color: #4a5b6b; font-size: 0.9rem; line-height: 1.45; margin-top: 0.4rem; }
.hp-report-card__date { color: #8a99a8; font-size: 0.8rem; margin-top: 0.6rem; }
.hp-reports-section__all {
    display: inline-block; margin-top: 1.75rem; color: #c0392b; font-weight: 600; text-decoration: none;
}
.hp-reports-section__all:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — RESPONSIVE (sections C–I)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 860px) {
    .hp-start-here { grid-template-columns: 1fr; }
    .hp-legacy__people { grid-template-columns: 1fr; }
    .hp-news-feed { grid-template-columns: 1fr; }
    .hp-landscape-section__inner { grid-template-columns: 1fr; gap: 2rem; }
    .hp-reports-grid { grid-template-columns: 1fr; }
}


