/* ============================================================
   HERO HOMEREACH — community-partners.css
   Page-specific styles for the Community Partners gateway page.
   Loads AFTER /css/main.css.
   Nav, footer, buttons, reset, and base tokens are all in main.css.
   This file: CSS variable fallbacks + all .cp-* section styles only.
   Last updated: 2026-06
   ============================================================ */

/* ── Custom variables only — do NOT redefine anything in main.css.
   main.css loads first; this file loads second. Any variable defined
   in both files will take the value from THIS file (cascade order),
   which would silently override the global token on every page element
   that uses it (footer, nav, body background, etc.).
   Only add variables here that are genuinely absent from main.css.
   ─────────────────────────────────────────────────────────── */
:root {
  --off-white:      #F5F7FA;  /* body/section bg, mirrors main.css --white */
  --gold-tint:      #FDF3E3;  /* trust bar, blurb box, compliance box bg   */
  --gold-border:    #E8D5B0;  /* trust bar + gold-tint section borders      */
  --text-body:      #3D4A5C;  /* body copy (darker than --near-black prose) */
  --text-muted:     #6B7A8D;  /* secondary/caption text                     */
  --border:         #E2E8F0;  /* card and input borders                     */
  --radius-lg:      16px;     /* larger card radius (main.css has --radius) */
  --cp-max-w:       860px;    /* content column width for this page         */
  --cp-max-w-wide:  1100px;   /* wider sections (audience grid, etc.)       */
}

/* ── Page body offset (nav is fixed/sticky) ──────────────── */
body { padding-top: var(--nav-h); }

/* ── Force nav solid on this page ───────────────────────── */
#nav { background: var(--navy) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.18) !important; }
#nav .nav-links a { color: rgba(255,255,255,0.85) !important; }
#nav .nav-links a:hover { color: #fff !important; }

/* ════════════════════════════════════════════════════════════
   SHARED PAGE UTILITIES
   ════════════════════════════════════════════════════════════ */
.cp-container {
  max-width: var(--cp-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.cp-container--wide {
  max-width: var(--cp-max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.cp-section { padding: 64px 0; }
.cp-section--alt { background: var(--off-white); }
.cp-section--navy { background: var(--navy); }
.cp-section--gold-tint {
  background: var(--gold-tint);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.cp-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cp-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 0 24px 0;
}
.cp-divider--center { margin: 0 auto 24px; }
.cp-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.cp-h2--white { color: var(--white); }
.cp-lead {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 40px;
}
.cp-lead--white { color: rgba(255,255,255,0.82); }

/* ════════════════════════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════════════════════════ */
.cp-breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cp-breadcrumb a { color: var(--mid-navy); text-decoration: none; }
.cp-breadcrumb a:hover { text-decoration: underline; }
.cp-breadcrumb span { margin: 0 7px; color: #bbb; }

/* ════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   ════════════════════════════════════════════════════════════ */
.cp-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--mid-navy) 100%);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Compact modifier — tighter hero for resource/partner pages */
.cp-hero--compact {
  padding: 44px 0 38px;
}
.cp-hero--compact h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  margin-bottom: 14px;
}
.cp-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cp-hero-trust-line {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0 auto 28px;
  max-width: 480px;
}
.cp-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(201,151,58,0.07);
  pointer-events: none;
}
.cp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(26,107,74,0.06);
  pointer-events: none;
}
.cp-hero-badge {
  display: inline-block;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.35);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.cp-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 18px;
}
.cp-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.cp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.72;
}
.cp-hero-not {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  font-style: italic;
}
.cp-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Trust bar ──────────────────────────────────────────── */
.cp-trust-bar {
  background: var(--gold-tint);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 0;
}
.cp-trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--cp-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.cp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-right: 1px solid var(--gold-border);
}
.cp-trust-item:last-child { border-right: none; }

/* ════════════════════════════════════════════════════════════
   SECTION 2 — IS / IS NOT
   ════════════════════════════════════════════════════════════ */
.cp-identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.cp-identity-col {
  border-radius: var(--radius);
  padding: 28px;
}
.cp-identity-col--is {
  background: var(--off-white);
  border: 1px solid var(--border);
}
.cp-identity-col--isnot {
  background: var(--navy);
  border: 1px solid var(--navy);
}
.cp-identity-col h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cp-identity-col--is h3 { color: var(--green); }
.cp-identity-col--isnot h3 { color: var(--gold); }
.cp-identity-list { list-style: none; padding: 0; }
.cp-identity-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 11px;
  color: var(--near-black);
}
.cp-identity-col--isnot .cp-identity-list li { color: rgba(255,255,255,0.85); }
.cp-identity-list li:last-child { margin-bottom: 0; }
.cp-identity-list .icon {
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  line-height: 1;
}
.cp-identity-summary {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 22px;
}
.cp-compliance-box {
  background: var(--gold-tint);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 0.83rem;
  color: #5A4A2A;
  line-height: 1.65;
}
.cp-compliance-box strong { color: var(--navy); }
.cp-compliance-box a { color: var(--mid-navy); }

/* ════════════════════════════════════════════════════════════
   SECTION 3 — WHO MAY HELP
   ════════════════════════════════════════════════════════════ */
.cp-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cp-audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.cp-audience-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(12,45,94,0.09);
  transform: translateY(-2px);
}
.cp-audience-icon { font-size: 1.9rem; margin-bottom: 10px; }
.cp-audience-card h3 {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cp-audience-card p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cp-audience-note {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   SECTION 4 — TOPICS
   ════════════════════════════════════════════════════════════ */
.cp-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cp-topic-pill {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,151,58,0.22);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-weight: 500;
}
.cp-topic-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}
.cp-topics-note {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   SECTION 5 — FOR PARTNER ORGANIZATIONS
   ════════════════════════════════════════════════════════════ */
.cp-partner-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.cp-fact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.cp-fact-card:hover { border-color: var(--gold); }
.cp-fact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cp-fact-card h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.cp-fact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Copy/Paste Blurb box ───────────────────────────────── */
.cp-blurb-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}
.cp-blurb-box h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cp-blurb-box > p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cp-blurb-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cp-blurb-tab {
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.cp-blurb-tab.active,
.cp-blurb-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cp-blurb-text {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  display: none;
  white-space: pre-wrap;
  font-family: var(--font-body);
}
.cp-blurb-text.active { display: block; }
.cp-blurb-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.cp-blurb-copy-btn:hover { background: var(--mid-navy); }
.cp-blurb-copy-btn.copied { background: var(--green); }

/* ── Partner contact ────────────────────────────────────── */
.cp-partner-contact { text-align: center; padding-top: 8px; }
.cp-partner-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cp-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid-navy);
  text-decoration: none;
  transition: var(--transition);
}
.cp-email-link:hover {
  border-color: var(--gold);
  background: var(--gold-tint);
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════
   SECTION 6 — RESOURCE CARDS
   ════════════════════════════════════════════════════════════ */
.cp-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cp-resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.cp-resource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.cp-resource-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 22px rgba(12,45,94,0.09);
  transform: translateY(-2px);
  text-decoration: none;
}
.cp-resource-card:hover::before { transform: scaleX(1); }
.cp-resource-card-icon { font-size: 1.7rem; margin-bottom: 12px; }
.cp-resource-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cp-resource-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
  flex: 1;
}
.cp-resource-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cp-resource-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mid-navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.cp-resource-card:hover .cp-resource-card-link { color: var(--gold); gap: 8px; }

/* ════════════════════════════════════════════════════════════
   SECTION 7 — SOFT CTA
   ════════════════════════════════════════════════════════════ */
.cp-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
}
.cp-cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cp-cta-box p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cp-cta-whisper {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.cp-cta-whisper a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cp-cta-whisper a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   SECTION 8 — DISCLAIMER BLOCK
   ════════════════════════════════════════════════════════════ */
.cp-disclaimer-block {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  padding: 32px 0;
}
.cp-disclaimer-block p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cp-disclaimer-block a { color: var(--mid-navy); }

/* ════════════════════════════════════════════════════════════
   PARTNER INTRO SECTION
   ════════════════════════════════════════════════════════════ */
.cp-body-graf {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 16px;
}
.cp-partner-note-sm {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 620px;
  margin-top: 20px;
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════════
   WHAT VISITORS CAN LEARN — TOPIC CARDS
   ════════════════════════════════════════════════════════════ */
.cp-topics-learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cp-learn-card {
  background: var(--white, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.cp-learn-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(12,45,94,0.08);
  transform: translateY(-2px);
}
.cp-learn-icon {
  font-size: 1.7rem;
  margin-bottom: 12px;
  line-height: 1;
}
.cp-learn-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.cp-learn-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.cp-learn-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid-navy);
  text-decoration: none;
  transition: color 0.2s;
}
.cp-learn-link:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   MATH SECTION
   ════════════════════════════════════════════════════════════ */
.cp-math-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.cp-math-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.cp-math-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cp-math-pct {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.cp-math-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.cp-math-desc {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.cp-math-note {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════════════════════════ */
.cp-faq-list {
  max-width: 680px;
}
.cp-faq-item {
  border-bottom: 1px solid var(--border);
}
.cp-faq-item:first-child {
  border-top: 1px solid var(--border);
}
.cp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.cp-faq-q:hover { color: var(--gold); }
.cp-faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.cp-faq-q[aria-expanded="true"] .cp-faq-icon {
  transform: rotate(45deg);
}
.cp-faq-a {
  padding: 0 0 18px 0;
}
.cp-faq-a p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.72;
  max-width: 620px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cp-math-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cp-hero--compact { padding: 36px 0 30px; }
  .cp-hero { padding: 52px 0 44px; }
  .cp-identity-grid { grid-template-columns: 1fr; }
  .cp-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-partner-facts { grid-template-columns: 1fr; }
  .cp-resources-grid { grid-template-columns: 1fr; }
  .cp-topics-grid { grid-template-columns: 1fr; }
  .cp-topics-learn-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-cta-box { padding: 36px 24px; }
  .cp-trust-item { border-right: none; padding: 4px 10px; font-size: 0.72rem; }
}

@media (max-width: 540px) {
  .cp-topics-learn-grid { grid-template-columns: 1fr; }
  .cp-math-grid { grid-template-columns: 1fr 1fr; }
  .cp-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-blurb-tabs { flex-direction: column; }
  .cp-blurb-tab { text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   HUB PAGE — COMPACT PARTNER BRIEF (two-column intro)
   ════════════════════════════════════════════════════════════ */
.cp-hub-intro {
  padding: 36px 0 32px;
  background: var(--white, #fff);
  border-bottom: 1px solid var(--border);
}
.cp-hub-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.cp-hub-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cp-hub-intro h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cp-hub-intro-sub {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 520px;
}
.cp-hub-intro-btns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  align-items: center;
}
.cp-hub-tertiary {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.cp-hub-tertiary:hover { color: var(--mid-navy); text-decoration: underline; }

/* Resource Brief Card */
.cp-brief-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px;
}
.cp-brief-card-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cp-brief-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.cp-brief-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.cp-brief-label {
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.5;
}
.cp-brief-value {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.55;
}
.cp-brief-value strong { color: var(--navy); font-weight: 700; }
.cp-brief-footer-note {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════════
   HUB — MISSION SECTION CARDS (3-up)
   ════════════════════════════════════════════════════════════ */
.cp-mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.cp-mission-card {
  background: var(--white, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cp-mission-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}
.cp-mission-card h3 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.cp-mission-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   HUB — SECTOR CARDS (Choose a Resource)
   ════════════════════════════════════════════════════════════ */
.cp-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cp-sector-card {
  background: var(--white, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.cp-sector-card--available {
  border-top: 3px solid var(--gold);
}
.cp-sector-card--soon {
  border-top: 3px solid var(--border);
}
.cp-sector-badge {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}
.cp-sector-badge--available {
  background: rgba(26,107,74,0.09);
  color: #16593d;
  border: 1px solid rgba(26,107,74,0.22);
}
.cp-sector-badge--soon {
  background: var(--off-white);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cp-sector-icon { font-size: 1.5rem; margin-bottom: 8px; line-height: 1; }
.cp-sector-card h3 {
  font-family: var(--font-body);
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.3;
}
.cp-sector-card p {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.cp-sector-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mid-navy);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.cp-sector-link:hover { color: var(--gold); gap: 8px; }
.cp-sector-soon-label {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}
.cp-sector-footer-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 14px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ════════════════════════════════════════════════════════════
   HUB — WAYS TO SHARE (6-card grid)
   ════════════════════════════════════════════════════════════ */
.cp-share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cp-share-card {
  background: var(--white, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cp-share-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.cp-share-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.cp-share-card p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   HUB — READY-TO-USE LISTING COPY BLOCKS
   ════════════════════════════════════════════════════════════ */
.cp-listing-intro {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cp-listing-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cp-listing-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cp-listing-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 16px;
  background: var(--white, #fff);
  border-bottom: 1px solid var(--border);
}
.cp-listing-block-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.cp-listing-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.cp-listing-copy-btn:hover { background: var(--mid-navy); }
.cp-listing-copy-btn.copied { background: #16593d; }
.cp-listing-block-text {
  padding: 14px 16px;
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.7;
  font-family: var(--font-body);
  white-space: pre-wrap;
  cursor: text;
  user-select: all;
}

/* ════════════════════════════════════════════════════════════
   HUB — TOPIC CHIPS (What visitors can learn)
   ════════════════════════════════════════════════════════════ */
.cp-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.cp-topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white, #fff);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cp-topic-chip:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(12,45,94,0.07);
}
.cp-topic-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.cp-topic-closing-note {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 580px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   HUB — PARTNERSHIP CONTACT SECTION
   ════════════════════════════════════════════════════════════ */
.cp-partner-cta-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.cp-partner-cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.cp-partner-cta-box p {
  font-size: 0.94rem;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.cp-partner-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cp-partner-cta-whisper {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cp-partner-cta-whisper a {
  color: var(--mid-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cp-partner-cta-whisper a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   HUB RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cp-hub-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .cp-brief-card { max-width: 480px; }
  .cp-sector-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-share-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-mission-cards { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cp-hub-intro-btns { flex-direction: column; align-items: flex-start; }
  .cp-sector-grid { grid-template-columns: 1fr; }
  .cp-share-grid { grid-template-columns: 1fr; }
  .cp-mission-cards { grid-template-columns: 1fr; }
  .cp-partner-cta-box { padding: 28px 20px; }
  .cp-listing-block-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cp-topic-chips { gap: 8px; }
}
