I need to do a topic presentation in dyslipidemia given me from AHA 2026 guidelines and ESC 2025
AHA 2026 dyslipidemia cholesterol guidelines key recommendations
ESC 2025 dyslipidemia guidelines key recommendations LDL targets
https://heartcare.sydney/acc-aha-2026-dyslipidemia-guideline…
mkdir -p /home/daytona/workspace/dyslipidemia-presentation && ls /home/daytona/workspace/dyslipidemia-presentation/
~/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));
cd /home/daytona/workspace/dyslipidemia-presentation && node build.js 2>&1
ls -lh /home/daytona/workspace/dyslipidemia-presentation/
Dyslipidemia AHA2026 ESC2025
Presentation · PPTX
| # | Slide | Content |
|---|---|---|
| 1 | Title | Bold dark-navy design with AHA 2026 / ESC 2025 branding |
| 2 | Overview / Agenda | 10-item numbered roadmap |
| 3 | What is Dyslipidemia? | Definition, 4 types (LDL, HDL, TG, Lp(a)), epidemiology |
| 4 | Pathophysiology | Atherogenesis flow: LDL → oxidation → foam cells → plaque |
| 5 | Risk Assessment | PREVENT-ASCVD (AHA 2026) vs SCORE2/SCORE2-OP (ESC 2025) |
| 6 | Screening & Diagnosis | Lipid panel, universal Lp(a), ApoB — new 2025/2026 updates |
| 7 | AHA 2026 Key Changes | 6 major updates including PREVENT, restored goals, 5 new drugs |
| 8 | AHA 2026 LDL-C Goals | Goals by risk + full CAC scoring table |
| 9 | ESC 2025 Key Changes | Extreme risk, fire-to-target, bempedoic acid, special pops |
| 10 | ESC 2025 LDL-C Goals | 5-tier color-coded risk pyramid (<116 → <40 mg/dL) |
| 11 | Lifestyle Modifications | Diet, exercise, weight loss, smoking — foundation of all therapy |
| 12 | Pharmacotherapy | 6 drug classes with MOA, agents, LDL-C reduction %, guideline class |
| 13 | Treatment Algorithm | 5-step visual: lifestyle → statin → ezetimibe → PCSK9i → alternatives |
| 14 | Special Populations | Diabetes, FH, elderly, HIV/cardio-oncology |
| 15 | AHA vs ESC Comparison | 12-row side-by-side table — the "heart" of the presentation |
| 16 | Hypertriglyceridemia | Classification, causes, fibrates, REDUCE-IT (EPA) |
| 17 | Lp(a): The Emerging Biomarker | Both guidelines side-by-side; pelacarsen pipeline drug |
| 18 | Monitoring & Statin Safety | Timeline + 4 safety concerns (myopathy, diabetes, LFTs, cognition) |
| 19 | Take-Home Messages | 10 numbered key points |
| 20 | References & Thank You | 6 key citations (Blumenthal 2026, Mach 2025, CLEAR, REDUCE-IT, ORION) |
Give me in chat
| Type | Description |
|---|---|
| ↑ LDL-C | Most common; primary target of therapy |
| ↓ HDL-C | Independent CV risk factor; lifestyle-modified |
| ↑ Triglycerides | Hypertriglyceridemia; 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.
| Particle | Role |
|---|---|
| LDL-C | Primary driver; each particle carries one ApoB |
| VLDL / IDL remnants | Triglyceride-rich remnant particles; highlighted in AHA 2026 |
| Lp(a) | Pro-atherogenic + pro-thrombotic; independent of LDL-C |
| Low HDL-C | Reduced reverse cholesterol transport; associated with higher ASCVD risk |
Published March 2026 in Circulation — Replaces the 2018 Blood Cholesterol Guideline
| Risk Category | LDL-C Goal | Non-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 |
| 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 |
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)
Published August 29, 2025 — Focused update of the 2019 ESC/EAS Guidelines
| Risk Category | Definition | LDL-C Goal | % Reduction |
|---|---|---|---|
| Low | SCORE2 <5% | < 116 mg/dL | - |
| Moderate | SCORE2 5-10% | < 100 mg/dL | ≥30%↓ |
| High | SCORE2 10-20% or single major RF↑ | < 70 mg/dL | ≥50%↓ |
| Very High | SCORE2 ≥20% or established CVD | < 55 mg/dL | ≥50%↓ |
| Extreme ★ NEW | CVD + 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)
| Drug Class | LDL-C Reduction | Mechanism | Key Points |
|---|---|---|---|
| Statins (HMG-CoA reductase inhibitors) | 30-55%↓ | Inhibit cholesterol synthesis → upregulate LDL receptors | FIRST-LINE in both guidelines; rosuvastatin / atorvastatin high-intensity |
| Ezetimibe | 18-24%↓ | Inhibits NPC1L1 → reduces intestinal cholesterol absorption | Add-on to statin; ESC 2025 recommends upfront combination (IMPROVE-IT) |
| PCSK9 Inhibitors (evolocumab, alirocumab) | 50-65%↓ | Block PCSK9 → prevent LDL receptor degradation | SC injection q2w or monthly; for very high/extreme risk not at goal |
| Bempedoic Acid | ~18%↓ | ATP-citrate lyase inhibitor; activated only in liver | Statin-intolerant; CLEAR Outcomes trial; ESC 2025 Class I |
| Inclisiran (siRNA) | ~50%↓ | Silences PCSK9 mRNA in hepatocytes | Dosing: 0, 3 months → then q6 months SC; AHA 2026 second-line after mAb |
| Fibrates / EPA | TG ↓30-50% | PPAR-α agonists; EPA only — REDUCE-IT | Icosapentaenoic acid 4 g/day; TG ≥500 mg/dL (pancreatitis risk) |
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.
| 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 |
| Lowest LDL-C target | < 55 mg/dL (very high risk) | < 40 mg/dL (extreme risk) ★ |
| Lp(a) screening | Universal (Class I) | Recommended in risk assessment |
| ApoB | Selective — refine risk | Endorsed as alternative target |
| CAC scoring | Expanded role in primary prevention | Risk modifier to refine SCORE2 |
| Treatment approach | PCSK9i no longer strictly sequential | 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) |
| New drug classes | Inclisiran, pelacarsen, olezarsen | Bempedoic acid, evinacumab |
| Published | March 2026 — Circulation | August 2025 — Eur Heart J |
★ Extreme Risk is unique to ESC 2025 — no equivalent category exists in AHA 2026
| Category | TG Level |
|---|---|
| Normal | < 150 mg/dL |
| Borderline High | 150-199 mg/dL |
| High | 200-499 mg/dL |
| Very High | ≥ 500 mg/dL |
| AHA 2026 | ESC 2025 | |
|---|---|---|
| Screening | Class I — Measure ≥1× in all adults | Recommended in CV risk assessment |
| Threshold | ≥75 nmol/L (risk modifier); ≥125 nmol/L (high risk) | ≥50 mg/dL = significant risk modifier |
| Treatment target | Not yet defined | Not yet defined (target expected in future guidelines) |
| PCSK9i effect | Modest ↓20-25% on Lp(a) | Modest ↓20-25% on Lp(a) |
| Pipeline drug | Pelacarsen (antisense oligo) → ↓80% Lp(a); Phase 3 awaiting CV outcome data | Olezarsen being studied (Lp(a) + TG) |
| Timepoint | What to Check |
|---|---|
| Baseline | Fasting lipids, LFTs, CK, glucose, HbA1c, Lp(a) once |
| 4-12 weeks | Repeat lipid panel; assess % LDL-C reduction; CK if myalgia |
| Every 6-12 months | Ongoing lipid monitoring once at goal; tolerability; adherence |
| Annually | Reassess CV risk; intensify if goals not met; specialist referral |
| Concern | Key Points |
|---|---|
| Myopathy / Rhabdomyolysis | 0.1-0.5% incidence; CK >10× ULN → stop statin; check for interactions (CYP3A4), hypothyroidism, CKD |
| New-onset Diabetes | Modest risk (~10-12%); ASCVD risk reduction far outweighs this in high-risk patients |
| LFT Elevation | Severe hepatotoxicity is rare; baseline LFTs; recheck only if symptomatic |
| Cognitive Effects | No consistent evidence; concern not substantiated in large trials |
| # | Key Message | Summary |
|---|---|---|
| 1 | Dyslipidemia = more than LDL-C | Lp(a), remnant particles, and ApoB all contribute to ASCVD risk |
| 2 | AHA 2026 restores LDL-C goals | Very high risk <55; ASCVD not VHR <70 mg/dL; plus ≥50% reduction target |
| 3 | ESC 2025 adds Extreme Risk | New category: LDL-C <40 mg/dL for CVD + recurrent event on max therapy |
| 4 | Universal Lp(a) screening | AHA 2026 Class I for all adults; ESC 2025 strongly recommended |
| 5 | PREVENT replaces PCE in the USA | Better calibrated; integrates 10- and 30-year risk; includes metabolic/renal variables |
| 6 | Fire-to-target (ESC) vs sequential (AHA) | ESC supports upfront statin + ezetimibe; AHA allows simultaneous PCSK9i add-on |
| 7 | Statin + Ezetimibe + PCSK9i = up to 85% LDL-C reduction | Combination therapy is highly effective; bempedoic acid for statin-intolerant |
| 8 | Lifestyle always comes first | Diet, exercise, smoking cessation — recommended in ALL risk categories |
| 9 | No dietary supplements | Both guidelines: Class 3 / not recommended for fish oil, red yeast rice, plant sterols |
| 10 | Overcome therapeutic inertia | Follow-up at 4-12 weeks; intensify until goals are achieved; refer to lipid specialist if needed |
Give me history taking list all for gout patient
| Drug | Mechanism |
|---|---|
| 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 / Tacrolimus | Reduce renal clearance of urate |
| Pyrazinamide (TB drug) | Inhibits uric acid excretion |
| Ethambutol | Reduces renal uric acid excretion |
| Levodopa | Can raise uric acid levels |
| Beta-blockers | Mildly raise uric acid |
| Nicotinic acid / Niacin | Competes with uric acid excretion |
| Chemotherapy agents | Tumor lysis → massive purine release |
| Domain | Key Questions |
|---|---|
| Site & onset | Which joint? Sudden overnight? |
| Attack pattern | Frequency, duration, complete resolution? |
| Triggers | Diet (meat, seafood, alcohol, fructose), drugs, dehydration |
| Tophi | Ears, elbows, tendons, MTP joint — any nodules? |
| Renal | Stones, hematuria, CKD |
| PMH | HTN, DM, CKD, CVD, malignancy |
| Drugs | Diuretics, aspirin, cyclosporin, allopurinol |
| Family Hx | Gout, stones, Lesch-Nyhan |
| Social | Alcohol, diet, occupation (lead?), ADL impact |
| ICE | Ideas, concerns, expectations |
What are the questions need to ask for gout patient to diagnosis and make a medical record
"What brought you in today?" "Tell me about the pain you are having."
| # | Question | What 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 |
| # | Question | What 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 |
| # | Question | What 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 |
| # | Question | What 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 |
| # | Question | What 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 |
| # | Question | What 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 |
| # | Question | What 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 |
| # | Question | What 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) |
| # | Question | What 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 |
| # | Question | What 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 |
| # | Question | Purpose |
|---|---|---|
| 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 |
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: _______________
| History Finding | Suggests |
|---|---|
| Sudden overnight severe monoarthritis of 1st MTP | Classic podagra = gout until proven otherwise |
| Complete resolution between attacks | Intermittent gouty arthritis |
| Attacks triggered by alcohol / red meat | Dietary-induced hyperuricemia |
| Bedsheet hyperalgesia | Acute crystal arthritis |
| Tophi on ears, elbows, tendons | Chronic tophaceous gout |
| On thiazide diuretic + joint pain | Drug-induced hyperuricemia → gout |
| Renal stones + joint pain | Uric acid nephrolithiasis |
| Young male + very high uric acid + neurological symptoms | Lesch-Nyhan syndrome |
| Transplant patient + gout | Cyclosporine-induced hyperuricemia |
| Fever + single joint | Must exclude septic arthritis first |
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)
| 2018 Guideline | 2026 Guideline |
|---|---|
| Focus on LDL-C alone | Broader focus: LDL-C + remnant particles + Lp(a) + ApoB |
| No fixed LDL-C targets | Restores absolute LDL-C treatment goals |
| Pooled Cohort Equations (PCE) | PREVENT-ASCVD Equations |
| Statins only emphasized | Multi-pathway lipid management |
| Treating a number | Treating 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 | Primary Lipid | Apolipoprotein | Atherogenicity |
|---|---|---|---|
| Chylomicrons | Dietary TG | ApoB-48 | Low (too large to enter wall) |
| VLDL | Endogenous TG | ApoB-100 | Moderate (remnants are) |
| IDL | TG + Cholesterol | ApoB-100 | High |
| LDL | Cholesterol | ApoB-100 | High — primary target |
| HDL | Cholesterol (reverse) | ApoA-I | Protective |
| 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.
| Group | Pattern |
|---|---|
| Men | Higher LDL-C at younger age; earlier ASCVD onset |
| Women | LDL-C rises after menopause; catch up to men post-50 |
| South Asian | Higher Lp(a), higher TG, lower HDL-C; greater ASCVD risk at same LDL-C |
| Black Americans | Higher Lp(a) levels; higher HTN prevalence |
| Hispanic Americans | Higher TG, lower HDL-C; higher metabolic syndrome prevalence |
| Elderly | Higher prevalence dyslipidemia; but underdiagnosed and undertreated |
| Type | Location | Associated Condition |
|---|---|---|
| Tendinous xanthoma | Achilles tendon, extensor tendons of hands | Familial hypercholesterolemia (FH) |
| Tuberous / Tuberoeruptive xanthoma | Elbows, knees | FH, dysbetalipoproteinemia |
| Eruptive xanthoma | Buttocks, shoulders, extensor surfaces | Severe hypertriglyceridemia (TG >1000) |
| Xanthelasma | Medial eyelids (yellowish plaques) | Hypercholesterolemia (not specific) |
| Palmar / Planar xanthoma | Palm creases | Type III dyslipidemia (ApoE2/E2) |
| Lipid Abnormality | Clinical Feature |
|---|---|
| Elevated LDL-C | Usually asymptomatic; tendon xanthomas, arcus (in FH) |
| Severe hypertriglyceridemia | Eruptive xanthomas, acute pancreatitis, lipemia retinalis |
| Low HDL-C | Asymptomatic; accelerated ASCVD |
| Elevated Lp(a) | Asymptomatic; early ASCVD, aortic stenosis |
| Type III dyslipidemia | Palmar xanthomas, tuberous xanthomas, premature CAD/PAD |
| Test | Normal Value | Significance |
|---|---|---|
| Total Cholesterol (TC) | <200 mg/dL | Screening; 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/dL | Elevated → remnant particles, pancreatitis risk |
| Non-HDL-C | <130 mg/dL (general) | = TC − HDL-C; includes all atherogenic particles |
| TC/HDL-C ratio | <5 | Risk 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 = Total Cholesterol − HDL-C − (TG ÷ 5)
| Risk Category | ApoB Goal |
|---|---|
| Very high risk | < 65 mg/dL |
| High risk | < 80 mg/dL |
| Primary prevention | < 90 mg/dL |
| Test | Purpose |
|---|---|
| Fasting glucose / HbA1c | Diabetes screening; input for PREVENT equations |
| eGFR / Creatinine | CKD 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 pressure | Major CV risk factor; input for risk equations |
| Fasting insulin / HOMA-IR | Insulin resistance assessment |
| hsCRP | Residual inflammatory risk (e.g., JUPITER trial) |
| 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 |
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.
| Disorder | Diagnostic Criterion |
|---|---|
| Hypercholesterolemia | LDL-C ≥130 mg/dL OR total cholesterol ≥200 mg/dL |
| Severe hypercholesterolemia | LDL-C ≥190 mg/dL |
| Low HDL-C | <40 mg/dL (men), <50 mg/dL (women) |
| Borderline high TG | 150–199 mg/dL |
| High TG | 200–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 |
| Type | Elevated Particle | Lipid Pattern | Common Cause |
|---|---|---|---|
| Type I | Chylomicrons | ↑↑↑ TG, TG >1000 | LPL deficiency (rare genetic) |
| Type IIa | LDL | ↑ LDL-C, normal TG | Familial hypercholesterolemia |
| Type IIb | LDL + VLDL | ↑ LDL-C + ↑ TG | Combined hyperlipidemia |
| Type III | IDL / Remnants | ↑ TC + ↑ TG equally | Dysbetalipoproteinemia (ApoE2) |
| Type IV | VLDL | ↑ TG, normal/↑ LDL | Familial hypertriglyceridemia |
| Type V | VLDL + Chylomicrons | ↑↑↑ TG | Combined genetic + secondary |
| Condition | Mutation | LDL-C Level | Features |
|---|---|---|---|
| Heterozygous FH (HeFH) | LDLR, ApoB, PCSK9 (one allele) | 190–400 mg/dL | Premature CAD, tendon xanthomas |
| Homozygous FH (HoFH) | LDLR (both alleles) | >400–600 mg/dL | CAD in childhood, aortic stenosis |
| Familial combined hyperlipidemia (FCH) | Multiple genes | ↑ LDL-C + ↑ TG | Most common genetic dyslipidemia |
| Familial dysbetalipoproteinemia (Type III) | ApoE2/E2 | ↑ TC + ↑ TG | Palmar xanthomas |
| Familial hypertriglyceridemia | LPL, APOC2 | ↑↑ TG | Pancreatitis risk |
| Elevated Lp(a) | LPA gene | Normal LDL-C | Independent ASCVD risk |
| Cause | Lipid 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 |
| Criterion | Points |
|---|---|
| Family Hx: premature ASCVD (1st degree, <55M / <60F) | 1 |
| Family Hx: known FH in 1st degree relative | 2 |
| Personal Hx: premature ASCVD (<55M / <60F) | 2 |
| Tendon xanthomas (patient or 1st degree relative) | 6 |
| Corneal arcus age <45 | 4 |
| LDL-C ≥330 mg/dL | 8 |
| LDL-C 250–329 mg/dL | 5 |
| LDL-C 190–249 mg/dL | 3 |
| LDL-C 155–189 mg/dL | 1 |
| Causative mutation confirmed | 8 |
| Score | Diagnosis |
|---|---|
| >8 | Definite FH |
| 6–8 | Probable FH |
| 3–5 | Possible FH |
| <3 | Unlikely FH |
| Risk Factor | Detail |
|---|---|
| Age | Men ≥45 years; Women ≥55 years (post-menopause) |
| Sex | Men have earlier ASCVD onset; women catch up after menopause |
| Genetics / Family History | FH, elevated Lp(a), familial combined hyperlipidemia |
| Ethnicity | South Asian → higher Lp(a) + TG, lower HDL; Black Americans → higher Lp(a) |
| Risk Factor | Mechanism |
|---|---|
| Unhealthy diet | Saturated 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 |
| Smoking | Oxidizes LDL; ↓ HDL-C; endothelial dysfunction |
| Condition | Lipid Effect |
|---|---|
| Type 2 Diabetes | ↑ TG, ↓ HDL-C, small dense LDL (most atherogenic form) |
| Hypertension | Synergistic ASCVD risk with dyslipidemia |
| Metabolic Syndrome | Combination of ↑ TG + ↓ HDL + central obesity + ↑ BP + ↑ glucose |
| CKD | ↓ urate excretion; altered lipoprotein metabolism |
| Hypothyroidism | ↑ LDL-C via ↓ LDLR expression |
| Drug | Effect |
|---|---|
| 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 |
| Level | Target Population |
|---|---|
| Primordial prevention | Healthy individuals — prevent development of risk factors |
| Primary prevention | Individuals with risk factors but no established ASCVD |
| Secondary prevention | Individuals with established ASCVD |
| Risk Category | LDL-C Goal | Non-HDL-C Goal | ApoB 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)
| Recommendation | Evidence | LDL-C Effect |
|---|---|---|
| Mediterranean diet | Strong | ↓ LDL-C 5-10%, ↓ ASCVD events 30% (PREDIMED) |
| DASH diet | Strong | ↓ LDL-C, ↓ BP |
| Plant-based / Portfolio diet | Moderate-strong | ↓ LDL-C up to 30% |
| Reduce saturated fat <7% of total calories | Strong | ↓ LDL-C ~5-8% per 1% reduction in sat fat |
| Eliminate trans fats completely | Strong | ↓ LDL-C + ↑ HDL-C |
| Increase soluble fiber 10-25 g/day | Moderate | ↓ LDL-C ~5% |
| Plant sterols 2 g/day | Strong | ↓ LDL-C ~8-10% |
| Reduce dietary cholesterol <200 mg/day | Moderate | ↓ LDL-C modestly |
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.
| Recommendation | Specifics |
|---|---|
| Aerobic exercise | ≥150 min/week moderate-intensity OR ≥75 min/week vigorous |
| Resistance training | ≥2 sessions/week |
| Reduce sedentary time | Break up prolonged sitting every 30 minutes |
| Effects on lipids | ↓ TG 20-30%; ↑ HDL-C 5-10%; modest ↓ LDL-C |
| Weight Loss | Lipid Effect |
|---|---|
| 5-10% body weight loss | ↓ LDL-C 5-8 mg/dL, ↓ TG 15-20%, ↑ HDL-C |
| >10% weight loss | More 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) |
| Intensity | Agents | LDL-C Reduction |
|---|---|---|
| High | Rosuvastatin 20–40 mg; Atorvastatin 40–80 mg | ≥50% |
| Moderate | Rosuvastatin 5–10 mg; Atorvastatin 10–20 mg; Simvastatin 20–40 mg; Pravastatin 40–80 mg | 30–49% |
| Low | Simvastatin 10 mg; Pravastatin 10–20 mg; Fluvastatin 20–40 mg | <30% |
| Effect | Frequency | Management |
|---|---|---|
| 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 risk | Benefits 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 | Dose | Frequency |
|---|---|---|
| Evolocumab (Repatha) | 140 mg SC | Every 2 weeks |
| Alirocumab (Praluent) | 75–150 mg SC | Every 2 weeks |
| Drug | Active Component | Evidence |
|---|---|---|
| Icosapentaenoic acid (IPE) (Vascepa) | Pure EPA 4 g/day | REDUCE-IT: ↓ MACE 25% in statin-treated patients with TG ≥150 |
| Mixed EPA+DHA (Lovaza) | EPA + DHA | Reduces 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.
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)
| Timepoint | Action |
|---|---|
| Baseline | Lipid panel, LFTs, CK, fasting glucose, HbA1c, eGFR, Lp(a) |
| 4-12 weeks after starting/changing therapy | Repeat fasting lipid panel; assess % reduction; check adherence |
| Every 6-12 months once at goal | Ongoing monitoring; assess tolerability; reinforce lifestyle |
| Annually | Reassess 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.
| Population | Key Management Points |
|---|---|
| Diabetes (T2DM) | High-intensity statin regardless of LDL-C; LDL-C goal <70 (high) or <55 (very high risk) |
| Heterozygous FH | High-intensity statin + ezetimibe; add PCSK9i if not at goal; cascade screen family |
| Homozygous FH | Max statin + ezetimibe + PCSK9i + evinacumab ± LDL apheresis |
| CKD (non-dialysis) | Statin ± ezetimibe; avoid high-dose statins in severe CKD; dose-adjust |
| Elderly ≥75 years | Secondary prevention: continue statin; primary prevention: individualize |
| Children (FH) | Statin from age 8-10 in HeFH if LDL-C >190 mg/dL despite lifestyle |
| Hypertriglyceridemia | Lifestyle first; EPA 4 g/day if TG 135-499 on statin; fibrate if TG ≥500 |
| Post-ACS | High-intensity statin before discharge; add ezetimibe early; PCSK9i at discharge if VHR |
| Parameter | Value |
|---|---|
| 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) screening | Once in all adults (Class I) |
| CAC = 0 | Defer pharmacotherapy |
| Recheck lipids after new therapy | 4–12 weeks |
| High-intensity statin | Rosuvastatin 20–40 mg / Atorvastatin 40–80 mg |
| Dietary supplements for LDL-C | Class 3 — NOT recommended |
| PCSK9 inhibitor strategy | No 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.
Give me short and crisp for topic presentation not long with all info
↑ 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
| Sign | Condition |
|---|---|
| Tendon xanthomas | Familial hypercholesterolemia |
| Xanthelasma | Hypercholesterolemia |
| Corneal arcus <45 yrs | Significant hypercholesterolemia |
| Eruptive xanthomas | TG >1000 mg/dL |
| Acute pancreatitis | TG ≥500 mg/dL |
| Angina / MI | Established ASCVD |
| Claudication | Peripheral arterial disease |
| Test | Target (General) |
|---|---|
| LDL-C | < 100 mg/dL |
| Non-HDL-C | < 130 mg/dL |
| HDL-C | ≥40 (M) / ≥50 (F) mg/dL |
| Triglycerides | < 150 mg/dL |
| Disorder | Value |
|---|---|
| Hypercholesterolemia | LDL-C ≥130 mg/dL |
| Severe hypercholesterolemia | LDL-C ≥190 mg/dL (consider FH) |
| Hypertriglyceridemia | TG ≥150 mg/dL |
| Very high TG | TG ≥500 mg/dL |
| Elevated Lp(a) | ≥125 nmol/L (high risk) |
| Type | Elevated | Key Feature |
|---|---|---|
| IIa | LDL | FH pattern |
| IIb | LDL + VLDL | Combined |
| IV | VLDL | High TG |
| V | VLDL + Chylomicrons | Pancreatitis risk |
| Risk Category | LDL-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
| Intervention | Effect 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
| Drug | Mechanism | LDL-C ↓ | When to Use |
|---|---|---|---|
| Statin (atorva 40-80 / rosuva 20-40) | ↓ HMG-CoA → ↑ LDLR | 30–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 |
| Fibrates | PPAR-α → ↑ LPL | TG ↓30-50% | TG ≥500 mg/dL (pancreatitis) |
| EPA (Vascepa 4 g) | ↓ TG, anti-inflammatory | TG ↓25% + ↓MACE | TG 135-499 on statin (REDUCE-IT) |
| Evinacumab | Anti-ANGPTL3 | ↓47% | Homozygous FH only |
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
| Very high risk goal | LDL-C <55 mg/dL |
| High risk goal | LDL-C <70 mg/dL |
| Reduction target | ≥50% from baseline |
| Lp(a) screening | Once — all adults (Class I) |
| CAC = 0 | Defer statin |
| Recheck after therapy | 4–12 weeks |
| High-intensity statin | Atorva 40–80 / Rosuva 20–40 |
| Dietary supplements | NOT 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
ADA 2026 Standards of Care diabetes dyslipidemia diagnostic criteria lipid targets
ADA 2026 guidelines dyslipidemia LDL cholesterol treatment recommendations diabetes
https://sentucuman.com.ar/docs/standards-of-care-2026.pdf
⚠ 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.
| Component | Finding |
|---|---|
| ↑ Triglycerides | TG ≥150 mg/dL |
| ↓ HDL-C | <40 mg/dL (men) / <50 mg/dL (women) |
| Small dense LDL | LDL-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)).
| Lipid Parameter | Normal | Borderline | Abnormal / High |
|---|---|---|---|
| LDL-C | <100 mg/dL | 100–129 mg/dL | ≥130 mg/dL |
| LDL-C (high risk DM) | Goal <70 mg/dL | 70–99 mg/dL | ≥100 mg/dL |
| Non-HDL-C | <130 mg/dL | 130–159 mg/dL | ≥160 mg/dL |
| HDL-C (men) | ≥40 mg/dL | 35–39 mg/dL | <35 mg/dL |
| HDL-C (women) | ≥50 mg/dL | 45–49 mg/dL | <45 mg/dL |
| Triglycerides | <150 mg/dL | 150–199 mg/dL | ≥200 mg/dL |
| TG — very high | — | — | ≥500 mg/dL (pancreatitis risk) |
| Total Cholesterol | <200 mg/dL | 200–239 mg/dL | ≥240 mg/dL |
ADA 2026 states: LDL-lowering pharmacotherapy is recommended for ALL adults aged 40–75 with diabetes, regardless of baseline LDL-C level.
| Situation | When to Screen |
|---|---|
| Newly diagnosed DM | At diagnosis (after glycemia improves) |
| Not on statin / lipid therapy | Annually |
| On statin or lipid therapy | At initiation → repeat at 4–12 weeks → then annually |
| Type | Screening Recommendation |
|---|---|
| Type 1 DM | Soon after diagnosis (age ≥2 years); if LDL-C ≤100 → recheck at 9–11 years, then every 3 years |
| Type 2 DM | Soon after diagnosis, then annually |
Non-HDL-C is the preferred screening marker in children — more predictive than LDL-C for persistent dyslipidemia and atherosclerosis.
| Test | Purpose |
|---|---|
| Total cholesterol | Overall screening |
| LDL-C | Primary treatment target |
| HDL-C | Protective factor; low HDL = independent risk |
| Triglycerides | Assess 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 |
| HbA1c | Glycemic control — input into PREVENT-ASCVD risk score |
| eGFR + uACR | CKD staging — affects risk category and drug dosing |
| Fasting glucose | Metabolic risk assessment |
| LFTs (FIB-4) | Baseline before statin; metabolic-associated steatotic liver disease |
Presence of prediabetes with any of these lipid findings should prompt comprehensive CV risk factor screening immediately — not waiting for T2DM diagnosis.
| Risk Category | LDL-C | Non-HDL-C | ApoB |
|---|---|---|---|
| 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 | — |
| ✅ Criterion | Cut-off |
|---|---|
| LDL-C above goal for risk tier | >70 or >55 mg/dL depending on risk |
| Non-HDL-C ≥130 mg/dL | Above goal |
| TG ≥150 mg/dL | Hypertriglyceridemia |
| HDL-C <40 mg/dL (men) / <50 mg/dL (women) | Low HDL |
| Total Cholesterol ≥200 mg/dL | Hypercholesterolemia |
| LDL-C ≥190 mg/dL | Consider familial hypercholesterolemia |
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
| Timepoint | Action |
|---|---|
| 4–12 weeks after initiation / dose change | Repeat fasting lipid panel; assess % LDL-C reduction; check adherence |
| Every 6–12 months once at goal | Ongoing lipid monitoring; assess tolerability; reinforce lifestyle |
| Annually | Reassess 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.
| Test | Goal |
|---|---|
| LDL-C | Per risk tier (<55 / <70 / <100 mg/dL) |
| Non-HDL-C | Per 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 |
| Test | When | Purpose |
|---|---|---|
| LFTs | If symptomatic | Statin hepatotoxicity (routine monitoring not needed) |
| CK | If myalgia present | Rule out myopathy / rhabdomyolysis |
| HbA1c | Annually | Statin-induced new-onset DM monitoring |
| eGFR / Creatinine | Annually | CKD progression; drug dose adjustment |
| Fasting glucose | Annually | Metabolic status |
| uACR | Annually | DM patients — renal risk |
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.
| Current Therapy | Next Step |
|---|---|
| High-intensity statin alone | Add ezetimibe 10 mg |
| Statin + ezetimibe | Add PCSK9 inhibitor (evolocumab / alirocumab) |
| Statin intolerant | Switch to bempedoic acid ± ezetimibe |
| Still not at goal | Add 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.
| Side Effect | Monitoring | Action |
|---|---|---|
| Myalgia (muscle pain, no CK rise) | Ask at every visit | Dose reduce / switch statin |
| Myopathy (CK >10× ULN) | CK if symptomatic | Stop statin immediately |
| New-onset diabetes | HbA1c / fasting glucose annually | Continue statin (benefit > risk); optimize glycemia |
| LFT elevation | Only if symptomatic | Recheck; stop if >3× ULN persistent |
| Domain | Questions 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?" |
| Population | Key Follow-Up Point |
|---|---|
| Diabetes (T2DM) | Monitor HbA1c + lipids together; SGLT2i / GLP-1 may improve both |
| CKD | Adjust drug doses at each visit; monitor eGFR closely |
| Elderly ≥75 yrs | Assess falls risk, polypharmacy, muscle symptoms at every visit |
| Post-ACS | First lipid check 4–6 weeks after discharge; target LDL-C <55 aggressively |
| FH patients | Check cascade screening completed in family members |
| Hypertriglyceridemia | Recheck TG 4–6 weeks after fibrate / EPA initiation |
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
| Timepoint | Action |
|---|---|
| At initiation | Baseline lipid panel, LFTs, CK, HbA1c, eGFR |
| 4–12 weeks after starting/changing therapy | Repeat lipid panel — assess % reduction + absolute goal |
| Every 6–12 months once at goal | Lipid panel + tolerability + lifestyle review |
| Annually | Reassess CV risk; intensify if goals not met |
| Parameter | Target |
|---|---|
| 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 |
Statin alone → Add Ezetimibe
Statin + Ezetimibe → Add PCSK9 inhibitor
Statin intolerant → Bempedoic acid ± Ezetimibe
Still not at goal → Refer to Lipid Specialist
"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
| Follow-Up Point | AHA 2026 Source |
|---|---|
| Repeat lipid panel 4–12 weeks after starting or changing therapy | Class I, AHA 2026 |
| Repeat every 6–12 months once stable at goal | Class I, AHA 2026 |
| Target ≥50% LDL-C reduction from baseline | AHA 2026 — restored alongside absolute goals |
| LDL-C goals <55 / <70 / <100 by risk category | AHA 2026 — reinstated (was removed in 2018) |
| Escalation: statin → ezetimibe → PCSK9i | AHA 2026 treatment algorithm |
| PCSK9i no longer strictly sequential — add based on LDL-C gap | AHA 2026 — new change from 2018 |
| Refer to lipid specialist if not at goal on triple therapy | AHA 2026 |
| CAC = 0 → defer pharmacotherapy | AHA 2026 — expanded CAC role |
| Non-fasting lipid panel acceptable for most monitoring | AHA 2026 |
| Point | Source |
|---|---|
| Lipid panel at initiation of statin then 4–12 weeks → annually | ADA 2026 Standards of Care (Section 10.17) |
| Annual HbA1c + glucose monitoring for statin-induced DM | ADA 2026 |
| eGFR monitoring for drug dosing in DM patients | ADA 2026 |
| LDL-lowering recommended in ALL adults 40–75 with DM regardless of LDL-C level | ADA 2026 |
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
This is the single most important test. Do this first in every patient.
| Test | What It Measures | Normal 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-C | All 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
| Test | Why You Need It |
|---|---|
| Fasting glucose / HbA1c | Check for diabetes (major risk factor) |
| eGFR / Creatinine | Check 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) |
| hsCRP | Inflammation marker — helps reclassify borderline risk |
| Blood pressure | Measured at same visit — major CV risk factor |
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
CAC = Coronary Artery Calcium Score
🫀 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 Score | What It Means | What to Do |
|---|---|---|
| 0 | ✅ No calcium = arteries very clean = very low near-term risk | Defer statin — lifestyle changes only; recheck in 5–7 years |
| 1–99 | ⚠️ Small amount of plaque forming | Start thinking about treatment — LDL-C goal <100 mg/dL |
| 100–999 or ≥75th percentile | 🔶 Significant plaque present | Start statin — LDL-C goal <70 mg/dL |
| ≥ 1000 | 🔴 Very heavy plaque burden | Aggressive treatment — LDL-C goal <55 mg/dL |
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
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.
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).
| Type | What's Elevated | TG | LDL | Key Feature |
|---|---|---|---|---|
| I | Chylomicrons | ↑↑↑↑ | Normal | Rare; pancreatitis; milky blood |
| IIa | LDL | Normal | ↑↑ | FH; tendon xanthomas; heart attacks |
| IIb | LDL + VLDL | ↑ | ↑ | Combined; very common genetic type |
| III | IDL remnants | ↑↑ | ↑↑ (equal) | Palmar xanthomas; ApoE2/E2 |
| IV | VLDL | ↑↑ | Normal | Most common; DM/obesity related |
| V | VLDL + Chylomicrons | ↑↑↑↑ | Low | Pancreatitis danger |
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
| Priority | Type | Why |
|---|---|---|
| ⭐⭐⭐ | Type IIa | Most common; FH; highest heart disease risk |
| ⭐⭐⭐ | Type IIb | Very common; combined hyperlipidemia |
| ⭐⭐ | Type IV | Common; linked to DM + obesity |
| ⭐ | Type III | Rare but distinctive; palmar xanthomas |
| ⭐ | Type I / V | Rare; 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
| Test | Finding in HTG-Pancreatitis |
|---|---|
| Serum TG | ≥500 mg/dL (often >1000–2000 mg/dL) |
| Serum amylase / lipase | >3× upper limit of normal |
| Blood glucose | Often very high (DM trigger) |
| Serum calcium | Check — hypocalcemia in severe pancreatitis |
| WBC | Elevated — inflammatory response |
| LFTs | Rule out gallstone pancreatitis |
| Ultrasound abdomen | Rule 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.
| Mild | Moderate | Severe |
|---|---|---|
| No organ failure | Transient organ failure | Persistent organ failure >48h |
| Managed in ward | Close monitoring | ICU admission |
This is the #1 treatment — adequate fluids prevent pancreatic necrosis.
⚠️ Avoid IV lipid emulsions (TPN with lipids) — will worsen hypertriglyceridemia.
| Drug | Dose | Route |
|---|---|---|
| Morphine or Hydromorphone | Titrate to pain | IV |
| Ketorolac | 15–30 mg q6h | IV |
| Avoid NSAIDs if AKI present | — | — |
| Trigger | Action |
|---|---|
| Uncontrolled Diabetes | IV insulin + glucose monitoring; optimize glycemic control |
| Alcohol excess | Strict abstinence; thiamine supplementation |
| Offending drug (thiazide, estrogen, isotretinoin) | Stop immediately |
| Hypothyroidism | Start thyroxine replacement |
| Obesity | Dietary counseling after recovery |
| Parameter | Frequency |
|---|---|
| Vital signs (BP, HR, RR, Temp) | Every 1–4 hours |
| Urine output | Hourly |
| Blood glucose | Every 1–2 hours (on insulin) |
| Serum TG | Every 12–24 hours until <500 mg/dL |
| Electrolytes (Na, K, Ca, Mg) | Every 6–12 hours |
| Renal function (Cr, BUN) | Daily |
| FBC, CRP | Daily |
| Amylase / Lipase | Every 24–48 hours |
| Action | Detail |
|---|---|
| Fenofibrate | Start once eating — long-term TG reduction 30–50% |
| Omega-3 (EPA 4g/day) | Adjunct TG lowering |
| Strict alcohol abstinence | Mandatory — alcohol is major trigger |
| Very low fat diet | <10–15% of calories from fat initially |
| No sugary drinks / fructose | Fructose → ↑ hepatic TG production |
| Treat DM aggressively | SGLT2i + GLP-1 agonists also lower TG |
| Avoid offending drugs | No thiazides, estrogens, beta-blockers if alternatives exist |
| Monitor TG regularly | Monthly initially → every 3–6 months when stable |
| Target TG | <500 mg/dL (prevent recurrence) ideally <150 mg/dL |
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
| System | Unit | Used In |
|---|---|---|
| Conventional | mg/dL (milligrams per deciliter) | USA, some parts of Asia, Middle East |
| SI Units | mmol/L (millimoles per litre) | Europe, UK, Canada, Australia, most of the world |
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)
| mg/dL | mmol/L | Interpretation |
|---|---|---|
| <200 | <5.17 | Desirable |
| 200–239 | 5.17–6.18 | Borderline high |
| ≥240 | ≥6.21 | High |
| mg/dL | mmol/L | Interpretation |
|---|---|---|
| <55 | <1.4 | Very high risk goal (AHA 2026) |
| <70 | <1.8 | High risk goal |
| <100 | <2.6 | Optimal / intermediate risk goal |
| 100–129 | 2.6–3.34 | Near optimal |
| 130–159 | 3.36–4.11 | Borderline high |
| 160–189 | 4.14–4.89 | High |
| ≥190 | ≥4.91 | Very high — consider FH |
| mg/dL | mmol/L | Interpretation |
|---|---|---|
| <40 (men) | <1.03 | Low — risk factor |
| <50 (women) | <1.29 | Low — risk factor |
| 40–59 | 1.03–1.52 | Acceptable |
| ≥60 | ≥1.55 | High — protective |
| mg/dL | mmol/L | Interpretation |
|---|---|---|
| <150 | <1.69 | Normal |
| 150–199 | 1.69–2.25 | Borderline high |
| 200–499 | 2.26–5.63 | High |
| ≥500 | ≥5.64 | Very high — pancreatitis risk |
| ≥1000 | ≥11.29 | Severe — high pancreatitis danger |
| mg/dL | mmol/L | Interpretation |
|---|---|---|
| <130 | <3.36 | Optimal (general) |
| <100 | <2.59 | High risk goal |
| <85 | <2.20 | Very high risk goal (AHA 2026) |
| Parameter | mg/dL | mmol/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) has two different units and this causes confusion:
| Unit | Normal | High 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.
| Unit | Normal | Goal (Very High Risk) |
|---|---|---|
| mg/dL | <90 mg/dL | <65 mg/dL |
| g/L | <0.9 g/L | <0.65 g/L |
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 = Total Cholesterol ÷ HDL-C
TC/HDL-C ratio = just a plain number — no mg/dL, no mmol/L
| Patient | TC | HDL-C | Ratio |
|---|---|---|---|
| Person A | 200 mg/dL | 50 mg/dL | 200 ÷ 50 = 4.0 ✅ Good |
| Person B | 240 mg/dL | 40 mg/dL | 240 ÷ 40 = 6.0 ❌ High risk |
| Person C | 180 mg/dL | 60 mg/dL | 180 ÷ 60 = 3.0 ✅ Excellent |
| Ratio | Interpretation |
|---|---|
| < 3.5 | Excellent — very low risk |
| < 5.0 | Acceptable — average or below average risk |
| 5.0 | Average risk (US population average) |
| 5.0 – 7.0 | Above average risk — consider treatment |
| > 7.0 | High risk — action needed |
| > 9.0 | Very high risk — aggressive treatment |
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
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
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
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.
Statins can cause muscle damage as a side effect. CK tells us how bad the muscle damage is.
| Condition | Symptoms | CK Level |
|---|---|---|
| Myalgia | Muscle aches, pain — no damage | Normal CK |
| Myopathy | Muscle weakness + pain | CK >10× normal |
| Rhabdomyolysis | Severe muscle breakdown — dangerous | CK >40× normal |
| CK Level | Meaning | Action |
|---|---|---|
| Normal (<200 U/L) | No muscle damage | Continue statin; reassure patient |
| >3× normal with no symptoms | Mild elevation | Monitor; recheck in 4–6 weeks |
| >10× normal (Myopathy) | Significant muscle damage | Stop statin immediately |
| >40× normal (Rhabdomyolysis) | Severe — kidney failure risk | Stop statin + admit to hospital + IV fluids urgently |
When massive muscle breakdown occurs: Muscle releases myoglobin → enters kidney tubules → blocks them → Acute Kidney Injury (AKI)
This is a medical emergency — IV fluids must be given urgently to flush the kidneys.
| Cause | Why CK Goes Up |
|---|---|
| Heavy exercise | Muscle fibers tear during exercise |
| Hypothyroidism | Slowed metabolism → muscle damage |
| Trauma / falls | Direct muscle injury |
| IM injection | Needle damages muscle |
| Heart attack (MI) | CK-MB subtype released from cardiac muscle |
| Alcohol excess | Toxic to muscle cells |
| Inflammatory myopathy | Autoimmune muscle disease |
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
| Group | Normal Range |
|---|---|
| Adult males | 55 – 170 U/L |
| Adult females | 30 – 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
No — we do NOT check CK in every patient. CK is only checked in specific situations.
| Check Baseline CK If Patient Has | Why |
|---|---|
| Personal history of muscle disease | Already at risk |
| Family history of myopathy | Genetic muscle vulnerability |
| Previous statin-related muscle symptoms | Had 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 excess | Toxic to muscles already |
| Elderly patients (>75 years) | More vulnerable to statin side effects |
| High-intensity statin being started | Higher dose = higher risk |
Healthy young/middle-aged patient with no risk factors starting a statin → NO baseline CK needed
Do NOT routinely check CK at every follow-up visit. Only check if patient complains of:
No symptoms = No CK check needed
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
| Patient Type | Baseline CK | Routine CK | CK 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 |
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
Lp(a) is like a double-threat particle:
- Acts like LDL → enters artery wall → causes plaque
- Also blocks clot breakdown → promotes thrombosis
| Unit | What It Measures |
|---|---|
| nmol/L | Number of Lp(a) particles — preferred by AHA 2026 |
| mg/dL | Weight 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.
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
Patient's ASCVD risk gets reclassified upward
This level carries independent ASCVD risk regardless of LDL-C
| Action | Detail |
|---|---|
| Reclassify to higher risk tier | Push risk category up by one level |
| Intensify LDL-C lowering | Lower LDL-C more aggressively to compensate |
| PCSK9 inhibitor | Reduces Lp(a) by ~20–25% as side benefit |
| Cascade screening | Test first-degree family members |
| Aspirin discussion | Anti-thrombotic benefit vs bleeding risk |
| Lifestyle | Cannot lower Lp(a) but reduces overall CV risk |
Because currently there is no approved drug that specifically targets Lp(a) with proven CV outcome benefit yet.
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
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.
| Lp(a) Level | Action |
|---|---|
| <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.
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.
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 Checked | Name |
|---|---|
| Left main | LM |
| Left anterior descending | LAD |
| Left circumflex | LCx |
| Right coronary artery | RCA |
| CAC Score | What It Means | LDL-C Goal | Action |
|---|---|---|---|
| 0 | No calcium = clean arteries | Defer statin | Lifestyle only; recheck in 5–7 years |
| 1–99 | Small early deposits | <100 mg/dL | Consider moderate statin |
| 100–999 or ≥75th %ile for age/sex | Significant deposits | <70 mg/dL | Start high-intensity statin |
| ≥1000 | Heavy calcium burden | <55 mg/dL | Aggressive treatment — treat like established ASCVD |
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.
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
| Situation | Why CAC Helps |
|---|---|
| Borderline PREVENT risk (5–7.5%) | Clarifies if statin is needed |
| Patient reluctant to start statin | CAC = 0 reassures; high CAC motivates |
| Intermediate risk (7.5–20%) — unsure | Reclassify up or down |
| Family history of early heart disease | May find early subclinical disease |
| Diabetes, no ASCVD yet | Helps determine how aggressive to be |
| Incidental calcium found on other CT | Should trigger lipid management review |
| Situation | Reason |
|---|---|
| Already on statin | Decision 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 years | CAC = 0 expected; low yield |
| Pregnancy | Radiation exposure — contraindicated |
| Sex | Minimum Age for CAC |
|---|---|
| Men | ≥ 40 years |
| Women | ≥ 45 years |
Below these ages, CAC = 0 is expected and not informative.
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
CAC is ordered when the treatment decision is uncertain — it helps the doctor decide whether to start, defer, or intensify lipid-lowering therapy.
| Situation | Reason |
|---|---|
| Already on statin therapy | Decision 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 |
| Pregnancy | Radiation — contraindicated |
| Already decided to start statin | No point scanning — treat and monitor |
| Indication | AHA 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 |
"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 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
| Finding | Fredrickson Type |
|---|---|
| TG >1000 + creamy plasma + no chylomicron clearance | Type I |
| TG 500–1000 + VLDL elevated + common causes (DM, obesity) | Type IV |
| TG >1000 + VLDL + chylomicrons both elevated | Type V |
| Patient Scenario | Fredrickson Type | Why Use It |
|---|---|---|
| TG >1000, recurrent pancreatitis | Type I or V | Dietary vs drug treatment decision |
| LDL-C ≥190, tendon xanthomas, young MI | Type IIa | Confirm FH, cascade screening, PCSK9i |
| LDL-C + TG both high, family mixed history | Type IIb | FCH — combined treatment needed |
| Palmar xanthomas, TC = TG equally high | Type III | Fibrate first-line, ApoE genotyping |
| TG 500–1000, DM/obesity background | Type IV | Fibrate + lifestyle + treat secondary cause |
| Young pancreatitis, no alcohol, no stones | Type I or V | Genetic cause — specific diet/drug |
| Statin not working, LDL still very high | Type IIa or IIb | Intensify or add PCSK9i |
| Patient | Why Fredrickson Not Needed |
|---|---|
| Routine dyslipidemia, LDL mildly elevated | Standard treatment without classification |
| Borderline TG (150–300 mg/dL) | Lifestyle change — no type needed |
| Patient responding well to statin | Already at goal — no classification needed |
| Screening lipid panel — all mild abnormalities | Risk-based treatment is enough |
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
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
I ask about Frederickson
A system that classifies dyslipidemia by which lipoprotein particle is elevated. Gives each pattern a Type number (I to V).
| What is elevated | Chylomicrons |
| LDL | Normal |
| TG | ↑↑↑↑ (>1000 mg/dL) |
| Cause | LPL enzyme deficiency — genetic, very rare |
| Risk | Pancreatitis — NOT heart disease |
| Sign | Milky/creamy blood, eruptive xanthomas |
| Treatment | Ultra-low fat diet (<20g/day) — fibrates do NOT work |
| What is elevated | LDL only |
| TG | Normal |
| Cause | Familial Hypercholesterolemia (FH) — LDLR defect |
| Risk | Very high — early MI, stroke |
| Sign | Tendon xanthomas, corneal arcus <45 yrs, xanthelasma |
| Treatment | High-intensity statin + ezetimibe + PCSK9 inhibitor |
| What is elevated | LDL + VLDL (both) |
| TG | ↑ |
| LDL | ↑ |
| Cause | Familial Combined Hyperlipidemia (FCH) |
| Risk | High — premature ASCVD |
| Sign | No specific xanthomas |
| Treatment | Statin + fibrate OR statin + omega-3 |
| What is elevated | IDL / Remnant particles |
| TG | ↑↑ |
| TC | ↑↑ (TC = TG roughly equal) |
| Cause | ApoE2/E2 genotype — remnants not cleared |
| Risk | Early CAD + PAD together |
| Sign | Palmar xanthomas (yellow palm creases) — pathognomonic |
| Treatment | Fibrate first-line — responds dramatically |
| What is elevated | VLDL |
| TG | ↑↑ (200–999 mg/dL) |
| LDL | Normal or low |
| HDL | Low |
| Cause | DM, obesity, alcohol, metabolic syndrome |
| Risk | Moderate ASCVD + pancreatitis if TG very high |
| Sign | No specific xanthomas |
| Treatment | Fibrate + lifestyle + treat underlying cause |
| What is elevated | VLDL + Chylomicrons |
| TG | ↑↑↑↑ (>1000 mg/dL) |
| Cause | Genetic + secondary (DM + alcohol + obesity combined) |
| Risk | Severe pancreatitis danger |
| Sign | Eruptive xanthomas, lipemia retinalis |
| Treatment | Emergency TG lowering + fibrate + ultra-low fat diet |
| Type | Elevated Particle | LDL | TG | Key Feature | Treatment |
|---|---|---|---|---|---|
| I | Chylomicrons | Normal | ↑↑↑↑ | Milky blood, pancreatitis | Low fat diet only |
| IIa | LDL | ↑↑ | Normal | Tendon xanthomas, FH | Statin + PCSK9i |
| IIb | LDL + VLDL | ↑ | ↑ | Combined, common | Statin + fibrate |
| III | IDL remnants | ↑ | ↑↑ | Palmar xanthomas | Fibrate first |
| IV | VLDL | Normal | ↑↑ | DM/obesity related | Fibrate + lifestyle |
| V | VLDL + Chylomicrons | Low | ↑↑↑↑ | Pancreatitis danger | Fibrate + low fat |
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
| Priority | Type | Why |
|---|---|---|
| ⭐⭐⭐ | IIa | FH — most dangerous, highest heart disease risk |
| ⭐⭐⭐ | IIb | Most common genetic dyslipidemia |
| ⭐⭐⭐ | IV | Most common overall — DM/obesity driven |
| ⭐⭐ | III | Rare but unique treatment (fibrate first) |
| ⭐⭐ | I / V | Rare — mainly pancreatitis risk |
Fredrickson-Levy-Lees WHO Classification · AHA 2026
What fruits and vegetables need to take for dyslipidemia
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
| Fruit | Reason |
|---|---|
| Fruit juices (all types) | No fiber; pure fructose → ↑ TG |
| Dried fruits (dates, raisins) | Concentrated fructose → ↑ TG |
| Large portions of mango/banana | High sugar → ↑ TG if excess |
Rule: Eat whole fruit — not juice. Juice removes fiber and concentrates sugar.
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 | Best Fruits | Best Vegetables |
|---|---|---|
| ↓ LDL-C | Apple, pear, avocado, citrus | Okra, broccoli, carrots, beans, oats |
| ↓ TG | Berries, kiwi | Leafy greens, garlic, onion |
| ↑ HDL-C | Avocado, grapes | Garlic, olive oil (with salads) |
| ↓ Oxidized LDL | Berries, pomegranate, grapes | Tomatoes, spinach, kale |
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
| Food | Why |
|---|---|
| Fruit juices | No fiber; fructose → ↑ TG |
| Dried fruits in excess | High sugar → ↑ TG |
| Fried vegetables | Cooking oil adds saturated fat |
| Large grapefruit with statin | CYP3A4 interaction |
| Refined vegetable oils (palm, coconut) | Saturated fat → ↑ LDL-C |
"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
| Indication | Detail |
|---|---|
| Secondary prevention — all patients | Prior MI, stroke, ACS, PAD, coronary revascularization |
| Primary prevention — high risk | PREVENT-ASCVD ≥7.5% + risk enhancers |
| Diabetes (T1 or T2) age 40–75 | Regardless of LDL-C level |
| LDL-C ≥190 mg/dL | Familial hypercholesterolemia |
| CKD stage 3–4 | High CV risk — statin indicated |
| Post-ACS | Start before discharge — high intensity |
| Subclinical atherosclerosis (CAC ≥100) | Primary prevention with evidence of disease |
| HIV patients | ESC 2025 — statin recommended |
| Cancer therapy patients (cardio-oncology) | ESC 2025 — statin recommended |
| Contraindication | Type |
|---|---|
| Active liver disease | Absolute |
| Unexplained persistent LFT elevation >3× ULN | Absolute |
| Pregnancy | Absolute — teratogenic (Category X) |
| Breastfeeding | Absolute |
| Known hypersensitivity to statin | Absolute |
| Active rhabdomyolysis | Absolute — stop immediately |
| Severe myopathy (CK >10× ULN) | Absolute — stop statin |
| Situation | Reason |
|---|---|
| CKD stage 5 / dialysis | Dose 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 antibiotics | CYP3A4 inhibition → ↑ statin levels |
| — Large grapefruit juice | CYP3A4 inhibition — atorva/simvastatin |
| Statin | Special Note |
|---|---|
| Rosuvastatin | Not significantly metabolized by CYP3A4 — fewer interactions |
| Pravastatin | Safest in transplant patients, HIV, liver disease |
| Simvastatin | Most interactions — avoid >40 mg with many drugs |
| Atorvastatin | Avoid large grapefruit; most widely used |
| Indication | Detail |
|---|---|
| LDL-C goal not met on maximum tolerated statin | Add-on therapy |
| Statin intolerance | Used alone or with bempedoic acid |
| FH — not at goal on statin | Add before PCSK9i step |
| Post-ACS — early combination | ESC 2025 fire-to-target |
| CKD patients | Safe — not renally cleared |
| Elderly | Well tolerated — few interactions |
| Sitosterolemia (phytosterolemia) | Ezetimibe specifically reduces plant sterol absorption |
| Contraindication | Type |
|---|---|
| Active liver disease | Absolute (when combined with statin) |
| Pregnancy | Absolute |
| Breastfeeding | Absolute |
| Hypersensitivity to ezetimibe | Absolute |
| Situation | Reason |
|---|---|
| Moderate-severe hepatic impairment | Not recommended |
| Cyclosporin use | ↑ ezetimibe levels — monitor |
| Fibrates (gemfibrozil) | ↑ ezetimibe levels — use with caution |
| Indication | Detail |
|---|---|
| Very high risk not at LDL-C goal on statin + ezetimibe | Primary indication |
| Familial Hypercholesterolemia (HeFH) | LDL-C not controlled on max statin |
| Homozygous FH (HoFH) | Evolocumab approved for HoFH |
| Statin intolerance — very high risk | Used without statin if needed |
| High Lp(a) (≥125 nmol/L) | PCSK9i reduces Lp(a) ~20–25% as benefit |
| Post-ACS — very high risk | Start at discharge if LDL-C goal not met |
| Secondary prevention — recurrent events | Most aggressive treatment needed |
| Contraindication | Type |
|---|---|
| Hypersensitivity to drug or excipients | Absolute |
| Pregnancy | Absolute — insufficient safety data |
| Breastfeeding | Absolute |
| Situation | Reason |
|---|---|
| Severe hepatic impairment | Limited data |
| Latex allergy | Some prefilled pens contain latex — check device |
| Indication | Detail |
|---|---|
| Statin intolerance — primary indication | Multiple statins failed due to myalgia |
| Cannot tolerate any statin dose | Used alone or with ezetimibe |
| LDL-C goal not met — add-on to ezetimibe | When statin not tolerated |
| Primary prevention — high risk, statin intolerant | CLEAR Outcomes trial evidence |
| Secondary prevention — statin intolerant | CV event reduction proven |
| Contraindication | Type |
|---|---|
| Active gout | Absolute — bempedoic acid raises uric acid |
| Pregnancy | Absolute |
| Breastfeeding | Absolute |
| Hypersensitivity to drug | Absolute |
| Situation | Reason |
|---|---|
| History of gout | Monitor uric acid closely |
| Hyperuricemia (elevated uric acid) | Worsens uric acid levels |
| Tendon disease / history of tendon rupture | Rare tendon rupture reported |
| Simvastatin or pravastatin use | Bempedoic acid ↑ statin levels — cap simvastatin at 20 mg, pravastatin at 40 mg |
| Severe renal impairment | Limited data |
| Severe hepatic impairment | Not recommended |
| Indication | Detail |
|---|---|
| Very high risk not at LDL-C goal | Second-line after PCSK9 mAb |
| PCSK9 mAb not tolerated or accessible | Alternative with same mechanism |
| Adherence issues with frequent injections | Dosing only twice yearly after loading |
| FH not at goal on statin + ezetimibe | Add-on therapy |
| Secondary prevention — LDL-C not controlled | When other options exhausted or unavailable |
| Contraindication | Type |
|---|---|
| Pregnancy | Absolute |
| Breastfeeding | Absolute |
| Hypersensitivity to inclisiran | Absolute |
| Situation | Reason |
|---|---|
| Severe renal impairment (eGFR <30) | Limited data — use cautiously |
| Severe hepatic impairment | Not recommended |
| Indication | Detail |
|---|---|
| TG ≥500 mg/dL — primary indication | Prevent acute pancreatitis |
| TG 200–499 mg/dL + high CV risk | Adjunct to statin |
| Fredrickson Type III (Dysbetalipoproteinemia) | First-line — fibrate specifically |
| Fredrickson Type IV | First-line for TG reduction |
| Fredrickson Type V | Reduce pancreatitis risk |
| Low HDL-C + high TG | Fibrate improves both |
| Combined dyslipidemia (with statin) | Use fenofibrate — not gemfibrozil with statin |
| Contraindication | Type |
|---|---|
| Severe renal impairment (eGFR <15–30) | Absolute — fibrate accumulates → myopathy |
| Severe hepatic impairment | Absolute |
| Active gallbladder disease | Absolute — fibrates increase gallstone risk |
| Pregnancy | Absolute |
| Breastfeeding | Absolute |
| Hypersensitivity to fibrate | Absolute |
| Gemfibrozil + statin combination | Absolute — pharmacokinetic interaction → severe myopathy / rhabdomyolysis |
| Situation | Reason |
|---|---|
| CKD stage 3–4 | Dose reduce; monitor renal function |
| Anticoagulants (warfarin) | Fibrates potentiate warfarin → ↑ bleeding risk — reduce warfarin dose, monitor INR |
| Fenofibrate + statin | Generally safe — preferred combination over gemfibrozil + statin |
| Diabetes | Monitor glucose — fibrates may improve insulin sensitivity |
| Drug | With Statin | Renal Dosing | Notes |
|---|---|---|---|
| Fenofibrate | ✅ Safe | Dose adjust | Preferred with statins |
| Gemfibrozil | ❌ Avoid | Avoid in CKD | ↑↑ statin levels → myopathy |
| Bezafibrate | Caution | Dose adjust | Less common |
| Indication | Detail |
|---|---|
| TG 135–499 mg/dL + on statin | REDUCE-IT trial — ↓ MACE 25% (AHA 2026) |
| TG ≥500 mg/dL | TG lowering — adjunct to fibrate |
| High CV risk + residual hypertriglyceridemia | Despite statin therapy |
| Secondary prevention + elevated TG | Add-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.
| Contraindication | Type |
|---|---|
| Fish or shellfish allergy | Absolute |
| Hypersensitivity to omega-3 | Absolute |
| Pregnancy (high dose) | Caution — limited data at 4g dose |
| Situation | Reason |
|---|---|
| Anticoagulants (warfarin, apixaban) | ↑ bleeding risk at high doses — monitor |
| Atrial fibrillation history | REDUCE-IT showed slight ↑ AF risk with EPA |
| Hepatic impairment | Monitor LFTs |
| Indication | Detail |
|---|---|
| Homozygous FH (HoFH) — only indication | LDL-C not controlled on max statin + ezetimibe + PCSK9i |
| LDLR-null patients | Works even without functional LDL receptors |
| Contraindication | Type |
|---|---|
| Pregnancy | Absolute — teratogenic in animal studies |
| Breastfeeding | Absolute |
| Hypersensitivity to evinacumab | Absolute |
| Drug | Pregnancy | Liver Disease | Renal Failure | Gout | Myopathy |
|---|---|---|---|---|---|
| Statin | ❌ Absolute | ❌ Absolute | Caution/dose adjust | — | ❌ Stop if CK >10× |
| Ezetimibe | ❌ Absolute | Caution | ✅ Safe | — | — |
| PCSK9i | ❌ Absolute | Caution | ✅ Safe | — | — |
| Bempedoic acid | ❌ Absolute | ❌ Avoid | Caution | ❌ Absolute | — |
| Inclisiran | ❌ Absolute | ❌ Avoid | Caution eGFR<30 | — | — |
| Fibrate | ❌ Absolute | ❌ Absolute | ❌ Absolute eGFR<15 | — | Caution with statin |
| EPA (Omega-3) | Caution | Caution | ✅ Safe | — | — |
| Evinacumab | ❌ Absolute | Caution | ✅ Safe | — | — |
| Patient Scenario | First Choice | Add-on |
|---|---|---|
| All high/very high risk patients | Statin | Ezetimibe → PCSK9i |
| Statin intolerant | Bempedoic acid | ± Ezetimibe |
| TG ≥500 mg/dL | Fibrate | + Statin after TG controlled |
| TG 135–499 on statin | EPA 4g (Vascepa) | — |
| FH not at goal | Statin + Ezetimibe + PCSK9i | Evinacumab if HoFH |
| Very high risk — adherence issue | Inclisiran (q6 months) | — |
| Type III dyslipidemia | Fibrate (first-line) | + Statin later |
| Pregnancy with dyslipidemia | Diet only | Bile 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