I need to do a topic presentation in dyslipidemia given me from AHA 2026 guidelines and ESC 2025

Asking for Preferences
Searching the Web

AHA 2026 dyslipidemia cholesterol guidelines key recommendations

Searching the Web

ESC 2025 dyslipidemia guidelines key recommendations LDL targets

Finding Sources
Reading File
Reading File
Reading Web Page

https://heartcare.sydney/acc-aha-2026-dyslipidemia-guideline…

Finding Sources
Running Command

mkdir -p /home/daytona/workspace/dyslipidemia-presentation && ls /home/daytona/workspace/dyslipidemia-presentation/

Writing File

~/dyslipidemia-presentation/build.js

const pptxgen = require("pptxgenjs");

const pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
pres.title = "Dyslipidemia: AHA 2026 & ESC 2025 Guidelines";
pres.author = "Medical Education";

// ─── COLOR PALETTE ───────────────────────────────────────────
// Deep navy dominant, crimson accent, light steel info
const C = {
  navy:    "0A1628",
  navyMid: "12274F",
  blue:    "1A3A6B",
  crimson: "C0392B",
  gold:    "F0A500",
  teal:    "1ABC9C",
  white:   "FFFFFF",
  offWhite:"F0F4FA",
  silver:  "B0BEC5",
  lightBg: "E8EEF7",
  textDark:"1C2B3A",
  green:   "27AE60",
  orange:  "E67E22",
};

// ─── HELPER FUNCTIONS ─────────────────────────────────────────
function addSlideHeader(slide, title, subtitle, darkBg = false) {
  const bg = darkBg ? C.navy : C.navyMid;
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.05, fill: { color: bg } });
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 1.05, w: 10, h: 0.07, fill: { color: C.crimson } });
  slide.addText(title, { x: 0.35, y: 0.08, w: 8.5, h: 0.62, fontSize: 24, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
  if (subtitle) {
    slide.addText(subtitle, { x: 0.35, y: 0.68, w: 8.5, h: 0.38, fontSize: 13, color: C.silver, fontFace: "Calibri", margin: 0 });
  }
}

function addFooter(slide, text) {
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 5.35, w: 10, h: 0.275, fill: { color: C.navy } });
  slide.addText(text, { x: 0.3, y: 5.36, w: 9.4, h: 0.25, fontSize: 9, color: C.silver, fontFace: "Calibri", margin: 0, align: "center" });
}

function addBadge(slide, text, x, y, color) {
  slide.addShape(pres.ShapeType.roundRect, { x, y, w: 1.6, h: 0.32, fill: { color }, rectRadius: 0.05 });
  slide.addText(text, { x, y, w: 1.6, h: 0.32, fontSize: 9, bold: true, color: C.white, align: "center", fontFace: "Calibri", margin: 0 });
}

function riskBox(slide, label, ldl, nonHdl, color, x, y) {
  slide.addShape(pres.ShapeType.roundRect, { x, y, w: 2.8, h: 1.55, fill: { color }, rectRadius: 0.08, line: { color: C.white, width: 1 } });
  slide.addText(label, { x: x + 0.08, y: y + 0.08, w: 2.65, h: 0.38, fontSize: 13, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
  slide.addShape(pres.ShapeType.rect, { x, y: y + 0.5, w: 2.8, h: 0.025, fill: { color: C.white } });
  slide.addText([
    { text: "LDL-C < " + ldl, options: { bold: true, breakLine: true } },
    { text: "Non-HDL-C < " + nonHdl }
  ], { x: x + 0.08, y: y + 0.55, w: 2.65, h: 0.85, fontSize: 12, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
}

// ─────────────────────────────────────────────────────────────
// SLIDE 1 — TITLE
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.navy } });
  // decorative accent bar
  s.addShape(pres.ShapeType.rect, { x: 0, y: 3.55, w: 10, h: 0.065, fill: { color: C.crimson } });
  // top accent line
  s.addShape(pres.ShapeType.rect, { x: 0.4, y: 0.45, w: 2.6, h: 0.065, fill: { color: C.crimson } });

  s.addText("DYSLIPIDEMIA", { x: 0.4, y: 0.6, w: 9.2, h: 0.9, fontSize: 52, bold: true, color: C.white, fontFace: "Calibri", charSpacing: 6, margin: 0 });
  s.addText("Management & Treatment Guidelines", { x: 0.4, y: 1.5, w: 9.2, h: 0.55, fontSize: 28, color: C.gold, fontFace: "Calibri", margin: 0 });
  s.addText([
    { text: "AHA / ACC 2026", options: { bold: true, color: C.teal } },
    { text: "   ·   ", options: { color: C.silver } },
    { text: "ESC / EAS 2025", options: { bold: true, color: C.gold } }
  ], { x: 0.4, y: 2.2, w: 9.2, h: 0.5, fontSize: 20, fontFace: "Calibri", margin: 0 });

  s.addText("Focused Update for Medical Students", { x: 0.4, y: 3.75, w: 9.2, h: 0.4, fontSize: 14, color: C.silver, fontFace: "Calibri", margin: 0 });
  s.addText("June 2026", { x: 0.4, y: 4.15, w: 9.2, h: 0.35, fontSize: 13, color: C.silver, fontFace: "Calibri", margin: 0 });
}

// ─────────────────────────────────────────────────────────────
// SLIDE 2 — OVERVIEW / AGENDA
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Presentation Overview", "What we will cover today");

  const items = [
    ["01", "What is Dyslipidemia?", "Definition, types, epidemiology"],
    ["02", "Pathophysiology", "Atherogenesis and lipid particles"],
    ["03", "Risk Assessment", "PREVENT-ASCVD, SCORE2, biomarkers"],
    ["04", "Screening & Diagnosis", "Lipid panel, Lp(a), ApoB"],
    ["05", "AHA 2026 Highlights", "New goals, PREVENT equations, CAC"],
    ["06", "ESC 2025 Highlights", "Targets, extreme risk, fire-to-target"],
    ["07", "Treatment Approach", "Lifestyle, statins, combination therapy"],
    ["08", "Special Populations", "Diabetes, FH, children, pregnancy"],
    ["09", "AHA vs ESC Comparison", "Key differences side-by-side"],
    ["10", "Take-Home Messages", "Key learning points"],
  ];

  items.forEach(([num, title, sub], i) => {
    const col = i < 5 ? 0 : 1;
    const row = i < 5 ? i : i - 5;
    const x = col === 0 ? 0.3 : 5.2;
    const y = 1.25 + row * 0.8;

    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.5, h: 0.62, fill: { color: C.blue }, rectRadius: 0.06 });
    s.addText(num, { x: x + 0.1, y, w: 0.5, h: 0.62, fontSize: 16, bold: true, color: C.gold, fontFace: "Calibri", align: "center", margin: 0 });
    s.addShape(pres.ShapeType.rect, { x: x + 0.55, y: y + 0.12, w: 0.025, h: 0.38, fill: { color: C.silver } });
    s.addText(title, { x: x + 0.68, y: y + 0.04, w: 3.72, h: 0.28, fontSize: 12, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
    s.addText(sub, { x: x + 0.68, y: y + 0.32, w: 3.72, h: 0.22, fontSize: 9, color: C.silver, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 3 — WHAT IS DYSLIPIDEMIA?
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "What is Dyslipidemia?", "Definition, types & burden of disease");

  // Definition box
  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 1.25, w: 9.4, h: 0.82, fill: { color: C.blue }, rectRadius: 0.08 });
  s.addText([
    { text: "Definition: ", options: { bold: true, color: C.gold } },
    { text: "An abnormality in the concentration or composition of circulating lipoproteins — including elevated LDL-C, low HDL-C, elevated triglycerides, or elevated Lp(a) — that increases ASCVD risk.", options: { color: C.white } }
  ], { x: 0.5, y: 1.3, w: 9.1, h: 0.72, fontSize: 13, fontFace: "Calibri", margin: 0 });

  // Types grid
  const types = [
    { label: "↑ LDL-C", desc: "Most common; primary target of therapy", color: C.crimson },
    { label: "↓ HDL-C", desc: "Independent CV risk factor; lifestyle-modified", color: C.orange },
    { label: "↑ Triglycerides", desc: "Hypertriglyceridemia; pancreatitis risk at very high levels", color: C.blue },
    { label: "↑ Lp(a)", desc: "Genetically determined; newly emphasized in both guidelines", color: C.navyMid },
  ];
  types.forEach(({ label, desc, color }, i) => {
    const x = 0.3 + (i % 2) * 4.75;
    const y = 2.25 + Math.floor(i / 2) * 1.1;
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.45, h: 0.9, fill: { color }, rectRadius: 0.07 });
    s.addText(label, { x: x + 0.15, y: y + 0.05, w: 4.2, h: 0.35, fontSize: 15, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
    s.addText(desc, { x: x + 0.15, y: y + 0.42, w: 4.2, h: 0.42, fontSize: 11, color: C.offWhite, fontFace: "Calibri", margin: 0 });
  });

  // Stat box
  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 4.5, w: 9.4, h: 0.72, fill: { color: C.crimson }, rectRadius: 0.06 });
  s.addText("⚠  Cardiovascular disease remains the #1 cause of death globally — dyslipidemia is a major modifiable risk factor in both AHA 2026 and ESC 2025 frameworks.", {
    x: 0.5, y: 4.54, w: 9.1, h: 0.62, fontSize: 12, color: C.white, fontFace: "Calibri", bold: true, margin: 0
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 4 — PATHOPHYSIOLOGY
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Pathophysiology", "Atherogenic lipoprotein particles and ASCVD");

  // Flow diagram: LDL → Endothelium → Foam cells → Plaque
  const steps = [
    { title: "Elevated LDL-C / ApoB", sub: "LDL particles enter subendothelial space; quantity driven by ApoB (one per particle)", color: C.blue },
    { title: "Oxidation & Inflammation", sub: "LDL oxidized → activates endothelium → monocyte recruitment → macrophage infiltration", color: C.orange },
    { title: "Foam Cell Formation", sub: "Macrophages engulf ox-LDL → foam cells → fatty streak (earliest plaque lesion)", color: C.crimson },
    { title: "Plaque Growth & Rupture", sub: "Fibrous cap forms → plaque vulnerability → rupture → ACS / stroke / PAD", color: C.navyMid },
  ];

  steps.forEach(({ title, sub, color }, i) => {
    const x = 0.2 + i * 2.42;
    s.addShape(pres.ShapeType.roundRect, { x, y: 1.3, w: 2.22, h: 1.6, fill: { color }, rectRadius: 0.08 });
    s.addText(title, { x: x + 0.1, y: 1.38, w: 2.02, h: 0.5, fontSize: 11, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
    s.addText(sub, { x: x + 0.08, y: 1.9, w: 2.06, h: 0.95, fontSize: 9.5, color: C.offWhite, fontFace: "Calibri", margin: 0 });
    // arrow
    if (i < 3) {
      s.addText("→", { x: x + 2.22, y: 1.82, w: 0.2, h: 0.4, fontSize: 18, bold: true, color: C.navyMid, margin: 0 });
    }
  });

  // Key particles
  s.addShape(pres.ShapeType.rect, { x: 0.2, y: 3.1, w: 9.6, h: 0.035, fill: { color: C.silver } });
  s.addText("Key Atherogenic Particles Recognized in Both Guidelines:", { x: 0.3, y: 3.2, w: 9.4, h: 0.35, fontSize: 13, bold: true, color: C.navyMid, fontFace: "Calibri", margin: 0 });

  const particles = [
    ["LDL-C", "Primary driver; each particle carries one ApoB"],
    ["VLDL / IDL remnants", "Triglyceride-rich remnant particles; now highlighted in AHA 2026"],
    ["Lp(a)", "Genetically elevated; pro-atherogenic + pro-thrombotic; independent of LDL-C"],
    ["Low HDL-C", "Reduced reverse cholesterol transport; associated with higher ASCVD risk"],
  ];
  particles.forEach(([pt, desc], i) => {
    const x = i < 2 ? 0.3 : 5.1;
    const y = 3.65 + (i % 2) * 0.62;
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.5, h: 0.52, fill: { color: C.lightBg }, rectRadius: 0.05 });
    s.addText([{ text: pt + ": ", options: { bold: true, color: C.blue } }, { text: desc, options: { color: C.textDark } }],
      { x: x + 0.12, y, w: 4.28, h: 0.52, fontSize: 10.5, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 5 — RISK ASSESSMENT
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Cardiovascular Risk Assessment", "PREVENT-ASCVD (AHA 2026) vs SCORE2 (ESC 2025)");

  // Two columns
  // AHA column
  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 1.25, w: 4.45, h: 3.7, fill: { color: C.navy }, rectRadius: 0.09 });
  addBadge(s, "AHA 2026", 0.3, 1.25, C.crimson);
  s.addText("PREVENT-ASCVD Equations", { x: 0.45, y: 1.68, w: 4.1, h: 0.42, fontSize: 15, bold: true, color: C.gold, fontFace: "Calibri", margin: 0 });
  const ahaPoints = [
    "Replaces the 10-year Pooled Cohort Equations (PCE)",
    "Predicts 10-year AND 30-year ASCVD risk",
    "Includes: age, sex, race, BP, diabetes, smoking, kidney function, social deprivation",
    "Integrates metabolic (HbA1c) and kidney (eGFR/uACR) variables",
    "Better calibrated across diverse populations",
    "Used to guide initiation of pharmacotherapy in primary prevention",
  ];
  s.addText(ahaPoints.map((t, i) => ({ text: "• " + t, options: { breakLine: i < ahaPoints.length - 1, color: i === 0 ? C.gold : C.offWhite } })),
    { x: 0.45, y: 2.2, w: 4.1, h: 2.6, fontSize: 10.5, fontFace: "Calibri", margin: 0 });

  // ESC column
  s.addShape(pres.ShapeType.roundRect, { x: 5.25, y: 1.25, w: 4.45, h: 3.7, fill: { color: C.navyMid }, rectRadius: 0.09 });
  addBadge(s, "ESC 2025", 5.25, 1.25, C.gold);
  s.addText("SCORE2 / SCORE2-OP", { x: 5.4, y: 1.68, w: 4.1, h: 0.42, fontSize: 15, bold: true, color: C.teal, fontFace: "Calibri", margin: 0 });
  const escPoints = [
    "SCORE2 for <70 years; SCORE2-OP for ≥70 years",
    "Estimates 10-year CV event risk (fatal + non-fatal)",
    "Region-calibrated (low / moderate / high / very high CV-risk countries)",
    "Risk modifiers refine assessment: Lp(a), CAC, ABI, hsCRP, renal function",
    "Risk categories: Low, Moderate, High, Very High, Extreme",
    "SCORE2 replaces SCORE1 which only predicted CV mortality",
  ];
  s.addText(escPoints.map((t, i) => ({ text: "• " + t, options: { breakLine: i < escPoints.length - 1, color: i === 0 ? C.teal : C.offWhite } })),
    { x: 5.4, y: 2.2, w: 4.1, h: 2.6, fontSize: 10.5, fontFace: "Calibri", margin: 0 });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 6 — SCREENING & DIAGNOSIS
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Screening & Diagnosis", "Lipid panel, Lp(a), and ApoB — key testing updates in 2025/2026");

  const panels = [
    {
      title: "Fasting Lipid Panel",
      color: C.blue,
      items: ["Total cholesterol, LDL-C, HDL-C, triglycerides, non-HDL-C", "Non-fasting acceptable for most screening scenarios", "Repeat 4–12 weeks after therapy initiation, then every 6–12 months"],
      x: 0.3, y: 1.28, w: 4.48
    },
    {
      title: "Lipoprotein(a) — Lp(a)",
      color: C.crimson,
      items: ["AHA 2026: Universal adult screening ≥1× in a lifetime (Class I)", "ESC 2025: Measure in adults with CV risk assessment", "≥50 mg/dL (≥125 nmol/L) = significant risk modifier", "Largely genetic; minimally affected by lifestyle changes"],
      x: 5.22, y: 1.28, w: 4.48
    },
  ];

  panels.forEach(({ title, color, items, x, y, w }) => {
    s.addShape(pres.ShapeType.roundRect, { x, y, w, h: 2.4, fill: { color }, rectRadius: 0.08 });
    s.addText(title, { x: x + 0.12, y: y + 0.1, w: w - 0.24, h: 0.42, fontSize: 14, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
    s.addText(items.map((t, i) => ({ text: "• " + t, options: { breakLine: i < items.length - 1 } })),
      { x: x + 0.12, y: y + 0.58, w: w - 0.24, h: 1.7, fontSize: 10.5, color: C.offWhite, fontFace: "Calibri", margin: 0 });
  });

  // ApoB row
  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 3.88, w: 9.4, h: 1.38, fill: { color: C.navyMid }, rectRadius: 0.08 });
  s.addText("ApoB — Apolipoprotein B", { x: 0.45, y: 3.96, w: 9.1, h: 0.38, fontSize: 14, bold: true, color: C.gold, fontFace: "Calibri", margin: 0 });
  const apobItems = [
    "Each atherogenic particle carries exactly one ApoB molecule → reflects particle number more accurately than LDL-C",
    "AHA 2026: Selective measurement to refine risk (particularly when LDL-C and non-HDL-C disagree, e.g., hypertriglyceridemia)",
    "Goal for very high risk: ApoB < 65 mg/dL; high risk: < 80 mg/dL  |  ESC 2025 also endorses ApoB as an alternative treatment target",
  ];
  s.addText(apobItems.map((t, i) => ({ text: "• " + t, options: { breakLine: i < apobItems.length - 1 } })),
    { x: 0.45, y: 4.38, w: 9.1, h: 0.82, fontSize: 10.5, color: C.offWhite, fontFace: "Calibri", margin: 0 });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 7 — AHA 2026 KEY CHANGES
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.navy } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 5.625, fill: { color: C.crimson } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 1.08, w: 10, h: 0.06, fill: { color: C.crimson } });
  s.addText("AHA / ACC 2026 — Key Updates", { x: 0.35, y: 0.1, w: 9.3, h: 0.62, fontSize: 26, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
  s.addText("Replaces the 2018 Blood Cholesterol Guideline  •  Published March 2026 in Circulation", { x: 0.35, y: 0.68, w: 9.3, h: 0.34, fontSize: 12, color: C.silver, fontFace: "Calibri", margin: 0 });

  const changes = [
    { num: "01", title: "PREVENT-ASCVD Equations", desc: "Replaces PCE; estimates 10- and 30-year risk; better calibrated across diverse populations; includes eGFR and metabolic variables." },
    { num: "02", title: "Restored LDL-C Goals", desc: "2018 guideline removed fixed targets — 2026 restores them. Very high risk: LDL-C <55; ASCVD not VHR: <70; primary prevention by risk level." },
    { num: "03", title: "Universal Lp(a) Screening", desc: "All adults should have Lp(a) measured ≥1× in a lifetime (Class I COR). Children with FH or family history: consider testing." },
    { num: "04", title: "Expanded CAC Scoring", desc: "CAC 0 = low near-term risk; CAC 1–99: LDL-C goal <100; CAC 100–999 or ≥75th%ile: <70; CAC ≥1000: <55 mg/dL." },
    { num: "05", title: "Five New FDA-Approved Therapies", desc: "Inclisiran (siRNA PCSK9i), bempedoic acid, evinacumab (HoFH), pelacarsen (Lp(a)↓), olezarsen (TG↓) now incorporated." },
    { num: "06", title: "No Benefit: Dietary Supplements", desc: "Class 3 recommendation against fish oil, red yeast rice, plant sterols as routine ASCVD risk-reduction strategies." },
  ];

  changes.forEach(({ num, title, desc }, i) => {
    const col = i % 2;
    const row = Math.floor(i / 2);
    const x = 0.3 + col * 4.85;
    const y = 1.25 + row * 1.35;
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.55, h: 1.2, fill: { color: C.navyMid }, rectRadius: 0.07, line: { color: C.blue, width: 0.5 } });
    s.addText(num, { x: x + 0.1, y: y + 0.06, w: 0.5, h: 0.38, fontSize: 13, bold: true, color: C.crimson, fontFace: "Calibri", margin: 0 });
    s.addText(title, { x: x + 0.58, y: y + 0.06, w: 3.87, h: 0.38, fontSize: 12, bold: true, color: C.gold, fontFace: "Calibri", margin: 0 });
    s.addText(desc, { x: x + 0.12, y: y + 0.48, w: 4.3, h: 0.65, fontSize: 9.5, color: C.silver, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 8 — AHA 2026 LDL-C GOALS
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "AHA 2026 — LDL-C Treatment Goals by Risk", "Absolute targets + ≥50% LDL-C reduction required");

  // Risk boxes
  const goals = [
    { label: "Secondary\nPrevention\n(Very High Risk)", ldl: "55 mg/dL", nonHdl: "85 mg/dL", color: C.crimson, x: 0.3 },
    { label: "Secondary\nPrevention\n(Not VHR)", ldl: "70 mg/dL", nonHdl: "100 mg/dL", color: C.orange, x: 3.2 },
    { label: "Primary Prev\nDiabetes or\nMultiple RF", ldl: "70–100 mg/dL", nonHdl: "100–130 mg/dL", color: C.blue, x: 6.1 },
  ];

  goals.forEach(({ label, ldl, nonHdl, color, x }) => {
    riskBox(s, label, ldl, nonHdl, color, x, 1.25);
  });

  // CAC table
  s.addText("CAC Score → LDL-C Goal (Subclinical Atherosclerosis):", { x: 0.3, y: 3.0, w: 9.4, h: 0.38, fontSize: 13, bold: true, color: C.navyMid, fontFace: "Calibri", margin: 0 });

  const cacRows = [
    ["CAC Score", "Interpretation", "LDL-C Goal"],
    ["0 AU", "Very low near-term risk", "Defer pharmacotherapy; lifestyle"],
    ["1–99 AU & <75th %ile", "Mild subclinical disease", "< 100 mg/dL"],
    ["100–999 AU or ≥75th %ile", "Moderate-High subclinical", "< 70 mg/dL"],
    ["≥ 1000 AU", "Severe subclinical disease", "< 55 mg/dL"],
  ];
  cacRows.forEach((row, ri) => {
    row.forEach((cell, ci) => {
      const bg = ri === 0 ? C.navyMid : (ri % 2 === 0 ? C.lightBg : C.white);
      const textColor = ri === 0 ? C.white : C.textDark;
      s.addShape(pres.ShapeType.rect, { x: 0.3 + ci * 3.13, y: 3.45 + ri * 0.36, w: 3.13, h: 0.36, fill: { color: bg } });
      s.addText(cell, { x: 0.38 + ci * 3.13, y: 3.47 + ri * 0.36, w: 2.97, h: 0.32, fontSize: ri === 0 ? 10 : 9.5, bold: ri === 0, color: textColor, fontFace: "Calibri", margin: 0 });
    });
  });

  s.addText("Very High Risk = ≥2 major ASCVD events OR 1 major event + ≥2 high-risk conditions (e.g. DM, CKD, HF, PAD, hypertension, active smoking, age >65, prior PCI/CABG)", {
    x: 0.3, y: 5.27, w: 9.4, h: 0.3, fontSize: 8.5, color: C.silver, fontFace: "Calibri", italic: true, margin: 0
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 9 — ESC 2025 KEY CHANGES
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.navyMid } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 5.625, fill: { color: C.gold } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 1.08, w: 10, h: 0.06, fill: { color: C.gold } });
  s.addText("ESC / EAS 2025 — Focused Update", { x: 0.35, y: 0.1, w: 9.3, h: 0.62, fontSize: 26, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
  s.addText("Focused update of 2019 guidelines  •  Published August 29, 2025  •  European Heart Journal", { x: 0.35, y: 0.68, w: 9.3, h: 0.34, fontSize: 12, color: C.silver, fontFace: "Calibri", margin: 0 });

  const changes = [
    { num: "01", title: "LDL-C Targets Reaffirmed", desc: "Low: <116 mg/dL; Moderate: <100; High: <70; Very High: <55; Extreme (new): <40 mg/dL. Lower is better paradigm maintained." },
    { num: "02", title: "NEW: Extreme Risk Category", desc: "Patients with CVD + new vascular event despite max statin OR polyvascular disease → LDL-C goal <40 mg/dL." },
    { num: "03", title: "Fire-to-Target Strategy", desc: "Shift from stepwise to upfront combination therapy (statin + ezetimibe) — especially at ACS hospitalization. Speed to goal matters." },
    { num: "04", title: "Risk Modifiers Incorporated", desc: "Refine SCORE2 risk: Lp(a) ≥50 mg/dL, CAC score, ABI, hsCRP, type 2 diabetes duration, renal function, socioeconomic status." },
    { num: "05", title: "Bempedoic Acid Endorsed", desc: "For statin-intolerant patients; reduces LDL-C ~18%; reduces MACE (CLEAR Outcomes trial). Class I for CV risk reduction." },
    { num: "06", title: "Special Populations Added", desc: "HIV patients and cancer therapy (cardio-oncology): statins recommended. Post-ACS: lipid-lowering during index hospitalization." },
  ];

  changes.forEach(({ num, title, desc }, i) => {
    const col = i % 2;
    const row = Math.floor(i / 2);
    const x = 0.3 + col * 4.85;
    const y = 1.25 + row * 1.35;
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.55, h: 1.2, fill: { color: C.navy }, rectRadius: 0.07, line: { color: C.navyMid, width: 0.5 } });
    s.addText(num, { x: x + 0.1, y: y + 0.06, w: 0.5, h: 0.38, fontSize: 13, bold: true, color: C.gold, fontFace: "Calibri", margin: 0 });
    s.addText(title, { x: x + 0.58, y: y + 0.06, w: 3.87, h: 0.38, fontSize: 12, bold: true, color: C.teal, fontFace: "Calibri", margin: 0 });
    s.addText(desc, { x: x + 0.12, y: y + 0.48, w: 4.3, h: 0.65, fontSize: 9.5, color: C.silver, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 10 — ESC 2025 LDL TARGETS
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "ESC 2025 — LDL-C Goals by Risk Category", "Risk-stratified 'lower is better' approach · SCORE2/SCORE2-OP based");

  const escRisks = [
    { label: "LOW RISK\n(SCORE2 <5%)", ldl: "< 116 mg/dL", pct: "—", color: C.green },
    { label: "MODERATE\n(SCORE2 5–10%)", ldl: "< 100 mg/dL", pct: "≥30%↓", color: C.teal },
    { label: "HIGH RISK\n(SCORE2 10–20%\nor single RF↑)", ldl: "< 70 mg/dL", pct: "≥50%↓", color: C.orange },
    { label: "VERY HIGH RISK\n(SCORE2 ≥20%\nor established CVD)", ldl: "< 55 mg/dL", pct: "≥50%↓", color: C.crimson },
    { label: "EXTREME RISK ★\n(CVD + new event\nor polyvascular)", ldl: "< 40 mg/dL", pct: "≥50%↓", color: C.navy },
  ];

  escRisks.forEach(({ label, ldl, pct, color }, i) => {
    const x = 0.2 + i * 1.9;
    s.addShape(pres.ShapeType.roundRect, { x, y: 1.3, w: 1.72, h: 2.8, fill: { color }, rectRadius: 0.08 });
    s.addText(label, { x: x + 0.06, y: 1.38, w: 1.6, h: 0.8, fontSize: 10, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
    s.addShape(pres.ShapeType.rect, { x: x + 0.1, y: 2.22, w: 1.52, h: 0.025, fill: { color: C.white } });
    s.addText("LDL-C Goal", { x: x + 0.06, y: 2.28, w: 1.6, h: 0.28, fontSize: 9, color: C.offWhite, fontFace: "Calibri", align: "center", margin: 0 });
    s.addText(ldl, { x: x + 0.06, y: 2.58, w: 1.6, h: 0.38, fontSize: 12, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
    s.addText(pct + " reduction", { x: x + 0.06, y: 3.0, w: 1.6, h: 0.6, fontSize: 9.5, color: C.offWhite, fontFace: "Calibri", align: "center", margin: 0 });
  });

  // Combination therapy note
  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 4.25, w: 9.4, h: 0.95, fill: { color: C.navyMid }, rectRadius: 0.07 });
  s.addText([
    { text: "Combination Therapy Can Reduce LDL-C by up to 86%: ", options: { bold: true, color: C.gold } },
    { text: "High-intensity statin (↓55%) + Ezetimibe (additional ↓24%) + PCSK9 inhibitor (additional ↓60% on top of statin) → used sequentially or upfront (fire-to-target) depending on baseline LDL-C and risk.", options: { color: C.offWhite } }
  ], { x: 0.5, y: 4.32, w: 9.1, h: 0.82, fontSize: 10.5, fontFace: "Calibri", margin: 0 });

  s.addText("★ NEW category in ESC 2025: Extreme Risk = CVD + recurrent event on max statin therapy OR polyvascular disease", {
    x: 0.3, y: 5.27, w: 9.4, h: 0.3, fontSize: 8.5, color: C.silver, fontFace: "Calibri", italic: true, margin: 0
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 11 — LIFESTYLE MODIFICATIONS
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Lifestyle Modifications", "Foundation of therapy in ALL risk categories — both guidelines agree");

  const lifestyle = [
    { icon: "🥗", title: "Diet", points: ["Mediterranean or DASH diet", "Reduce saturated fat <7% of calories", "Avoid trans fats entirely", "Increase soluble fiber (10–25 g/day)", "Plant sterols 2 g/day reduce LDL-C ~5–10%"], color: C.green },
    { icon: "🏃", title: "Physical Activity", points: ["≥150 min/week moderate-intensity aerobic", "OR ≥75 min/week vigorous exercise", "Resistance training 2×/week", "Reduces TG, raises HDL-C", "Contributes to weight management"], color: C.teal },
    { icon: "⚖️", title: "Weight Management", points: ["5–10% weight loss → LDL-C ↓5–8 mg/dL", "Significantly reduces triglycerides", "Improves insulin resistance", "Target BMI <25 kg/m²", "Bariatric surgery in refractory obesity"], color: C.orange },
    { icon: "🚭", title: "Smoking & Alcohol", points: ["Smoking cessation → HDL-C ↑ 4–8 mg/dL", "Reduces ASCVD risk significantly", "Limit alcohol: ≤1 drink/day women, ≤2 men", "Heavy alcohol → severe hypertriglyceridemia", "Screen all patients for tobacco use"], color: C.crimson },
  ];

  lifestyle.forEach(({ icon, title, points, color }, i) => {
    const x = 0.3 + (i % 2) * 4.75;
    const y = 1.28 + Math.floor(i / 2) * 2.0;
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.45, h: 1.78, fill: { color: C.lightBg }, rectRadius: 0.07, line: { color, width: 2 } });
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 1.0, h: 0.48, fill: { color }, rectRadius: 0.07 });
    s.addText(icon + " " + title, { x: x + 0.06, y: y + 0.05, w: 0.88, h: 0.38, fontSize: 11, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
    s.addText(points.map((p, pi) => ({ text: "• " + p, options: { breakLine: pi < points.length - 1 } })),
      { x: x + 0.15, y: y + 0.55, w: 4.15, h: 1.18, fontSize: 9.5, color: C.textDark, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 12 — PHARMACOTHERAPY
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Pharmacotherapy", "Evidence-based lipid-lowering drug classes — 2025/2026 updates");

  const drugs = [
    { drug: "Statins (HMG-CoA reductase inhibitors)", ldlRed: "30–55%↓", moa: "Inhibit cholesterol synthesis → upregulate LDL receptors", examples: "Rosuvastatin, atorvastatin (high-intensity); simvastatin (moderate)", note: "FIRST-LINE in both guidelines", color: C.blue },
    { drug: "Ezetimibe", ldlRed: "18–24%↓", moa: "Inhibits NPC1L1 → reduces intestinal cholesterol absorption", examples: "10 mg/day; often combined with statin (IMPROVE-IT trial)", note: "Add-on to statin; ESC 2025 recommends upfront combination", color: C.teal },
    { drug: "PCSK9 Inhibitors (mAbs)", ldlRed: "50–65%↓", moa: "Block PCSK9 → prevent LDL receptor degradation → ↑ LDL clearance", examples: "Evolocumab, alirocumab (q2w/monthly SC injection)", note: "For very high risk not at LDL-C goal on statin + ezetimibe", color: C.crimson },
    { drug: "Bempedoic Acid", ldlRed: "~18%↓", moa: "ATP-citrate lyase inhibitor; upstream of HMG-CoA; activated only in liver", examples: "180 mg/day; statin-intolerant patients (CLEAR Outcomes trial)", note: "ESC 2025 Class I for CV event reduction in statin-intolerant", color: C.orange },
    { drug: "Inclisiran (siRNA)", ldlRed: "50%↓", moa: "Small interfering RNA → silences PCSK9 mRNA in hepatocytes", examples: "284 mg SC; given at 0, 3 months then every 6 months", note: "AHA 2026: second-line if PCSK9 mAb not tolerated/accessible", color: C.navyMid },
    { drug: "Fibrates / Omega-3 FA", ldlRed: "TG ↓30–50%", moa: "PPAR-α agonists; icosapentaenoic acid (EPA) only — REDUCE-IT", examples: "Fenofibrate; icosapentaenoic acid (Vascepa/OMACOR) 4 g/day", note: "For hypertriglyceridemia ≥500 mg/dL (pancreatitis risk)", color: C.silver },
  ];

  drugs.forEach(({ drug, ldlRed, moa, examples, note, color }, i) => {
    const col = i % 2;
    const row = Math.floor(i / 2);
    const x = 0.25 + col * 4.87;
    const y = 1.25 + row * 1.4;
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.62, h: 1.28, fill: { color: C.lightBg }, rectRadius: 0.06, line: { color, width: 1.5 } });
    s.addShape(pres.ShapeType.rect, { x, y, w: 1.4, h: 0.32, fill: { color } });
    s.addText(ldlRed, { x, y, w: 1.4, h: 0.32, fontSize: 10.5, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
    s.addText(drug, { x: x + 1.48, y: y + 0.04, w: 3.05, h: 0.28, fontSize: 10, bold: true, color: C.textDark, fontFace: "Calibri", margin: 0 });
    s.addText("MOA: " + moa, { x: x + 0.1, y: y + 0.37, w: 4.42, h: 0.28, fontSize: 8.5, color: C.textDark, fontFace: "Calibri", margin: 0 });
    s.addText("Agents: " + examples, { x: x + 0.1, y: y + 0.65, w: 4.42, h: 0.28, fontSize: 8.5, color: C.textDark, fontFace: "Calibri", margin: 0 });
    s.addText("★ " + note, { x: x + 0.1, y: y + 0.93, w: 4.42, h: 0.28, fontSize: 8.5, bold: true, color, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 13 — TREATMENT ALGORITHM
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Treatment Algorithm", "Step-up approach: lifestyle → statins → combination therapy");

  // Step boxes
  const steps2 = [
    { step: "STEP 1", title: "Lifestyle Modifications", sub: "Diet, exercise, weight loss, smoking cessation\n→ All patients regardless of risk", color: C.green },
    { step: "STEP 2", title: "High-Intensity Statin", sub: "Rosuvastatin 20–40 mg or Atorvastatin 40–80 mg\n→ Achieves ≥50% LDL-C reduction", color: C.blue },
    { step: "STEP 3", title: "+ Ezetimibe", sub: "Add if LDL-C goal not met on statin alone\nESC 2025: Consider upfront combination (fire-to-target)", color: C.teal },
    { step: "STEP 4", title: "+ PCSK9 Inhibitor", sub: "Evolocumab or alirocumab\nFor very high / extreme risk not at goal\nAHA 2026: No longer strictly sequential — choose by gap", color: C.crimson },
    { step: "STEP 5", title: "If Statin-Intolerant", sub: "Bempedoic acid ± ezetimibe\nInclisiran as alternative to PCSK9 mAb\nEvinacumab for homozygous FH (HoFH)", color: C.orange },
  ];

  steps2.forEach(({ step, title, sub, color }, i) => {
    const x = 0.3 + i * 1.88;
    s.addShape(pres.ShapeType.roundRect, { x, y: 1.28, w: 1.72, h: 3.55, fill: { color }, rectRadius: 0.08 });
    s.addText(step, { x: x + 0.06, y: 1.36, w: 1.6, h: 0.36, fontSize: 10, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0, charSpacing: 2 });
    s.addShape(pres.ShapeType.rect, { x: x + 0.1, y: 1.76, w: 1.52, h: 0.025, fill: { color: C.white } });
    s.addText(title, { x: x + 0.06, y: 1.82, w: 1.6, h: 0.55, fontSize: 10.5, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
    s.addText(sub, { x: x + 0.08, y: 2.45, w: 1.56, h: 2.25, fontSize: 9, color: C.offWhite, fontFace: "Calibri", align: "center", margin: 0 });
  });

  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 5.0, w: 9.4, h: 0.4, fill: { color: C.navyMid }, rectRadius: 0.05 });
  s.addText("Monitor lipid profile 4–12 weeks after therapy change, then every 6–12 months. Both guidelines emphasize therapeutic inertia as a key barrier to achieving goals.", {
    x: 0.45, y: 5.03, w: 9.1, h: 0.35, fontSize: 9.5, color: C.offWhite, fontFace: "Calibri", margin: 0, align: "center"
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 14 — SPECIAL POPULATIONS
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Special Populations", "Tailored guidance in both guidelines");

  const pops = [
    { title: "Diabetes Mellitus (T2DM)", items: ["High-intensity statin recommended even without clinical ASCVD", "LDL-C <70 mg/dL for high-risk DM; <55 for very high risk", "AHA 2026: PREVENT incorporates HbA1c for risk calculation", "GLP-1 agonists/SGLT2i reduce ASCVD events independently"], color: C.orange },
    { title: "Familial Hypercholesterolemia (FH)", items: ["Universal childhood lipid screening: AHA 2026 ages 9–11; ESC 2025 ages 5–10", "Heterozygous FH: LDL-C >190 mg/dL despite lifestyle → high-intensity statin", "Homozygous FH: Evinacumab (anti-ANGPTL3) + LDL apheresis", "Cascade screening of first-degree relatives recommended"], color: C.crimson },
    { title: "Elderly (≥75 years)", items: ["SCORE2-OP used in ESC 2025 for those ≥70 years", "Statins remain beneficial in secondary prevention regardless of age", "Primary prevention: individualize; risk of statin adverse effects ↑", "Polypharmacy and drug interactions must be considered"], color: C.blue },
    { title: "HIV & Cardio-Oncology", items: ["ESC 2025 NEW: Statins recommended in HIV patients at CV risk", "Cancer therapy (anthracyclines, checkpoint inhibitors) → ↑ CV risk", "Rosuvastatin and pravastatin preferred (fewer drug interactions)", "Monitor ART drug interactions with statins (CYP3A4 pathway)"], color: C.navyMid },
  ];

  pops.forEach(({ title, items, color }, i) => {
    const x = 0.3 + (i % 2) * 4.75;
    const y = 1.28 + Math.floor(i / 2) * 2.0;
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.45, h: 1.78, fill: { color: C.lightBg }, rectRadius: 0.07, line: { color, width: 2 } });
    s.addShape(pres.ShapeType.rect, { x, y, w: 4.45, h: 0.42, fill: { color }, roundCorners: false });
    s.addText(title, { x: x + 0.12, y: y + 0.05, w: 4.2, h: 0.32, fontSize: 12, bold: true, color: C.white, fontFace: "Calibri", margin: 0 });
    s.addText(items.map((it, ii) => ({ text: "• " + it, options: { breakLine: ii < items.length - 1 } })),
      { x: x + 0.12, y: y + 0.5, w: 4.2, h: 1.22, fontSize: 9.5, color: C.textDark, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 15 — AHA 2026 vs ESC 2025 COMPARISON
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "AHA 2026 vs ESC 2025 — Side-by-Side Comparison", "Key similarities and differences for clinical practice");

  const rows = [
    ["Feature", "AHA / ACC 2026", "ESC / EAS 2025"],
    ["Risk Tool", "PREVENT-ASCVD (10- & 30-yr)", "SCORE2 / SCORE2-OP"],
    ["Risk Categories", "Primary, secondary, very high risk", "Low / Moderate / High / Very High / Extreme"],
    ["LDL-C Targets", "Restored: <55, <70, <100 mg/dL by risk", "Reaffirmed: <116, <100, <70, <55, <40 mg/dL"],
    ["NEW lowest target", "<55 mg/dL (very high risk ASCVD)", "< 40 mg/dL (extreme risk) ★ NEW category"],
    ["Lp(a) Screening", "Universal adult screening (Class I)", "Recommended in CV risk assessment"],
    ["ApoB", "Selective use to improve risk assessment", "Endorsed as alternative treatment target"],
    ["CAC Scoring", "Expanded role in primary prevention", "Risk modifier to refine SCORE2"],
    ["Treatment Approach", "No longer strictly sequential for PCSK9i", "Fire-to-target: upfront combination"],
    ["Statin Intolerance", "Bempedoic acid, inclisiran", "Bempedoic acid (Class I, CLEAR Outcomes)"],
    ["Dietary Supplements", "Class 3 — NOT recommended", "Not recommended"],
    ["Childhood Screening", "Ages 9–11 (FH cascade)", "Ages 5–10 (FH cascade)"],
  ];

  rows.forEach((row, ri) => {
    row.forEach((cell, ci) => {
      let bg, textColor;
      if (ri === 0) { bg = C.navy; textColor = C.white; }
      else if (ci === 0) { bg = C.blue; textColor = C.white; }
      else if (ci === 1) { bg = ri % 2 === 0 ? "#E8F0FA" : C.white; textColor = C.textDark; }
      else { bg = ri % 2 === 0 ? "#FFF5E6" : C.white; textColor = C.textDark; }

      const widths = [2.8, 3.55, 3.55];
      const xPos = [0.1, 2.9, 6.45];
      s.addShape(pres.ShapeType.rect, { x: xPos[ci], y: 1.15 + ri * 0.36, w: widths[ci], h: 0.36, fill: { color: bg } });
      s.addText(cell, { x: xPos[ci] + 0.08, y: 1.17 + ri * 0.36, w: widths[ci] - 0.16, h: 0.32, fontSize: ri === 0 ? 10 : 9, bold: ri === 0 || ci === 0, color: textColor, fontFace: "Calibri", margin: 0 });
    });
  });

  s.addText("★ Extreme risk is a NEW category unique to ESC 2025 (no equivalent in AHA 2026 framework)", {
    x: 0.3, y: 5.27, w: 9.4, h: 0.28, fontSize: 8.5, color: C.silver, italic: true, fontFace: "Calibri", margin: 0
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 16 — HYPERTRIGLYCERIDEMIA
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Hypertriglyceridemia", "Classification, causes & management — AHA 2026 emphasis on remnant particles");

  // Classification
  const tgCategories = [
    ["Normal", "< 150 mg/dL", C.green],
    ["Borderline High", "150–199 mg/dL", C.teal],
    ["High", "200–499 mg/dL", C.orange],
    ["Very High", "≥ 500 mg/dL", C.crimson],
  ];
  tgCategories.forEach(([cat, val, color], i) => {
    s.addShape(pres.ShapeType.roundRect, { x: 0.3 + i * 2.38, y: 1.28, w: 2.18, h: 0.88, fill: { color }, rectRadius: 0.07 });
    s.addText(cat, { x: 0.38 + i * 2.38, y: 1.35, w: 2.02, h: 0.35, fontSize: 12, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
    s.addText(val, { x: 0.38 + i * 2.38, y: 1.73, w: 2.02, h: 0.35, fontSize: 13, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
  });

  // Two columns: causes + management
  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 2.32, w: 4.45, h: 2.85, fill: { color: C.blue }, rectRadius: 0.08 });
  s.addText("Common Causes", { x: 0.45, y: 2.4, w: 4.1, h: 0.38, fontSize: 14, bold: true, color: C.gold, fontFace: "Calibri", margin: 0 });
  const causes = ["Obesity and metabolic syndrome", "Type 2 diabetes / insulin resistance", "Hypothyroidism, Cushing syndrome", "Chronic kidney disease / nephrotic syndrome", "Excessive alcohol consumption", "Medications: thiazides, beta-blockers, isotretinoin, HIV ART, estrogens", "Familial hypertriglyceridemia (genetic)"];
  s.addText(causes.map((c, ci) => ({ text: "• " + c, options: { breakLine: ci < causes.length - 1 } })),
    { x: 0.45, y: 2.85, w: 4.1, h: 2.25, fontSize: 10, color: C.offWhite, fontFace: "Calibri", margin: 0 });

  s.addShape(pres.ShapeType.roundRect, { x: 5.25, y: 2.32, w: 4.45, h: 2.85, fill: { color: C.navyMid }, rectRadius: 0.08 });
  s.addText("Management", { x: 5.4, y: 2.4, w: 4.1, h: 0.38, fontSize: 14, bold: true, color: C.teal, fontFace: "Calibri", margin: 0 });
  const mgmt = ["Lifestyle: weight loss, reduce refined carbs, limit alcohol", "Treat secondary causes (glycemic control, thyroid)", "If TG ≥500 mg/dL → fibrates first (pancreatitis risk)", "Icosapentaenoic acid (EPA, 4 g/day) — REDUCE-IT trial: ↓25% MACE", "AHA 2026: remnant particles highlighted as independent ASCVD risk", "ESC 2025: Omega-3 combined with statin in hypertriglyceridemia + statin therapy", "Non-HDL-C is a better treatment target than TG directly"];
  s.addText(mgmt.map((m, mi) => ({ text: "• " + m, options: { breakLine: mi < mgmt.length - 1 } })),
    { x: 5.4, y: 2.85, w: 4.1, h: 2.25, fontSize: 10, color: C.offWhite, fontFace: "Calibri", margin: 0 });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 17 — Lp(a): THE EMERGING BIOMARKER
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.navy } });
  addSlideHeader(s, "Lipoprotein(a) — The Emerging Biomarker", "Now featured prominently in BOTH AHA 2026 and ESC 2025 guidelines", true);

  // Definition
  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 1.2, w: 9.4, h: 0.7, fill: { color: C.navyMid }, rectRadius: 0.07 });
  s.addText([
    { text: "Lp(a) = LDL-like particle + apolipoprotein(a). ", options: { bold: true, color: C.gold } },
    { text: "Levels are >90% genetically determined; minimally modified by diet or lifestyle. Elevated Lp(a) independently increases risk of MI, stroke, aortic stenosis, and PAD.", options: { color: C.offWhite } }
  ], { x: 0.45, y: 1.26, w: 9.1, h: 0.58, fontSize: 11.5, fontFace: "Calibri", margin: 0 });

  // Two panels
  const lpaAha = [
    "AHA 2026: Class I — Measure ≥1× in all adults",
    "Lp(a) ≥75 nmol/L (≈30 mg/dL) = risk modifier",
    "Lp(a) ≥125 nmol/L (≈50 mg/dL) = high risk",
    "Cascade screening in FH patients",
    "Children <18: consider if FH or family Hx",
    "No current pharmacological target in guideline",
    "Pelacarsen (antisense oligonucleotide): Phase 3 LPA-HPIV — ↓80% Lp(a), awaiting CV outcome data",
  ];
  const lpaEsc = [
    "ESC 2025: Lp(a) ≥50 mg/dL = significant CV risk modifier",
    "Refines SCORE2 risk upward in borderline-risk patients",
    "Not yet a standalone treatment target",
    "Dedicated section in 2025 update (expanding vs 2019)",
    "Inclisiran and PCSK9 mAbs modestly reduce Lp(a) (~20–25%)",
    "Olezarsen (anti-APOC3) being studied for Lp(a)+TG reduction",
    "Lp(a) target will likely be defined in near-future guidelines",
  ];

  s.addShape(pres.ShapeType.roundRect, { x: 0.3, y: 2.08, w: 4.48, h: 2.95, fill: { color: C.navyMid }, rectRadius: 0.08 });
  addBadge(s, "AHA 2026", 0.3, 2.08, C.crimson);
  s.addText(lpaAha.map((t, i) => ({ text: "• " + t, options: { breakLine: i < lpaAha.length - 1 } })),
    { x: 0.45, y: 2.5, w: 4.2, h: 2.48, fontSize: 10, color: C.offWhite, fontFace: "Calibri", margin: 0 });

  s.addShape(pres.ShapeType.roundRect, { x: 5.22, y: 2.08, w: 4.48, h: 2.95, fill: { color: C.navyMid }, rectRadius: 0.08 });
  addBadge(s, "ESC 2025", 5.22, 2.08, C.gold);
  s.addText(lpaEsc.map((t, i) => ({ text: "• " + t, options: { breakLine: i < lpaEsc.length - 1 } })),
    { x: 5.38, y: 2.5, w: 4.2, h: 2.48, fontSize: 10, color: C.offWhite, fontFace: "Calibri", margin: 0 });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 18 — MONITORING & ADHERENCE
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.offWhite } });
  addSlideHeader(s, "Monitoring, Adherence & Statin Safety", "Key clinical points for ongoing management");

  // Monitoring timeline
  s.addText("Follow-up Monitoring Schedule:", { x: 0.3, y: 1.22, w: 9.4, h: 0.35, fontSize: 13, bold: true, color: C.navyMid, fontFace: "Calibri", margin: 0 });
  const timeline = [
    { time: "Baseline", action: "Fasting lipid panel, LFTs, CK, glucose, HbA1c\nLp(a) once in lifetime\nApoB if indicated" },
    { time: "4–12 wks", action: "Repeat lipid panel after starting/changing therapy\nAssess % LDL-C reduction\nCheck CK if myalgia symptoms" },
    { time: "Every\n6–12 months", action: "Ongoing lipid monitoring once at goal\nAssess statin tolerability\nAdherence review" },
    { time: "Annual", action: "Reassess CV risk with PREVENT/SCORE2\nUpdate risk factors\nConsider intensification if goals not met" },
  ];
  timeline.forEach(({ time, action }, i) => {
    const x = 0.3 + i * 2.38;
    s.addShape(pres.ShapeType.roundRect, { x, y: 1.65, w: 2.22, h: 1.92, fill: { color: C.blue }, rectRadius: 0.07 });
    s.addText(time, { x: x + 0.08, y: 1.72, w: 2.06, h: 0.48, fontSize: 11, bold: true, color: C.gold, fontFace: "Calibri", align: "center", margin: 0 });
    s.addShape(pres.ShapeType.rect, { x: x + 0.12, y: 2.24, w: 1.98, h: 0.025, fill: { color: C.white } });
    s.addText(action, { x: x + 0.1, y: 2.3, w: 2.02, h: 1.22, fontSize: 9, color: C.offWhite, fontFace: "Calibri", margin: 0 });
  });

  // Statin safety
  s.addShape(pres.ShapeType.rect, { x: 0.3, y: 3.68, w: 9.4, h: 0.035, fill: { color: C.silver } });
  s.addText("Statin Safety — Common Concerns:", { x: 0.3, y: 3.78, w: 9.4, h: 0.35, fontSize: 13, bold: true, color: C.crimson, fontFace: "Calibri", margin: 0 });

  const safety = [
    ["Myopathy / Rhabdomyolysis", "0.1–0.5% incidence; CK >10× ULN → stop statin; assess risk factors (CYP3A4 interactions, hypothyroidism, renal failure)"],
    ["New-onset Diabetes", "Modest risk (~10–12%); benefits of ASCVD risk reduction far outweigh this risk in high-risk patients"],
    ["LFT Elevation", "Rare severe hepatotoxicity; baseline LFTs; re-check only if symptomatic"],
    ["Cognitive Effects", "No consistent evidence; concern not substantiated in large trials"],
  ];
  safety.forEach(([se, desc], i) => {
    const col = i % 2;
    const row = Math.floor(i / 2);
    const x = 0.3 + col * 4.75;
    const y = 4.22 + row * 0.58;
    s.addText([{ text: se + ": ", options: { bold: true, color: C.crimson } }, { text: desc, options: { color: C.textDark } }],
      { x, y, w: 4.45, h: 0.52, fontSize: 9.5, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 19 — TAKE-HOME MESSAGES
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.navy } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 4.68, w: 10, h: 0.06, fill: { color: C.gold } });
  addSlideHeader(s, "Take-Home Messages", "10 Key Points to Remember", true);

  const msgs = [
    { n: "1", t: "Dyslipidemia = more than LDL-C", d: "Lp(a), remnant particles, and ApoB all contribute to ASCVD risk" },
    { n: "2", t: "AHA 2026 restores LDL-C goals", d: "Very high risk <55, ASCVD not VHR <70 mg/dL; plus ≥50% reduction target" },
    { n: "3", t: "ESC 2025 adds Extreme Risk", d: "New category: LDL-C <40 mg/dL for CVD + recurrent event on max therapy" },
    { n: "4", t: "Universal Lp(a) screening", d: "AHA 2026: once in a lifetime for all adults (Class I). ESC 2025: strongly recommended" },
    { n: "5", t: "PREVENT replaces PCE in the USA", d: "Better calibrated; integrates 10- and 30-year risk; includes metabolic/renal variables" },
    { n: "6", t: "Fire-to-target (ESC) vs sequential (AHA)", d: "ESC 2025 supports upfront statin + ezetimibe; AHA 2026 allows simultaneous add-on PCSK9i" },
    { n: "7", t: "Statin + Ezetimibe + PCSK9i = up to 85%↓", d: "Combination therapy is highly effective; bempedoic acid for statin-intolerant patients" },
    { n: "8", t: "Lifestyle always comes first", d: "Diet, exercise, smoking cessation — recommended in ALL risk categories" },
    { n: "9", t: "No dietary supplements", d: "Both guidelines: Class 3 / not recommended for fish oil, red yeast rice, plant sterols" },
    { n: "10", t: "Therapeutic inertia is a clinical barrier", d: "Follow-up at 4–12 weeks; intensify until goals are achieved; refer to lipid specialist if needed" },
  ];

  msgs.forEach(({ n, t, d }, i) => {
    const col = i < 5 ? 0 : 1;
    const row = i < 5 ? i : i - 5;
    const x = col === 0 ? 0.25 : 5.12;
    const y = 1.2 + row * 0.7;

    s.addShape(pres.ShapeType.roundRect, { x, y, w: 4.58, h: 0.6, fill: { color: C.navyMid }, rectRadius: 0.06, line: { color: C.blue, width: 0.5 } });
    s.addShape(pres.ShapeType.roundRect, { x, y, w: 0.42, h: 0.6, fill: { color: i < 5 ? C.crimson : C.gold }, rectRadius: 0.06 });
    s.addText(n, { x, y: y + 0.1, w: 0.42, h: 0.4, fontSize: 14, bold: true, color: C.white, fontFace: "Calibri", align: "center", margin: 0 });
    s.addText(t, { x: x + 0.5, y: y + 0.04, w: 3.98, h: 0.28, fontSize: 10.5, bold: true, color: C.gold, fontFace: "Calibri", margin: 0 });
    s.addText(d, { x: x + 0.5, y: y + 0.33, w: 3.98, h: 0.24, fontSize: 9, color: C.silver, fontFace: "Calibri", margin: 0 });
  });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─────────────────────────────────────────────────────────────
// SLIDE 20 — THANK YOU / REFERENCES
// ─────────────────────────────────────────────────────────────
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.navy } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 2.2, w: 10, h: 0.065, fill: { color: C.crimson } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 2.265, w: 10, h: 0.065, fill: { color: C.gold } });

  s.addText("Thank You", { x: 0.4, y: 0.3, w: 9.2, h: 1.1, fontSize: 60, bold: true, color: C.white, fontFace: "Calibri", charSpacing: 4, margin: 0 });
  s.addText("Questions & Discussion Welcome", { x: 0.4, y: 1.4, w: 9.2, h: 0.55, fontSize: 22, color: C.silver, fontFace: "Calibri", margin: 0 });

  s.addText("Key References:", { x: 0.4, y: 2.45, w: 9.2, h: 0.35, fontSize: 13, bold: true, color: C.gold, fontFace: "Calibri", margin: 0 });

  const refs = [
    "1. Blumenthal RS, Morris PB et al. 2026 ACC/AHA/Multisociety Guideline on the Management of Dyslipidemia. Circulation. March 2026.",
    "2. Mach F, Baigent C, Catapano AL et al. 2025 Focused Update of the 2019 ESC/EAS Guidelines for the Management of Dyslipidaemias. Eur Heart J. August 2025.",
    "3. Lloyd-Jones DM et al. PREVENT-ASCVD Equations. Circulation. 2024.",
    "4. Nissen SE et al. Bempedoic acid and cardiovascular outcomes (CLEAR Outcomes). NEJM. 2023.",
    "5. Ridker PM et al. Inclisiran — ORION-10 & ORION-11 trials. NEJM. 2020.",
    "6. Bhatt DL et al. Cardiovascular risk reduction with icosapentaenoic acid — REDUCE-IT. NEJM. 2019.",
  ];
  s.addText(refs.map((r, ri) => ({ text: r, options: { breakLine: ri < refs.length - 1 } })),
    { x: 0.4, y: 2.85, w: 9.2, h: 2.6, fontSize: 9.5, color: C.silver, fontFace: "Calibri", margin: 0 });

  addFooter(s, "AHA 2026 / ESC 2025 Dyslipidemia Guidelines  ·  Medical Student Presentation");
}

// ─── SAVE ────────────────────────────────────────────────────
pres.writeFile({ fileName: "/home/daytona/workspace/dyslipidemia-presentation/Dyslipidemia_AHA2026_ESC2025.pptx" })
  .then(() => console.log("✅ Saved successfully!"))
  .catch(err => console.error("❌ Error:", err));
Running Command

cd /home/daytona/workspace/dyslipidemia-presentation && node build.js 2>&1

Running Command

ls -lh /home/daytona/workspace/dyslipidemia-presentation/

Your presentation is ready! Here is the download link:

Dyslipidemia AHA2026 ESC2025

Presentation · PPTX


What's Inside (20 Slides)

#SlideContent
1TitleBold dark-navy design with AHA 2026 / ESC 2025 branding
2Overview / Agenda10-item numbered roadmap
3What is Dyslipidemia?Definition, 4 types (LDL, HDL, TG, Lp(a)), epidemiology
4PathophysiologyAtherogenesis flow: LDL → oxidation → foam cells → plaque
5Risk AssessmentPREVENT-ASCVD (AHA 2026) vs SCORE2/SCORE2-OP (ESC 2025)
6Screening & DiagnosisLipid panel, universal Lp(a), ApoB — new 2025/2026 updates
7AHA 2026 Key Changes6 major updates including PREVENT, restored goals, 5 new drugs
8AHA 2026 LDL-C GoalsGoals by risk + full CAC scoring table
9ESC 2025 Key ChangesExtreme risk, fire-to-target, bempedoic acid, special pops
10ESC 2025 LDL-C Goals5-tier color-coded risk pyramid (<116 → <40 mg/dL)
11Lifestyle ModificationsDiet, exercise, weight loss, smoking — foundation of all therapy
12Pharmacotherapy6 drug classes with MOA, agents, LDL-C reduction %, guideline class
13Treatment Algorithm5-step visual: lifestyle → statin → ezetimibe → PCSK9i → alternatives
14Special PopulationsDiabetes, FH, elderly, HIV/cardio-oncology
15AHA vs ESC Comparison12-row side-by-side table — the "heart" of the presentation
16HypertriglyceridemiaClassification, causes, fibrates, REDUCE-IT (EPA)
17Lp(a): The Emerging BiomarkerBoth guidelines side-by-side; pelacarsen pipeline drug
18Monitoring & Statin SafetyTimeline + 4 safety concerns (myopathy, diabetes, LFTs, cognition)
19Take-Home Messages10 numbered key points
20References & Thank You6 key citations (Blumenthal 2026, Mach 2025, CLEAR, REDUCE-IT, ORION)
Design: Navy-dominant with crimson (AHA) and gold (ESC) accents, structured cards/boxes on every slide — no plain bullet walls. Calibri font throughout for professional medical conference look.

Give me in chat

Here is the full presentation content in chat:

🫀 DYSLIPIDEMIA

Management & Treatment Guidelines

AHA / ACC 2026 · ESC / EAS 2025

Focused Update for Medical Students

SLIDE 1 — What is Dyslipidemia?

Definition: An abnormality in the concentration or composition of circulating lipoproteins — including elevated LDL-C, low HDL-C, elevated triglycerides, or elevated Lp(a) — that increases ASCVD risk.
Types:
TypeDescription
↑ LDL-CMost common; primary target of therapy
↓ HDL-CIndependent CV risk factor; lifestyle-modified
↑ TriglyceridesHypertriglyceridemia; pancreatitis risk at very high levels
↑ Lp(a)Genetically determined; newly emphasized in BOTH guidelines
⚠ CVD is the #1 cause of death globally. Dyslipidemia is a major modifiable risk factor.

SLIDE 2 — Pathophysiology

Atherogenesis Cascade:
Elevated LDL-C / ApoBOxidation & InflammationFoam Cell FormationPlaque Growth & Rupture
  • LDL particles enter the subendothelial space; quantity is driven by ApoB (one per particle)
  • Oxidized LDL activates endothelium → monocyte recruitment → macrophage infiltration
  • Macrophages engulf ox-LDL → foam cells → fatty streak (earliest plaque lesion)
  • Fibrous cap forms → plaque vulnerability → rupture → ACS / stroke / PAD
Key Atherogenic Particles (both guidelines):
ParticleRole
LDL-CPrimary driver; each particle carries one ApoB
VLDL / IDL remnantsTriglyceride-rich remnant particles; highlighted in AHA 2026
Lp(a)Pro-atherogenic + pro-thrombotic; independent of LDL-C
Low HDL-CReduced reverse cholesterol transport; associated with higher ASCVD risk

SLIDE 3 — Cardiovascular Risk Assessment

AHA 2026 — PREVENT-ASCVD Equations

  • Replaces the 10-year Pooled Cohort Equations (PCE)
  • Predicts 10-year AND 30-year ASCVD risk
  • Variables: age, sex, race, BP, diabetes, smoking, kidney function, social deprivation, HbA1c, eGFR/uACR
  • Better calibrated across diverse populations
  • Used to guide initiation of pharmacotherapy in primary prevention

ESC 2025 — SCORE2 / SCORE2-OP

  • SCORE2 for <70 years; SCORE2-OP for ≥70 years
  • Estimates 10-year CV event risk (fatal + non-fatal)
  • Region-calibrated (low / moderate / high / very high CV-risk countries)
  • Risk modifiers refine the score: Lp(a), CAC, ABI, hsCRP, renal function
  • Risk categories: Low → Moderate → High → Very High → Extreme (NEW)
  • Replaces SCORE1 which only predicted CV mortality

SLIDE 4 — Screening & Diagnosis

Fasting Lipid Panel

  • Total cholesterol, LDL-C, HDL-C, triglycerides, non-HDL-C
  • Non-fasting acceptable for most screening scenarios
  • Repeat 4-12 weeks after therapy initiation, then every 6-12 months

Lipoprotein(a) — Lp(a)

  • AHA 2026: Universal adult screening ≥1× in a lifetime (Class I)
  • ESC 2025: Measure in adults with CV risk assessment
  • ≥50 mg/dL (≥125 nmol/L) = significant risk modifier
  • Largely genetic; minimally affected by lifestyle changes

ApoB — Apolipoprotein B

  • Each atherogenic particle carries exactly one ApoB → reflects particle number more accurately than LDL-C
  • AHA 2026: Selective measurement to refine risk (especially when LDL-C and non-HDL-C disagree)
  • Goal for very high risk: ApoB < 65 mg/dL | High risk: < 80 mg/dL
  • ESC 2025 also endorses ApoB as an alternative treatment target

SLIDE 5 — AHA / ACC 2026: Key Updates

Published March 2026 in Circulation — Replaces the 2018 Blood Cholesterol Guideline

6 Major Changes

01 - PREVENT-ASCVD Equations Replaces PCE; estimates 10- and 30-year risk; better calibrated across diverse populations; includes eGFR and metabolic variables.
02 - Restored LDL-C Goals 2018 guideline removed fixed targets — 2026 restores them. Very high risk: LDL-C <55; ASCVD not VHR: <70; primary prevention by risk level.
03 - Universal Lp(a) Screening All adults should have Lp(a) measured ≥1× in a lifetime (Class I COR). Children with FH or family history: consider testing.
04 - Expanded CAC Scoring CAC 0 = low near-term risk; CAC 1-99: goal <100; CAC 100-999 or ≥75th percentile: <70; CAC ≥1000: <55 mg/dL.
05 - Five New FDA-Approved Therapies Inclisiran (siRNA PCSK9i), bempedoic acid, evinacumab (HoFH), pelacarsen (Lp(a)↓), olezarsen (TG↓) now incorporated.
06 - No Benefit: Dietary Supplements Class 3 recommendation against fish oil, red yeast rice, plant sterols as routine ASCVD risk-reduction strategies.

SLIDE 6 — AHA 2026: LDL-C Treatment Goals by Risk

Risk CategoryLDL-C GoalNon-HDL-C Goal
Secondary prevention — Very High Risk (≥2 major ASCVD events, or 1 event + ≥2 high-risk conditions)< 55 mg/dL< 85 mg/dL
Secondary prevention — Not Very High Risk< 70 mg/dL< 100 mg/dL
Primary prevention — Diabetes or multiple RF< 70–100 mg/dL< 100–130 mg/dL
All patients: also target ≥50% LDL-C reduction from baseline

CAC Score → LDL-C Goal (Subclinical Atherosclerosis)

CAC ScoreInterpretationLDL-C Goal
0 AUVery low near-term riskDefer pharmacotherapy; lifestyle
1-99 AU & <75th %ileMild subclinical disease< 100 mg/dL
100-999 AU or ≥75th %ileModerate-high subclinical< 70 mg/dL
≥ 1000 AUSevere subclinical disease< 55 mg/dL
Very High Risk = ≥2 major ASCVD events OR 1 major event + ≥2 high-risk conditions (e.g., DM, CKD, HF, PAD, HTN, active smoking, age >65)

SLIDE 7 — ESC / EAS 2025: Key Updates

Published August 29, 2025 — Focused update of the 2019 ESC/EAS Guidelines

6 Major Changes

01 - LDL-C Targets Reaffirmed Low: <116 | Moderate: <100 | High: <70 | Very High: <55 | Extreme (NEW): <40 mg/dL. "Lower is better" paradigm maintained.
02 - NEW: Extreme Risk Category ★ Patients with CVD + new vascular event despite max statin OR polyvascular disease → LDL-C goal <40 mg/dL.
03 - Fire-to-Target Strategy Shift from stepwise to upfront combination therapy (statin + ezetimibe) — especially at ACS hospitalization. Speed to goal matters.
04 - Risk Modifiers Incorporated Refine SCORE2 risk: Lp(a) ≥50 mg/dL, CAC score, ABI, hsCRP, T2DM duration, renal function, socioeconomic status.
05 - Bempedoic Acid Endorsed For statin-intolerant patients; reduces LDL-C ~18%; reduces MACE (CLEAR Outcomes trial). Class I for CV event reduction.
06 - Special Populations Added HIV patients and cancer therapy (cardio-oncology): statins recommended. Post-ACS: lipid-lowering during index hospitalization.

SLIDE 8 — ESC 2025: LDL-C Goals by Risk Category

Risk CategoryDefinitionLDL-C Goal% Reduction
LowSCORE2 <5%< 116 mg/dL-
ModerateSCORE2 5-10%< 100 mg/dL≥30%↓
HighSCORE2 10-20% or single major RF↑< 70 mg/dL≥50%↓
Very HighSCORE2 ≥20% or established CVD< 55 mg/dL≥50%↓
Extreme ★ NEWCVD + new event on max statin OR polyvascular< 40 mg/dL≥50%↓
Combination therapy can reduce LDL-C by up to 86%: High-intensity statin (↓55%) + Ezetimibe (additional ↓24%) + PCSK9 inhibitor (additional ↓60% on top of statin)

SLIDE 9 — Lifestyle Modifications

Foundation of therapy in ALL risk categories — both guidelines agree

🥗 Diet

  • Mediterranean or DASH diet
  • Reduce saturated fat <7% of calories; avoid trans fats entirely
  • Increase soluble fiber (10-25 g/day)
  • Plant sterols 2 g/day reduce LDL-C ~5-10%

🏃 Physical Activity

  • ≥150 min/week moderate-intensity aerobic OR ≥75 min/week vigorous
  • Resistance training 2×/week
  • Reduces TG, raises HDL-C

⚖️ Weight Management

  • 5-10% weight loss → LDL-C ↓5-8 mg/dL; significantly reduces TG
  • Target BMI <25 kg/m²
  • Bariatric surgery in refractory obesity

🚭 Smoking & Alcohol

  • Smoking cessation → HDL-C ↑4-8 mg/dL; reduces ASCVD risk significantly
  • Limit alcohol: ≤1 drink/day women, ≤2 men
  • Heavy alcohol → severe hypertriglyceridemia

SLIDE 10 — Pharmacotherapy

Drug ClassLDL-C ReductionMechanismKey Points
Statins (HMG-CoA reductase inhibitors)30-55%↓Inhibit cholesterol synthesis → upregulate LDL receptorsFIRST-LINE in both guidelines; rosuvastatin / atorvastatin high-intensity
Ezetimibe18-24%↓Inhibits NPC1L1 → reduces intestinal cholesterol absorptionAdd-on to statin; ESC 2025 recommends upfront combination (IMPROVE-IT)
PCSK9 Inhibitors (evolocumab, alirocumab)50-65%↓Block PCSK9 → prevent LDL receptor degradationSC injection q2w or monthly; for very high/extreme risk not at goal
Bempedoic Acid~18%↓ATP-citrate lyase inhibitor; activated only in liverStatin-intolerant; CLEAR Outcomes trial; ESC 2025 Class I
Inclisiran (siRNA)~50%↓Silences PCSK9 mRNA in hepatocytesDosing: 0, 3 months → then q6 months SC; AHA 2026 second-line after mAb
Fibrates / EPATG ↓30-50%PPAR-α agonists; EPA only — REDUCE-ITIcosapentaenoic acid 4 g/day; TG ≥500 mg/dL (pancreatitis risk)

SLIDE 11 — Treatment Algorithm

STEP 1 — Lifestyle Modifications
  Diet, exercise, weight loss, smoking cessation → ALL patients

      ↓ if LDL-C goal not met

STEP 2 — High-Intensity Statin
  Rosuvastatin 20-40 mg OR Atorvastatin 40-80 mg → ≥50% LDL-C reduction

      ↓ if LDL-C goal not met

STEP 3 — Add Ezetimibe
  10 mg/day add-on
  ESC 2025: Consider upfront statin + ezetimibe (fire-to-target)

      ↓ if LDL-C goal not met

STEP 4 — Add PCSK9 Inhibitor
  Evolocumab or alirocumab (SC injection)
  AHA 2026: No longer strictly sequential — choose by LDL-C gap needed

      ↓ if statin-intolerant

STEP 5 — Alternatives for Statin Intolerance
  Bempedoic acid ± ezetimibe
  Inclisiran as alternative to PCSK9 mAb
  Evinacumab for homozygous FH (HoFH)
Monitor lipid profile 4-12 weeks after therapy change, then every 6-12 months. Therapeutic inertia is a key barrier — intensify until goals are achieved.

SLIDE 12 — Special Populations

Diabetes Mellitus (T2DM)

  • High-intensity statin recommended even without clinical ASCVD
  • LDL-C <70 mg/dL for high-risk DM; <55 for very high risk
  • AHA 2026: PREVENT incorporates HbA1c in risk calculation
  • GLP-1 agonists / SGLT2i reduce ASCVD events independently

Familial Hypercholesterolemia (FH)

  • Universal childhood lipid screening: AHA 2026 ages 9-11; ESC 2025 ages 5-10
  • Heterozygous FH: LDL-C >190 mg/dL despite lifestyle → high-intensity statin
  • Homozygous FH: Evinacumab (anti-ANGPTL3) + LDL apheresis
  • Cascade screening of all first-degree relatives recommended

Elderly (≥75 years)

  • SCORE2-OP used in ESC 2025 for those ≥70 years
  • Statins remain beneficial in secondary prevention regardless of age
  • Primary prevention: individualize; risk of adverse effects increases with age
  • Polypharmacy and drug interactions must be considered

HIV & Cardio-Oncology (ESC 2025 NEW)

  • Statins recommended in HIV patients at CV risk
  • Cancer therapy (anthracyclines, checkpoint inhibitors) → increased CV risk
  • Rosuvastatin and pravastatin preferred (fewer drug interactions with ART)
  • Monitor CYP3A4 interactions between ART and statins

SLIDE 13 — AHA 2026 vs ESC 2025: Side-by-Side

FeatureAHA / ACC 2026ESC / EAS 2025
Risk toolPREVENT-ASCVD (10- & 30-yr)SCORE2 / SCORE2-OP
Risk categoriesPrimary, secondary, very high riskLow / Moderate / High / Very High / Extreme
Lowest LDL-C target< 55 mg/dL (very high risk)< 40 mg/dL (extreme risk) ★
Lp(a) screeningUniversal (Class I)Recommended in risk assessment
ApoBSelective — refine riskEndorsed as alternative target
CAC scoringExpanded role in primary preventionRisk modifier to refine SCORE2
Treatment approachPCSK9i no longer strictly sequentialFire-to-target — upfront combination
Statin intoleranceBempedoic acid, inclisiranBempedoic acid Class I (CLEAR Outcomes)
Dietary supplementsClass 3 — NOT recommendedNot recommended
Childhood screeningAges 9-11 (FH cascade)Ages 5-10 (FH cascade)
New drug classesInclisiran, pelacarsen, olezarsenBempedoic acid, evinacumab
PublishedMarch 2026 — CirculationAugust 2025 — Eur Heart J
Extreme Risk is unique to ESC 2025 — no equivalent category exists in AHA 2026

SLIDE 14 — Hypertriglyceridemia

Classification

CategoryTG Level
Normal< 150 mg/dL
Borderline High150-199 mg/dL
High200-499 mg/dL
Very High≥ 500 mg/dL

Common Causes

  • Obesity and metabolic syndrome
  • Type 2 diabetes / insulin resistance
  • Hypothyroidism, Cushing syndrome
  • Chronic kidney disease / nephrotic syndrome
  • Excessive alcohol consumption
  • Medications: thiazides, beta-blockers, isotretinoin, HIV ART, estrogens
  • Familial hypertriglyceridemia (genetic)

Management

  • Lifestyle: weight loss, reduce refined carbs, limit alcohol
  • Treat secondary causes (glycemic control, thyroid)
  • If TG ≥500 mg/dL → fibrates first (pancreatitis risk)
  • Icosapentaenoic acid (EPA) 4 g/day — REDUCE-IT trial: ↓25% MACE
  • AHA 2026: remnant particles highlighted as independent ASCVD risk
  • Non-HDL-C is a better treatment target than TG directly

SLIDE 15 — Lipoprotein(a): The Emerging Biomarker

Lp(a) = LDL-like particle + apolipoprotein(a). Levels are >90% genetically determined; minimally modified by diet or lifestyle. Elevated Lp(a) independently increases risk of MI, stroke, aortic stenosis, and PAD.
AHA 2026ESC 2025
ScreeningClass I — Measure ≥1× in all adultsRecommended in CV risk assessment
Threshold≥75 nmol/L (risk modifier); ≥125 nmol/L (high risk)≥50 mg/dL = significant risk modifier
Treatment targetNot yet definedNot yet defined (target expected in future guidelines)
PCSK9i effectModest ↓20-25% on Lp(a)Modest ↓20-25% on Lp(a)
Pipeline drugPelacarsen (antisense oligo) → ↓80% Lp(a); Phase 3 awaiting CV outcome dataOlezarsen being studied (Lp(a) + TG)

SLIDE 16 — Monitoring & Statin Safety

Follow-up Schedule

TimepointWhat to Check
BaselineFasting lipids, LFTs, CK, glucose, HbA1c, Lp(a) once
4-12 weeksRepeat lipid panel; assess % LDL-C reduction; CK if myalgia
Every 6-12 monthsOngoing lipid monitoring once at goal; tolerability; adherence
AnnuallyReassess CV risk; intensify if goals not met; specialist referral

Statin Safety

ConcernKey Points
Myopathy / Rhabdomyolysis0.1-0.5% incidence; CK >10× ULN → stop statin; check for interactions (CYP3A4), hypothyroidism, CKD
New-onset DiabetesModest risk (~10-12%); ASCVD risk reduction far outweighs this in high-risk patients
LFT ElevationSevere hepatotoxicity is rare; baseline LFTs; recheck only if symptomatic
Cognitive EffectsNo consistent evidence; concern not substantiated in large trials

SLIDE 17 — 10 Take-Home Messages

#Key MessageSummary
1Dyslipidemia = more than LDL-CLp(a), remnant particles, and ApoB all contribute to ASCVD risk
2AHA 2026 restores LDL-C goalsVery high risk <55; ASCVD not VHR <70 mg/dL; plus ≥50% reduction target
3ESC 2025 adds Extreme RiskNew category: LDL-C <40 mg/dL for CVD + recurrent event on max therapy
4Universal Lp(a) screeningAHA 2026 Class I for all adults; ESC 2025 strongly recommended
5PREVENT replaces PCE in the USABetter calibrated; integrates 10- and 30-year risk; includes metabolic/renal variables
6Fire-to-target (ESC) vs sequential (AHA)ESC supports upfront statin + ezetimibe; AHA allows simultaneous PCSK9i add-on
7Statin + Ezetimibe + PCSK9i = up to 85% LDL-C reductionCombination therapy is highly effective; bempedoic acid for statin-intolerant
8Lifestyle always comes firstDiet, exercise, smoking cessation — recommended in ALL risk categories
9No dietary supplementsBoth guidelines: Class 3 / not recommended for fish oil, red yeast rice, plant sterols
10Overcome therapeutic inertiaFollow-up at 4-12 weeks; intensify until goals are achieved; refer to lipid specialist if needed

References

  1. Blumenthal RS, Morris PB et al. 2026 ACC/AHA/Multisociety Guideline on the Management of Dyslipidemia. Circulation. March 2026.
  2. Mach F, Baigent C, Catapano AL et al. 2025 Focused Update of the 2019 ESC/EAS Guidelines for the Management of Dyslipidaemias. Eur Heart J. August 2025.
  3. Lloyd-Jones DM et al. PREVENT-ASCVD Equations. Circulation. 2024.
  4. Nissen SE et al. Bempedoic acid and cardiovascular outcomes — CLEAR Outcomes. NEJM. 2023.
  5. Ridker PM et al. Inclisiran — ORION-10 & ORION-11 trials. NEJM. 2020.
  6. Bhatt DL et al. Cardiovascular risk reduction with icosapentaenoic acid — REDUCE-IT. NEJM. 2019.

That covers all 17 content slides in full. The structure follows: definition → pathophysiology → risk tools → screening → AHA 2026 updates → ESC 2025 updates → treatment (lifestyle, drugs, algorithm) → special populations → comparison table → hypertriglyceridemia → Lp(a) → monitoring → summary. Let me know if you want to expand any specific section.

Give me history taking list all for gout patient

Here is a complete history-taking checklist for a gout patient:

🩺 History Taking — Gout Patient

Complete Structured Checklist


1. PRESENTING COMPLAINT (PC)

  • Joint pain — which joint(s)?
  • Swelling, redness, warmth
  • Duration of current episode
  • Onset: sudden vs gradual

2. HISTORY OF PRESENTING COMPLAINT (HPC)

Pain Characterization (SOCRATES)

  • Site: Which joint(s) — 1st MTP (podagra), ankle, knee, wrist, elbow, finger
  • Onset: Sudden overnight onset? (classic gout pattern)
  • Character: Burning, throbbing, crushing, aching
  • Radiation: Spreading to other joints?
  • Associated symptoms (see below)
  • Timing: Constant or intermittent? Morning vs night?
  • Exacerbating factors: Walking, touch, light pressure (even bedsheet intolerance?)
  • Severity: Pain score 1-10; ability to weight-bear?

Attack Features

  • How many hours from onset to peak severity?
  • Hyperemia (intense redness) over joint?
  • Desquamation (skin peeling) after attack?
  • Can you bear weight on the joint?
  • Any fever or systemic symptoms during attack?
  • How long does each attack last untreated?
  • Complete resolution between attacks?

3. GOUT ATTACK HISTORY

  • Age at first attack
  • Total number of attacks
  • Frequency of attacks (per year)
  • Pattern — same joint each time or migrating?
  • Any polyarticular attacks (multiple joints at once)?
  • Longest pain-free interval between attacks
  • Are attacks getting more frequent or severe over time?
  • Any attacks at night specifically?
  • Any spontaneous resolution?

4. PRECIPITATING / TRIGGER FACTORS

Dietary Triggers (ask specifically)

  • Red meat (beef, lamb, pork)
  • Organ meats (liver, kidney, sweetbreads, brain)
  • Seafood / shellfish (especially anchovies, sardines, mussels, scallops, shrimp)
  • Alcohol — type and quantity:
    • Beer (highest purine content)
    • Spirits / whisky
    • Wine (lower risk but still ask)
  • Sugary drinks / fructose-containing beverages (sodas, fruit juices)
  • High-fructose corn syrup foods

Other Triggers

  • Recent illness, infection, or surgery (physiological stress)
  • Dehydration (recent fasting, poor fluid intake, hot weather)
  • Recent initiation of diuretics
  • Recent initiation of allopurinol or urate-lowering therapy (can trigger acute flare)
  • Trauma to joint
  • Excessive exercise
  • Crash dieting / starvation
  • Blood transfusion or chemotherapy (cell lysis → purine release)

5. INTERVAL / INTERCRITICAL PERIOD

  • Any joint symptoms between attacks?
  • Joint stiffness between episodes?
  • Full return to normal function?
  • Duration of the pain-free intervals (becoming shorter?)

6. CHRONIC TOPHACEOUS GOUT

  • Any lumps or nodules over joints, ears, tendons?
  • Ask specifically about:
    • Ear pinnae (helix / antihelix)
    • Fingers / knuckles
    • Elbow (olecranon bursa)
    • Achilles tendon
    • First MTP joint
    • Forearm
  • White chalky discharge from any lumps?
  • Ulceration over lumps?
  • Joint deformity?
  • Functional limitation of any joint?

7. URINARY / RENAL SYMPTOMS

  • Kidney stones (uric acid nephrolithiasis) — ever passed a stone?
  • Flank / loin pain (renal colic)
  • Hematuria (blood in urine)
  • Recurrent urinary tract infections
  • Reduced urine output / foamy urine
  • Known chronic kidney disease?
  • Any prior renal ultrasound or CT for stones?

8. PAST MEDICAL HISTORY (PMH)

  • Hyperuricemia — known elevated serum uric acid? Previous readings?
  • Hypertension — very strong association with gout
  • Type 2 Diabetes Mellitus / Metabolic Syndrome
  • Dyslipidemia (ask — links to metabolic syndrome)
  • Obesity — weight history, BMI
  • Chronic Kidney Disease — stage, GFR
  • Cardiovascular disease — IHD, heart failure, stroke
  • Psoriasis (associated with hyperuricemia)
  • Haematological malignancy — leukemia, lymphoma, polycythemia (high cell turnover)
  • Hypothyroidism (reduces uric acid excretion)
  • Organ transplant (cyclosporine use → hyperuricemia)
  • Previous joint disease — OA, RA, septic arthritis
  • Renal transplant (especially — cyclosporine → gout very common)

9. DRUG HISTORY (DH)

Drugs that RAISE Uric Acid (ask about each)

DrugMechanism
Thiazide diuretics (hydrochlorothiazide, bendroflumethiazide)Reduce renal uric acid excretion
Loop diuretics (furosemide, bumetanide)Reduce renal uric acid excretion
Low-dose aspirin (<2 g/day)Reduces uric acid secretion
Ciclosporin / TacrolimusReduce renal clearance of urate
Pyrazinamide (TB drug)Inhibits uric acid excretion
EthambutolReduces renal uric acid excretion
LevodopaCan raise uric acid levels
Beta-blockersMildly raise uric acid
Nicotinic acid / NiacinCompetes with uric acid excretion
Chemotherapy agentsTumor lysis → massive purine release

Current Gout Medications

  • On allopurinol? Dose? How long?
  • On febuxostat? Dose?
  • On probenecid or benzbromarone?
  • On colchicine (prophylaxis)?
  • NSAIDs used during attacks? Which ones?
  • Corticosteroids for acute attacks?

Other Current Medications

  • ACE inhibitors / ARBs (losartan is uricosuric — beneficial)
  • Metformin, SGLT2 inhibitors (mildly uricosuric)
  • Statins
  • Any over-the-counter medications / supplements?
  • Vitamin C supplements (mildly lowers urate)

Allergies

  • Drug allergies — especially allopurinol hypersensitivity (Stevens-Johnson syndrome risk, HLA-B*5801 association in Asian patients)
  • NSAID allergy / intolerance

10. FAMILY HISTORY (FH)

  • Family history of gout (first-degree relatives)?
  • Family history of kidney stones?
  • Family history of hyperuricemia?
  • Any rare inherited conditions:
    • Lesch-Nyhan syndrome (HGPRT deficiency — young males, severe hyperuricemia)
    • Kelley-Seegmiller syndrome
    • Familial juvenile hyperuricemic nephropathy (FJHN)
    • PRPP superactivity

11. SOCIAL HISTORY (SH)

Alcohol

  • Type, frequency, and quantity per week
  • CAGE questionnaire if concerned
  • Recent binge drinking before this attack?

Diet

  • Red meat / organ meat consumption frequency
  • Seafood frequency
  • Soft drink / fizzy drink intake
  • Dairy intake (dairy is protective — ask)
  • Fluid / water intake per day (dehydration is a trigger)
  • Coffee intake (mildly protective)
  • Recent dietary changes / crash diet?

Occupation

  • Type of work — manual labor (joint trauma)?
  • Work schedule — night shifts (eating patterns, hydration)
  • Occupational exposures (lead exposure → saturnine gout)

Lifestyle

  • Smoking status
  • BMI / weight history — recent weight gain?
  • Exercise habits
  • Recent travel or change in diet?

Social Circumstances

  • Living situation, support at home
  • Impact of gout on activities of daily living (ADLs)
  • Ability to work / mobility during attacks
  • Psychological impact — anxiety, depression?

12. SYSTEMS REVIEW (SR)

Musculoskeletal

  • Joint stiffness (morning stiffness duration?)
  • Other joint involvement — asymmetric? Symmetric?
  • Muscle weakness
  • Bone pain

Renal

  • Urine output, color, frothiness
  • Flank pain, dysuria
  • Known renal stones

Cardiovascular

  • Chest pain, palpitations, shortness of breath
  • Ankle swelling (CKD / heart failure)

Gastrointestinal

  • Nausea, vomiting, diarrhea
  • GI upset with NSAIDs or colchicine
  • Peptic ulcer disease (relevant if considering NSAIDs)

Skin

  • Rashes, tophi, ulceration
  • Psoriatic plaques

Systemic

  • Fever, chills (rule out septic arthritis)
  • Fatigue, weight loss (haematological malignancy?)
  • Night sweats

13. FUNCTIONAL IMPACT

  • Can the patient walk during an attack?
  • Time off work due to gout?
  • Sleep disturbance from pain?
  • Ability to wear normal footwear?
  • Impact on social life / activities?
  • How is the patient coping emotionally?

14. PATIENT'S IDEAS, CONCERNS & EXPECTATIONS (ICE)

  • Ideas: What does the patient think is causing their symptoms?
  • Concerns: What worries them most? (damage, disability, long-term medication)
  • Expectations: What do they hope to achieve today? Pain relief? Diagnosis? Long-term prevention?
  • Understanding of gout and uric acid?
  • Previous advice given — has it been followed?
  • Willingness to change diet / lifestyle?

Quick Reference Summary Table

DomainKey Questions
Site & onsetWhich joint? Sudden overnight?
Attack patternFrequency, duration, complete resolution?
TriggersDiet (meat, seafood, alcohol, fructose), drugs, dehydration
TophiEars, elbows, tendons, MTP joint — any nodules?
RenalStones, hematuria, CKD
PMHHTN, DM, CKD, CVD, malignancy
DrugsDiuretics, aspirin, cyclosporin, allopurinol
Family HxGout, stones, Lesch-Nyhan
SocialAlcohol, diet, occupation (lead?), ADL impact
ICEIdeas, concerns, expectations

This covers every domain needed for a thorough gout history. Let me know if you want me to format this as a printable PDF or structured examination card.

What are the questions need to ask for gout patient to diagnosis and make a medical record

Here are the exact questions to ask a gout patient during clinical consultation, organized as you would say them to the patient:

🩺 Gout Patient — Clinical Interview Questions

Exact Questions for Diagnosis & Medical Record


🔴 OPENING

"What brought you in today?" "Tell me about the pain you are having."

1. PRESENTING JOINT PAIN

#QuestionWhat You Are Looking For
1"Which joint is painful?"1st MTP (podagra = classic gout)
2"Is it one joint or multiple joints?"Monoarthritis vs polyarthritis
3"When exactly did the pain start?"Sudden overnight onset = classic
4"How quickly did it reach its worst?"Hours = gout; days = other arthritis
5"On a scale of 1–10, how bad is the pain?"Gout is typically 8–10/10
6"What does the pain feel like? Burning? Throbbing? Crushing?"Burning/throbbing = typical gout
7"Does the pain spread anywhere?"Radiation pattern
8"Is the joint swollen or red?"Signs of acute inflammation
9"Is the joint warm to touch?"Warmth = acute crystal arthritis
10"Does even a light touch — like a bedsheet — hurt the joint?"Hyperalgesia = hallmark of gout
11"Can you walk / bear weight on it?"Functional severity
12"What makes it worse? What makes it better?"Ice, rest, elevation

2. ATTACK PATTERN & HISTORY

#QuestionWhat You Are Looking For
13"Have you had this kind of pain before?"Recurrent attacks = gout pattern
14"How old were you when it first happened?"Early onset → consider genetic cause
15"How many times has this happened?"Frequency of attacks
16"How often do attacks occur — once a year? Monthly?"Attack frequency = disease progression
17"Does the same joint get affected each time?"Same joint = typical; migrating = polyarticular
18"How long does each attack last?"Gout: days to 2 weeks
19"Does the pain completely go away between attacks?"Complete resolution = intermittent gout
20"Are the attacks getting more frequent or more severe over time?"Disease progression to chronic gout
21"Did the skin ever peel or flake over the joint after the attack?"Post-attack desquamation = gout sign
22"Did you have fever during the attack?"Rule out septic arthritis

3. TRIGGER FACTORS

#QuestionWhat You Are Looking For
23"Did anything happen just before this attack started?"Identify trigger
24"Did you eat a lot of red meat, organ meat, or seafood recently?"High-purine food trigger
25"Did you drink alcohol — especially beer — before the attack?"Beer = highest purine content
26"Did you drink a lot of sugary drinks or soda recently?"Fructose → hyperuricemia
27"Were you unwell, had a fever, or had surgery recently?"Physiological stress trigger
28"Did you drink enough water? Were you dehydrated?"Dehydration = common trigger
29"Did you start any new medication recently?"Diuretics, aspirin, cyclosporin
30"Did you recently start allopurinol or gout tablets?"ULT initiation can trigger flare
31"Did you injure or trauma the joint recently?"Trauma trigger

4. TOPHI (CHRONIC GOUT)

#QuestionWhat You Are Looking For
32"Have you noticed any lumps or bumps around your joints, elbows, or ears?"Tophi = chronic tophaceous gout
33"Have any of these lumps ever discharged a white chalky material?"Urate crystal discharge from tophus
34"Do you have any ulcers or sores over the lumps?"Tophus ulceration
35"Have your joints changed shape or become deformed?"Chronic joint destruction

5. KIDNEY / URINARY SYMPTOMS

#QuestionWhat You Are Looking For
36"Have you ever had kidney stones?"Uric acid nephrolithiasis
37"Have you ever had severe pain in your side or back that came in waves?"Renal colic
38"Have you noticed blood in your urine?"Hematuria from stones
39"Have you had recurrent urine infections?"CKD / nephrolithiasis complication
40"Have you been told your kidneys are not working well?"CKD — affects urate excretion and drug choice

6. PAST MEDICAL HISTORY

#QuestionWhat You Are Looking For
41"Have you been told your uric acid is high?"Asymptomatic hyperuricemia history
42"Do you have high blood pressure?"HTN = strong gout association; diuretics used
43"Do you have diabetes?"Metabolic syndrome cluster
44"Do you have high cholesterol?"Metabolic syndrome
45"Have you had a heart attack or stroke?"Cardiovascular comorbidity
46"Do you have heart failure?"Affects diuretic use and treatment choice
47"Do you have kidney disease?"Affects drug dosing (allopurinol, NSAIDs)
48"Do you have psoriasis?"Associated with hyperuricemia
49"Have you ever had a cancer of the blood — leukemia, lymphoma?"High cell turnover → hyperuricemia
50"Have you had a joint replaced or any joint surgery?"Surgical history
51"Have you had an organ transplant?"Cyclosporine → severe hyperuricemia
52"Do you have an underactive thyroid?"Hypothyroidism reduces urate excretion
53"Do you have any other medical conditions I should know about?"Open-ended catch-all

7. DRUG HISTORY

#QuestionWhat You Are Looking For
54"What medications are you currently taking — including tablets, injections, and inhalers?"Full drug list
55"Are you taking any water tablets (diuretics)?"Thiazides/loops → hyperuricemia
56"Do you take aspirin — even a small daily dose?"Low-dose aspirin ↑ uric acid
57"Are you on any anti-rejection medications?"Cyclosporin / tacrolimus
58"Are you on any tuberculosis medications?"Pyrazinamide / ethambutol → ↑ urate
59"Are you currently taking allopurinol or febuxostat?"ULT compliance and dosing
60"Are you taking colchicine — for prevention or during attacks?"Prophylaxis assessment
61"What do you take during a gout attack — any painkillers?"NSAIDs, steroids, colchicine use
62"Do you take any over-the-counter medications, herbal, or supplements?"Vitamin C, fish oil, complementary medicine
63"Do you have any drug allergies?"Especially allopurinol hypersensitivity (SJS risk)
64"Have you ever had a bad reaction to any medication?"Adverse drug reactions

8. FAMILY HISTORY

#QuestionWhat You Are Looking For
65"Does anyone in your family — parents, siblings — have gout?"Genetic predisposition
66"Does anyone in the family have kidney stones?"Familial uric acid nephrolithiasis
67"Is there any family history of early kidney disease?"FJHN (Familial juvenile hyperuricemic nephropathy)

9. SOCIAL HISTORY

#QuestionWhat You Are Looking For
68"Do you drink alcohol? How much and how often?"Alcohol intake — type and quantity
69"Which type of alcohol do you drink most — beer, wine, or spirits?"Beer = highest risk
70"Have you increased your drinking recently?"Recent change in consumption
71"What does a typical day of eating look like for you?"Dietary pattern assessment
72"How often do you eat red meat, shellfish, or organ meats?"Purine-rich food frequency
73"How much water do you drink per day?"Hydration status
74"Do you smoke?"Smoking history
75"What is your job / occupation?"Lead exposure? Physical demands?
76"Have you been exposed to lead at work or at home?"Saturnine gout (lead → ↓ urate excretion)
77"How much do you weigh? Has your weight changed recently?"Obesity = risk factor; weight gain = trigger
78"Do you exercise regularly?"Activity level

10. FUNCTIONAL IMPACT

#QuestionWhat You Are Looking For
79"How has this affected your ability to walk and do daily activities?"Functional disability
80"Have you had to take time off work because of gout?"Occupational impact
81"Can you wear normal shoes during an attack?"1st MTP involvement impact
82"How is your sleep affected during an attack?"Pain affecting sleep
83"How has gout affected your life overall?"Quality of life

11. ICE — Ideas, Concerns & Expectations

#QuestionPurpose
84"What do you think is causing this pain?"Patient's own understanding
85"Is there anything specific you are worried about?"Uncover hidden concerns
86"What were you hoping we could do for you today?"Align management with expectations
87"Has anyone explained gout to you before? What do you understand about it?"Assess health literacy
88"Are you willing to make some changes to your diet and lifestyle?"Assess readiness to change

🔵 DIAGNOSTIC CHECKLIST — What to Document

After the interview, your medical record should capture:
DATE OF CONSULTATION:
PATIENT: Age / Sex / Ethnicity (HLA-B*5801 relevant in Asian patients)

PC:   Joint pain — [joint name], [duration]

HPC:
  - Site: _______________
  - Onset: Sudden / Gradual
  - Duration of current attack: ___ days
  - Severity: ___/10
  - Character: _______________
  - Hyperalgesia (bedsheet sign): Yes / No
  - Trigger identified: _______________
  - Number of previous attacks: ___
  - Attack frequency: ___/year
  - Complete resolution between attacks: Yes / No
  - Tophi present: Yes / No — Location: _______________
  - Renal stones: Yes / No

PMH:  HTN / DM / Dyslipidemia / CKD / CVD / Psoriasis / Malignancy / Transplant

DH:   [List all medications]
      Urate-raising drugs: Yes / No — _______________
      Current ULT: Yes / No — Drug/Dose: _______________
      Allergies: _______________

FH:   Gout / Renal stones / Kidney disease

SH:   Alcohol: ___ units/week (type: ___)
      Diet: High purine? ___
      Smoking: ___
      Occupation: ___
      Lead exposure: Yes / No

FUNCTIONAL STATUS: _______________

ICE:  _______________

SYSTEMS REVIEW: _______________

🟡 KEY DIAGNOSTIC POINTERS FROM HISTORY

History FindingSuggests
Sudden overnight severe monoarthritis of 1st MTPClassic podagra = gout until proven otherwise
Complete resolution between attacksIntermittent gouty arthritis
Attacks triggered by alcohol / red meatDietary-induced hyperuricemia
Bedsheet hyperalgesiaAcute crystal arthritis
Tophi on ears, elbows, tendonsChronic tophaceous gout
On thiazide diuretic + joint painDrug-induced hyperuricemia → gout
Renal stones + joint painUric acid nephrolithiasis
Young male + very high uric acid + neurological symptomsLesch-Nyhan syndrome
Transplant patient + goutCyclosporine-induced hyperuricemia
Fever + single jointMust exclude septic arthritis first

This is everything you need to conduct a complete, diagnosis-oriented gout consultation and fill a medical record. Let me know if you want this as a printable form or OSCE-style checklist.

From AHA 2026 guidelines I need a topic presentation in dyslipidemia give me , intro ,epidemiology, pathophysiology, clinical features, lab investigation, diagnostic criteria and classification, risk factors, treatment and management ( pharmacological and non - pharmacological)

Here is the complete topic presentation based on AHA 2026 guidelines:

🫀 DYSLIPIDEMIA

A Complete Topic Presentation

Based on AHA / ACC 2026 Guidelines


PART 1 — INTRODUCTION

Definition

Dyslipidemia is an abnormality in the concentration, composition, or metabolism of circulating lipoproteins — including:
  • Elevated LDL-C (low-density lipoprotein cholesterol)
  • Elevated non-HDL-C
  • Elevated triglycerides (TG)
  • Elevated lipoprotein(a) [Lp(a)]
  • Low HDL-C (high-density lipoprotein cholesterol)
These abnormalities independently and collectively increase the risk of atherosclerotic cardiovascular disease (ASCVD).

Why It Matters — AHA 2026 Context

The 2026 ACC/AHA Guideline replaces and retires the 2018 Blood Cholesterol Guideline. The key conceptual shift:
2018 Guideline2026 Guideline
Focus on LDL-C aloneBroader focus: LDL-C + remnant particles + Lp(a) + ApoB
No fixed LDL-C targetsRestores absolute LDL-C treatment goals
Pooled Cohort Equations (PCE)PREVENT-ASCVD Equations
Statins only emphasizedMulti-pathway lipid management
Treating a numberTreating lifetime cardiovascular risk
The guideline is retitled from "Blood Cholesterol" to "Management of Dyslipidemia" — reflecting that ASCVD risk extends beyond LDL-C to include triglyceride-rich remnants and Lp(a).

Lipoprotein Structure — Brief Review

Lipoproteins are transport vehicles for lipids in the bloodstream. Each is classified by density and lipid content:
LipoproteinPrimary LipidApolipoproteinAtherogenicity
ChylomicronsDietary TGApoB-48Low (too large to enter wall)
VLDLEndogenous TGApoB-100Moderate (remnants are)
IDLTG + CholesterolApoB-100High
LDLCholesterolApoB-100High — primary target
HDLCholesterol (reverse)ApoA-IProtective
Lp(a)Cholesterol + apo(a)ApoB-100 + apo(a)High — independent risk
AHA 2026 key principle: Every atherogenic particle carries exactly one ApoB molecule. ApoB is therefore a more accurate measure of atherogenic particle number than LDL-C alone.


PART 2 — EPIDEMIOLOGY

Global Burden

  • Cardiovascular disease (CVD) is the #1 cause of death globally, accounting for ~18 million deaths per year (WHO, 2024)
  • Dyslipidemia is present in approximately 50% of adults worldwide
  • Elevated LDL-C is estimated to cause 4.4 million deaths annually
  • Only one-third of individuals with dyslipidemia are aware of their condition
  • Only one-fifth of those aware are adequately treated

United States (AHA 2026 Data)

  • ~94 million U.S. adults (age ≥20) have total cholesterol ≥200 mg/dL
  • ~28% of U.S. adults have LDL-C ≥130 mg/dL
  • ~25% of U.S. adults have low HDL-C (<40 mg/dL men, <50 mg/dL women)
  • ~25% have hypertriglyceridemia (TG ≥150 mg/dL)
  • ~20% of the population has elevated Lp(a) ≥50 mg/dL
  • Hypertriglyceridemia affects ~1 in 4 American adults
  • Despite statin availability, only ~55% of very-high-risk patients achieve LDL-C goals

Demographic Patterns

GroupPattern
MenHigher LDL-C at younger age; earlier ASCVD onset
WomenLDL-C rises after menopause; catch up to men post-50
South AsianHigher Lp(a), higher TG, lower HDL-C; greater ASCVD risk at same LDL-C
Black AmericansHigher Lp(a) levels; higher HTN prevalence
Hispanic AmericansHigher TG, lower HDL-C; higher metabolic syndrome prevalence
ElderlyHigher prevalence dyslipidemia; but underdiagnosed and undertreated

Pediatric Epidemiology

  • AHA 2026 recommends universal lipid screening for children ages 9–11 years
  • Familial hypercholesterolemia (FH) affects ~1 in 250 persons worldwide
  • FH is one of the most common genetic disorders but remains >90% undiagnosed
  • Childhood hypercholesterolemia accelerates atherosclerosis beginning in the first decade of life (Bogalusa Heart Study)


PART 3 — PATHOPHYSIOLOGY

Overview of Normal Lipid Metabolism

Exogenous Pathway (Dietary Lipids)

  1. Dietary fat absorbed in gut → packaged into chylomicrons (contain ApoB-48)
  2. Chylomicrons enter lymphatics → circulation → deliver TG to muscles and adipose tissue via lipoprotein lipase (LPL)
  3. Chylomicron remnants taken up by liver via ApoE receptor

Endogenous Pathway (Hepatic Lipids)

  1. Liver synthesizes TG and cholesterol → packaged into VLDL (contain ApoB-100)
  2. LPL in peripheral tissues hydrolyzes VLDL TG → VLDL becomes IDL, then LDL
  3. LDL delivers cholesterol to peripheral tissues via LDL receptor (LDLR)
  4. LDLR expression is regulated by intracellular cholesterol and PCSK9 (which degrades LDLR)

Reverse Cholesterol Transport

  1. HDL (ApoA-I) picks up excess cholesterol from peripheral tissues
  2. LCAT esterifies cholesterol → HDL matures
  3. Cholesterol transferred back to liver via SR-B1 receptor or exchanged to LDL/VLDL via CETP

Atherogenesis — Step by Step

Step 1 — LDL Entry

  • LDL particles (especially small, dense LDL) cross endothelium into subendothelial space (intima)
  • Entry is driven by particle number (ApoB) and endothelial dysfunction (HTN, smoking, hyperglycemia, shear stress)

Step 2 — Oxidative Modification

  • LDL trapped in intima is oxidized → oxidized LDL (ox-LDL)
  • ox-LDL activates endothelial cells → expression of ICAM-1, VCAM-1, MCP-1
  • Monocytes recruited from blood → enter intima → differentiate into macrophages

Step 3 — Foam Cell Formation

  • Macrophages express scavenger receptors (SR-A, CD36) — these are not downregulated by intracellular cholesterol
  • Macrophages engulf ox-LDL uncontrolled → become foam cells
  • Foam cells accumulate → fatty streak (earliest visible atherosclerotic lesion, present even in children)

Step 4 — Plaque Development

  • Smooth muscle cells (SMC) migrate from media → intima → secrete collagen → form fibrous cap
  • Necrotic core develops: foam cells die → release cholesterol crystals, proteases, cytokines
  • Vulnerable plaque = large necrotic core + thin fibrous cap + active inflammation

Step 5 — Plaque Rupture → ASCVD Event

  • Metalloproteinases (MMPs) degrade fibrous cap → plaque rupture
  • Subendothelial collagen exposed → platelet aggregation + thrombus formation
  • Results: ACS (STEMI/NSTEMI), ischemic stroke, TIA, PAD

Role of Key Lipid Particles in Atherogenesis

LDL-C

  • Each LDL particle carries one ApoB → more particles = more intimal entry
  • Causal relationship confirmed by Mendelian randomization studies
  • Every 1 mmol/L (38.7 mg/dL) reduction in LDL-C → ~22% reduction in MACE

VLDL / Remnant Particles

  • AHA 2026 highlights triglyceride-rich remnant particles as independent atherogenic particles
  • Remnants are small enough to penetrate endothelium
  • Non-HDL-C includes all atherogenic particles (LDL + VLDL + IDL + Lp(a))
  • Non-HDL-C = Total cholesterol − HDL-C

Lp(a)

  • Lp(a) = LDL + apo(a) linked by disulfide bond
  • Pro-atherogenic: enters intima like LDL; promotes foam cell formation
  • Pro-thrombotic: apo(a) inhibits fibrinolysis (structural homology with plasminogen)
  • Independently increases risk of MI, stroke, aortic stenosis, PAD
  • Levels are >90% genetically determined — not modifiable by diet

HDL

  • Reverse cholesterol transport: removes cholesterol from vessel wall → liver
  • Also has anti-inflammatory, antioxidant, antithrombotic properties
  • Low HDL-C (<40 mg/dL men, <50 mg/dL women) = independent CV risk factor
  • HDL raising drugs (niacin, CETP inhibitors) have not reduced CV events in trials → HDL function more important than level

PCSK9 — Mechanism Critical for Treatment

  • PCSK9 = proprotein convertase subtilisin/kexin type 9
  • Synthesized in liver → binds LDLR → targets it for lysosomal degradation
  • Loss-of-function PCSK9 mutations → very low LDL-C + protection from ASCVD
  • Gain-of-function mutations → very high LDL-C (familial hypercholesterolemia phenotype)
  • PCSK9 inhibitors (evolocumab, alirocumab) block this → more LDLR on hepatocyte surface → ↓LDL-C 50–65%


PART 4 — CLINICAL FEATURES

Most Patients Are Asymptomatic

The majority of patients with dyslipidemia have no symptoms until an ASCVD event occurs. Clinical features are therefore divided into:
  1. Physical signs of lipid deposition
  2. Manifestations of ASCVD complications

Physical Signs of Lipid Deposition

Xanthomas

Deposits of lipid-laden macrophages in soft tissue:
TypeLocationAssociated Condition
Tendinous xanthomaAchilles tendon, extensor tendons of handsFamilial hypercholesterolemia (FH)
Tuberous / Tuberoeruptive xanthomaElbows, kneesFH, dysbetalipoproteinemia
Eruptive xanthomaButtocks, shoulders, extensor surfacesSevere hypertriglyceridemia (TG >1000)
XanthelasmaMedial eyelids (yellowish plaques)Hypercholesterolemia (not specific)
Palmar / Planar xanthomaPalm creasesType III dyslipidemia (ApoE2/E2)

Corneal Arcus (Arcus Senilis)

  • White/grey ring around corneal periphery
  • Normal in elderly >60 years
  • In patients <45 years = suggests significant hypercholesterolemia / FH

Lipemia Retinalis

  • Cream-colored retinal vessels on fundoscopy
  • Occurs with TG >2000 mg/dL
  • Indicates severe hypertriglyceridemia

Hepatosplenomegaly

  • Seen in severe hypertriglyceridemia
  • Organ enlargement from lipid-laden reticuloendothelial cells

ASCVD Manifestations (Complications)

Coronary Artery Disease (CAD)

  • Stable angina: exertional chest tightness, pressure, radiation to arm/jaw
  • Acute coronary syndrome (ACS): rest pain, diaphoresis, dyspnea, nausea
  • Silent MI: especially in diabetics

Cerebrovascular Disease

  • Transient ischemic attack (TIA): transient focal neuro deficits
  • Ischemic stroke: sudden weakness, speech difficulty, vision loss
  • Carotid bruits on auscultation

Peripheral Arterial Disease (PAD)

  • Intermittent claudication: calf pain on walking, relieved by rest
  • Rest pain, non-healing ulcers, gangrene (severe)
  • Absent peripheral pulses, decreased ankle-brachial index (ABI)

Acute Pancreatitis (Hypertriglyceridemia Specific)

  • Severe abdominal pain, nausea, vomiting
  • Occurs when TG ≥500 mg/dL (risk rises sharply at ≥1000 mg/dL)
  • Eruptive xanthomas may precede pancreatitis

Symptoms by Lipid Type Summary

Lipid AbnormalityClinical Feature
Elevated LDL-CUsually asymptomatic; tendon xanthomas, arcus (in FH)
Severe hypertriglyceridemiaEruptive xanthomas, acute pancreatitis, lipemia retinalis
Low HDL-CAsymptomatic; accelerated ASCVD
Elevated Lp(a)Asymptomatic; early ASCVD, aortic stenosis
Type III dyslipidemiaPalmar xanthomas, tuberous xanthomas, premature CAD/PAD


PART 5 — LABORATORY INVESTIGATIONS

Standard Lipid Panel

Obtain fasting lipid panel (9-12 hours fasting preferred) OR non-fasting if hypertriglyceridemia not suspected:
TestNormal ValueSignificance
Total Cholesterol (TC)<200 mg/dLScreening; less useful than fractions
LDL-C<100 mg/dL (general)PRIMARY treatment target (AHA 2026)
HDL-C≥40 mg/dL (men), ≥50 mg/dL (women)Protective; low = risk factor
Triglycerides (TG)<150 mg/dLElevated → remnant particles, pancreatitis risk
Non-HDL-C<130 mg/dL (general)= TC − HDL-C; includes all atherogenic particles
TC/HDL-C ratio<5Risk assessment tool
AHA 2026: Non-fasting lipid testing is adequate for most clinical scenarios. Fasting is required if TG >400 mg/dL or for accurate LDL-C calculation (Friedewald equation requires fasting).

LDL-C Calculation

Friedewald Equation (valid when TG <400 mg/dL):
LDL-C = Total Cholesterol − HDL-C − (TG ÷ 5)
Martin-Hopkins Equation: More accurate (especially at low LDL-C or high TG) — direct LDL-C measurement preferred when TG ≥400 mg/dL.

Extended Lipid Testing — AHA 2026 Additions

Lipoprotein(a) — Lp(a)

  • AHA 2026: Class I — Measure at least once in all adults
  • Units: mg/dL or nmol/L (nmol/L preferred — avoids particle size variation)
  • Risk thresholds:
    • ≥75 nmol/L (≈30 mg/dL) = risk modifier
    • ≥125 nmol/L (≈50 mg/dL) = high risk — reclassify upward
  • Cannot be meaningfully reduced by lifestyle — genetic determination
  • Repeat only if clinical decision-making requires

Apolipoprotein B (ApoB)

  • AHA 2026: Selective use to improve risk assessment and guide treatment
  • One ApoB per atherogenic particle → better reflects particle burden than LDL-C
  • Especially useful when:
    • LDL-C and non-HDL-C are discordant
    • Hypertriglyceridemia (LDL-C underestimated)
    • Metabolic syndrome / diabetes (small dense LDL)
  • Treatment goals (AHA 2026):
Risk CategoryApoB Goal
Very high risk< 65 mg/dL
High risk< 80 mg/dL
Primary prevention< 90 mg/dL

Additional Investigations for Risk Assessment

TestPurpose
Fasting glucose / HbA1cDiabetes screening; input for PREVENT equations
eGFR / CreatinineCKD assessment; input for PREVENT; affects drug dosing
Urine albumin-to-creatinine ratio (uACR)CKD staging; PREVENT risk variable
Thyroid function (TSH)Secondary dyslipidemia (hypothyroidism → ↑LDL-C)
Liver function tests (LFTs)Baseline before statin; secondary dyslipidemia (cholestasis)
CK (Creatine Kinase)Baseline before statin; check if myalgia develops
Blood pressureMajor CV risk factor; input for risk equations
Fasting insulin / HOMA-IRInsulin resistance assessment
hsCRPResidual inflammatory risk (e.g., JUPITER trial)

Coronary Artery Calcium (CAC) Scoring

AHA 2026 gives expanded role to CAC in primary prevention:
CAC ScoreInterpretationClinical Action
0Very low near-term riskDefer pharmacotherapy; lifestyle + reassess in 5-7 years
1–99 AUMild subclinical diseaseLDL-C goal <100 mg/dL
100–999 AU or ≥75th %ileModerate-high subclinicalLDL-C goal <70 mg/dL
≥ 1000 AUSevere subclinical diseaseLDL-C goal <55 mg/dL
CAC = 0 in a patient age ≥40 has very high negative predictive value for near-term ASCVD — can safely defer statin therapy with lifestyle only. Incidental CAC found on non-cardiac CT should also trigger lipid-lowering therapy consideration.

Risk Calculation — PREVENT-ASCVD

AHA 2026 replaces the Pooled Cohort Equations with the PREVENT-ASCVD equations:
Variables included:
  • Age, sex, race
  • Systolic BP (treated vs untreated)
  • Total cholesterol, HDL-C
  • Diabetes (yes/no) + HbA1c
  • Smoking status
  • eGFR + uACR (renal function — NEW)
  • Zip code-level social deprivation index (NEW)
Outputs:
  • 10-year ASCVD risk
  • 30-year ASCVD risk (new — enables earlier intervention discussion)


PART 6 — DIAGNOSTIC CRITERIA & CLASSIFICATION

AHA 2026 Classification of Dyslipidemia

By Lipid Parameter

DisorderDiagnostic Criterion
HypercholesterolemiaLDL-C ≥130 mg/dL OR total cholesterol ≥200 mg/dL
Severe hypercholesterolemiaLDL-C ≥190 mg/dL
Low HDL-C<40 mg/dL (men), <50 mg/dL (women)
Borderline high TG150–199 mg/dL
High TG200–499 mg/dL
Very high TG≥500 mg/dL (pancreatitis risk)
Severe hypertriglyceridemia≥1000 mg/dL
Elevated Lp(a)≥75 nmol/L (risk modifier); ≥125 nmol/L (high risk)
Elevated non-HDL-C≥130 mg/dL
Elevated ApoB≥90 mg/dL

Fredrickson / WHO Classification (Phenotypic)

TypeElevated ParticleLipid PatternCommon Cause
Type IChylomicrons↑↑↑ TG, TG >1000LPL deficiency (rare genetic)
Type IIaLDL↑ LDL-C, normal TGFamilial hypercholesterolemia
Type IIbLDL + VLDL↑ LDL-C + ↑ TGCombined hyperlipidemia
Type IIIIDL / Remnants↑ TC + ↑ TG equallyDysbetalipoproteinemia (ApoE2)
Type IVVLDL↑ TG, normal/↑ LDLFamilial hypertriglyceridemia
Type VVLDL + Chylomicrons↑↑↑ TGCombined genetic + secondary

Primary vs Secondary Dyslipidemia

Primary (Genetic) Causes

ConditionMutationLDL-C LevelFeatures
Heterozygous FH (HeFH)LDLR, ApoB, PCSK9 (one allele)190–400 mg/dLPremature CAD, tendon xanthomas
Homozygous FH (HoFH)LDLR (both alleles)>400–600 mg/dLCAD in childhood, aortic stenosis
Familial combined hyperlipidemia (FCH)Multiple genes↑ LDL-C + ↑ TGMost common genetic dyslipidemia
Familial dysbetalipoproteinemia (Type III)ApoE2/E2↑ TC + ↑ TGPalmar xanthomas
Familial hypertriglyceridemiaLPL, APOC2↑↑ TGPancreatitis risk
Elevated Lp(a)LPA geneNormal LDL-CIndependent ASCVD risk

Secondary Causes

CauseLipid Effect
Hypothyroidism↑ LDL-C, ↑ TG
Type 2 Diabetes / Insulin resistance↑ TG, ↓ HDL-C, small dense LDL
Obesity↑ TG, ↓ HDL-C
Nephrotic syndrome↑ LDL-C, ↑ TG
Chronic kidney disease↑ TG, ↓ HDL-C
Cholestatic liver disease↑ TC, ↑ LDL-C
Cushing syndrome↑ LDL-C, ↑ TG
Alcohol excess↑↑ TG, ↑ HDL-C
Thiazide diuretics↑ LDL-C, ↑ TG
Beta-blockers↑ TG, ↓ HDL-C
Corticosteroids↑ LDL-C, ↑ TG
Cyclosporin / Tacrolimus↑ LDL-C
HIV antiretrovirals (some)↑ TG, ↑ LDL-C

Familial Hypercholesterolemia — Diagnostic Criteria

Dutch Lipid Clinic Network (DLCN) Score (used clinically with AHA 2026):
CriterionPoints
Family Hx: premature ASCVD (1st degree, <55M / <60F)1
Family Hx: known FH in 1st degree relative2
Personal Hx: premature ASCVD (<55M / <60F)2
Tendon xanthomas (patient or 1st degree relative)6
Corneal arcus age <454
LDL-C ≥330 mg/dL8
LDL-C 250–329 mg/dL5
LDL-C 190–249 mg/dL3
LDL-C 155–189 mg/dL1
Causative mutation confirmed8
ScoreDiagnosis
>8Definite FH
6–8Probable FH
3–5Possible FH
<3Unlikely FH


PART 7 — RISK FACTORS

Non-Modifiable Risk Factors

Risk FactorDetail
AgeMen ≥45 years; Women ≥55 years (post-menopause)
SexMen have earlier ASCVD onset; women catch up after menopause
Genetics / Family HistoryFH, elevated Lp(a), familial combined hyperlipidemia
EthnicitySouth Asian → higher Lp(a) + TG, lower HDL; Black Americans → higher Lp(a)

Modifiable Risk Factors

Lifestyle

Risk FactorMechanism
Unhealthy dietSaturated fat → ↑ LDL-C; trans fats → ↑ LDL-C + ↓ HDL-C; fructose → ↑ TG
Physical inactivity↓ LPL activity → ↑ TG; ↓ HDL-C
Obesity (especially central)↑ VLDL secretion → ↑ TG; ↓ HDL-C; insulin resistance
Alcohol excess↑ hepatic VLDL → ↑↑ TG
SmokingOxidizes LDL; ↓ HDL-C; endothelial dysfunction

Medical Comorbidities

ConditionLipid Effect
Type 2 Diabetes↑ TG, ↓ HDL-C, small dense LDL (most atherogenic form)
HypertensionSynergistic ASCVD risk with dyslipidemia
Metabolic SyndromeCombination of ↑ TG + ↓ HDL + central obesity + ↑ BP + ↑ glucose
CKD↓ urate excretion; altered lipoprotein metabolism
Hypothyroidism↑ LDL-C via ↓ LDLR expression

Drug-Induced Dyslipidemia

DrugEffect
Thiazide diuretics↑ LDL-C, ↑ TG
Beta-blockers (non-cardioselective)↑ TG, ↓ HDL-C
Corticosteroids↑ LDL-C, ↑ TG
Cyclosporin↑ LDL-C (↓ LDLR expression)
Isotretinoin↑ TG, ↑ LDL-C
HIV protease inhibitors↑ TG, ↑ LDL-C
Estrogens (oral)↑ TG
Progestins↓ HDL-C

Risk Enhancers (AHA 2026 — Reclassify Risk Upward)

When PREVENT-ASCVD risk estimate is borderline, these factors push treatment decisions:
  • LDL-C ≥160 mg/dL (primary prevention)
  • Lp(a) ≥125 nmol/L
  • ApoB ≥130 mg/dL
  • hsCRP ≥2.0 mg/L
  • ABI <0.9 (PAD)
  • Chronic inflammatory conditions (RA, psoriasis, SLE)
  • HIV infection
  • Premature menopause (<40 years)
  • Preeclampsia history
  • South Asian ancestry
  • Social deprivation / low SES


PART 8 — TREATMENT & MANAGEMENT

AHA 2026 Treatment Framework

The framework is built on three levels of prevention:
LevelTarget Population
Primordial preventionHealthy individuals — prevent development of risk factors
Primary preventionIndividuals with risk factors but no established ASCVD
Secondary preventionIndividuals with established ASCVD

AHA 2026 LDL-C Treatment Goals

Risk CategoryLDL-C GoalNon-HDL-C GoalApoB Goal
Secondary prevention — Very High Risk< 55 mg/dL< 85 mg/dL< 65 mg/dL
Secondary prevention — Not Very High Risk< 70 mg/dL< 100 mg/dL< 80 mg/dL
Primary prev — High risk (PREVENT ≥20%)< 70 mg/dL< 100 mg/dL< 80 mg/dL
Primary prev — Intermediate risk (7.5–20%)< 100 mg/dL< 130 mg/dL< 90 mg/dL
Primary prev — Borderline risk (5–7.5%)Lifestyle ± statin
Subclinical — CAC ≥100 or ≥75th %ile< 70 mg/dL< 100 mg/dL
Subclinical — CAC ≥1000< 55 mg/dL< 85 mg/dL
Diabetes (no ASCVD, high risk)< 70 mg/dL< 100 mg/dL
Familial Hypercholesterolemia≥50% reduction from baseline
In ALL patients on pharmacotherapy: Also target ≥50% LDL-C reduction from pre-treatment baseline.
Very High Risk = ≥2 major ASCVD events OR 1 major ASCVD event + ≥2 high-risk conditions (diabetes, CKD, heart failure, PAD, HTN, active smoking, age >65, prior PCI/CABG)

A. NON-PHARMACOLOGICAL MANAGEMENT

1. Dietary Modifications

Dietary Pattern

RecommendationEvidenceLDL-C Effect
Mediterranean dietStrong↓ LDL-C 5-10%, ↓ ASCVD events 30% (PREDIMED)
DASH dietStrong↓ LDL-C, ↓ BP
Plant-based / Portfolio dietModerate-strong↓ LDL-C up to 30%
Reduce saturated fat <7% of total caloriesStrong↓ LDL-C ~5-8% per 1% reduction in sat fat
Eliminate trans fats completelyStrong↓ LDL-C + ↑ HDL-C
Increase soluble fiber 10-25 g/dayModerate↓ LDL-C ~5%
Plant sterols 2 g/dayStrong↓ LDL-C ~8-10%
Reduce dietary cholesterol <200 mg/dayModerate↓ LDL-C modestly

Foods to Reduce / Avoid

  • Red meat, processed meat, organ meats
  • Full-fat dairy (butter, cheese, cream)
  • Tropical oils (coconut oil, palm oil)
  • Fried foods, fast food, pastries
  • Sugar-sweetened beverages, fructose (↑ TG)
  • Excess alcohol (especially for hypertriglyceridemia)

Foods to Increase

  • Oily fish (salmon, mackerel, sardines) — omega-3
  • Nuts (walnuts, almonds)
  • Legumes, whole grains
  • Fruits and vegetables (soluble fiber)
  • Soy protein
  • Low-fat dairy (mildly lowers LDL-C)
  • Coffee (filtered — not unfiltered which raises LDL-C)

Dietary Supplements — AHA 2026 Position

Class 3 (No Benefit): Fish oil, red yeast rice, plant sterols are NOT recommended as routine ASCVD risk-reduction strategies. Evidence is limited and inconsistent.

2. Physical Activity

RecommendationSpecifics
Aerobic exercise≥150 min/week moderate-intensity OR ≥75 min/week vigorous
Resistance training≥2 sessions/week
Reduce sedentary timeBreak up prolonged sitting every 30 minutes
Effects on lipids↓ TG 20-30%; ↑ HDL-C 5-10%; modest ↓ LDL-C

3. Weight Management

Weight LossLipid Effect
5-10% body weight loss↓ LDL-C 5-8 mg/dL, ↓ TG 15-20%, ↑ HDL-C
>10% weight lossMore significant TG reduction
Bariatric surgery↓ LDL-C 30%, ↓ TG 50%, ↑ HDL-C 15%
GLP-1 agonists (semaglutide)Weight loss + modest ↓ LDL-C, ↓ TG; ↓ ASCVD events (SUSTAIN-6, LEADER)

4. Smoking Cessation

  • Smoking cessation → ↑ HDL-C 4-8 mg/dL within months
  • Reduces oxidative stress → less ox-LDL formation
  • Endothelial function improves within weeks
  • Significant reduction in ASCVD risk

5. Alcohol Reduction

  • Limiting alcohol reduces hypertriglyceridemia significantly
  • For TG ≥500 mg/dL → abstinence from alcohol is mandatory
  • No protective "safe" alcohol level for ASCVD in AHA 2026

B. PHARMACOLOGICAL MANAGEMENT

Drug Class 1 — Statins (HMG-CoA Reductase Inhibitors)

First-line in all risk categories requiring pharmacotherapy

Mechanism:

  • Inhibit HMG-CoA reductase → ↓ intracellular cholesterol synthesis
  • ↑ LDLR expression on hepatocytes → ↑ LDL clearance from plasma
  • Pleiotropic effects: anti-inflammatory, plaque-stabilizing, endothelial-protective

Statin Intensity Classification (AHA 2026):

IntensityAgentsLDL-C Reduction
HighRosuvastatin 20–40 mg; Atorvastatin 40–80 mg≥50%
ModerateRosuvastatin 5–10 mg; Atorvastatin 10–20 mg; Simvastatin 20–40 mg; Pravastatin 40–80 mg30–49%
LowSimvastatin 10 mg; Pravastatin 10–20 mg; Fluvastatin 20–40 mg<30%

AHA 2026 Statin Recommendations:

  • Very high risk → High-intensity statin (mandatory first step)
  • Secondary prevention → high-intensity statin regardless of baseline LDL-C
  • Primary prevention PREVENT ≥7.5% + risk enhancers → moderate-to-high intensity statin
  • Diabetes (any) → statin therapy recommended

Side Effects:

EffectFrequencyManagement
Myalgia (muscle pain without CK rise)5–10%Dose reduction, switch statin
Myopathy (CK >10× ULN)0.1%Stop statin immediately
Rhabdomyolysis<0.01%Stop statin, IV hydration
New-onset diabetes~10–12% extra riskBenefits still outweigh risk
LFT elevation (>3× ULN)<1%Usually transient; recheck
HLA-B*5801 (Asian patients)Allopurinol but also relevant context
Statin benefit ALWAYS outweighs risk in high-risk patients. Do not discontinue without specialist review.

Drug Class 2 — Ezetimibe

Add-on to statin when LDL-C goal not met
  • Mechanism: Inhibits NPC1L1 transporter in intestinal brush border → ↓ cholesterol absorption
  • LDL-C reduction: 18–24% (additional, on top of statin)
  • Dose: 10 mg/day
  • Key trial: IMPROVE-IT (simvastatin + ezetimibe vs simvastatin alone → ↓ MACE 6.4%)
  • AHA 2026: Add ezetimibe if LDL-C goal not achieved on maximally tolerated statin
  • Side effects: Generally well tolerated; mild GI upset, rare myopathy

Drug Class 3 — PCSK9 Inhibitors (Monoclonal Antibodies)

For very high / high risk not at LDL-C goal on statin + ezetimibe
DrugDoseFrequency
Evolocumab (Repatha)140 mg SCEvery 2 weeks
Alirocumab (Praluent)75–150 mg SCEvery 2 weeks
  • Mechanism: Monoclonal antibody binds PCSK9 → prevents LDLR degradation → more LDLR → ↓ LDL-C 50–65%
  • Key trials: FOURIER (evolocumab, ↓ MACE 15%), ODYSSEY OUTCOMES (alirocumab, ↓ MACE 15%)
  • Also reduces Lp(a) by ~20–25%
  • AHA 2026: For very high risk not at LDL-C goal; no longer strictly sequential — choose based on LDL-C gap needed
  • Side effects: Injection site reactions; generally very well tolerated; safety data to LDL-C as low as 30 mg/dL with no safety concerns

Drug Class 4 — Bempedoic Acid

For statin-intolerant patients
  • Mechanism: Inhibits ATP-citrate lyase (ACL) — upstream of HMG-CoA reductase; activated only in liver (not muscle → less myopathy)
  • LDL-C reduction: ~18% (alone); ~28% with ezetimibe (combination tablet available)
  • Dose: 180 mg/day oral
  • Key trial: CLEAR Outcomes (2023) — bempedoic acid in statin-intolerant patients → ↓ MACE 13%
  • AHA 2026: Recommended for statin-intolerant patients requiring LDL-C lowering
  • Side effects: Gout (↑ uric acid — avoid in active gout), tendon rupture (rare), GI upset

Drug Class 5 — Inclisiran (siRNA PCSK9 Inhibitor)

Novel RNA interference therapy
  • Mechanism: Small interfering RNA (siRNA) → silences PCSK9 mRNA in hepatocytes → ↓ PCSK9 production → ↑ LDLR → ↓ LDL-C ~50%
  • Dose: 284 mg SC at 0, 3 months, then every 6 months
  • Advantage over mAbs: Less frequent dosing → better adherence
  • Key trials: ORION-10, ORION-11 → consistent ~50% LDL-C reduction
  • AHA 2026: Second-line if PCSK9 mAb not tolerated or accessible
  • Side effects: Injection site reactions; generally well tolerated

Drug Class 6 — Fibrates

For hypertriglyceridemia
  • Mechanism: PPAR-α agonists → ↑ LPL activity → ↓ VLDL → ↓ TG; ↑ HDL-C
  • TG reduction: 30–50%; HDL-C: ↑10–20%; LDL-C: variable
  • Agents: Fenofibrate, gemfibrozil, bezafibrate
  • Indication: TG ≥500 mg/dL (pancreatitis prevention); adjunct for combined dyslipidemia
  • Caution: Gemfibrozil + statin → ↑ myopathy risk (pharmacokinetic interaction) — prefer fenofibrate with statins
  • AHA 2026: Not recommended for primary ASCVD risk reduction alone; used for TG management

Drug Class 7 — Omega-3 Fatty Acids (EPA)

For hypertriglyceridemia — only EPA with proven ASCVD benefit
DrugActive ComponentEvidence
Icosapentaenoic acid (IPE) (Vascepa)Pure EPA 4 g/dayREDUCE-IT: ↓ MACE 25% in statin-treated patients with TG ≥150
Mixed EPA+DHA (Lovaza)EPA + DHAReduces TG but no CV benefit in STRENGTH trial
AHA 2026: Icosapentaenoic acid (EPA only) 4 g/day recommended for ASCVD risk reduction in patients on statin with TG 135–499 mg/dL. Mixed EPA+DHA formulations do NOT have the same benefit.

Drug Class 8 — Evinacumab (for Homozygous FH only)

  • Mechanism: Monoclonal antibody against ANGPTL3 → ↑ LPL + EL activity → ↓ LDL-C even in LDLR-null patients
  • LDL-C reduction: ~47% in HoFH (LDL-C independent of LDLR expression — works even when no functional receptors)
  • AHA 2026: Approved add-on for HoFH patients not at goal despite max therapy
  • Dose: 15 mg/kg IV every 4 weeks

Drug Class 9 — Pelacarsen (Lp(a) Targeting — Pipeline)

  • Mechanism: Antisense oligonucleotide → inhibits hepatic apo(a) synthesis → ↓ Lp(a) by ~80%
  • Status: Phase 3 LPA-HPIV trial (Lp(a) HORIZON trial) results anticipated — AHA 2026 acknowledges as emerging therapy
  • AHA 2026: Not yet a guideline-endorsed treatment target for Lp(a) — but notes Lp(a) will likely become a pharmacological target in near future

Treatment Algorithm Summary

ESTABLISH RISK CATEGORY (using PREVENT-ASCVD equations + CAC if needed)
                    ↓
ALL PATIENTS → LIFESTYLE MODIFICATIONS (diet, exercise, weight, smoking)
                    ↓
If pharmacotherapy indicated:
                    ↓
STEP 1 → High-intensity statin (rosuvastatin 20-40 mg OR atorvastatin 40-80 mg)
         Target: ≥50% LDL-C reduction
                    ↓
         Recheck lipid panel in 4-12 weeks
                    ↓
STEP 2 → If LDL-C goal not met: ADD EZETIMIBE 10 mg/day
                    ↓
         Recheck lipid panel in 4-12 weeks
                    ↓
STEP 3 → If LDL-C goal still not met (very/high risk):
         ADD PCSK9 INHIBITOR (evolocumab or alirocumab)
         [AHA 2026: No longer mandatory to wait — can add earlier based on LDL-C gap]
                    ↓
IF STATIN INTOLERANT → Replace statin with:
         Bempedoic acid ± ezetimibe
         OR inclisiran
         OR PCSK9 inhibitor alone
                    ↓
SPECIAL:
  - HoFH → Add evinacumab + consider LDL apheresis
  - TG ≥500 → Fibrate first; EPA (4g/day) if TG 135-499 on statin
  - Elevated Lp(a) → PCSK9 inhibitor (↓ 20-25%); pelacarsen (investigational)

Monitoring After Therapy

TimepointAction
BaselineLipid panel, LFTs, CK, fasting glucose, HbA1c, eGFR, Lp(a)
4-12 weeks after starting/changing therapyRepeat fasting lipid panel; assess % reduction; check adherence
Every 6-12 months once at goalOngoing monitoring; assess tolerability; reinforce lifestyle
AnnuallyReassess CV risk; update PREVENT score; intensify if goals not met
Both AHA 2026 guidelines identify therapeutic inertia (failure to intensify treatment despite uncontrolled lipids) as a major barrier to achieving LDL-C goals.

Special Population Management Summary

PopulationKey Management Points
Diabetes (T2DM)High-intensity statin regardless of LDL-C; LDL-C goal <70 (high) or <55 (very high risk)
Heterozygous FHHigh-intensity statin + ezetimibe; add PCSK9i if not at goal; cascade screen family
Homozygous FHMax statin + ezetimibe + PCSK9i + evinacumab ± LDL apheresis
CKD (non-dialysis)Statin ± ezetimibe; avoid high-dose statins in severe CKD; dose-adjust
Elderly ≥75 yearsSecondary prevention: continue statin; primary prevention: individualize
Children (FH)Statin from age 8-10 in HeFH if LDL-C >190 mg/dL despite lifestyle
HypertriglyceridemiaLifestyle first; EPA 4 g/day if TG 135-499 on statin; fibrate if TG ≥500
Post-ACSHigh-intensity statin before discharge; add ezetimibe early; PCSK9i at discharge if VHR

SUMMARY TABLE — AHA 2026 Key Numbers

ParameterValue
Very high risk LDL-C goal< 55 mg/dL
High risk / secondary prevention LDL-C goal< 70 mg/dL
Primary prevention intermediate risk goal< 100 mg/dL
Minimum LDL-C reduction on therapy≥ 50%
Lp(a) screeningOnce in all adults (Class I)
CAC = 0Defer pharmacotherapy
Recheck lipids after new therapy4–12 weeks
High-intensity statinRosuvastatin 20–40 mg / Atorvastatin 40–80 mg
Dietary supplements for LDL-CClass 3 — NOT recommended
PCSK9 inhibitor strategyNo longer strictly sequential

References: Blumenthal RS, Morris PB et al. 2026 ACC/AHA/Multisociety Guideline on the Management of Dyslipidemia. Circulation. March 2026. JACC Guideline-at-a-Glance. Volume 87, Number 19. 2026.

This is the complete structured topic presentation based on AHA 2026. Let me know if you need any section expanded, simplified, or formatted as slides or a document.

Give me short and crisp for topic presentation not long with all info

DYSLIPIDEMIA

AHA / ACC 2026 Guidelines — Topic Presentation


1. INTRODUCTION

  • Dyslipidemia = abnormal levels of lipoproteins (↑LDL, ↑TG, ↓HDL, ↑Lp(a))
  • Leading modifiable risk factor for ASCVD
  • AHA 2026 replaces 2018 guideline — broader scope beyond LDL-C alone
  • Key shift: from treating a number → treating lifetime cardiovascular risk

2. EPIDEMIOLOGY

  • CVD = #1 cause of death globally (~18 million deaths/year)
  • ~94 million U.S. adults have TC ≥200 mg/dL
  • ~28% have LDL-C ≥130 mg/dL
  • ~20% have elevated Lp(a) ≥50 mg/dL
  • Only 55% of very-high-risk patients reach LDL-C goals
  • FH affects 1 in 250 — >90% undiagnosed

3. PATHOPHYSIOLOGY

↑ LDL-C (ApoB)
      ↓
Enters subendothelial space
      ↓
Oxidized → LDL (ox-LDL)
      ↓
Macrophage engulfs → Foam cells → Fatty streak
      ↓
Fibrous cap + Necrotic core → Plaque
      ↓
Rupture → Thrombus → ACS / Stroke / PAD
Key particles:
  • LDL-C — primary atherogenic driver
  • Remnant particles — now highlighted in AHA 2026
  • Lp(a) — pro-atherogenic + pro-thrombotic; genetic
  • ApoB — one per atherogenic particle; best reflects particle burden

4. CLINICAL FEATURES

Usually asymptomatic until ASCVD event occurs
SignCondition
Tendon xanthomasFamilial hypercholesterolemia
XanthelasmaHypercholesterolemia
Corneal arcus <45 yrsSignificant hypercholesterolemia
Eruptive xanthomasTG >1000 mg/dL
Acute pancreatitisTG ≥500 mg/dL
Angina / MIEstablished ASCVD
ClaudicationPeripheral arterial disease

5. LAB INVESTIGATIONS

Standard lipid panel (fasting or non-fasting):
TestTarget (General)
LDL-C< 100 mg/dL
Non-HDL-C< 130 mg/dL
HDL-C≥40 (M) / ≥50 (F) mg/dL
Triglycerides< 150 mg/dL
AHA 2026 additions:
  • Lp(a) — once in all adults (Class I)
  • ApoB — selective use; goal <65–90 mg/dL by risk
  • CAC score — expands primary prevention decisions
  • PREVENT-ASCVD — 10 + 30-year risk (replaces PCE)
  • Supporting: HbA1c, eGFR, uACR, hsCRP, LFTs, CK

6. DIAGNOSTIC CRITERIA & CLASSIFICATION

By lipid level:
DisorderValue
HypercholesterolemiaLDL-C ≥130 mg/dL
Severe hypercholesterolemiaLDL-C ≥190 mg/dL (consider FH)
HypertriglyceridemiaTG ≥150 mg/dL
Very high TGTG ≥500 mg/dL
Elevated Lp(a)≥125 nmol/L (high risk)
Primary vs Secondary:
  • Primary — genetic: FH, familial combined hyperlipidemia, elevated Lp(a)
  • Secondary — DM, hypothyroidism, CKD, obesity, alcohol, drugs (thiazides, steroids, cyclosporin)
Fredrickson Types (simplified):
TypeElevatedKey Feature
IIaLDLFH pattern
IIbLDL + VLDLCombined
IVVLDLHigh TG
VVLDL + ChylomicronsPancreatitis risk

7. RISK FACTORS

Non-modifiable:
  • Age (M ≥45 / F ≥55), male sex, family history, genetics, ethnicity
Modifiable:
  • Unhealthy diet, physical inactivity, obesity, smoking, alcohol excess
  • DM, hypertension, metabolic syndrome, CKD
Drug-induced:
  • Thiazides, beta-blockers, corticosteroids, cyclosporin, HIV ART
AHA 2026 Risk Enhancers (reclassify borderline → treat):
  • Lp(a) ≥125 nmol/L, hsCRP ≥2 mg/L, ABI <0.9, chronic inflammation (RA, SLE), preeclampsia history, South Asian ancestry, social deprivation

8. TREATMENT & MANAGEMENT

LDL-C Goals (AHA 2026)

Risk CategoryLDL-C Goal
Very High Risk (secondary prevention)< 55 mg/dL
Secondary prevention (not VHR)< 70 mg/dL
Primary prevention — high risk< 70 mg/dL
Primary prevention — intermediate< 100 mg/dL
CAC ≥1000< 55 mg/dL
All patients on therapy: also achieve ≥50% LDL-C reduction

A. NON-PHARMACOLOGICAL

InterventionEffect on Lipids
Mediterranean / DASH diet↓ LDL-C 5-10%
Reduce saturated fat <7% kcal↓ LDL-C 5-8%
Soluble fiber 10-25 g/day↓ LDL-C ~5%
Plant sterols 2 g/day↓ LDL-C 8-10%
Aerobic exercise ≥150 min/wk↓ TG 20-30%, ↑ HDL
Weight loss 5-10%↓ LDL-C, ↓ TG, ↑ HDL
Smoking cessation↑ HDL-C 4-8 mg/dL
Alcohol reduction↓ TG significantly
AHA 2026 Class 3: Fish oil, red yeast rice, plant sterol supplements — NOT recommended as ASCVD prevention

B. PHARMACOLOGICAL

DrugMechanismLDL-C ↓When to Use
Statin (atorva 40-80 / rosuva 20-40)↓ HMG-CoA → ↑ LDLR30–55%First-line — all risk categories
Ezetimibe 10 mg↓ intestinal absorption (NPC1L1)+18–24%Add if goal not met on statin
PCSK9 inhibitor (evolocumab / alirocumab)↑ LDLR expression+50–65%Very high risk not at goal
Bempedoic acid 180 mg↓ ATP-citrate lyase (liver only)+18%Statin-intolerant (CLEAR Outcomes)
Inclisiran (siRNA)Silences PCSK9 mRNA+50%Alt to PCSK9 mAb; dosing q6 months
FibratesPPAR-α → ↑ LPLTG ↓30-50%TG ≥500 mg/dL (pancreatitis)
EPA (Vascepa 4 g)↓ TG, anti-inflammatoryTG ↓25% + ↓MACETG 135-499 on statin (REDUCE-IT)
EvinacumabAnti-ANGPTL3↓47%Homozygous FH only

Treatment Algorithm

ALL PATIENTS
    → Lifestyle modification first

PHARMACOTHERAPY:

STEP 1 → High-intensity statin
STEP 2 → + Ezetimibe (if goal not met)
STEP 3 → + PCSK9 inhibitor (if still not at goal)

STATIN INTOLERANT → Bempedoic acid ± ezetimibe / Inclisiran

SPECIAL:
• TG ≥500 → Fibrate first
• TG 135-499 on statin → EPA 4 g/day
• HoFH → Evinacumab + LDL apheresis
Monitor: Recheck lipids 4–12 weeks after change → then every 6–12 months

KEY NUMBERS TO REMEMBER

Very high risk goalLDL-C <55 mg/dL
High risk goalLDL-C <70 mg/dL
Reduction target≥50% from baseline
Lp(a) screeningOnce — all adults (Class I)
CAC = 0Defer statin
Recheck after therapy4–12 weeks
High-intensity statinAtorva 40–80 / Rosuva 20–40
Dietary supplementsNOT recommended (Class 3)

Source: AHA/ACC 2026 Guideline on the Management of Dyslipidemia — Circulation, March 2026

Give me diagnostic criteria for dyslipidemia from ada 2026 guidelines

Searching the Web

ADA 2026 Standards of Care diabetes dyslipidemia diagnostic criteria lipid targets

Searching the Web

ADA 2026 guidelines dyslipidemia LDL cholesterol treatment recommendations diabetes

Reading Web Page

https://sentucuman.com.ar/docs/standards-of-care-2026.pdf

Important clarification first, then the full answer:
Important Note: The ADA (American Diabetes Association) does not publish a standalone dyslipidemia guideline. The ADA 2026 Standards of Care in Diabetes covers dyslipidemia specifically in the context of diabetes management. The dedicated dyslipidemia guideline is the ACC/AHA 2026 (which the ADA co-authored and endorsed as a writing partner society). What follows covers both — the ADA 2026 dyslipidemia recommendations for diabetic patients + the shared diagnostic criteria.

DYSLIPIDEMIA — Diagnostic Criteria

ADA 2026 Standards of Care + ACC/AHA 2026 (Co-authored by ADA)


1. WHAT IS DYSLIPIDEMIA? (ADA Definition)

Dyslipidemia in the context of diabetes = atherogenic dyslipidemia triad:
ComponentFinding
↑ TriglyceridesTG ≥150 mg/dL
↓ HDL-C<40 mg/dL (men) / <50 mg/dL (women)
Small dense LDLLDL-C may appear "normal" but particle number is high
ADA 2026 notes: Non-HDL-C is more predictive of persistent dyslipidemia and atherosclerosis in diabetic patients than LDL-C, total cholesterol, or HDL-C alone — because it captures the full atherogenic burden (LDL + VLDL + IDL + Lp(a)).

2. DIAGNOSTIC / CLASSIFICATION CRITERIA

Standard Lipid Panel Diagnostic Thresholds

Lipid ParameterNormalBorderlineAbnormal / High
LDL-C<100 mg/dL100–129 mg/dL≥130 mg/dL
LDL-C (high risk DM)Goal <70 mg/dL70–99 mg/dL≥100 mg/dL
Non-HDL-C<130 mg/dL130–159 mg/dL≥160 mg/dL
HDL-C (men)≥40 mg/dL35–39 mg/dL<35 mg/dL
HDL-C (women)≥50 mg/dL45–49 mg/dL<45 mg/dL
Triglycerides<150 mg/dL150–199 mg/dL≥200 mg/dL
TG — very high≥500 mg/dL (pancreatitis risk)
Total Cholesterol<200 mg/dL200–239 mg/dL≥240 mg/dL

3. ADA 2026 — RISK-BASED CLASSIFICATION IN DIABETES

ADA 2026 classifies diabetic patients into 3 ASCVD risk tiers which determine lipid targets:

Tier 1 — Extreme / Very High Risk

Criteria (any one):
  • Established ASCVD (prior MI, stroke, ACS, coronary revascularization, PAD)
  • DM + multiple major ASCVD risk factors (age ≥55M/≥65F, HTN, smoking, CKD, albuminuria, LDL-C ≥100)
  • DM + target organ damage (retinopathy, neuropathy, eGFR <60, uACR >30)
LDL-C goal: <55 mg/dL | Non-HDL-C: <85 mg/dL

Tier 2 — High Risk

Criteria:
  • DM, age 40–75 years, without established ASCVD
  • Duration of diabetes ≥10 years (T2DM) or ≥20 years (T1DM)
LDL-C goal: <70 mg/dL | Non-HDL-C: <100 mg/dL

Tier 3 — Moderate Risk

Criteria:
  • DM, age 40–75 years, short duration, no major risk factors
LDL-C goal: <100 mg/dL | Non-HDL-C: <130 mg/dL
ADA 2026 states: LDL-lowering pharmacotherapy is recommended for ALL adults aged 40–75 with diabetes, regardless of baseline LDL-C level.

4. SCREENING CRITERIA (ADA 2026)

Adults with Diabetes

SituationWhen to Screen
Newly diagnosed DMAt diagnosis (after glycemia improves)
Not on statin / lipid therapyAnnually
On statin or lipid therapyAt initiation → repeat at 4–12 weeks → then annually

Children & Adolescents with Diabetes

TypeScreening Recommendation
Type 1 DMSoon after diagnosis (age ≥2 years); if LDL-C ≤100 → recheck at 9–11 years, then every 3 years
Type 2 DMSoon after diagnosis, then annually
Non-HDL-C is the preferred screening marker in children — more predictive than LDL-C for persistent dyslipidemia and atherosclerosis.

5. DIAGNOSTIC LABS REQUIRED (ADA 2026)

TestPurpose
Total cholesterolOverall screening
LDL-CPrimary treatment target
HDL-CProtective factor; low HDL = independent risk
TriglyceridesAssess hypertriglyceridemia, metabolic syndrome
Non-HDL-C (calculated)= TC − HDL-C; preferred in DM; captures all atherogenic particles
ApoB (selective)When TG ≥150, low achieved LDL-C, or discordance with non-HDL-C
HbA1cGlycemic control — input into PREVENT-ASCVD risk score
eGFR + uACRCKD staging — affects risk category and drug dosing
Fasting glucoseMetabolic risk assessment
LFTs (FIB-4)Baseline before statin; metabolic-associated steatotic liver disease

6. PREDIABETES — ADA 2026 CRITERIA LINK TO DYSLIPIDEMIA

ADA 2026 explicitly states: Prediabetes is associated with:
  • ↑ Triglycerides
  • ↓ HDL-C
  • Hypertension
  • Abdominal / visceral obesity
Presence of prediabetes with any of these lipid findings should prompt comprehensive CV risk factor screening immediately — not waiting for T2DM diagnosis.

7. LIPID TARGETS SUMMARY TABLE (ADA 2026)

Risk CategoryLDL-CNon-HDL-CApoB
Very High Risk (ASCVD + DM)< 55 mg/dL< 85 mg/dL< 65 mg/dL
High Risk (DM, age 40–75)< 70 mg/dL< 100 mg/dL< 80 mg/dL
Moderate Risk (DM, young, no RF)< 100 mg/dL< 130 mg/dL< 90 mg/dL
TG target< 150 mg/dL
HDL-C minimum≥40 (M) / ≥50 (F) mg/dL

8. WHEN TO DIAGNOSE DYSLIPIDEMIA IN A DIABETIC PATIENT

Dyslipidemia is diagnosed in a diabetic patient when any one of the following is present:
✅ CriterionCut-off
LDL-C above goal for risk tier>70 or >55 mg/dL depending on risk
Non-HDL-C ≥130 mg/dLAbove goal
TG ≥150 mg/dLHypertriglyceridemia
HDL-C <40 mg/dL (men) / <50 mg/dL (women)Low HDL
Total Cholesterol ≥200 mg/dLHypercholesterolemia
LDL-C ≥190 mg/dLConsider familial hypercholesterolemia

QUICK REFERENCE CARD

ADA 2026 — Dyslipidemia in Diabetes

SCREEN:  At diagnosis → annually (adults)
         At diagnosis → every 3 years if normal (children T1DM)

DIAGNOSE: Any lipid abnormality on standard panel
          Non-HDL-C preferred marker in DM

CLASSIFY BY RISK:
  Established ASCVD    → Very High Risk → LDL-C < 55
  DM age 40-75         → High Risk      → LDL-C < 70
  DM young, no RF      → Moderate Risk  → LDL-C < 100

TREAT: ALL adults 40-75 with DM → statin therapy
       regardless of baseline LDL-C level

MONITOR: Recheck 4-12 weeks after therapy → then annually

Sources: ADA. Standards of Care in Diabetes — 2026. Diabetes Care. Jan 2026; 49(Suppl.1). Blumenthal RS et al. 2026 ACC/AHA/Multisociety Guideline on the Management of Dyslipidemia (ADA co-authored). Circulation. March 2026.

Give me follow up for topic presentation

DYSLIPIDEMIA — Follow-Up

Post-Presentation Topic Slide

AHA 2026 / ADA 2026 Guidelines


1. FOLLOW-UP SCHEDULE

After Starting or Changing Therapy

TimepointAction
4–12 weeks after initiation / dose changeRepeat fasting lipid panel; assess % LDL-C reduction; check adherence
Every 6–12 months once at goalOngoing lipid monitoring; assess tolerability; reinforce lifestyle
AnnuallyReassess CV risk using PREVENT-ASCVD; update risk factors; intensify if goals not met
ADA 2026: Obtain lipid profile at initiation of statin → 4–12 weeks after → annually thereafter.

2. WHAT TO CHECK AT EVERY FOLLOW-UP VISIT

Lipid Parameters

TestGoal
LDL-CPer risk tier (<55 / <70 / <100 mg/dL)
Non-HDL-CPer risk tier (<85 / <100 / <130 mg/dL)
Triglycerides<150 mg/dL
HDL-C≥40 (M) / ≥50 (F) mg/dL
ApoB (if indicated)<65 / <80 / <90 mg/dL by risk

Safety Labs

TestWhenPurpose
LFTsIf symptomaticStatin hepatotoxicity (routine monitoring not needed)
CKIf myalgia presentRule out myopathy / rhabdomyolysis
HbA1cAnnuallyStatin-induced new-onset DM monitoring
eGFR / CreatinineAnnuallyCKD progression; drug dose adjustment
Fasting glucoseAnnuallyMetabolic status
uACRAnnuallyDM patients — renal risk

Clinical Assessment

  • Blood pressure — measure every visit
  • Weight / BMI — calculate at every visit
  • Waist circumference — assess for metabolic syndrome
  • Symptoms of ASCVD — angina, claudication, TIA
  • Adherence to medications — ask directly
  • Adherence to lifestyle changes — diet, exercise, smoking
  • Drug side effects — myalgia, fatigue, GI symptoms

3. TREATMENT RESPONSE ASSESSMENT

Is the Patient at Goal?

Step 1 — Check % LDL-C reduction from baseline
         Target: ≥50% reduction on therapy

Step 2 — Check absolute LDL-C goal
         Very high risk   → < 55 mg/dL
         High risk        → < 70 mg/dL
         Intermediate     → < 100 mg/dL

Step 3 — Check non-HDL-C goal
         Very high risk   → < 85 mg/dL
         High risk        → < 100 mg/dL

Step 4 — Check ApoB if discordance suspected

BOTH percentage reduction AND absolute goal must be met.

If Goal NOT Met — Escalate Therapy

Current TherapyNext Step
High-intensity statin aloneAdd ezetimibe 10 mg
Statin + ezetimibeAdd PCSK9 inhibitor (evolocumab / alirocumab)
Statin intolerantSwitch to bempedoic acid ± ezetimibe
Still not at goalAdd inclisiran OR refer to lipid specialist
AHA 2026: Therapeutic inertia = failure to intensify therapy despite uncontrolled lipids — this is a major documented barrier to achieving goals. Do not accept subtherapeutic responses.

4. MONITORING SPECIFIC DRUG SIDE EFFECTS

Statins

Side EffectMonitoringAction
Myalgia (muscle pain, no CK rise)Ask at every visitDose reduce / switch statin
Myopathy (CK >10× ULN)CK if symptomaticStop statin immediately
New-onset diabetesHbA1c / fasting glucose annuallyContinue statin (benefit > risk); optimize glycemia
LFT elevationOnly if symptomaticRecheck; stop if >3× ULN persistent

Ezetimibe

  • Generally well tolerated
  • Rare: GI upset, headache, arthralgias
  • No routine lab monitoring required

PCSK9 Inhibitors

  • Injection site reactions — ask at follow-up
  • Safe at very low LDL-C (no safety signal down to LDL-C ~20 mg/dL)
  • No routine lab monitoring required beyond lipid panel

Bempedoic Acid

  • Uric acid — check at each visit (raises uric acid → can precipitate gout)
  • Tendon rupture (rare) — ask about tendon pain
  • Avoid in patients with active gout

Fibrates

  • LFTs, CK, renal function — especially if combined with statin
  • Gemfibrozil + statin = avoid (↑ myopathy risk)
  • Fenofibrate + statin = safer combination

5. LIFESTYLE FOLLOW-UP (Ask Every Visit)

DomainQuestions to Ask
Diet"Have you reduced red meat, fried food, saturated fat?"
Exercise"Are you getting 150 min/week of moderate activity?"
Weight"Has your weight changed since last visit?"
Smoking"Are you still smoking? / How is cessation going?"
Alcohol"How much alcohol per week?"
Salt / Sugar"Soft drinks, processed food intake?"

6. WHEN TO REFER TO LIPID SPECIALIST

AHA 2026 indications for referral:
  • LDL-C ≥190 mg/dL (suspected Familial Hypercholesterolemia)
  • Homozygous FH (HoFH) — any patient
  • Not at LDL-C goal despite maximum tolerated statin + ezetimibe + PCSK9i
  • Statin intolerance — multiple statins failed
  • Severe hypertriglyceridemia (TG ≥1000 mg/dL)
  • Complex drug interactions
  • Pregnancy with severe dyslipidemia
  • Pediatric patients with LDL-C ≥190 mg/dL or known FH

7. SPECIAL POPULATIONS — FOLLOW-UP NOTES

PopulationKey Follow-Up Point
Diabetes (T2DM)Monitor HbA1c + lipids together; SGLT2i / GLP-1 may improve both
CKDAdjust drug doses at each visit; monitor eGFR closely
Elderly ≥75 yrsAssess falls risk, polypharmacy, muscle symptoms at every visit
Post-ACSFirst lipid check 4–6 weeks after discharge; target LDL-C <55 aggressively
FH patientsCheck cascade screening completed in family members
HypertriglyceridemiaRecheck TG 4–6 weeks after fibrate / EPA initiation

8. PATIENT EDUCATION AT FOLLOW-UP

Reinforce at every visit:
  • "Lower LDL-C for longer = less lifetime risk"
  • ✅ Statins are safe long-term — do not stop without doctor advice
  • ✅ Lifestyle changes work alongside medication — not instead of it
  • ✅ Missing doses reduces protection significantly
  • Lp(a) cannot be lowered by diet — it needs medication if very high
  • ❌ Supplements (fish oil, red yeast rice) are not recommended by AHA 2026

FOLLOW-UP SUMMARY CARD

VISIT CHECKLIST — DYSLIPIDEMIA FOLLOW-UP

□ Lipid panel — LDL-C, non-HDL-C, TG, HDL-C
□ % LDL-C reduction from baseline — did we hit ≥50%?
□ Absolute goal met? (<55 / <70 / <100 depending on risk)
□ Ask about myalgia / muscle symptoms
□ Ask about medication adherence
□ HbA1c + glucose (statin DM risk + DM patients)
□ BP, weight, BMI
□ Lifestyle review — diet, exercise, smoking, alcohol
□ eGFR / CK — if indicated
□ Escalate therapy if goal NOT met
□ Refer to lipid specialist if needed
□ Educate patient — reinforce lower is better, longer is better

Sources: AHA/ACC 2026 Guideline on Dyslipidemia · ADA 2026 Standards of Care in Diabetes

Give me only followup and make it short

DYSLIPIDEMIA — Follow-Up

AHA 2026 / ADA 2026


FOLLOW-UP SCHEDULE

TimepointAction
At initiationBaseline lipid panel, LFTs, CK, HbA1c, eGFR
4–12 weeks after starting/changing therapyRepeat lipid panel — assess % reduction + absolute goal
Every 6–12 months once at goalLipid panel + tolerability + lifestyle review
AnnuallyReassess CV risk; intensify if goals not met

GOALS TO CHECK AT EACH VISIT

ParameterTarget
LDL-C<55 / <70 / <100 mg/dL (by risk)
Non-HDL-C<85 / <100 / <130 mg/dL (by risk)
% LDL-C reduction≥50% from baseline
Triglycerides<150 mg/dL
HDL-C≥40 (M) / ≥50 (F) mg/dL

WHAT TO ASSESS

  • ✅ Medication adherence
  • Myalgia / muscle symptoms (CK only if symptomatic)
  • ✅ Weight, BP, waist circumference
  • ✅ Lifestyle — diet, exercise, smoking, alcohol
  • ✅ HbA1c + fasting glucose annually (statin → new DM risk)
  • ✅ eGFR — drug dose adjustment if CKD

IF GOAL NOT MET — ESCALATE

Statin alone        → Add Ezetimibe
Statin + Ezetimibe  → Add PCSK9 inhibitor
Statin intolerant   → Bempedoic acid ± Ezetimibe
Still not at goal   → Refer to Lipid Specialist

REFER TO LIPID SPECIALIST IF

  • LDL-C ≥190 mg/dL (suspect FH)
  • Not at goal despite statin + ezetimibe + PCSK9i
  • Statin intolerance (multiple statins failed)
  • TG ≥1000 mg/dL
  • Homozygous FH

KEY MESSAGE TO PATIENT

"Lower LDL-C + longer duration = less lifetime CV risk" Do not stop statins without medical advice. Lifestyle changes work with medication, not instead of it.

AHA 2026 · ADA 2026 Standards of Care

Thses follow up are from aha 2026 guidelines right

Yes — here is exactly what comes from AHA 2026 specifically:

✅ Confirmed from AHA 2026 Guidelines

Follow-Up PointAHA 2026 Source
Repeat lipid panel 4–12 weeks after starting or changing therapyClass I, AHA 2026
Repeat every 6–12 months once stable at goalClass I, AHA 2026
Target ≥50% LDL-C reduction from baselineAHA 2026 — restored alongside absolute goals
LDL-C goals <55 / <70 / <100 by risk categoryAHA 2026 — reinstated (was removed in 2018)
Escalation: statin → ezetimibe → PCSK9iAHA 2026 treatment algorithm
PCSK9i no longer strictly sequential — add based on LDL-C gapAHA 2026 — new change from 2018
Refer to lipid specialist if not at goal on triple therapyAHA 2026
CAC = 0 → defer pharmacotherapyAHA 2026 — expanded CAC role
Non-fasting lipid panel acceptable for most monitoringAHA 2026

⚠️ What Was Added from ADA 2026

PointSource
Lipid panel at initiation of statin then 4–12 weeks → annuallyADA 2026 Standards of Care (Section 10.17)
Annual HbA1c + glucose monitoring for statin-induced DMADA 2026
eGFR monitoring for drug dosing in DM patientsADA 2026
LDL-lowering recommended in ALL adults 40–75 with DM regardless of LDL-C levelADA 2026

Bottom Line

The core follow-up framework — 4–12 weeks recheck, 6–12 month monitoring, ≥50% reduction target, absolute LDL-C goals, escalation steps, and specialist referral criteria — are all directly from AHA 2026.
The ADA 2026 adds diabetes-specific monitoring on top of that (HbA1c, eGFR, annual glucose) since ADA co-authored the AHA 2026 dyslipidemia guideline.

Which lab investigation we need to do first and high preferred and explain simple and easy to understand the cac and Fredrickson

Lab Investigations in Dyslipidemia

Priority Order + CAC & Fredrickson Explained Simply


PART 1 — LAB INVESTIGATIONS IN ORDER OF PRIORITY


🥇 FIRST & MOST IMPORTANT — Do This Always

Fasting Lipid Panel

This is the single most important test. Do this first in every patient.
TestWhat It MeasuresNormal Value
Total Cholesterol (TC)All cholesterol combined< 200 mg/dL
LDL-C"Bad cholesterol" — primary treatment target< 100 mg/dL
HDL-C"Good cholesterol" — protective≥40 (M) / ≥50 (F) mg/dL
Triglycerides (TG)Fat in the blood< 150 mg/dL
Non-HDL-CAll bad particles combined = TC − HDL-C< 130 mg/dL
Fasting 9–12 hours before the test AHA 2026: Non-fasting is acceptable UNLESS TG is very high or you suspect hypertriglyceridemia

🥈 SECOND PRIORITY — Do Next

Lp(a) — Lipoprotein(a)

  • AHA 2026: Class I — measure at least ONCE in every adult
  • It is genetic — one test in a lifetime is enough
  • Normal: <75 nmol/L
  • High risk: ≥125 nmol/L

ApoB — Apolipoprotein B

  • Selective use — not everyone needs it
  • Order it when:
    • TG is very high (LDL-C becomes unreliable)
    • Patient has diabetes
    • LDL-C looks normal but risk seems high
  • Normal: <90 mg/dL (general); <65 mg/dL (very high risk)

🥉 THIRD PRIORITY — Supporting Tests

TestWhy You Need It
Fasting glucose / HbA1cCheck for diabetes (major risk factor)
eGFR / CreatinineCheck kidney function (affects drug dosing)
uACR (urine albumin)Kidney damage from DM or HTN
TSH (thyroid)Hypothyroidism causes ↑LDL-C
LFTs (liver function)Baseline before starting statin
CK (creatine kinase)Baseline before statin (check if myalgia develops)
hsCRPInflammation marker — helps reclassify borderline risk
Blood pressureMeasured at same visit — major CV risk factor

SIMPLE PRIORITY SUMMARY

STEP 1 — ALWAYS FIRST
  → Fasting Lipid Panel
     (TC + LDL-C + HDL-C + TG + Non-HDL-C)

STEP 2 — ALWAYS DO ONCE
  → Lp(a) — every adult, once in lifetime

STEP 3 — IF NEEDED
  → ApoB — if TG high, DM, or discordant results

STEP 4 — SUPPORTING
  → HbA1c, eGFR, uACR, TSH, LFTs, CK, hsCRP


PART 2 — CAC SCORE EXPLAINED SIMPLY


What is CAC?

CAC = Coronary Artery Calcium Score
Think of it like this:
🫀 Your coronary arteries (the pipes that supply blood to your heart) can slowly collect calcium deposits as part of plaque build-up. The more calcium = the more plaque = the higher your heart attack risk.
CAC is a special CT scan that counts how much calcium is sitting in your heart arteries. It takes about 10 minutes, no injection needed, low radiation.

CAC Score — What the Numbers Mean

CAC ScoreWhat It MeansWhat to Do
0✅ No calcium = arteries very clean = very low near-term riskDefer statin — lifestyle changes only; recheck in 5–7 years
1–99⚠️ Small amount of plaque formingStart thinking about treatment — LDL-C goal <100 mg/dL
100–999 or ≥75th percentile🔶 Significant plaque presentStart statin — LDL-C goal <70 mg/dL
≥ 1000🔴 Very heavy plaque burdenAggressive treatment — LDL-C goal <55 mg/dL

Simple Analogy for CAC

Imagine your heart arteries are water pipes. CAC is like an X-ray of the pipes looking for rust/mineral buildup inside.
  • CAC = 0 → Pipes are clean → No urgent action
  • CAC = 500 → Significant rust forming → Time to treat aggressively
  • CAC = 1000+ → Pipes badly clogged → Maximum treatment needed

When Does AHA 2026 Use CAC?

CAC is used specifically when the doctor is unsure whether to start a statin in primary prevention (no heart disease yet):
Patient has borderline risk on PREVENT score
          ↓
Unclear if statin is needed?
          ↓
Order CAC scan
          ↓
CAC = 0   → Hold statin, lifestyle only
CAC > 100 → Start statin
CAC ≥1000 → Treat as very high risk
Key point: CAC = 0 is very reassuring — it can safely delay starting medication and avoid unnecessary treatment.


PART 3 — FREDRICKSON CLASSIFICATION EXPLAINED SIMPLY


What is Fredrickson Classification?

It is a system that classifies dyslipidemia by which lipoprotein (fat particle) is elevated in the blood. Think of it as giving each type of dyslipidemia a type number (I–V).

The 5 Fredrickson Types — Made Simple


🔴 TYPE I — "Too Many Chylomicrons"

  • What's high: Chylomicrons (dietary fat particles)
  • Blood test: TG very very high (>1000 mg/dL); LDL normal
  • Cause: Missing enzyme called LPL (lipoprotein lipase) — genetic, very rare
  • Risk: Pancreatitis (not usually heart disease)
  • Sign: Creamy/milky blood when drawn; eruptive xanthomas
  • Memory tip: "Type I = I ate too much fat and can't clear it"

🔴 TYPE IIa — "Too Much LDL" ← MOST COMMON

  • What's high: LDL-C only
  • TG: Normal
  • Cause: Familial Hypercholesterolemia (FH) — genetic defect in LDL receptor
  • Risk: High heart disease risk — early heart attacks
  • Sign: Tendon xanthomas, corneal arcus, xanthelasma
  • Memory tip: "Type IIa = II bad = LDL only going up"

🔴 TYPE IIb — "LDL + TG Both High"

  • What's high: LDL-C + VLDL (both elevated)
  • Blood test: ↑ LDL-C + ↑ TG
  • Cause: Familial Combined Hyperlipidemia — most common genetic dyslipidemia overall
  • Risk: High heart disease risk
  • Memory tip: "Type IIb = II things are bad = LDL AND TG both up"

🟡 TYPE III — "Remnant Particles" (Rare)

  • What's high: IDL / Remnant particles
  • Blood test: TC and TG both equally elevated
  • Cause: ApoE2/E2 genotype — remnants cannot be cleared properly
  • Risk: Early heart disease AND PAD (legs)
  • Sign: Palmar xanthomas (yellow deposits in palm creases) — pathognomonic
  • Memory tip: "Type III = 3 things wrong = TC + TG + palm xanthomas"

🟡 TYPE IV — "Too Much VLDL / High TG"

  • What's high: VLDL
  • Blood test: ↑ TG; LDL normal or low; HDL low
  • Cause: Familial hypertriglyceridemia; also caused by DM, obesity, alcohol
  • Risk: Moderate heart disease risk; pancreatitis if TG very high
  • Memory tip: "Type IV = 4 = FOUR triglycerides going up"

🔴 TYPE V — "Everything High" (Severe)

  • What's high: VLDL + Chylomicrons
  • Blood test: Very high TG (>1000 mg/dL)
  • Cause: Combined genetic + secondary causes (DM, alcohol, obesity)
  • Risk: High pancreatitis risk
  • Sign: Eruptive xanthomas, lipemia retinalis (cream-colored retinal vessels)
  • Memory tip: "Type V = Very bad TG = pancreatitis danger"

FREDRICKSON QUICK TABLE

TypeWhat's ElevatedTGLDLKey Feature
IChylomicrons↑↑↑↑NormalRare; pancreatitis; milky blood
IIaLDLNormal↑↑FH; tendon xanthomas; heart attacks
IIbLDL + VLDLCombined; very common genetic type
IIIIDL remnants↑↑↑↑ (equal)Palmar xanthomas; ApoE2/E2
IVVLDL↑↑NormalMost common; DM/obesity related
VVLDL + Chylomicrons↑↑↑↑LowPancreatitis danger

Simple Memory Trick for Fredrickson

I    → I can't clear dietary fat (chylomicrons)
IIa  → II bad = LDL alone (FH pattern)
IIb  → II bad things = LDL + TG (combined)
III  → Three problems = TC + TG + palm xanthomas
IV   → Four = TG going up (VLDL only)
V    → Very severe = TG extreme + pancreatitis

Which Types Are Most Clinically Important?

PriorityTypeWhy
⭐⭐⭐Type IIaMost common; FH; highest heart disease risk
⭐⭐⭐Type IIbVery common; combined hyperlipidemia
⭐⭐Type IVCommon; linked to DM + obesity
Type IIIRare but distinctive; palmar xanthomas
Type I / VRare; mainly pancreatitis risk

Based on AHA 2026 Guidelines · ADA 2026 Standards of Care · Fredrickson WHO Classification

Acute Pancreatitis (Hypertriglyceridemia Specific) Severe abdominal pain, nausea, vomiting Occurs when TG ≥500 mg/dL (risk rises sharply at ≥1000 mg/dL) Eruptive xanthomas may precede pancreatitis

What we need to do for treatment for acute pancreatitis

Acute Pancreatitis Due to Hypertriglyceridemia

Treatment & Management


FIRST — CONFIRM THE DIAGNOSIS

TestFinding in HTG-Pancreatitis
Serum TG≥500 mg/dL (often >1000–2000 mg/dL)
Serum amylase / lipase>3× upper limit of normal
Blood glucoseOften very high (DM trigger)
Serum calciumCheck — hypocalcemia in severe pancreatitis
WBCElevated — inflammatory response
LFTsRule out gallstone pancreatitis
Ultrasound abdomenRule out gallstones; assess pancreas
CT abdomen (if severe)Assess necrosis, complications
⚠️ Note: In severe HTG, amylase/lipase can be falsely normal due to interference from lipemia — TG level is the key diagnostic clue.

IMMEDIATE MANAGEMENT (Emergency)

Step 1 — Admit to Hospital (ICU if severe)

Assess severity using Ranson's Criteria or APACHE-II score
MildModerateSevere
No organ failureTransient organ failurePersistent organ failure >48h
Managed in wardClose monitoringICU admission

Step 2 — Aggressive IV Fluid Resuscitation ⭐ Most Important

  • Ringer's Lactate preferred over normal saline
  • Rate: 250–500 mL/hour in first 12–24 hours
  • Goal: urine output ≥0.5 mL/kg/hour
  • Reassess every 6 hours — avoid over-resuscitation
This is the #1 treatment — adequate fluids prevent pancreatic necrosis.

Step 3 — Nil by Mouth (NPO) / Bowel Rest

  • Stop all oral intake initially
  • Early enteral feeding (nasogastric/nasojejunal tube) preferred over TPN
  • Start enteral feed within 24–48 hours if tolerated
  • Avoid TPN unless enteral feeding is not possible
  • No fat in feeds initially — reduces TG stimulation
⚠️ Avoid IV lipid emulsions (TPN with lipids) — will worsen hypertriglyceridemia.

Step 4 — Pain Management

DrugDoseRoute
Morphine or HydromorphoneTitrate to painIV
Ketorolac15–30 mg q6hIV
Avoid NSAIDs if AKI present

Step 5 — Rapidly Lower Triglycerides

🔴 Target: Bring TG below 500 mg/dL as fast as possible


Option A — Insulin Infusion ⭐ First-line

  • Regular insulin IV infusion at 0.1–0.2 units/kg/hour
  • Activates lipoprotein lipase (LPL) → breaks down TG rapidly
  • Monitor blood glucose every 1–2 hours
  • Dextrose infusion alongside to prevent hypoglycemia
  • Works even in non-diabetic patients

Option B — Heparin

  • Unfractionated heparin IV bolus then infusion
  • Releases endothelial LPL → ↓ TG
  • Often used with insulin for additive effect
  • Note: Short-term effect only — LPL stores deplete with prolonged use

Option C — Plasmapheresis / Plasma Exchange

  • Used when TG >1000–2000 mg/dL and not responding to insulin
  • Physically removes TG-rich lipoproteins from blood
  • Rapidly reduces TG within hours
  • Available in tertiary centers
  • Consider early in severe or refractory cases

Option D — Fibrates (After Acute Phase)

  • Not used during the acute attack (oral route not possible)
  • Start fenofibrate once patient is stable and eating
  • Long-term TG management to prevent recurrence

Step 6 — Treat Underlying Triggers

TriggerAction
Uncontrolled DiabetesIV insulin + glucose monitoring; optimize glycemic control
Alcohol excessStrict abstinence; thiamine supplementation
Offending drug (thiazide, estrogen, isotretinoin)Stop immediately
HypothyroidismStart thyroxine replacement
ObesityDietary counseling after recovery

Step 7 — Antibiotics

  • Not routinely given
  • Only if infected pancreatic necrosis suspected:
    • Fever persisting >7 days
    • CT showing necrosis + gas
    • Positive blood cultures
  • Drug of choice: Imipenem or Meropenem (penetrates pancreatic tissue)

Step 8 — Monitoring in Hospital

ParameterFrequency
Vital signs (BP, HR, RR, Temp)Every 1–4 hours
Urine outputHourly
Blood glucoseEvery 1–2 hours (on insulin)
Serum TGEvery 12–24 hours until <500 mg/dL
Electrolytes (Na, K, Ca, Mg)Every 6–12 hours
Renal function (Cr, BUN)Daily
FBC, CRPDaily
Amylase / LipaseEvery 24–48 hours

AFTER STABILIZATION — LONG-TERM PREVENTION

ActionDetail
FenofibrateStart once eating — long-term TG reduction 30–50%
Omega-3 (EPA 4g/day)Adjunct TG lowering
Strict alcohol abstinenceMandatory — alcohol is major trigger
Very low fat diet<10–15% of calories from fat initially
No sugary drinks / fructoseFructose → ↑ hepatic TG production
Treat DM aggressivelySGLT2i + GLP-1 agonists also lower TG
Avoid offending drugsNo thiazides, estrogens, beta-blockers if alternatives exist
Monitor TG regularlyMonthly initially → every 3–6 months when stable
Target TG<500 mg/dL (prevent recurrence) ideally <150 mg/dL

SUMMARY ALGORITHM

HTG-Acute Pancreatitis (TG ≥500 mg/dL)
              ↓
ADMIT → IV Fluids (Ringer's Lactate) — MOST URGENT
              ↓
NPO → Early enteral feeding (NO IV lipids)
              ↓
Pain control — IV opioids
              ↓
Rapidly ↓ TG:
  TG 500–1000  → Insulin infusion ± Heparin
  TG >1000     → Insulin + Heparin + consider Plasmapheresis
              ↓
Treat trigger (DM, alcohol, drugs, thyroid)
              ↓
Monitor: TG q12-24h, glucose q1-2h, vitals hourly
              ↓
Once stable + eating → Start Fenofibrate
              ↓
Long-term: Low fat diet, no alcohol, fibrate, follow-up TG

Based on ACG Clinical Guidelines · AHA 2026 · ADA 2026 Standards of Care

What are the other units of measurement for standard lipid panel

Standard Lipid Panel — Units of Measurement


The Two Main Unit Systems

SystemUnitUsed In
Conventionalmg/dL (milligrams per deciliter)USA, some parts of Asia, Middle East
SI Unitsmmol/L (millimoles per litre)Europe, UK, Canada, Australia, most of the world

Conversion Formula

mg/dL → mmol/L: Divide by 38.67 (for cholesterol) Divide by 88.57 (for triglycerides)
mmol/L → mg/dL: Multiply by 38.67 (for cholesterol) Multiply by 88.57 (for triglycerides)

Full Conversion Table — All Lipid Parameters

Total Cholesterol

mg/dLmmol/LInterpretation
<200<5.17Desirable
200–2395.17–6.18Borderline high
≥240≥6.21High

LDL-C (Primary Target)

mg/dLmmol/LInterpretation
<55<1.4Very high risk goal (AHA 2026)
<70<1.8High risk goal
<100<2.6Optimal / intermediate risk goal
100–1292.6–3.34Near optimal
130–1593.36–4.11Borderline high
160–1894.14–4.89High
≥190≥4.91Very high — consider FH

HDL-C (Protective)

mg/dLmmol/LInterpretation
<40 (men)<1.03Low — risk factor
<50 (women)<1.29Low — risk factor
40–591.03–1.52Acceptable
≥60≥1.55High — protective

Triglycerides

mg/dLmmol/LInterpretation
<150<1.69Normal
150–1991.69–2.25Borderline high
200–4992.26–5.63High
≥500≥5.64Very high — pancreatitis risk
≥1000≥11.29Severe — high pancreatitis danger

Non-HDL-C

mg/dLmmol/LInterpretation
<130<3.36Optimal (general)
<100<2.59High risk goal
<85<2.20Very high risk goal (AHA 2026)

Key Clinical Values at a Glance (Both Units)

Parametermg/dLmmol/L
LDL-C very high risk goal<55<1.4
LDL-C high risk goal<70<1.8
LDL-C intermediate risk goal<100<2.6
LDL-C — suspect FH≥190≥4.9
TG — pancreatitis risk≥500≥5.6
HDL-C — low (men)<40<1.0
HDL-C — low (women)<50<1.3
TC — high≥240≥6.2

Lp(a) — Special Units

Lp(a) has two different units and this causes confusion:
UnitNormalHigh Risk
nmol/L (preferred — AHA 2026)<75 nmol/L≥125 nmol/L
mg/dL<30 mg/dL≥50 mg/dL
⚠️ nmol/L is preferred because Lp(a) particle size varies — mg/dL can be misleading depending on particle size. Always note which unit the lab uses.

ApoB Units

UnitNormalGoal (Very High Risk)
mg/dL<90 mg/dL<65 mg/dL
g/L<0.9 g/L<0.65 g/L

Quick Conversion Cheat Sheet

CHOLESTEROL (TC, LDL, HDL, Non-HDL):
  mg/dL ÷ 38.67 = mmol/L
  mmol/L × 38.67 = mg/dL

TRIGLYCERIDES:
  mg/dL ÷ 88.57 = mmol/L
  mmol/L × 88.57 = mg/dL

EXAMPLES:
  LDL 70 mg/dL  = 70 ÷ 38.67 = 1.81 mmol/L
  LDL 55 mg/dL  = 55 ÷ 38.67 = 1.42 mmol/L
  TG 500 mg/dL  = 500 ÷ 88.57 = 5.65 mmol/L
  TC 200 mg/dL  = 200 ÷ 38.67 = 5.17 mmol/L

Conversion factors: Cholesterol molecular weight = 386.7 g/mol · Triglyceride average molecular weight = 885.7 g/mol

TC/HDL-C ratio <5 Risk assessment tool. What is <5 and what is the unit for it

TC/HDL-C Ratio Explained


What Is It?

TC/HDL-C Ratio = Total Cholesterol ÷ HDL-C
It is a simple division — no special units. It gives a single number that reflects the balance between all cholesterol and the protective "good" cholesterol.

It Has NO Units

Because you are dividing mg/dL by mg/dL (or mmol/L by mmol/L), the units cancel out.
TC/HDL-C ratio = just a plain number — no mg/dL, no mmol/L

Simple Example

PatientTCHDL-CRatio
Person A200 mg/dL50 mg/dL200 ÷ 50 = 4.0 ✅ Good
Person B240 mg/dL40 mg/dL240 ÷ 40 = 6.0 ❌ High risk
Person C180 mg/dL60 mg/dL180 ÷ 60 = 3.0 ✅ Excellent

What the Numbers Mean

RatioInterpretation
< 3.5Excellent — very low risk
< 5.0Acceptable — average or below average risk
5.0Average risk (US population average)
5.0 – 7.0Above average risk — consider treatment
> 7.0High risk — action needed
> 9.0Very high risk — aggressive treatment

Why Is <5 the Cutoff?

  • 5.0 is the average ratio for the general adult population
  • Being below 5 means your good cholesterol (HDL) is doing its job well relative to your total cholesterol
  • Being above 5 means there is more "bad" cholesterol burden relative to the protective HDL
Think of it like a balance scale:
  • HDL = good weight on one side
  • TC = total burden on the other side
  • Ratio <5 = scale is balanced or tipped toward protection
  • Ratio >5 = too much burden, not enough protection

Quick Calculation

Formula:
  TC/HDL-C Ratio = Total Cholesterol ÷ HDL-C

Example:
  TC = 210 mg/dL
  HDL = 42 mg/dL
  Ratio = 210 ÷ 42 = 5.0 → borderline, monitor

  TC = 190 mg/dL
  HDL = 55 mg/dL
  Ratio = 190 ÷ 55 = 3.45 → excellent

Important Note

The TC/HDL-C ratio is a screening/risk assessment tool — it does NOT replace LDL-C as the primary treatment target in AHA 2026. It is useful when you want a quick overall picture of lipid balance, especially in populations or when only TC and HDL-C are available.

Why we measure creatinine kinase

Why We Measure Creatine Kinase (CK) in Dyslipidemia


What is CK?

Creatine Kinase (CK) is an enzyme found inside muscle cells. When muscle cells are damaged or broken down, CK leaks out into the bloodstream. So a high CK = muscle damage.

Why It Matters in Dyslipidemia — One Main Reason

Statins can cause muscle damage as a side effect. CK tells us how bad the muscle damage is.

The Statin-Muscle Problem

When a patient is on a statin (atorvastatin, rosuvastatin, etc.), they may develop:
ConditionSymptomsCK Level
MyalgiaMuscle aches, pain — no damageNormal CK
MyopathyMuscle weakness + painCK >10× normal
RhabdomyolysisSevere muscle breakdown — dangerousCK >40× normal

Why We Check CK — Step by Step

Before Starting Statin (Baseline)

  • We check CK before starting the statin
  • This gives us a reference point
  • If CK is already high before starting → investigate why first (thyroid, vigorous exercise, muscle disease)

During Treatment (Only if Symptomatic)

  • Do NOT check CK routinely in every follow-up — AHA 2026 says check only if patient complains of muscle symptoms
  • If patient says: "My muscles ache, I feel weak" → check CK immediately

What to Do Based on CK Result

CK LevelMeaningAction
Normal (<200 U/L)No muscle damageContinue statin; reassure patient
>3× normal with no symptomsMild elevationMonitor; recheck in 4–6 weeks
>10× normal (Myopathy)Significant muscle damageStop statin immediately
>40× normal (Rhabdomyolysis)Severe — kidney failure riskStop statin + admit to hospital + IV fluids urgently

Rhabdomyolysis — Why It Is Dangerous

When massive muscle breakdown occurs: Muscle releases myoglobin → enters kidney tubules → blocks themAcute Kidney Injury (AKI)
Signs of rhabdomyolysis:
  • Severe muscle pain and weakness
  • Dark brown / cola-colored urine ← key sign
  • Decreased urine output
  • CK extremely high (thousands of U/L)
This is a medical emergency — IV fluids must be given urgently to flush the kidneys.

Other Reasons CK Can Be High (Not Statin-Related)

Always consider these before blaming the statin:
CauseWhy CK Goes Up
Heavy exerciseMuscle fibers tear during exercise
HypothyroidismSlowed metabolism → muscle damage
Trauma / fallsDirect muscle injury
IM injectionNeedle damages muscle
Heart attack (MI)CK-MB subtype released from cardiac muscle
Alcohol excessToxic to muscle cells
Inflammatory myopathyAutoimmune muscle disease

Simple Summary

WHY WE CHECK CK IN DYSLIPIDEMIA:

Before statin  → Get baseline level
               → If already high, investigate first

During statin  → Only check IF patient has muscle symptoms
               (NOT routine)

CK normal      → Muscle is fine → continue statin
CK >10× ULN   → Stop statin immediately
CK >40× ULN   → Emergency — rhabdomyolysis → admit + IV fluids

Goal = Catch muscle damage EARLY
       before kidneys are affected

Normal CK Values (Reference)

GroupNormal Range
Adult males55 – 170 U/L
Adult females30 – 145 U/L
Upper limit of normal (ULN)~200 U/L (lab dependent)
Values may vary slightly between laboratories — always compare to your lab's reference range.

Do we do ck for all patients and what patient we need to do

Who Needs CK Testing?

Simple & Clear Guide — AHA 2026


SHORT ANSWER

No — we do NOT check CK in every patient. CK is only checked in specific situations.

WHEN TO CHECK CK — 3 Situations


Situation 1 — BEFORE Starting Statin

(Baseline — Selected Patients Only)

Do NOT do baseline CK in every patient. Only check baseline CK if the patient has risk factors for muscle problems:
Check Baseline CK If Patient HasWhy
Personal history of muscle diseaseAlready at risk
Family history of myopathyGenetic muscle vulnerability
Previous statin-related muscle symptomsHad problem before
Hypothyroidism (untreated)↑ risk of myopathy on statin
CKD (chronic kidney disease)Reduced drug clearance → higher statin levels
Taking interacting drugs (e.g. fibrates, cyclosporin, amiodarone)Drug interactions → ↑ statin concentration
Alcohol excessToxic to muscles already
Elderly patients (>75 years)More vulnerable to statin side effects
High-intensity statin being startedHigher dose = higher risk
Healthy young/middle-aged patient with no risk factors starting a statin → NO baseline CK needed

Situation 2 — DURING Statin Therapy

(Only If Patient Has Muscle Symptoms)

Do NOT routinely check CK at every follow-up visit. Only check if patient complains of:
  • Muscle pain, aching, soreness
  • Muscle weakness
  • Muscle cramps
  • Dark urine (emergency — check immediately)
  • Unexplained fatigue affecting daily activities
No symptoms = No CK check needed

Situation 3 — EMERGENCY

(Any time rhabdomyolysis is suspected)

Check CK immediately if:
  • Severe muscle pain + weakness
  • Cola/dark brown urine
  • Muscle swelling
  • Acute kidney injury signs (↓ urine output, creatinine rising)

SIMPLE DECISION CHART

STARTING A STATIN?
        ↓
Does patient have any risk factor for myopathy?
(muscle disease, hypothyroid, CKD, drug interactions,
 elderly, previous statin myalgia, family Hx)
        ↓
   YES → Check baseline CK first
   NO  → Start statin directly, no CK needed

─────────────────────────────────────

PATIENT ALREADY ON STATIN?
        ↓
Any muscle symptoms? (pain, weakness, dark urine)
        ↓
   YES → Check CK now
   NO  → Do NOT check CK routinely

─────────────────────────────────────

CK RESULT?
        ↓
Normal + symptoms    → Reassure, continue statin
>3× ULN, no symptoms → Monitor, recheck in 4–6 weeks
>10× ULN             → STOP statin
>40× ULN             → EMERGENCY — admit, IV fluids

SUMMARY TABLE — Who Gets CK?

Patient TypeBaseline CKRoutine CKCK if Symptoms
Healthy adult, no risk factors❌ No❌ No✅ Yes
Known muscle disease✅ Yes❌ No✅ Yes
Previous statin myalgia✅ Yes❌ No✅ Yes
Hypothyroidism✅ Yes❌ No✅ Yes
CKD patient✅ Yes❌ No✅ Yes
On fibrate + statin✅ Yes❌ No✅ Yes
Elderly >75 years✅ Yes❌ No✅ Yes
On high-intensity statin✅ Yes❌ No✅ Yes
Patient with muscle symptoms✅ Yes — always
Dark urine / suspected rhabdo✅ Emergency

Key Point to Remember

AHA 2026 is clear:
  • CK before statin → only in high-risk patients
  • CK during statin → only if muscle symptoms develop
  • Routine CK monitoring in asymptomatic patients = not recommended

How risk threshold work for lp a works

Coronary Artery Calcium (CAC) Scoring AHA 2026 gives expanded role to CAC in primary prevention: CAC Score Interpretation Clinical Action 0 Very low near-term risk Defer pharmacotherapy; lifestyle + reassess in 5-7 years 1–99 AU Mild subclinical disease LDL-C goal <100 mg/dL 100–999 AU or ≥75th %ile Moderate-high subclinical LDL-C goal <70 mg/dL ≥ 1000 AU Severe subclinical disease LDL-C goal <55 mg/dL. How it is done in patient and when we need to do this for the patient

Here are both answers:

PART 1 — How Lp(a) Risk Thresholds Work


What Is Lp(a) Doing in the Body?

Lp(a) is like a double-threat particle:
  • Acts like LDL → enters artery wall → causes plaque
  • Also blocks clot breakdown → promotes thrombosis
It is >90% genetic — your Lp(a) level is set at birth and barely changes with diet or lifestyle.

The Two Units — This Is Where Confusion Happens

UnitWhat It Measures
nmol/LNumber of Lp(a) particles — preferred by AHA 2026
mg/dLWeight of Lp(a) — older unit, still widely used
⚠️ These two units do not convert simply because Lp(a) particles vary in size. The same mg/dL value can mean different particle numbers in different people. That is why nmol/L is preferred.

How the Risk Thresholds Work

AHA 2026 — Two Thresholds

Normal          Risk Modifier         High Risk
─────────────────────────────────────────────────
    <75 nmol/L │ 75–124 nmol/L │ ≥125 nmol/L
    (<30 mg/dL)│(30–49 mg/dL)  │ (≥50 mg/dL)
               │               │
            Watch & monitor   ACTION needed

Threshold 1 — ≥75 nmol/L (≈30 mg/dL)

= Risk Modifier

Patient's ASCVD risk gets reclassified upward
  • If a patient was borderline risk on PREVENT-ASCVD → now pushed to intermediate or high risk
  • Clinician should intensify lifestyle changes
  • May start statin earlier than originally planned
  • Does not yet mean aggressive drug treatment specifically for Lp(a)

Threshold 2 — ≥125 nmol/L (≈50 mg/dL)

= High Risk — Action Needed

This level carries independent ASCVD risk regardless of LDL-C
What happens at this level:
ActionDetail
Reclassify to higher risk tierPush risk category up by one level
Intensify LDL-C loweringLower LDL-C more aggressively to compensate
PCSK9 inhibitorReduces Lp(a) by ~20–25% as side benefit
Cascade screeningTest first-degree family members
Aspirin discussionAnti-thrombotic benefit vs bleeding risk
LifestyleCannot lower Lp(a) but reduces overall CV risk

Why Does Lp(a) RECLASSIFY Risk Rather Than Have Its Own Treatment Target?

Because currently there is no approved drug that specifically targets Lp(a) with proven CV outcome benefit yet.
So the approach is:
High Lp(a) found
      ↓
Cannot directly treat Lp(a) yet
      ↓
Instead → treat everything else MORE aggressively
  → Lower LDL-C harder (PCSK9i helps Lp(a) too ~20%)
  → Control BP, DM, smoking more strictly
  → Reclassify risk upward → lower LDL-C targets
      ↓
FUTURE: Pelacarsen (antisense oligo) → ↓Lp(a) 80%
        Phase 3 trial results awaited
        Will likely create specific Lp(a) targets

Simple Analogy

Think of Lp(a) like a criminal record:
  • No record (low Lp(a)) → normal risk assessment
  • Minor record (≥75 nmol/L) → watch more carefully, be cautious
  • Serious record (≥125 nmol/L) → treat as high risk even if other factors look okay
You cannot erase the record (genetic) — but you can reduce the damage it causes by controlling everything else harder.

Summary

Lp(a) LevelAction
<75 nmol/L (<30 mg/dL)Normal — no additional action
75–124 nmol/L (30–49 mg/dL)Risk modifier → reclassify upward → intensify lifestyle
≥125 nmol/L (≥50 mg/dL)High risk → aggressive LDL-C lowering → PCSK9i → family screening
Test once in a lifetime — Lp(a) barely changes, so one measurement is enough.


PART 2 — CAC Scoring: How It Is Done & When to Order It


What Is a CAC Scan?

A CAC scan = Coronary Artery Calcium CT scan It is a special low-dose CT scan of the chest that counts calcium deposits inside the coronary arteries. No injection. No contrast dye. Takes about 10 minutes.

How It Is Done — Step by Step

Before the Scan

  • Patient lies on CT table
  • No injection, no contrast, no preparation needed
  • Patient asked to hold breath for 10 seconds during scan
  • ECG leads placed on chest to synchronize scan with heartbeat (cardiac gating)

During the Scan

  • Low-dose CT X-ray takes images of the heart
  • Scanner captures multiple thin slices of the coronary arteries
  • Total scan time: ~10 minutes
  • Radiation dose: very low (~1 mSv — similar to a mammogram)

After the Scan

  • Computer software analyzes the images
  • Calculates the Agatston Score (the standard CAC scoring system)
  • Score is based on:
    • Area of calcium deposit
    • Density (brightness) of calcium
  • Final result = a single CAC score number

What Is the Agatston Score?

Named after cardiologist Arthur Agatston. It multiplies the area × density of each calcium deposit in each coronary artery and adds them all up.
Coronary Artery CheckedName
Left mainLM
Left anterior descendingLAD
Left circumflexLCx
Right coronary arteryRCA
All four are scored and added together = Total CAC Score

What Does the Score Mean?

CAC ScoreWhat It MeansLDL-C GoalAction
0No calcium = clean arteriesDefer statinLifestyle only; recheck in 5–7 years
1–99Small early deposits<100 mg/dLConsider moderate statin
100–999 or ≥75th %ile for age/sexSignificant deposits<70 mg/dLStart high-intensity statin
≥1000Heavy calcium burden<55 mg/dLAggressive treatment — treat like established ASCVD

The 75th Percentile — What Does That Mean?

Your CAC score is also compared to other people of your same age, sex, and race. If your score is in the top 25% (≥75th percentile) even if the number seems low — it still means higher risk than expected for your age.
Example:
  • A 45-year-old man with CAC = 50
  • Average for his age group = 10
  • His CAC is ≥75th percentile → treat as higher risk → LDL-C goal <70 mg/dL

When To Order a CAC Scan — AHA 2026

ORDER CAC when:

Primary prevention patient (no heart disease yet)
+
PREVENT-ASCVD risk is BORDERLINE or UNCERTAIN
+
Doctor and patient are UNSURE whether to start a statin
        ↓
CAC helps make the decision

Specific Situations to Order CAC:

SituationWhy CAC Helps
Borderline PREVENT risk (5–7.5%)Clarifies if statin is needed
Patient reluctant to start statinCAC = 0 reassures; high CAC motivates
Intermediate risk (7.5–20%) — unsureReclassify up or down
Family history of early heart diseaseMay find early subclinical disease
Diabetes, no ASCVD yetHelps determine how aggressive to be
Incidental calcium found on other CTShould trigger lipid management review

When NOT to Order CAC

SituationReason
Already on statinDecision already made — CAC won't change management
Established ASCVD (prior MI, stent, stroke)Already very high risk — CAC not needed
Very high PREVENT risk (>20%)Already needs treatment — CAC not needed
LDL-C ≥190 mg/dL (suspected FH)Already needs treatment regardless
Young patients <40 yearsCAC = 0 expected; low yield
PregnancyRadiation exposure — contraindicated

AHA 2026 Age Recommendations for CAC

SexMinimum Age for CAC
Men≥ 40 years
Women≥ 45 years
Below these ages, CAC = 0 is expected and not informative.

Simple Summary

CAC SCAN — SIMPLE OVERVIEW

What:   Low-dose CT scan of heart arteries
        No injection. No contrast. 10 minutes.

Measures: Calcium in coronary arteries = Agatston Score

When:   Primary prevention + UNCERTAIN if statin needed

Result:
  CAC = 0      → Clean arteries → Hold statin → Lifestyle only
  CAC 1-99     → Early disease → Consider statin → LDL <100
  CAC 100-999  → Definite disease → Start statin → LDL <70
  CAC ≥1000    → Severe disease → Aggressive → LDL <55

Goal:   Make the RIGHT decision —
        Not over-treating low-risk patients
        Not under-treating high-risk patients

Based on AHA/ACC 2026 Guideline on the Management of Dyslipidemia

Indication for cac

Indications for CAC Scoring

AHA 2026 Guidelines


MAIN PRINCIPLE

CAC is ordered when the treatment decision is uncertain — it helps the doctor decide whether to start, defer, or intensify lipid-lowering therapy.

✅ INDICATIONS — When to Order CAC

1. Borderline PREVENT-ASCVD Risk

  • 10-year risk 5% to <7.5%
  • Not clearly low, not clearly high
  • CAC clarifies whether statin is needed or can be deferred

2. Intermediate PREVENT-ASCVD Risk — Patient Hesitant

  • 10-year risk 7.5% to <20%
  • Patient reluctant or hesitant to start statin
  • CAC = 0 → can safely defer and reassure
  • CAC high → motivates patient to accept treatment

3. Family History of Premature ASCVD

  • First-degree relative with heart disease:
    • Father / brother <55 years
    • Mother / sister <65 years
  • Patient themselves has borderline risk
  • CAC helps identify if early subclinical disease is already present

4. Diabetes — Primary Prevention

  • Type 2 DM, age 40–75, no established ASCVD
  • When deciding how aggressively to treat
  • High CAC → treat to <70 or <55 mg/dL target

5. Incidental Calcium Found on Another CT

  • Calcium spotted on chest CT, abdominal CT, or any non-cardiac imaging
  • Should always trigger formal CAC scoring and lipid management review

6. Risk Enhancers Present but Decision Still Unclear

  • Patient has risk enhancers (Lp(a) ≥125, hsCRP ≥2, ABI <0.9) but PREVENT risk is borderline
  • CAC provides the final deciding factor

7. Patient Wants to Understand Their Personal Risk

  • Patient prefers to see their own imaging evidence
  • Shared decision-making — CAC result helps patient understand and engage in treatment

❌ CONTRAINDICATIONS — When NOT to Order CAC

SituationReason
Already on statin therapyDecision already made — CAC won't change it
Established ASCVD (MI, stroke, stent, bypass, PAD)Already very high risk — no need
PREVENT risk ≥20% (high risk)Already needs treatment — CAC adds nothing
LDL-C ≥190 mg/dL (suspected FH)Statin needed regardless of CAC
Age <40 (men) / <45 (women)CAC = 0 expected — not informative
PregnancyRadiation — contraindicated
Already decided to start statinNo point scanning — treat and monitor

INDICATIONS SUMMARY TABLE

IndicationAHA 2026
Borderline risk 5–7.5% — uncertain statin decision✅ Indicated
Intermediate risk 7.5–20% — patient hesitant✅ Indicated
Family history premature ASCVD + borderline risk✅ Indicated
Diabetes, primary prevention, uncertain intensity✅ Indicated
Incidental calcium on non-cardiac CT✅ Indicated
Risk enhancers present, decision still unclear✅ Indicated
Patient-driven shared decision making✅ Indicated
Already on statin❌ Not needed
Established ASCVD❌ Not needed
PREVENT risk ≥20%❌ Not needed
LDL-C ≥190 mg/dL❌ Not needed
Age <40 men / <45 women❌ Not needed
Pregnancy❌ Contraindicated

One-Line Rule to Remember

"Order CAC only when the treatment decision is genuinely uncertain in a primary prevention patient." If you already know the patient needs a statin — just start it. If you already know they are low risk — just watch. CAC is for the grey zone in between.

AHA/ACC 2026 Guideline on the Management of Dyslipidemia

Fredrickson which patients we need to use and how is the indications

Fredrickson Classification — Who Needs It & When

Indications & Clinical Use


FIRST — What Is Fredrickson Used For?

Fredrickson is NOT a routine classification used in every dyslipidemia patient. It is used specifically to identify the TYPE of lipoprotein abnormality when:
  • The lipid pattern is unusual or severe
  • A genetic cause is suspected
  • Standard treatment is not working
  • A specific treatment decision depends on which particle is elevated

WHO NEEDS FREDRICKSON CLASSIFICATION?


✅ Patient 1 — Very High Triglycerides (TG ≥500 mg/dL)

Use Fredrickson to identify Type I, IV, or V
FindingFredrickson Type
TG >1000 + creamy plasma + no chylomicron clearanceType I
TG 500–1000 + VLDL elevated + common causes (DM, obesity)Type IV
TG >1000 + VLDL + chylomicrons both elevatedType V
Why it matters:
  • Type I → fibrates do NOT work well → dietary fat restriction is primary treatment
  • Type IV → fibrates + lifestyle + treat underlying cause (DM, obesity)
  • Type V → pancreatitis risk → emergency TG lowering needed

✅ Patient 2 — Suspected Familial Hypercholesterolemia

Use Fredrickson to identify Type IIa
Who to suspect FH:
  • LDL-C ≥190 mg/dL in adult
  • LDL-C ≥160 mg/dL in child
  • Tendon xanthomas
  • Corneal arcus <45 years
  • Family history of early heart attacks
Finding:
  • Pure LDL elevation + normal TG = Type IIa
  • Confirms genetic LDL receptor defect pattern
  • Guides need for PCSK9 inhibitor + family cascade screening

✅ Patient 3 — Combined High LDL + High TG

Use Fredrickson to identify Type IIb
Who:
  • Patient has both ↑ LDL-C AND ↑ TG together
  • Family history of mixed hyperlipidemia
  • Multiple family members with different lipid abnormalities
Finding: Type IIb = Familial Combined Hyperlipidemia (FCH)
Why it matters:
  • Most common genetic dyslipidemia
  • Needs both LDL-C AND TG treatment
  • Statin + fibrate or statin + omega-3 combination

✅ Patient 4 — Palmar Xanthomas or Unusual Xanthomas

Use Fredrickson to identify Type III
Who:
  • Yellow deposits in the palm creases (palmar xanthomas) — pathognomonic
  • Tuberous xanthomas over elbows/knees
  • Both TC and TG elevated equally
  • Early PAD + premature CAD together
Finding: Type III = Dysbetalipoproteinemia (ApoE2/E2 genotype)
Why it matters:
  • Very specific treatment → fibrates are first-line (not statins alone)
  • ApoE genotyping confirms diagnosis
  • Responds dramatically to fibrate therapy

✅ Patient 5 — Young Patient with Early Heart Attack

Use Fredrickson to identify genetic type
Who:
  • MI or stroke <55 years (men) / <65 years (women)
  • Strong family history of premature ASCVD
  • LDL-C very high despite lifestyle
Finding: Usually Type IIa (FH) or Type IIb (FCH)
Why it matters:
  • Changes treatment aggressiveness
  • Family members need cascade screening
  • May need PCSK9 inhibitor from diagnosis

✅ Patient 6 — Acute Pancreatitis with Unknown Cause

Use Fredrickson to identify Type I or V
Who:
  • Recurrent pancreatitis with no gallstones, no alcohol
  • Very high TG found during pancreatitis workup
  • Young patient with pancreatitis
Finding:
  • Type I → genetic LPL deficiency → ultra-low fat diet
  • Type V → combined → fibrates + lifestyle
Why it matters:
  • If Type I → fibrates do NOT help → diet is the only treatment
  • Prevents future attacks with correct management

✅ Patient 7 — Statin Not Working as Expected

Use Fredrickson when LDL-C not responding normally
Who:
  • On maximum statin dose but LDL-C still very high
  • Suspecting underlying genetic cause
Finding:
  • Type IIa (FH) → needs PCSK9 inhibitor added
  • Type IIb → needs TG management added

INDICATIONS SUMMARY TABLE

Patient ScenarioFredrickson TypeWhy Use It
TG >1000, recurrent pancreatitisType I or VDietary vs drug treatment decision
LDL-C ≥190, tendon xanthomas, young MIType IIaConfirm FH, cascade screening, PCSK9i
LDL-C + TG both high, family mixed historyType IIbFCH — combined treatment needed
Palmar xanthomas, TC = TG equally highType IIIFibrate first-line, ApoE genotyping
TG 500–1000, DM/obesity backgroundType IVFibrate + lifestyle + treat secondary cause
Young pancreatitis, no alcohol, no stonesType I or VGenetic cause — specific diet/drug
Statin not working, LDL still very highType IIa or IIbIntensify or add PCSK9i

When You Do NOT Need Fredrickson

PatientWhy Fredrickson Not Needed
Routine dyslipidemia, LDL mildly elevatedStandard treatment without classification
Borderline TG (150–300 mg/dL)Lifestyle change — no type needed
Patient responding well to statinAlready at goal — no classification needed
Screening lipid panel — all mild abnormalitiesRisk-based treatment is enough

How to Apply It Clinically — Simple Steps

STEP 1 — Look at the lipid panel
  Which is elevated?
  LDL only? TG only? Both? Equally?

STEP 2 — Look at the patient
  Xanthomas? Young MI? Family history? Pancreatitis?

STEP 3 — Match to Fredrickson Type

STEP 4 — Decide treatment based on type
  Type IIa  → Statin + PCSK9i
  Type IIb  → Statin + fibrate or omega-3
  Type III  → Fibrate first
  Type IV   → Fibrate + lifestyle
  Type I/V  → Ultra-low fat diet ± fibrate

One-Line Rule

Use Fredrickson when the lipid pattern is unusual, severe, or genetic — not in routine everyday dyslipidemia management.

Based on WHO/Fredrickson Classification · AHA 2026 · Clinical Lipidology Practice

Do again

Could you clarify what you mean by "do again"?
  • 🔁 Redo the same content — repeat Fredrickson indications differently?
  • ✂️ Make it shorter — give a crisp version?
  • 🔄 Different format — table only, bullet points only?
  • 📋 Different angle — clinical cases / exam-style?
Which one do you want?

I ask about Frederickson

Got it — here is the Fredrickson classification redone cleanly:

Fredrickson Classification

Complete & Simple


What Is It?

A system that classifies dyslipidemia by which lipoprotein particle is elevated. Gives each pattern a Type number (I to V).

THE 5 TYPES


TYPE I

What is elevatedChylomicrons
LDLNormal
TG↑↑↑↑ (>1000 mg/dL)
CauseLPL enzyme deficiency — genetic, very rare
RiskPancreatitis — NOT heart disease
SignMilky/creamy blood, eruptive xanthomas
TreatmentUltra-low fat diet (<20g/day) — fibrates do NOT work

TYPE IIa ⭐ Most Important

What is elevatedLDL only
TGNormal
CauseFamilial Hypercholesterolemia (FH) — LDLR defect
RiskVery high — early MI, stroke
SignTendon xanthomas, corneal arcus <45 yrs, xanthelasma
TreatmentHigh-intensity statin + ezetimibe + PCSK9 inhibitor

TYPE IIb ⭐ Very Common

What is elevatedLDL + VLDL (both)
TG
LDL
CauseFamilial Combined Hyperlipidemia (FCH)
RiskHigh — premature ASCVD
SignNo specific xanthomas
TreatmentStatin + fibrate OR statin + omega-3

TYPE III

What is elevatedIDL / Remnant particles
TG↑↑
TC↑↑ (TC = TG roughly equal)
CauseApoE2/E2 genotype — remnants not cleared
RiskEarly CAD + PAD together
SignPalmar xanthomas (yellow palm creases) — pathognomonic
TreatmentFibrate first-line — responds dramatically

TYPE IV ⭐ Most Common Overall

What is elevatedVLDL
TG↑↑ (200–999 mg/dL)
LDLNormal or low
HDLLow
CauseDM, obesity, alcohol, metabolic syndrome
RiskModerate ASCVD + pancreatitis if TG very high
SignNo specific xanthomas
TreatmentFibrate + lifestyle + treat underlying cause

TYPE V

What is elevatedVLDL + Chylomicrons
TG↑↑↑↑ (>1000 mg/dL)
CauseGenetic + secondary (DM + alcohol + obesity combined)
RiskSevere pancreatitis danger
SignEruptive xanthomas, lipemia retinalis
TreatmentEmergency TG lowering + fibrate + ultra-low fat diet

QUICK COMPARISON TABLE

TypeElevated ParticleLDLTGKey FeatureTreatment
IChylomicronsNormal↑↑↑↑Milky blood, pancreatitisLow fat diet only
IIaLDL↑↑NormalTendon xanthomas, FHStatin + PCSK9i
IIbLDL + VLDLCombined, commonStatin + fibrate
IIIIDL remnants↑↑Palmar xanthomasFibrate first
IVVLDLNormal↑↑DM/obesity relatedFibrate + lifestyle
VVLDL + ChylomicronsLow↑↑↑↑Pancreatitis dangerFibrate + low fat

MEMORY TRICK

I    → I can't clear fat from food (chylomicrons)
IIa  → 2 letters, 1 problem = LDL only (FH)
IIb  → 2 letters, 2 problems = LDL + TG (combined)
III  → 3 = TC + TG + palmar xanthomas (triad)
IV   → 4 = TG goes up (VLDL, most common)
V    → Very bad = Everything high = pancreatitis

CLINICAL SIGNIFICANCE — Which Types Matter Most?

PriorityTypeWhy
⭐⭐⭐IIaFH — most dangerous, highest heart disease risk
⭐⭐⭐IIbMost common genetic dyslipidemia
⭐⭐⭐IVMost common overall — DM/obesity driven
⭐⭐IIIRare but unique treatment (fibrate first)
⭐⭐I / VRare — mainly pancreatitis risk

Fredrickson-Levy-Lees WHO Classification · AHA 2026

What fruits and vegetables need to take for dyslipidemia

Fruits & Vegetables for Dyslipidemia

What to Eat & Why


WHY FRUITS & VEGETABLES HELP

They work through 3 main mechanisms:
  • Soluble fiber → binds cholesterol in gut → prevents absorption → ↓ LDL-C
  • Plant sterols/stanols → block cholesterol absorption in intestine
  • Antioxidants → prevent LDL oxidation → slow atherogenesis

🍎 FRUITS


⭐ Best Fruits for Dyslipidemia

Apples & Pears

  • Rich in pectin (soluble fiber)
  • Pectin directly binds LDL cholesterol in gut
  • Effect: ↓ LDL-C ~5%
  • Eat with skin — fiber is in the skin

Berries (Blueberries, Strawberries, Raspberries)

  • High in polyphenols + antioxidants
  • Reduce LDL oxidation
  • Raise HDL-C slightly
  • Anti-inflammatory — slows plaque progression
  • Low sugar — safe for diabetics too

Avocado 🥑

  • Rich in monounsaturated fat (MUFA)
  • Replaces saturated fat → ↓ LDL-C
  • ↑ HDL-C
  • Contains beta-sitosterol (plant sterol)
  • Effect: ↓ LDL-C 13–17% when eaten daily

Citrus Fruits (Orange, Grapefruit, Lemon)

  • Contain hesperidin + pectin
  • ↓ LDL-C, ↓ TG
  • Grapefruit: caution — interacts with statins (CYP3A4 inhibitor)
    • Avoid large amounts of grapefruit if on atorvastatin/simvastatin
    • Safe in small amounts; rosuvastatin not affected

Grapes

  • Contain resveratrol + flavonoids
  • Anti-inflammatory, antioxidant
  • ↑ HDL-C modestly
  • Red/purple grapes preferred over green

Pomegranate

  • High in punicalagins (potent antioxidants)
  • Reduces LDL oxidation
  • May reduce arterial plaque progression

Kiwi

  • Rich in vitamin C + fiber
  • ↓ TG, ↑ HDL-C
  • Anti-platelet effect — reduces clotting risk

Mango, Papaya

  • Rich in soluble fiber + carotenoids
  • Moderate glycemic index — eat in moderation
  • Good antioxidant support

⚠️ Fruits to Limit

FruitReason
Fruit juices (all types)No fiber; pure fructose → ↑ TG
Dried fruits (dates, raisins)Concentrated fructose → ↑ TG
Large portions of mango/bananaHigh sugar → ↑ TG if excess
Rule: Eat whole fruit — not juice. Juice removes fiber and concentrates sugar.

🥦 VEGETABLES


⭐ Best Vegetables for Dyslipidemia

Leafy Greens (Spinach, Kale, Swiss Chard)

  • Highest in lutein + antioxidants
  • Reduce LDL oxidation
  • Contain plant sterols — block cholesterol absorption
  • Kale: high in fiber + vitamin K — helps arterial health
  • Eat daily if possible

Broccoli & Cauliflower

  • Rich in soluble fiber + sulforaphane
  • ↓ LDL-C
  • Anti-inflammatory
  • Contains plant sterols

Okra (Ladies Fingers) 🌿

  • One of the best vegetables for cholesterol
  • Very high in soluble fiber (mucilage/pectin)
  • Directly binds bile acids → removes cholesterol from body
  • Effect: ↓ LDL-C significantly
  • Particularly recommended in South Asian populations

Eggplant (Brinjal)

  • Contains chlorogenic acid + fiber
  • ↓ LDL-C
  • Low calorie — good for weight management

Garlic 🧄

  • Contains allicin
  • ↓ LDL-C 5–10%
  • ↓ TG
  • Anti-platelet, anti-inflammatory
  • Best eaten raw or lightly cooked
  • 1–2 cloves daily

Onions

  • Contain quercetin (flavonoid)
  • ↓ LDL-C, anti-inflammatory
  • Red onion more potent than white

Tomatoes

  • Rich in lycopene
  • ↓ LDL-C oxidation
  • ↓ LDL-C ~10% with regular intake
  • Cooked tomatoes (sauce, paste) have MORE lycopene than raw

Carrots

  • High in pectin + beta-carotene
  • ↓ LDL-C
  • Antioxidant — reduces oxidized LDL

Sweet Potato

  • High in soluble fiber + potassium
  • ↓ LDL-C, ↓ TG
  • Better than regular potato (lower glycemic index)

Beans & Legumes (Lentils, Chickpeas, Kidney Beans)

  • Very high in soluble fiber
  • ↓ LDL-C 5–8% per serving
  • Also reduce TG
  • Excellent protein source — replace red meat

Corn / Oats (Grain Vegetables)

  • Beta-glucan in oats = most studied soluble fiber
  • ↓ LDL-C 5–10%
  • FDA-approved health claim for oats and heart disease

SOLUBLE FIBER — The Key Mechanism

How soluble fiber lowers LDL-C:
Soluble fiber eaten
      ↓
Forms gel in intestine
      ↓
Binds bile acids (made from cholesterol)
      ↓
Bile acids excreted in stool instead of reabsorbed
      ↓
Liver needs more cholesterol to make new bile acids
      ↓
Liver upregulates LDL receptors
      ↓
More LDL pulled from blood → ↓ LDL-C
Target: 10–25 g soluble fiber per day (AHA recommendation)

BEST FOODS BY LIPID EFFECT

TargetBest FruitsBest Vegetables
↓ LDL-CApple, pear, avocado, citrusOkra, broccoli, carrots, beans, oats
↓ TGBerries, kiwiLeafy greens, garlic, onion
↑ HDL-CAvocado, grapesGarlic, olive oil (with salads)
↓ Oxidized LDLBerries, pomegranate, grapesTomatoes, spinach, kale

DAILY DIET RECOMMENDATION

BREAKFAST
  → Oats with berries + apple slices

LUNCH
  → Large leafy green salad (spinach/kale)
    + tomatoes + carrots + olive oil dressing
    + lentils or chickpeas

DINNER
  → Broccoli / okra / eggplant as side dish
    + garlic in cooking
    + avocado

SNACK
  → Handful of berries or an apple (with skin)
    NOT fruit juice

WHAT TO AVOID

FoodWhy
Fruit juicesNo fiber; fructose → ↑ TG
Dried fruits in excessHigh sugar → ↑ TG
Fried vegetablesCooking oil adds saturated fat
Large grapefruit with statinCYP3A4 interaction
Refined vegetable oils (palm, coconut)Saturated fat → ↑ LDL-C

SIMPLE RULE TO REMEMBER

"Eat whole, eat colorful, eat fiber-rich"
  • Every color of vegetable = different antioxidant
  • Whole fruit > juice always
  • More fiber = more LDL pulled out of the body
  • Aim for 5–9 servings of fruits and vegetables per day

Based on AHA 2026 Dietary Guidelines · Mediterranean Diet Evidence · Portfolio Diet Studies

For pharmacological treatment what is the contraindication and indication for all durgs

Pharmacological Treatment — Dyslipidemia

Indications & Contraindications for All Drugs


DRUG 1 — STATINS

(Atorvastatin, Rosuvastatin, Simvastatin, Pravastatin)

✅ INDICATIONS

IndicationDetail
Secondary prevention — all patientsPrior MI, stroke, ACS, PAD, coronary revascularization
Primary prevention — high riskPREVENT-ASCVD ≥7.5% + risk enhancers
Diabetes (T1 or T2) age 40–75Regardless of LDL-C level
LDL-C ≥190 mg/dLFamilial hypercholesterolemia
CKD stage 3–4High CV risk — statin indicated
Post-ACSStart before discharge — high intensity
Subclinical atherosclerosis (CAC ≥100)Primary prevention with evidence of disease
HIV patientsESC 2025 — statin recommended
Cancer therapy patients (cardio-oncology)ESC 2025 — statin recommended

❌ CONTRAINDICATIONS

ContraindicationType
Active liver diseaseAbsolute
Unexplained persistent LFT elevation >3× ULNAbsolute
PregnancyAbsolute — teratogenic (Category X)
BreastfeedingAbsolute
Known hypersensitivity to statinAbsolute
Active rhabdomyolysisAbsolute — stop immediately
Severe myopathy (CK >10× ULN)Absolute — stop statin

⚠️ USE WITH CAUTION

SituationReason
CKD stage 5 / dialysisDose adjustment needed; evidence limited
Hypothyroidism (untreated)↑ myopathy risk — treat thyroid first
Heavy alcohol use↑ hepatotoxicity risk
Elderly >75 years↑ side effect risk — lower dose, monitor closely
Drug interactions:
— Gemfibrozil + statin↑↑ myopathy risk — avoid combination
— Cyclosporin + statin↑ statin levels — use lowest dose
— Amiodarone + simvastatin↑ myopathy — cap simvastatin at 20 mg
— Macrolide antibioticsCYP3A4 inhibition → ↑ statin levels
— Large grapefruit juiceCYP3A4 inhibition — atorva/simvastatin

DRUG-SPECIFIC NOTES

StatinSpecial Note
RosuvastatinNot significantly metabolized by CYP3A4 — fewer interactions
PravastatinSafest in transplant patients, HIV, liver disease
SimvastatinMost interactions — avoid >40 mg with many drugs
AtorvastatinAvoid large grapefruit; most widely used

DRUG 2 — EZETIMIBE

✅ INDICATIONS

IndicationDetail
LDL-C goal not met on maximum tolerated statinAdd-on therapy
Statin intoleranceUsed alone or with bempedoic acid
FH — not at goal on statinAdd before PCSK9i step
Post-ACS — early combinationESC 2025 fire-to-target
CKD patientsSafe — not renally cleared
ElderlyWell tolerated — few interactions
Sitosterolemia (phytosterolemia)Ezetimibe specifically reduces plant sterol absorption

❌ CONTRAINDICATIONS

ContraindicationType
Active liver diseaseAbsolute (when combined with statin)
PregnancyAbsolute
BreastfeedingAbsolute
Hypersensitivity to ezetimibeAbsolute

⚠️ USE WITH CAUTION

SituationReason
Moderate-severe hepatic impairmentNot recommended
Cyclosporin use↑ ezetimibe levels — monitor
Fibrates (gemfibrozil)↑ ezetimibe levels — use with caution

DRUG 3 — PCSK9 INHIBITORS

(Evolocumab, Alirocumab)

✅ INDICATIONS

IndicationDetail
Very high risk not at LDL-C goal on statin + ezetimibePrimary indication
Familial Hypercholesterolemia (HeFH)LDL-C not controlled on max statin
Homozygous FH (HoFH)Evolocumab approved for HoFH
Statin intolerance — very high riskUsed without statin if needed
High Lp(a) (≥125 nmol/L)PCSK9i reduces Lp(a) ~20–25% as benefit
Post-ACS — very high riskStart at discharge if LDL-C goal not met
Secondary prevention — recurrent eventsMost aggressive treatment needed

❌ CONTRAINDICATIONS

ContraindicationType
Hypersensitivity to drug or excipientsAbsolute
PregnancyAbsolute — insufficient safety data
BreastfeedingAbsolute

⚠️ USE WITH CAUTION

SituationReason
Severe hepatic impairmentLimited data
Latex allergySome prefilled pens contain latex — check device

NOTES

  • Very safe overall — no myopathy, no hepatotoxicity
  • Safety confirmed to LDL-C as low as 20–30 mg/dL
  • Main side effect: injection site reactions (mild)
  • No routine lab monitoring required beyond lipid panel
  • AHA 2026: No longer strictly sequential — add based on LDL-C gap needed

DRUG 4 — BEMPEDOIC ACID

✅ INDICATIONS

IndicationDetail
Statin intolerance — primary indicationMultiple statins failed due to myalgia
Cannot tolerate any statin doseUsed alone or with ezetimibe
LDL-C goal not met — add-on to ezetimibeWhen statin not tolerated
Primary prevention — high risk, statin intolerantCLEAR Outcomes trial evidence
Secondary prevention — statin intolerantCV event reduction proven

❌ CONTRAINDICATIONS

ContraindicationType
Active goutAbsolute — bempedoic acid raises uric acid
PregnancyAbsolute
BreastfeedingAbsolute
Hypersensitivity to drugAbsolute

⚠️ USE WITH CAUTION

SituationReason
History of goutMonitor uric acid closely
Hyperuricemia (elevated uric acid)Worsens uric acid levels
Tendon disease / history of tendon ruptureRare tendon rupture reported
Simvastatin or pravastatin useBempedoic acid ↑ statin levels — cap simvastatin at 20 mg, pravastatin at 40 mg
Severe renal impairmentLimited data
Severe hepatic impairmentNot recommended

NOTES

  • Works only in liver (not muscle) → much less myopathy than statins
  • Available as combination tablet: bempedoic acid + ezetimibe
  • Raises uric acid — ask about gout history before prescribing

DRUG 5 — INCLISIRAN (siRNA)

✅ INDICATIONS

IndicationDetail
Very high risk not at LDL-C goalSecond-line after PCSK9 mAb
PCSK9 mAb not tolerated or accessibleAlternative with same mechanism
Adherence issues with frequent injectionsDosing only twice yearly after loading
FH not at goal on statin + ezetimibeAdd-on therapy
Secondary prevention — LDL-C not controlledWhen other options exhausted or unavailable

❌ CONTRAINDICATIONS

ContraindicationType
PregnancyAbsolute
BreastfeedingAbsolute
Hypersensitivity to inclisiranAbsolute

⚠️ USE WITH CAUTION

SituationReason
Severe renal impairment (eGFR <30)Limited data — use cautiously
Severe hepatic impairmentNot recommended

NOTES

  • Dosing: SC injection at 0, 3 months → then every 6 months
  • Very good for adherence — less frequent than PCSK9 mAbs
  • Main side effect: injection site reactions
  • No drug-drug interactions (RNA interference — not CYP metabolized)

DRUG 6 — FIBRATES

(Fenofibrate, Gemfibrozil, Bezafibrate)

✅ INDICATIONS

IndicationDetail
TG ≥500 mg/dL — primary indicationPrevent acute pancreatitis
TG 200–499 mg/dL + high CV riskAdjunct to statin
Fredrickson Type III (Dysbetalipoproteinemia)First-line — fibrate specifically
Fredrickson Type IVFirst-line for TG reduction
Fredrickson Type VReduce pancreatitis risk
Low HDL-C + high TGFibrate improves both
Combined dyslipidemia (with statin)Use fenofibrate — not gemfibrozil with statin

❌ CONTRAINDICATIONS

ContraindicationType
Severe renal impairment (eGFR <15–30)Absolute — fibrate accumulates → myopathy
Severe hepatic impairmentAbsolute
Active gallbladder diseaseAbsolute — fibrates increase gallstone risk
PregnancyAbsolute
BreastfeedingAbsolute
Hypersensitivity to fibrateAbsolute
Gemfibrozil + statin combinationAbsolute — pharmacokinetic interaction → severe myopathy / rhabdomyolysis

⚠️ USE WITH CAUTION

SituationReason
CKD stage 3–4Dose reduce; monitor renal function
Anticoagulants (warfarin)Fibrates potentiate warfarin → ↑ bleeding risk — reduce warfarin dose, monitor INR
Fenofibrate + statinGenerally safe — preferred combination over gemfibrozil + statin
DiabetesMonitor glucose — fibrates may improve insulin sensitivity

FIBRATE COMPARISON

DrugWith StatinRenal DosingNotes
Fenofibrate✅ SafeDose adjustPreferred with statins
Gemfibrozil❌ AvoidAvoid in CKD↑↑ statin levels → myopathy
BezafibrateCautionDose adjustLess common

DRUG 7 — OMEGA-3 FATTY ACIDS (EPA)

(Icosapentaenoic acid — Vascepa/Omacor)

✅ INDICATIONS

IndicationDetail
TG 135–499 mg/dL + on statinREDUCE-IT trial — ↓ MACE 25% (AHA 2026)
TG ≥500 mg/dLTG lowering — adjunct to fibrate
High CV risk + residual hypertriglyceridemiaDespite statin therapy
Secondary prevention + elevated TGAdd-on to statin
⚠️ AHA 2026: Only icosapentaenoic acid (EPA alone / Vascepa 4g) has proven CV benefit. Mixed EPA+DHA formulations (Lovaza) do NOT have the same CV outcome evidence.

❌ CONTRAINDICATIONS

ContraindicationType
Fish or shellfish allergyAbsolute
Hypersensitivity to omega-3Absolute
Pregnancy (high dose)Caution — limited data at 4g dose

⚠️ USE WITH CAUTION

SituationReason
Anticoagulants (warfarin, apixaban)↑ bleeding risk at high doses — monitor
Atrial fibrillation historyREDUCE-IT showed slight ↑ AF risk with EPA
Hepatic impairmentMonitor LFTs

DRUG 8 — EVINACUMAB

(For Homozygous FH only)

✅ INDICATIONS

IndicationDetail
Homozygous FH (HoFH) — only indicationLDL-C not controlled on max statin + ezetimibe + PCSK9i
LDLR-null patientsWorks even without functional LDL receptors

❌ CONTRAINDICATIONS

ContraindicationType
PregnancyAbsolute — teratogenic in animal studies
BreastfeedingAbsolute
Hypersensitivity to evinacumabAbsolute

⚠️ USE WITH CAUTION

  • Infusion reactions — premedicate with antihistamine
  • Liver function monitoring recommended
  • IV administration only (15 mg/kg every 4 weeks)

COMPLETE CONTRAINDICATION SUMMARY TABLE

DrugPregnancyLiver DiseaseRenal FailureGoutMyopathy
Statin❌ Absolute❌ AbsoluteCaution/dose adjust❌ Stop if CK >10×
Ezetimibe❌ AbsoluteCaution✅ Safe
PCSK9i❌ AbsoluteCaution✅ Safe
Bempedoic acid❌ Absolute❌ AvoidCaution❌ Absolute
Inclisiran❌ Absolute❌ AvoidCaution eGFR<30
Fibrate❌ Absolute❌ Absolute❌ Absolute eGFR<15Caution with statin
EPA (Omega-3)CautionCaution✅ Safe
Evinacumab❌ AbsoluteCaution✅ Safe

INDICATION BY CLINICAL SCENARIO

Patient ScenarioFirst ChoiceAdd-on
All high/very high risk patientsStatinEzetimibe → PCSK9i
Statin intolerantBempedoic acid± Ezetimibe
TG ≥500 mg/dLFibrate+ Statin after TG controlled
TG 135–499 on statinEPA 4g (Vascepa)
FH not at goalStatin + Ezetimibe + PCSK9iEvinacumab if HoFH
Very high risk — adherence issueInclisiran (q6 months)
Type III dyslipidemiaFibrate (first-line)+ Statin later
Pregnancy with dyslipidemiaDiet onlyBile acid sequestrants (safe)

Based on AHA/ACC 2026 Guideline on the Management of Dyslipidemia · ADA 2026 · ESC/EAS 2025

All these information in the file is goes with aha 2026 guidelines right pharmacological treatment and others

Your credits are exhausted. You can purchase a top-up or subscribe to a plan to continue using Orris. If you're already subscribed, your daily credits will reset tomorrow.
This is a shared conversation. Sign in to Orris to start your own chat.