/*
 * Impact Report 2025 — US
 *
 * Scoped CSS for the static impact-report HTML embedded inside the WP page
 * template (page-impact-report-2025.php). All rules are wrapped in
 * `.tlycs-impact-report-2025` to prevent the report's resets and brand tokens
 * from leaking into the surrounding WP theme.
 *
 * Source: extracted from impact-report-2025-build/public/impact-report.html
 * (inline <style> block, lines 8–327). Site header/footer styles from the
 * source are intentionally dropped — the WP theme provides those.
 *
 * Twin pattern to impact-report-2025-donors-us.css — same scoping strategy,
 * same WP cascade defeats (font-weight + letter-spacing), same image path
 * rewrite. Bundle naming convention `-us` suffix matches the donors edition.
 */

/* ── BRAND TOKENS (scoped — do not leak to :root) ── */
.tlycs-impact-report-2025 {
  --red: #E64C3C;
  --purple: #AA76A0;
  --black: #231F20;
  --dark-gray: #333333;
  --light-gray: #F1F1F1;
  --border: #e8e8e8;
  --surface-alt: #faf7f3;
  --text-secondary: #555;
  --text-muted: #888;
  --text-light: #999;
}

/* ── RESET (scoped) ── */
.tlycs-impact-report-2025,
.tlycs-impact-report-2025 *,
.tlycs-impact-report-2025 *::before,
.tlycs-impact-report-2025 *::after {
  box-sizing: border-box;
}

.tlycs-impact-report-2025 {
  font-family: 'Instrument Sans', Arial, sans-serif;
  color: #231F20;
  background: #fff;
}

/* ── LAYOUT ── */
.tlycs-impact-report-2025 .page { width: 100%; max-width: 1280px; margin: 0 auto; background: #fff; }
.tlycs-impact-report-2025 .section { padding: 48px 56px; position: relative; page-break-after: auto; }
.tlycs-impact-report-2025 .section--alt { background: var(--surface-alt); box-shadow: 0 0 0 100vmax var(--surface-alt); clip-path: inset(0 -100vmax); }
.tlycs-impact-report-2025 .section--alt .story-block,
.tlycs-impact-report-2025 .section--alt .caveat-block,
.tlycs-impact-report-2025 .section--alt .cost-card,
.tlycs-impact-report-2025 .section--alt .insert { background: #fff; }
.tlycs-impact-report-2025 .section--contents { background: #f1f1f1; box-shadow: 0 0 0 100vmax #f1f1f1; clip-path: inset(0 -100vmax); }
.tlycs-impact-report-2025 .section--contents .story-block,
.tlycs-impact-report-2025 .section--contents .caveat-block,
.tlycs-impact-report-2025 .section--contents .cost-card,
.tlycs-impact-report-2025 .section--contents .insert { background: #fff; }

/* ── COVER PAGE ── */
.tlycs-impact-report-2025 .cover { position: relative; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px max(56px, calc((100% - 1280px) / 2 + 56px)); page-break-after: always; overflow: hidden; background: #231F20; }
.tlycs-impact-report-2025 .cover-bg { position: absolute; inset: 0; background-image: url('/wp-content/themes/tlycs/assets/impact-report-2025-us/impact-cover.jpg'); background-size: cover; background-position: center; }
.tlycs-impact-report-2025 .cover-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.8) 100%); }
.tlycs-impact-report-2025 .cover-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(255,255,255,0.18) 100%); pointer-events: none; }
.tlycs-impact-report-2025 .cover > *:not(.cover-bg):not(.cover-overlay) { position: relative; z-index: 1; }
.tlycs-impact-report-2025 .cover-logo { margin-bottom: auto; padding-top: 0; }
.tlycs-impact-report-2025 .cover-logo-text { display: none; }
.tlycs-impact-report-2025 .cover-title { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700 !important; font-size: 64px; line-height: 1.05; letter-spacing: normal; color: #fff; margin: 0 0 24px 0; padding: 0; text-transform: none; }
.tlycs-impact-report-2025 .cover-year { font-size: 18px; color: rgba(255,255,255,0.85); margin: 0; padding: 0; }
.tlycs-impact-report-2025 .cover-rule { width: 48px; height: 3px; background: var(--red); margin: 32px 0 24px; }

/* ── TYPOGRAPHY ──
 *   - `font-weight !important` on h-tags is required because WP `app.min.css` ships
 *     `h1, .h1, h2, .h2, …, .h6, .small-text { font-weight: 400 !important }` —
 *     the only `!important` declaration in the WP cascade that hits us. Every
 *     other WP rule has plain weight, so our scope-class specificity (0,1,1)
 *     wins by itself and we can leave those properties unmarked.
 *   - `letter-spacing: normal` defeats a stubborn `-1px` value computed on bare
 *     h-tags from a CORS-blocked stylesheet (likely the Google Fonts CSS or
 *     similar) that we can't see in JS but visibly tightens our headings if
 *     left alone. No `!important` because the leak source has none either.
 *   - Margin/padding/font-size are deliberately unmarked so inline overrides
 *     (e.g. `<h2 style="margin-bottom:24px">Contents</h2>`,
 *     `<p style="font-size:17px;…">`) keep working as the source author intended.
 */
.tlycs-impact-report-2025 .eyebrow { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700 !important; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #6b7280; margin: 0 0 8px 0; padding: 0; }
.tlycs-impact-report-2025 h1,
.tlycs-impact-report-2025 .h1 { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700 !important; font-size: 36px; line-height: 1.15; letter-spacing: normal; color: var(--black); margin: 0 0 12px 0; padding: 0; text-transform: none; }
.tlycs-impact-report-2025 h2,
.tlycs-impact-report-2025 .h2 { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700 !important; font-size: 28px; line-height: 1.2; letter-spacing: normal; color: var(--black); margin: 0 0 12px 0; padding: 0; text-transform: none; }
.tlycs-impact-report-2025 h3,
.tlycs-impact-report-2025 .h3 { font-family: 'Instrument Sans', Arial, sans-serif; font-weight: 600 !important; font-size: 17px; line-height: normal; letter-spacing: normal; color: var(--black); margin: 0 0 8px 0; padding: 0; text-transform: none; }
.tlycs-impact-report-2025 h4,
.tlycs-impact-report-2025 .h4 { font-family: 'Instrument Sans', Arial, sans-serif; font-weight: 600 !important; font-size: 15px; line-height: normal; letter-spacing: normal; color: var(--black); margin: 0 0 6px 0; padding: 0; text-transform: none; }
.tlycs-impact-report-2025 h5, .tlycs-impact-report-2025 h6 { font-weight: 600 !important; letter-spacing: normal; }
.tlycs-impact-report-2025 p { font-family: 'Instrument Sans', Arial, sans-serif; font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin: 0; padding: 0; }
.tlycs-impact-report-2025 .intro-text { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin: 0 0 32px 0; }
.tlycs-impact-report-2025 .supporting { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.tlycs-impact-report-2025 strong { color: var(--black); font-weight: 600; }
.tlycs-impact-report-2025 em { font-style: italic; }
.tlycs-impact-report-2025 a { text-decoration: none; color: inherit; }

/*
 * LINK PSEUDO-STATES.
 * WP theme ships hover/focus rules on bare `a` selectors. Our higher-specificity
 * scoped rule resets every link inside the report to its static appearance on
 * every interaction state (same trick as donors bundle).
 */
.tlycs-impact-report-2025 a:hover,
.tlycs-impact-report-2025 a:focus,
.tlycs-impact-report-2025 a:active,
.tlycs-impact-report-2025 a:focus-visible { color: inherit; text-decoration: none; background-color: transparent; }

/* ── SECTION LABEL ── */
.tlycs-impact-report-2025 .section-label { font-family: 'Plus Jakarta Sans', Arial, sans-serif !important; font-weight: 700 !important; font-size: 11px !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; color: var(--text-muted) !important; margin: 32px 0 16px 0 !important; }
.tlycs-impact-report-2025 .section-label:first-child { margin-top: 0 !important; }

/* ── DIVIDER ── */
.tlycs-impact-report-2025 .divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── DISCLAIMER ── */
.tlycs-impact-report-2025 .disclaimer { font-size: 11px !important; color: var(--text-light) !important; line-height: 1.6 !important; border-left: 2px solid #ddd; padding: 0 0 0 12px !important; margin-top: 24px !important; }

/* ══════════════════════════════════════
   SECTION 1 — ABOUT
══════════════════════════════════════ */
.tlycs-impact-report-2025 .about-body p { margin-bottom: 20px; }
.tlycs-impact-report-2025 .about-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   SECTION 2 — CEO LETTER
══════════════════════════════════════ */
.tlycs-impact-report-2025 .letter-body p { font-size: 16px; line-height: 1.85; color: var(--black); margin-bottom: 20px; }
.tlycs-impact-report-2025 .pull-quote { margin: 28px 0; }
.tlycs-impact-report-2025 .pull-quote p { font-size: 17px; font-weight: 600; line-height: 1.7; color: var(--black); }
.tlycs-impact-report-2025 .sign-off { font-size: 16px; color: var(--black); margin: 32px 0 24px; }
.tlycs-impact-report-2025 .signatories { display: flex; gap: 40px; }
.tlycs-impact-report-2025 .signatory { display: flex; align-items: center; gap: 16px; }
.tlycs-impact-report-2025 .signatory-photo { width: 64px; height: 64px; border-radius: 50%; background: #eee; overflow: hidden; flex-shrink: 0; }
.tlycs-impact-report-2025 .signatory-photo img { width: 100%; height: 100%; object-fit: cover; }
.tlycs-impact-report-2025 .signatory-name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.tlycs-impact-report-2025 .signatory-title { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════
   SECTION 3 — HERO / IMPACT SUMMARY
══════════════════════════════════════ */
.tlycs-impact-report-2025 .top-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 32px; }
.tlycs-impact-report-2025 .top-metric { background: #fff; padding: 28px 32px; }
.tlycs-impact-report-2025 .top-metric .label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--black); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.tlycs-impact-report-2025 .top-metric .label-icon { font-size: 14px; }
.tlycs-impact-report-2025 .top-metric .value { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 52px; line-height: 1; color: var(--black); margin-bottom: 6px; }
.tlycs-impact-report-2025 .top-metric .value.red { color: var(--red); }
.tlycs-impact-report-2025 .top-metric .desc { font-size: 13px; color: var(--text-muted); }
.tlycs-impact-report-2025 .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.tlycs-impact-report-2025 .pillar { border: 1px solid var(--border); border-radius: 10px; padding: 20px 20px 16px; position: relative; overflow: hidden; }
.tlycs-impact-report-2025 .pillar-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.tlycs-impact-report-2025 .pillar-name { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin: 10px 0 6px; }
.tlycs-impact-report-2025 .pillar-number { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 28px; line-height: 1; color: var(--black); margin-bottom: 4px; }
.tlycs-impact-report-2025 .pillar-unit { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.tlycs-impact-report-2025 .pillar-bar-bg { height: 4px; background: #f0f0f0; border-radius: 2px; }
.tlycs-impact-report-2025 .pillar-bar-fill { height: 4px; border-radius: 2px; }
.tlycs-impact-report-2025 .portfolio-row { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.tlycs-impact-report-2025 .portfolio-label { font-size: 13px; color: var(--black); min-width: 90px; }
.tlycs-impact-report-2025 .portfolio-track { flex: 1; height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.tlycs-impact-report-2025 .portfolio-fill { height: 8px; border-radius: 4px; }
.tlycs-impact-report-2025 .portfolio-pct { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 13px; color: var(--black); min-width: 40px; text-align: right; }
.tlycs-impact-report-2025 .portfolio-reach { font-size: 12px; color: var(--text-muted); min-width: 80px; text-align: right; }
.tlycs-impact-report-2025 .cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.tlycs-impact-report-2025 .cost-card { border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; background: #fafafa; }
.tlycs-impact-report-2025 .cost-area { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.tlycs-impact-report-2025 .cost-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.tlycs-impact-report-2025 .cost-value { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 24px; color: var(--black); margin-bottom: 2px; }
.tlycs-impact-report-2025 .cost-metric-label { font-size: 12px; color: #666; margin-bottom: 12px; }
.tlycs-impact-report-2025 .threshold-block { padding-top: 10px; border-top: 1px solid #eee; }
.tlycs-impact-report-2025 .threshold-badge { display: inline-block; font-size: 10px; font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: #edf7ed; color: #2e7d32; padding: 2px 8px; border-radius: 20px; margin-bottom: 4px; }
.tlycs-impact-report-2025 .threshold-text { font-size: 11px; color: var(--text-light); line-height: 1.4; }

/* ══════════════════════════════════════
   SECTION 4 — BEST CHARITIES
══════════════════════════════════════ */
.tlycs-impact-report-2025 .sector-block { margin-bottom: 32px; }
.tlycs-impact-report-2025 .sector-header-bar { padding: 10px 16px; border-radius: 6px 6px 0 0; }
.tlycs-impact-report-2025 .sector-header-bar span { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 12px; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; }
.tlycs-impact-report-2025 .sector-table { width: 100%; border-collapse: collapse; font-size: 14px; border: 1px solid var(--border); border-top: none; border-radius: 0 0 6px 6px; overflow: hidden; }
.tlycs-impact-report-2025 .sector-table thead tr { background: #f4f4f4; }
.tlycs-impact-report-2025 .sector-table thead th { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 14px; text-align: left; color: #555; border-bottom: 1px solid var(--border); }
.tlycs-impact-report-2025 .sector-table tbody tr { border-bottom: 1px solid #f5f5f5; }
.tlycs-impact-report-2025 .sector-table tbody tr:last-child { border-bottom: none; }
.tlycs-impact-report-2025 .sector-table tbody td { padding: 10px 14px; vertical-align: top; }
.tlycs-impact-report-2025 .org-name { font-weight: 600; font-size: 13px; color: var(--black); width: 22%; white-space: nowrap; }
.tlycs-impact-report-2025 .reach-desc { font-size: 13px; color: #444; line-height: 1.6; }
.tlycs-impact-report-2025 .reach-desc .fig { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; color: var(--red); }
.tlycs-impact-report-2025 .charities-total { background: #f7f7f7; border: 1px solid var(--border); border-radius: 8px; padding: 14px 20px; display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.tlycs-impact-report-2025 .charities-total .lbl { font-size: 14px; color: #555; }
.tlycs-impact-report-2025 .charities-total .fig { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 22px; color: var(--red); }

/* ══════════════════════════════════════
   SECTION 5 — FUNDS
══════════════════════════════════════ */
.tlycs-impact-report-2025 .fund-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 24px; background: #fff; }
.tlycs-impact-report-2025 .fund-card-header { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.tlycs-impact-report-2025 .fund-name { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 16px; color: #fff; }
.tlycs-impact-report-2025 .fund-raised { font-size: 13px; color: rgba(255,255,255,0.85); }
.tlycs-impact-report-2025 .fund-raised strong { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; color: #fff; font-size: 15px; }
.tlycs-impact-report-2025 .fund-card-body { padding: 20px; }
.tlycs-impact-report-2025 .fund-description { font-size: 14px; line-height: 1.75; color: #444; margin-bottom: 20px; }
.tlycs-impact-report-2025 .metrics-row { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.tlycs-impact-report-2025 .metric-pill { background: #f7f7f7; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; flex: 1; min-width: 110px; }
.tlycs-impact-report-2025 .metric-pill .m-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 4px; }
.tlycs-impact-report-2025 .metric-pill .m-value { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 20px; color: var(--red); line-height: 1.1; margin-bottom: 2px; }
.tlycs-impact-report-2025 .metric-pill .m-sub { font-size: 11px; color: var(--text-muted); }
.tlycs-impact-report-2025 .charities-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; margin-bottom: 10px; }
.tlycs-impact-report-2025 .charity-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tlycs-impact-report-2025 .charity-tag { font-size: 11px; background: #f4f4f4; border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; color: #444; }
.tlycs-impact-report-2025 .alloc-row { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.tlycs-impact-report-2025 .alloc-label { font-size: 13px; color: var(--black); min-width: 90px; }
.tlycs-impact-report-2025 .alloc-track { flex: 1; height: 7px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.tlycs-impact-report-2025 .alloc-fill { height: 7px; border-radius: 4px; }
.tlycs-impact-report-2025 .alloc-pct { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 13px; color: var(--black); min-width: 40px; text-align: right; }

/* ══════════════════════════════════════
   SECTION 6 — WHAT WE'RE WATCHING
══════════════════════════════════════ */
.tlycs-impact-report-2025 .trends-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.tlycs-impact-report-2025 .trend-card { border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; }
.tlycs-impact-report-2025 .trend-eyebrow { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; margin-bottom: 6px; }
.tlycs-impact-report-2025 .trend-title { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 15px; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.tlycs-impact-report-2025 .trend-body { font-size: 13px; line-height: 1.7; color: #555; }
.tlycs-impact-report-2025 .watching-sector { margin-bottom: 28px; }
.tlycs-impact-report-2025 .watching-sector-header { padding: 10px 16px; border-radius: 6px 6px 0 0; }
.tlycs-impact-report-2025 .watching-sector-header span { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 13px; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; }
.tlycs-impact-report-2025 .watching-sector-body { border: 1px solid var(--border); border-top: none; border-radius: 0 0 8px 8px; padding: 20px; }
.tlycs-impact-report-2025 .sector-synthesis { font-size: 14px; line-height: 1.8; color: #444; margin-bottom: 20px; }
.tlycs-impact-report-2025 .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.tlycs-impact-report-2025 .stat-pill { background: #f7f7f7; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.tlycs-impact-report-2025 .stat-value { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 20px; color: var(--red); line-height: 1.1; margin-bottom: 4px; }
.tlycs-impact-report-2025 .stat-label { font-size: 12px; color: #666; line-height: 1.4; }
.tlycs-impact-report-2025 .story-block { background: #f1f1f1; border-radius: 8px; padding: 20px 24px; margin-top: 4px; }
.tlycs-impact-report-2025 .story-eyebrow { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple); margin-bottom: 6px; }
.tlycs-impact-report-2025 .story-org { font-weight: 700; font-size: 14px; color: var(--black); margin-bottom: 16px; }
.tlycs-impact-report-2025 .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tlycs-impact-report-2025 .story-text { font-size: 15px; line-height: 1.8; color: #444; font-style: italic; margin: 0; }
.tlycs-impact-report-2025 .story-image-placeholder { height: 160px; background: #e6e6e6; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.tlycs-impact-report-2025 .story-image-placeholder span { font-size: 11px; color: var(--text-muted); font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.tlycs-impact-report-2025 .story-image { width: 100%; height: auto; display: block; border-radius: 6px; }

/* ══════════════════════════════════════
   SECTION 7 — METHODOLOGY
══════════════════════════════════════ */
.tlycs-impact-report-2025 .metrics-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.tlycs-impact-report-2025 .metric-def-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.tlycs-impact-report-2025 .metric-def-header { padding: 14px 16px; }
.tlycs-impact-report-2025 .metric-abbr { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 24px; color: #fff; line-height: 1; margin-bottom: 2px; }
.tlycs-impact-report-2025 .metric-full-name { font-size: 11px; color: rgba(255,255,255,0.8); line-height: 1.3; }
.tlycs-impact-report-2025 .metric-def-body { padding: 16px; background: #fff; }
.tlycs-impact-report-2025 .metric-plain { font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.5; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
.tlycs-impact-report-2025 .metric-technical { font-size: 13px; color: #555; line-height: 1.75; }
.tlycs-impact-report-2025 .caveat-block { border-left: 3px solid #ddd; padding: 16px 20px; background: #fafafa; border-radius: 0 8px 8px 0; margin-bottom: 28px; }
.tlycs-impact-report-2025 .caveat-title { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
.tlycs-impact-report-2025 .caveat-text { font-size: 13px; color: #666; line-height: 1.8; margin-bottom: 12px; }
.tlycs-impact-report-2025 .caveat-text:last-child { margin-bottom: 0; }
.tlycs-impact-report-2025 .bib-title { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
.tlycs-impact-report-2025 .bib-item { font-size: 12px; color: #666; line-height: 1.65; margin-bottom: 8px; padding-left: 16px; text-indent: -16px; }
.tlycs-impact-report-2025 .bib-item a { color: var(--red); text-decoration: none; }

/* ══════════════════════════════════════
   SECTION 8 — OTHER RESOURCES
══════════════════════════════════════ */
.tlycs-impact-report-2025 .resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.tlycs-impact-report-2025 .resource-card { border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.tlycs-impact-report-2025 a.resource-card:hover { border-color: var(--red); box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.tlycs-impact-report-2025 .contact-email a { color: inherit; text-decoration: none; }
.tlycs-impact-report-2025 .contact-email a:hover { text-decoration: underline; }
.tlycs-impact-report-2025 .resource-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--red); margin-bottom: 4px; }
.tlycs-impact-report-2025 .resource-icon svg { width: 24px; height: 24px; stroke: #fff; }
.tlycs-impact-report-2025 .resource-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }

/* Collapsible bibliography */
.tlycs-impact-report-2025 .bib-collapse { border: 1px solid #d8d8d8; border-radius: 10px; margin-top: 16px; background: #fff; overflow: hidden; }
.tlycs-impact-report-2025 .bib-summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: #ececec; gap: 12px; }
.tlycs-impact-report-2025 .bib-summary:hover { background: #e0e0e0; }
.tlycs-impact-report-2025 .bib-summary::-webkit-details-marker { display: none; }
.tlycs-impact-report-2025 .bib-summary .bib-title { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 16px; color: #231F20; }
.tlycs-impact-report-2025 .bib-summary .bib-hint { font-size: 12px; font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.06em; margin-left: auto; margin-right: 12px; }
.tlycs-impact-report-2025 .bib-collapse[open] .bib-hint .bib-hint-show { display: none; }
.tlycs-impact-report-2025 .bib-hint-hide { display: none; }
.tlycs-impact-report-2025 .bib-collapse[open] .bib-hint .bib-hint-hide { display: inline; }
.tlycs-impact-report-2025 .bib-chev { font-size: 18px; color: #555; transition: transform 0.2s; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid #555; }
.tlycs-impact-report-2025 .bib-collapse[open] .bib-chev { transform: rotate(180deg); }
.tlycs-impact-report-2025 .bib-list { padding: 20px; }

.tlycs-impact-report-2025 .resource-name { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 14px; color: var(--black); }
.tlycs-impact-report-2025 .resource-desc { font-size: 13px; color: #666; line-height: 1.6; flex: 1; }
.tlycs-impact-report-2025 .resource-link { font-size: 12px; font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; color: var(--red); text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; margin-top: auto; }
.tlycs-impact-report-2025 .contact-block { background: var(--light-gray); border: 1px solid #ddd; border-radius: 10px; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.tlycs-impact-report-2025 .contact-label { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.tlycs-impact-report-2025 .contact-title { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.tlycs-impact-report-2025 .contact-email { font-size: 13px; color: var(--red); }
.tlycs-impact-report-2025 .give-block { border: 2px solid var(--red); border-radius: 10px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tlycs-impact-report-2025 .give-title { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 18px; color: var(--black); margin-bottom: 4px; }
.tlycs-impact-report-2025 .give-sub { font-size: 14px; color: #555; }
/* Literally copy the DONATE button's computed styles. DONATE on idle has
   background-color: rgb(230, 75, 60) — 1 unit off from var(--red) which is
   rgb(230, 76, 60). Use the literal value to pixel-match. On hover both buttons
   share: background rgb(230, 75, 60), color white, transform translateY(-2px),
   box-shadow rgba(230, 76, 60, 0.5) 0px 2px 8px, transition transform 0.3s
   ease-out + box-shadow 0.3s ease-out. */
.tlycs-impact-report-2025 .give-btn { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; background-color: rgb(230, 75, 60); color: rgb(255, 255, 255); border: none; border-radius: 100px; padding: 12px 28px; white-space: nowrap; text-decoration: none; display: inline-block; transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; }
.tlycs-impact-report-2025 a.give-btn:hover,
.tlycs-impact-report-2025 a.give-btn:focus,
.tlycs-impact-report-2025 a.give-btn:active,
.tlycs-impact-report-2025 a.give-btn:focus-visible { background-color: rgb(230, 75, 60) !important; color: rgb(255, 255, 255) !important; transform: translateY(-2px); box-shadow: rgba(230, 76, 60, 0.5) 0px 2px 8px !important; text-decoration: none; }

/* ── INSERTS ── */
.tlycs-impact-report-2025 .insert { background: #f9f9f9; border-left: 2px solid #ddd; border-radius: 0 6px 6px 0; padding: 12px 16px; margin: 20px 0; }
.tlycs-impact-report-2025 .insert-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.tlycs-impact-report-2025 .insert-icon { width: 18px; height: 18px; background: #ccc; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tlycs-impact-report-2025 .insert-icon svg { width: 9px; height: 9px; fill: #fff; }
.tlycs-impact-report-2025 .insert-label { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: #aaa; }
.tlycs-impact-report-2025 .insert-title { font-size: 12px; font-weight: 600; color: #555; margin-bottom: 6px; }
.tlycs-impact-report-2025 .insert-body { font-size: 12px; line-height: 1.65; color: #777; }

/* ── PULL QUOTE ── */
.tlycs-impact-report-2025 .pull-quote { border-left: 3px solid var(--red); padding: 12px 0 12px 20px; margin: 28px 0; position: relative; }
.tlycs-impact-report-2025 .pull-quote::before { content: '\201C'; font-family: Georgia, serif; font-size: 64px; color: var(--dark-gray); line-height: 1; position: absolute; top: -8px; left: 16px; opacity: 0.15; }
.tlycs-impact-report-2025 .pull-quote p { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 18px; line-height: 1.45; color: var(--black); padding-left: 36px; }

/* ── SECTOR ICONS ── */
.tlycs-impact-report-2025 .sector-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tlycs-impact-report-2025 .sector-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tlycs-impact-report-2025 .sector-icon svg { width: 18px; height: 18px; }

/* ── VISUAL DIVIDER ── */
.tlycs-impact-report-2025 .red-rule { width: 40px; height: 3px; background: var(--red); margin: 20px 0; border-radius: 2px; }

/* ── STAT CALLOUT ── */
.tlycs-impact-report-2025 .stat-callout { display: flex; gap: 24px; margin: 24px 0; flex-wrap: wrap; }
.tlycs-impact-report-2025 .stat-callout-item { flex: 1; min-width: 140px; }
.tlycs-impact-report-2025 .stat-callout-number { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-weight: 700; font-size: 36px; color: var(--red); line-height: 1; margin-bottom: 4px; }
.tlycs-impact-report-2025 .stat-callout-label { font-size: 13px; color: #555; line-height: 1.5; }

/* ── PRINT ── */
@media print {
  .tlycs-impact-report-2025 { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .tlycs-impact-report-2025 .section { page-break-inside: avoid; }
  .tlycs-impact-report-2025 .fund-card { page-break-inside: avoid; }
  .tlycs-impact-report-2025 .watching-sector { page-break-inside: avoid; }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   Light tightening: 3-col grids drop to 2-col where it helps,
   section padding shrinks, cover headline scales down.
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tlycs-impact-report-2025 .section { padding: 40px 32px; }
  .tlycs-impact-report-2025 .cover-title { font-size: 52px; }
  .tlycs-impact-report-2025 .top-metric .value { font-size: 44px; }
  .tlycs-impact-report-2025 .trends-grid,
  .tlycs-impact-report-2025 .metrics-cards,
  .tlycs-impact-report-2025 .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   All multi-column grids collapse to 1 column, typography scales
   down, sector tables drop the header and stack each row as a card,
   horizontal flex rows (portfolio / alloc / fund-card-header /
   give-block / signatories) become vertical stacks.
══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Section padding */
  .tlycs-impact-report-2025 .section { padding: 32px 20px; }

  /* Cover */
  .tlycs-impact-report-2025 .cover { padding: 24px 20px; min-height: 360px; }
  .tlycs-impact-report-2025 .cover-title { font-size: 40px; line-height: 1.08; }
  .tlycs-impact-report-2025 .cover-year { font-size: 16px; }

  /* Typography */
  .tlycs-impact-report-2025 h1, .tlycs-impact-report-2025 .h1 { font-size: 28px; }
  .tlycs-impact-report-2025 h2, .tlycs-impact-report-2025 .h2 { font-size: 24px; }
  .tlycs-impact-report-2025 h3, .tlycs-impact-report-2025 .h3 { font-size: 16px; }
  .tlycs-impact-report-2025 .intro-text { font-size: 15px; }

  /* Contents inline grid (1.7fr 1fr → 1fr). The inline `style=""` on
     the Contents wrapper has higher specificity than any selector,
     so `!important` is required here to override it. */
  .tlycs-impact-report-2025 .section > div[style*="grid-template-columns: 1.7fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Section 1 — Hero metrics + sector breakdowns */
  .tlycs-impact-report-2025 .top-metrics { grid-template-columns: 1fr; }
  .tlycs-impact-report-2025 .top-metric { padding: 20px 22px; }
  .tlycs-impact-report-2025 .top-metric .value { font-size: 40px; }
  .tlycs-impact-report-2025 .pillars { grid-template-columns: 1fr; }
  .tlycs-impact-report-2025 .cost-grid { grid-template-columns: 1fr; }
  .tlycs-impact-report-2025 .pillar-number { font-size: 24px; }

  /* Portfolio rows — stack label (full row) → pct → track → reach */
  .tlycs-impact-report-2025 .portfolio-row { flex-wrap: wrap; gap: 6px 12px; margin-bottom: 16px; }
  .tlycs-impact-report-2025 .portfolio-label { min-width: auto; flex: 0 0 100%; font-weight: 600; }
  .tlycs-impact-report-2025 .portfolio-track { flex: 1 1 100%; order: 3; }
  .tlycs-impact-report-2025 .portfolio-pct { min-width: auto; order: 2; text-align: left; }
  .tlycs-impact-report-2025 .portfolio-reach { min-width: auto; order: 4; flex: 1 1 100%; text-align: left; }

  /* Section 2 — Sector tables: hide thead, stack each cell as a block */
  .tlycs-impact-report-2025 .sector-table thead { display: none; }
  .tlycs-impact-report-2025 .sector-table tbody tr { display: block; padding: 12px 14px; border-bottom: 1px solid #eee; }
  .tlycs-impact-report-2025 .sector-table tbody td { display: block; padding: 4px 0; }
  .tlycs-impact-report-2025 .sector-table .org-name { width: auto; white-space: normal; font-size: 14px; margin-bottom: 4px; }
  .tlycs-impact-report-2025 .sector-table .reach-desc { font-size: 13px; }
  .tlycs-impact-report-2025 .charities-total { flex-wrap: wrap; padding: 14px 16px; }

  /* Section 3 — Funds */
  .tlycs-impact-report-2025 .fund-card-header { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 16px; }
  .tlycs-impact-report-2025 .fund-card-body { padding: 16px; }
  .tlycs-impact-report-2025 .metric-pill { flex: 1 1 calc(50% - 5px); min-width: 0; }
  .tlycs-impact-report-2025 .alloc-row { flex-wrap: wrap; gap: 6px 12px; }
  .tlycs-impact-report-2025 .alloc-label { flex: 0 0 100%; font-weight: 600; }
  .tlycs-impact-report-2025 .alloc-track { flex: 1 1 100%; order: 3; }
  .tlycs-impact-report-2025 .alloc-pct { order: 2; min-width: auto; text-align: left; }

  /* Section 4 — Trends + impact stories */
  .tlycs-impact-report-2025 .trends-grid { grid-template-columns: 1fr; }
  .tlycs-impact-report-2025 .stats-row { grid-template-columns: 1fr; }
  .tlycs-impact-report-2025 .story-grid { grid-template-columns: 1fr; gap: 16px; }
  .tlycs-impact-report-2025 .story-block { padding: 16px 18px; }

  /* Section 2 — CEO letter signatories */
  .tlycs-impact-report-2025 .signatories { flex-direction: column; gap: 20px; }

  /* Section 5 — Methodology */
  .tlycs-impact-report-2025 .metrics-cards { grid-template-columns: 1fr; }

  /* Section 6 — Resources + contact + give */
  .tlycs-impact-report-2025 .resources-grid { grid-template-columns: 1fr; }
  .tlycs-impact-report-2025 .contact-block { grid-template-columns: 1fr; padding: 20px; gap: 16px; }
  .tlycs-impact-report-2025 .give-block { flex-direction: column; align-items: flex-start; padding: 18px 20px; }

  /* Pull quote */
  .tlycs-impact-report-2025 .pull-quote { padding-left: 14px; }
  .tlycs-impact-report-2025 .pull-quote p { padding-left: 24px; font-size: 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   Further padding reduction, smaller cover headline, metric pills
   stack to 1 column for breathing room on narrow phones.
══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .tlycs-impact-report-2025 .section { padding: 28px 16px; }
  .tlycs-impact-report-2025 .cover { padding: 20px 16px; min-height: 320px; }
  .tlycs-impact-report-2025 .cover-title { font-size: 32px; }
  .tlycs-impact-report-2025 .top-metric .value { font-size: 36px; }
  .tlycs-impact-report-2025 .metric-pill { flex: 1 1 100%; }
}
