MASTER PROMPT TEMPLATE β¨ Create a clean high-yield medical infographic poster for medical students preparing for neet pg about: CARDIOVASCULAR SYSTEM Style: modern medical infographic highly organized exam-focused visually memorable colorful but professional easy to review before exams include emojis/icons for memory aid use clear section boxes and arrows use concise bullet points use tables for comparisons use color-coded categories include important high-yield notes and warning signs make it aesthetically pleasing like premium study notes white background readable font structured like a study cheat sheet Must include: Definition Classification Causes / risk factors Pathophysiology Clinical features Diagnosis Management Complications Important investigations High-yield exam pearls Memory tricks / mnemonics Comparison tables if applicable
mkdir -p /tmp/workspace/heart-failure-poster && ls /tmp/workspace/
~/heart-failure-poster/heart_failure_poster.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heart Failure β NEET PG High-Yield Infographic</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background: #f5f5f5;
color: #1a1a2e;
font-size: 11px;
line-height: 1.5;
}
.page {
width: 1200px;
margin: 0 auto;
background: #ffffff;
padding: 20px 24px 28px;
}
/* βββ HEADER βββ */
.header {
background: linear-gradient(135deg, #1a1a5e 0%, #16213e 40%, #0f3460 80%, #533483 100%);
border-radius: 16px;
padding: 20px 28px;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 18px;
box-shadow: 0 6px 24px rgba(26,26,94,0.25);
}
.header-left h1 {
font-family: 'Poppins', sans-serif;
font-size: 32px;
font-weight: 800;
color: #fff;
letter-spacing: -0.5px;
}
.header-left h1 span { color: #f9ca24; }
.header-left p {
font-size: 12px;
color: #a8d8ea;
margin-top: 4px;
font-weight: 500;
}
.header-badges {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: flex-end;
}
.badge {
background: rgba(255,255,255,0.15);
color: #fff;
border: 1px solid rgba(255,255,255,0.3);
border-radius: 20px;
padding: 4px 12px;
font-size: 10px;
font-weight: 600;
backdrop-filter: blur(4px);
}
.badge.hot { background: rgba(249,202,36,0.25); border-color: #f9ca24; color: #f9ca24; }
/* βββ GRID βββ */
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin-bottom: 14px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 14px; margin-bottom: 14px; }
.grid-full { margin-bottom: 14px; }
.span-2 { grid-column: span 2; }
/* βββ CARDS βββ */
.card {
border-radius: 12px;
padding: 14px 16px;
border: 1.5px solid transparent;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 4px;
height: 100%;
border-radius: 12px 0 0 12px;
}
.card-blue { background: #eff6ff; border-color: #bfdbfe; } .card-blue::before { background: #2563eb; }
.card-green { background: #f0fdf4; border-color: #bbf7d0; } .card-green::before { background: #16a34a; }
.card-red { background: #fff1f2; border-color: #fecdd3; } .card-red::before { background: #dc2626; }
.card-purple { background: #faf5ff; border-color: #e9d5ff; } .card-purple::before { background: #7c3aed; }
.card-orange { background: #fff7ed; border-color: #fed7aa; } .card-orange::before { background: #ea580c; }
.card-teal { background: #f0fdfa; border-color: #99f6e4; } .card-teal::before { background: #0d9488; }
.card-yellow { background: #fefce8; border-color: #fde68a; } .card-yellow::before { background: #ca8a04; }
.card-pink { background: #fdf2f8; border-color: #f9a8d4; } .card-pink::before { background: #db2777; }
.card-indigo { background: #eef2ff; border-color: #c7d2fe; } .card-indigo::before { background: #4f46e5; }
.card-dark { background: #1e293b; border-color: #334155; color: #f8fafc; }
.card-dark::before { background: #f9ca24; }
/* βββ SECTION TITLES βββ */
.section-title {
font-family: 'Poppins', sans-serif;
font-size: 11.5px;
font-weight: 700;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 6px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.section-title .icon { font-size: 14px; }
.card-blue .section-title { color: #1d4ed8; }
.card-green .section-title { color: #15803d; }
.card-red .section-title { color: #b91c1c; }
.card-purple .section-title { color: #6d28d9; }
.card-orange .section-title { color: #c2410c; }
.card-teal .section-title { color: #0f766e; }
.card-yellow .section-title { color: #92400e; }
.card-pink .section-title { color: #be185d; }
.card-indigo .section-title { color: #3730a3; }
.card-dark .section-title { color: #f9ca24; }
/* βββ LISTS βββ */
ul.dot-list { list-style: none; padding: 0; }
ul.dot-list li {
padding: 2px 0 2px 14px;
position: relative;
font-size: 10.5px;
color: #374151;
}
ul.dot-list li::before {
content: 'βΈ';
position: absolute;
left: 0;
color: #6b7280;
font-size: 9px;
top: 3px;
}
.card-dark ul.dot-list li { color: #e2e8f0; }
.card-dark ul.dot-list li::before { color: #f9ca24; }
/* βββ TABLES βββ */
table.info-table {
width: 100%;
border-collapse: collapse;
font-size: 10px;
margin-top: 4px;
}
table.info-table th {
padding: 5px 8px;
font-weight: 700;
text-align: left;
font-size: 9.5px;
text-transform: uppercase;
letter-spacing: 0.3px;
}
table.info-table td {
padding: 4px 8px;
border-bottom: 1px solid rgba(0,0,0,0.05);
vertical-align: top;
line-height: 1.4;
}
table.info-table tr:last-child td { border-bottom: none; }
.th-blue { background: #dbeafe; color: #1e3a8a; }
.th-green { background: #dcfce7; color: #14532d; }
.th-red { background: #fee2e2; color: #7f1d1d; }
.th-purple { background: #ede9fe; color: #4c1d95; }
.th-orange { background: #fed7aa; color: #7c2d12; }
.th-teal { background: #ccfbf1; color: #134e4a; }
.th-dark { background: #334155; color: #f8fafc; }
.tr-alt:nth-child(even) td { background: rgba(0,0,0,0.025); }
/* βββ TAGS/PILLS βββ */
.pill {
display: inline-block;
padding: 2px 9px;
border-radius: 20px;
font-size: 9.5px;
font-weight: 700;
margin: 2px 2px;
}
.pill-red { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.pill-blue { background: #dbeafe; color: #1d4ed8; border: 1px solid #93c5fd; }
.pill-green { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pill-orange { background: #ffedd5; color: #c2410c; border: 1px solid #fb923c; }
.pill-purple { background: #ede9fe; color: #6d28d9; border: 1px solid #c4b5fd; }
.pill-teal { background: #ccfbf1; color: #0f766e; border: 1px solid #5eead4; }
.pill-yellow { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.pill-pink { background: #fce7f3; color: #be185d; border: 1px solid #f9a8d4; }
/* βββ HIGHLIGHT BOXES βββ */
.highlight-box {
border-radius: 8px;
padding: 8px 12px;
margin-top: 8px;
font-size: 10px;
font-weight: 600;
display: flex;
align-items: flex-start;
gap: 6px;
}
.hb-red { background: #fef2f2; border: 1.5px solid #ef4444; color: #b91c1c; }
.hb-yellow { background: #fefce8; border: 1.5px solid #eab308; color: #713f12; }
.hb-blue { background: #eff6ff; border: 1.5px solid #3b82f6; color: #1e3a8a; }
.hb-green { background: #f0fdf4; border: 1.5px solid #22c55e; color: #14532d; }
.warn-icon { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
/* βββ MNEMONIC BOXES βββ */
.mnemonic {
background: linear-gradient(135deg, #1e293b, #0f172a);
border-radius: 10px;
padding: 10px 14px;
margin-top: 8px;
color: #f8fafc;
}
.mnemonic .title {
font-family: 'Poppins', sans-serif;
font-size: 10px;
font-weight: 700;
color: #f9ca24;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 6px;
}
.mnemonic .letters { display: flex; flex-wrap: wrap; gap: 4px; }
.mnemonic .letter-block {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(249,202,36,0.3);
border-radius: 6px;
padding: 4px 8px;
font-size: 10px;
}
.mnemonic .letter-block strong { color: #f9ca24; font-size: 13px; display: block; }
/* βββ FLOWCHART βββ */
.flow {
display: flex;
align-items: center;
gap: 4px;
flex-wrap: wrap;
margin: 6px 0;
}
.flow-box {
background: #fff;
border: 1.5px solid currentColor;
border-radius: 8px;
padding: 4px 10px;
font-size: 9.5px;
font-weight: 600;
text-align: center;
}
.flow-arrow { font-size: 14px; color: #6b7280; }
/* βββ DRUG TABLE βββ */
.drug-tag {
display: inline-block;
background: #1e40af;
color: #fff;
border-radius: 4px;
padding: 1px 7px;
font-size: 9px;
font-weight: 700;
margin: 1px;
}
/* βββ PEARL BOX βββ */
.pearl {
background: linear-gradient(135deg, #f0fdf4, #dcfce7);
border: 2px solid #16a34a;
border-radius: 10px;
padding: 8px 12px;
margin-top: 6px;
position: relative;
}
.pearl::before {
content: 'π';
position: absolute;
top: -10px;
left: 10px;
font-size: 16px;
}
.pearl p { font-size: 10px; color: #14532d; line-height: 1.5; }
.pearl p strong { color: #166534; }
/* βββ FOOTER βββ */
.footer {
background: #1e293b;
border-radius: 10px;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 14px;
}
.footer p { color: #94a3b8; font-size: 9.5px; }
.footer strong { color: #f9ca24; }
/* βββ DIVIDER βββ */
.divider {
height: 3px;
background: linear-gradient(90deg, #2563eb, #7c3aed, #db2777, #ea580c, #16a34a);
border-radius: 2px;
margin: 14px 0;
}
/* βββ NUMBERED STEPS βββ */
.step {
display: flex;
gap: 8px;
align-items: flex-start;
padding: 4px 0;
}
.step-num {
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 9px;
font-weight: 800;
flex-shrink: 0;
}
.step-text { font-size: 10px; color: #374151; flex: 1; }
.sn-blue { background: #2563eb; color: #fff; }
.sn-green { background: #16a34a; color: #fff; }
.sn-orange { background: #ea580c; color: #fff; }
.sn-purple { background: #7c3aed; color: #fff; }
.sn-red { background: #dc2626; color: #fff; }
strong.accent { color: #2563eb; }
strong.red { color: #dc2626; }
strong.green { color: #16a34a; }
strong.purple { color: #7c3aed; }
strong.orange { color: #ea580c; }
.sub-head {
font-size: 10px;
font-weight: 700;
color: inherit;
margin: 6px 0 3px;
text-transform: uppercase;
letter-spacing: 0.3px;
opacity: 0.8;
}
</style>
</head>
<body>
<div class="page">
<!-- ββββββββββ HEADER ββββββββββ -->
<div class="header">
<div class="header-left">
<h1>π <span>HEART FAILURE</span> β High-Yield Master Sheet</h1>
<p>CARDIOVASCULAR SYSTEM | NEET PG / USMLE / MD Entrance | Based on Braunwald's, Goldman-Cecil, Goodman & Gilman's</p>
</div>
<div class="header-badges">
<span class="badge hot">π₯ HIGH YIELD</span>
<span class="badge">π Braunwald's</span>
<span class="badge">π Goldman-Cecil</span>
<span class="badge">π Goodman & Gilman</span>
</div>
</div>
<!-- ββββββββββ ROW 1: Definition + Classification ββββββββββ -->
<div class="grid-2">
<!-- DEFINITION -->
<div class="card card-blue">
<div class="section-title"><span class="icon">π</span> Definition</div>
<ul class="dot-list">
<li>Heart failure = clinical syndrome in which the heart <strong>cannot pump sufficient blood</strong> to meet the body's metabolic demands, OR can do so only at <strong>elevated filling pressures</strong></li>
<li>Not a diagnosis itself β it is the <strong>end result</strong> of many cardiac diseases</li>
<li>Affects ~26 million people worldwide; leading cause of hospitalization in adults >65 years</li>
</ul>
<div class="highlight-box hb-blue">
<span class="warn-icon">π‘</span>
<span><strong>Key concept:</strong> Cardiac output may be normal at rest but fails to increase with exertion β exercise intolerance is the hallmark symptom</span>
</div>
</div>
<!-- CLASSIFICATION BY EF -->
<div class="card card-purple">
<div class="section-title"><span class="icon">π</span> Classification by Ejection Fraction</div>
<table class="info-table">
<thead>
<tr><th class="th-purple">Type</th><th class="th-purple">EF</th><th class="th-purple">Mechanism</th><th class="th-purple">Key Feature</th></tr>
</thead>
<tbody class="tr-alt">
<tr><td><strong>HFrEF</strong><br><span style="font-size:9px;color:#6b7280">Reduced</span></td><td style="color:#b91c1c;font-weight:700">< 40%</td><td>Systolic dysfunction; β contractility</td><td>Dilated LV; most evidence-based drugs</td></tr>
<tr><td><strong>HFmrEF</strong><br><span style="font-size:9px;color:#6b7280">Mildly Reduced</span></td><td style="color:#d97706;font-weight:700">40β49%</td><td>Mixed systolic + diastolic</td><td>"Grey zone" β emerging therapies</td></tr>
<tr><td><strong>HFpEF</strong><br><span style="font-size:9px;color:#6b7280">Preserved</span></td><td style="color:#16a34a;font-weight:700">β₯ 50%</td><td>Diastolic dysfunction; β stiffness</td><td>Older women, HTN, DM; same mortality as HFrEF</td></tr>
</tbody>
</table>
<div class="highlight-box hb-yellow">
<span class="warn-icon">β οΈ</span>
<span>HFpEF mortality = HFrEF mortality. Hospitalization rates are comparable regardless of EF. (Goldman-Cecil)</span>
</div>
</div>
</div>
<!-- ββββββββββ ROW 2: NYHA + ACC/AHA Staging ββββββββββ -->
<div class="grid-2">
<!-- NYHA CLASSIFICATION -->
<div class="card card-orange">
<div class="section-title"><span class="icon">π</span> NYHA Functional Classification</div>
<table class="info-table">
<thead>
<tr><th class="th-orange">Class</th><th class="th-orange">Symptoms</th><th class="th-orange">Activity</th></tr>
</thead>
<tbody class="tr-alt">
<tr><td><span class="pill pill-green">Class I</span></td><td>No symptoms</td><td>Ordinary activity β no limitation</td></tr>
<tr><td><span class="pill pill-blue">Class II</span></td><td>Mild symptoms</td><td>Slight limitation; comfortable at rest</td></tr>
<tr><td><span class="pill pill-orange">Class III</span></td><td>Moderate symptoms</td><td>Marked limitation; comfortable only at rest</td></tr>
<tr><td><span class="pill pill-red">Class IV</span></td><td>Severe symptoms</td><td>Symptoms at rest; any activity causes discomfort</td></tr>
</tbody>
</table>
</div>
<!-- ACC/AHA STAGING -->
<div class="card card-teal">
<div class="section-title"><span class="icon">π</span> ACC/AHA Staging (2022 Guidelines)</div>
<table class="info-table">
<thead>
<tr><th class="th-teal">Stage</th><th class="th-teal">Description</th><th class="th-teal">Intervention</th></tr>
</thead>
<tbody class="tr-alt">
<tr><td><span class="pill pill-green">A</span></td><td>At risk β no structural disease, no symptoms</td><td>Modify risk factors (HTN, DM, obesity)</td></tr>
<tr><td><span class="pill pill-blue">B</span></td><td>Pre-HF β structural disease, no symptoms</td><td>Treat structural heart disease</td></tr>
<tr><td><span class="pill pill-orange">C</span></td><td>Symptomatic HF β structural disease + symptoms</td><td>Reduce morbidity & mortality</td></tr>
<tr><td><span class="pill pill-red">D</span></td><td>Advanced/Refractory HF β despite optimal therapy</td><td>Mechanical support, transplant, palliation</td></tr>
</tbody>
</table>
<div class="highlight-box hb-blue">
<span class="warn-icon">π‘</span>
<span>Stages are <strong>progressive and not reversible</strong> (unlike NYHA which is dynamic). ACC/AHA staging predicts prognosis.</span>
</div>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 3: Causes + Pathophysiology ββββββββββ -->
<div class="grid-2">
<!-- CAUSES -->
<div class="card card-red">
<div class="section-title"><span class="icon">π</span> Causes / Etiology</div>
<div class="sub-head">Most Common (>70% in developed world)</div>
<ul class="dot-list">
<li>π« <strong>Coronary artery disease</strong> / prior MI (most common β ~70%)</li>
<li>π©Ί <strong>Hypertension</strong> β pressure overload β LVH β HFpEF</li>
<li>π¬ <strong>Diabetes mellitus</strong> β diabetic cardiomyopathy</li>
<li>βοΈ <strong>Obesity</strong> β increased preload and afterload</li>
</ul>
<div class="sub-head" style="margin-top:8px">Other Causes (Remember CARDIAC)</div>
<div style="display:flex; flex-wrap:wrap; gap:4px; margin-top:4px;">
<span class="pill pill-red">Cardiomyopathy (DCM/HCM)</span>
<span class="pill pill-orange">Arrhythmias (AF, tachycardia-mediated)</span>
<span class="pill pill-blue">Rheumatic / Valvular disease</span>
<span class="pill pill-purple">Drugs (alcohol, anthracyclines)</span>
<span class="pill pill-teal">Infections (viral myocarditis)</span>
<span class="pill pill-pink">Amyloidosis / Infiltrative</span>
<span class="pill pill-green">Congenital Heart Disease</span>
<span class="pill pill-yellow">Thyroid disease</span>
</div>
</div>
<!-- PATHOPHYSIOLOGY -->
<div class="card card-indigo">
<div class="section-title"><span class="icon">βοΈ</span> Pathophysiology β 4 Interrelated Systems</div>
<div class="flow" style="margin-bottom:8px;">
<div class="flow-box" style="color:#2563eb; background:#eff6ff;">Cardiac Injury / Overload</div>
<div class="flow-arrow">β</div>
<div class="flow-box" style="color:#7c3aed; background:#faf5ff;">β Cardiac Output</div>
<div class="flow-arrow">β</div>
<div class="flow-box" style="color:#dc2626; background:#fff1f2;">Compensatory Activation</div>
<div class="flow-arrow">β</div>
<div class="flow-box" style="color:#b91c1c; background:#fee2e2;">Pathological Remodeling</div>
</div>
<table class="info-table">
<thead>
<tr><th class="th-purple">System</th><th class="th-purple">Mechanism</th><th class="th-purple">Net Effect</th></tr>
</thead>
<tbody class="tr-alt">
<tr><td>β€οΈ <strong>Heart</strong></td><td>Hypertrophy β fibrosis β apoptosis β remodeling</td><td>β contractility, arrhythmias</td></tr>
<tr><td>π©Έ <strong>Vasculature</strong></td><td>β afterload (stiffness), endothelial dysfunction</td><td>β wall stress, β Oβ demand</td></tr>
<tr><td>π« <strong>Kidney</strong></td><td>β renal perfusion β β RAAS β NaβΊ/HβO retention</td><td>Volume overload β congestion</td></tr>
<tr><td>π§ <strong>Neurohormonal</strong></td><td>β SNS, β RAAS, β ADH, β Endothelin</td><td>Initially beneficial β long-term harmful</td></tr>
</tbody>
</table>
<div class="highlight-box hb-blue">
<span class="warn-icon">π‘</span>
<span><strong>KEY PEARL:</strong> Pathological hypertrophy β β capillary/myocyte ratio β energy deficit β altered gene expression β fibrosis β heart failure (Goodman & Gilman)</span>
</div>
</div>
</div>
<!-- ββββββββββ ROW 4: Left vs Right HF ββββββββββ -->
<div class="grid-full">
<div class="card card-pink">
<div class="section-title"><span class="icon">βοΈ</span> Left-Sided vs Right-Sided Heart Failure β Comparison Table</div>
<table class="info-table">
<thead>
<tr><th class="th-red" style="width:18%">Feature</th><th class="th-red">LEFT Heart Failure (LHF)</th><th style="background:#fce7f3;color:#9d174d;">RIGHT Heart Failure (RHF)</th></tr>
</thead>
<tbody class="tr-alt">
<tr><td><strong>Common Cause</strong></td><td>MI, HTN, AS, MR, DCM</td><td>LHF (most common), COPD, Pulmonary HTN, RV MI</td></tr>
<tr><td><strong>Congestion</strong></td><td>π« Pulmonary β lungs, bronchi</td><td>π« Systemic β liver, gut, limbs</td></tr>
<tr><td><strong>Symptoms</strong></td><td>Dyspnea, orthopnea, PND, cardiac asthma, hemoptysis</td><td>Ankle edema, abdominal distension, anorexia, nausea</td></tr>
<tr><td><strong>Signs</strong></td><td>S3 gallop, basal crepitations, cardiomegaly, displaced apex</td><td>JVD, hepatomegaly, ascites, peripheral edema</td></tr>
<tr><td><strong>Chest X-ray</strong></td><td>Cardiomegaly, upper lobe diversion, Kerley B lines, pulmonary edema, pleural effusion</td><td>Right-sided cardiomegaly, clear lung fields (if isolated RHF)</td></tr>
<tr><td><strong>Key Investigation</strong></td><td>Echo: βLVEF; BNP ββ; ECG β LVH, LBBB</td><td>Echo: RV dilation; TR; elevated PA pressure</td></tr>
</tbody>
</table>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 5: Clinical Features + Diagnosis ββββββββββ -->
<div class="grid-2">
<!-- CLINICAL FEATURES -->
<div class="card card-green">
<div class="section-title"><span class="icon">π©Ί</span> Clinical Features</div>
<div class="sub-head">Symptoms (FORD mnemonic)</div>
<div class="mnemonic" style="padding:8px 12px; margin-top:4px; margin-bottom:8px;">
<div class="title">π§ FORD = Key Symptoms of HF</div>
<div class="letters">
<div class="letter-block"><strong>F</strong>atigue / weakness</div>
<div class="letter-block"><strong>O</strong>rthopnea (β₯2 pillows)</div>
<div class="letter-block"><strong>R</strong>ight-sided edema</div>
<div class="letter-block"><strong>D</strong>yspnea on exertion β at rest</div>
</div>
</div>
<div class="sub-head">Physical Examination Signs</div>
<ul class="dot-list">
<li>π <strong>S3 gallop</strong> β pathognomonic of volume overload / systolic HF (NEET favorite!)</li>
<li>π <strong>S4 gallop</strong> β diastolic dysfunction / HFpEF, stiff ventricle</li>
<li>π <strong>JVD</strong> β elevated central venous pressure (right HF)</li>
<li>π§ <strong>Pitting edema</strong> β bilateral ankle to presacral</li>
<li>π« <strong>Bibasilar crepitations</strong> (rales) β pulmonary congestion</li>
<li>π <strong>Displaced apex</strong> β laterally displaced beyond mid-clavicular line</li>
<li>π©Ί <strong>Pulsus alternans</strong> β severe LV dysfunction</li>
<li>π« <strong>Cheyne-Stokes breathing</strong> β severe/advanced HF</li>
</ul>
<div class="highlight-box hb-red">
<span class="warn-icon">β οΈ</span>
<span><strong>Paroxysmal Nocturnal Dyspnea (PND)</strong> β patient wakes from sleep with breathlessness, must sit up/stand; highly specific for left HF</span>
</div>
</div>
<!-- DIAGNOSIS -->
<div class="card card-blue">
<div class="section-title"><span class="icon">π¬</span> Diagnosis & Investigations</div>
<div class="sub-head">Step-by-Step Approach</div>
<div class="step"><div class="step-num sn-blue">1</div><div class="step-text"><strong>History & Physical Exam</strong> β dyspnea, orthopnea, edema, S3, JVD</div></div>
<div class="step"><div class="step-num sn-blue">2</div><div class="step-text"><strong>ECG</strong> β LVH, Q waves (prior MI), LBBB, AF, arrhythmias; helps determine CRT eligibility (LBBB >150ms)</div></div>
<div class="step"><div class="step-num sn-blue">3</div><div class="step-text"><strong>Chest X-Ray</strong> β Cardiomegaly (CTR >0.5), Kerley B lines, bat-wing pulmonary edema, upper lobe diversion, pleural effusion</div></div>
<div class="step"><div class="step-num sn-blue">4</div><div class="step-text"><strong>Echocardiogram</strong> β GOLD STANDARD; measures LVEF, wall motion, valves, diastolic function</div></div>
<div class="step"><div class="step-num sn-blue">5</div><div class="step-text"><strong>BNP / NT-proBNP</strong> β best initial biomarker; sensitivity ~95-99%; reduced by obesity, β by renal failure & age</div></div>
<div class="step"><div class="step-num sn-blue">6</div><div class="step-text"><strong>Labs</strong> β CBC, BMP, LFTs, TFTs, glucose, lipids, troponin, urinalysis</div></div>
<div class="highlight-box hb-yellow" style="margin-top:8px;">
<span class="warn-icon">β</span>
<div>
<strong>BNP PEARLS (NEET PG FAVORITE):</strong><br>
β’ BNP <100 pg/mL β HF unlikely<br>
β’ BNP >400 pg/mL β HF very likely<br>
β’ BNP 100β400 β grey zone (consider other causes)<br>
β’ Obesity β BNP levels (falsely low!)<br>
β’ Troponin β in acute HF β worse prognosis
</div>
</div>
</div>
</div>
<!-- ββββββββββ ROW 6: Management ββββββββββ -->
<div class="grid-full">
<div class="card card-dark">
<div class="section-title"><span class="icon">π</span> Management of Heart Failure β HFrEF (LVEF <40%)</div>
<table class="info-table" style="color:#f8fafc;">
<thead>
<tr>
<th class="th-dark">Drug Class</th>
<th class="th-dark">Drugs</th>
<th class="th-dark">Mechanism</th>
<th class="th-dark">LVEF Benefit</th>
<th class="th-dark">Key Contraindication / Note</th>
</tr>
</thead>
<tbody>
<tr style="border-bottom:1px solid rgba(255,255,255,0.08)">
<td><span class="pill pill-blue">ACE Inhibitor</span></td>
<td>Enalapril, Ramipril, Lisinopril</td>
<td>β Ang II β vasodilate + β remodeling</td>
<td style="color:#4ade80;font-weight:700">β EF, β survival</td>
<td>Avoid in bilateral renal artery stenosis, pregnancy; Dry cough β switch to ARB</td>
</tr>
<tr style="border-bottom:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.03)">
<td><span class="pill pill-purple">Beta-Blocker</span></td>
<td>Carvedilol, Metoprolol succinate, Bisoprolol</td>
<td>β SNS β anti-remodeling, anti-arrhythmic</td>
<td style="color:#4ade80;font-weight:700">β EF, β survival</td>
<td>START LOW, GO SLOW; avoid in acute decompensation</td>
</tr>
<tr style="border-bottom:1px solid rgba(255,255,255,0.08)">
<td><span class="pill pill-orange">MRA</span></td>
<td>Spironolactone, Eplerenone</td>
<td>Aldosterone antagonist β β fibrosis, β Na retention</td>
<td style="color:#4ade80;font-weight:700">β survival</td>
<td>Monitor KβΊ β risk of hyperkalemia; Spironolactone β gynecomastia</td>
</tr>
<tr style="border-bottom:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.03)">
<td><span class="pill pill-teal">ARNI</span></td>
<td>Sacubitril/Valsartan (Entresto)</td>
<td>Neprilysin inhibitor + ARB β β natriuretic peptides</td>
<td style="color:#4ade80;font-weight:700">Superior to ACEi</td>
<td>PARADIGM-HF trial; avoid with ACEi (36hr washout); CI in angioedema</td>
</tr>
<tr style="border-bottom:1px solid rgba(255,255,255,0.08)">
<td><span class="pill pill-green">SGLT2 Inhibitor</span></td>
<td>Dapagliflozin, Empagliflozin</td>
<td>Glucosuria β natriuresis + cardioprotective</td>
<td style="color:#4ade80;font-weight:700">β hospitalization</td>
<td>Works in both HFrEF and HFpEF (EMPEROR-Reduced/Preserved trials)</td>
</tr>
<tr style="border-bottom:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.03)">
<td><span class="pill pill-yellow">Diuretics</span></td>
<td>Furosemide (loop), Torsemide, Metolazone (thiazide)</td>
<td>β preload β symptom relief (fluid)</td>
<td style="color:#fbbf24;font-weight:700">Symptom only</td>
<td>No mortality benefit alone; Monitor electrolytes; Metolazone used for diuretic resistance</td>
</tr>
<tr style="background:rgba(255,255,255,0.03)">
<td><span class="pill pill-pink">Hydralazine + ISDN</span></td>
<td>Hydralazine + Isosorbide dinitrate</td>
<td>Vasodilator (arterial + venous)</td>
<td style="color:#4ade80;font-weight:700">β survival</td>
<td>First-line for HFrEF in Black patients (A-HeFT trial); use if ACEi/ARB not tolerated</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- ββββββββββ ROW 7: Device Therapy + HFpEF management ββββββββββ -->
<div class="grid-2">
<div class="card card-teal">
<div class="section-title"><span class="icon">π</span> Device Therapy (HFrEF)</div>
<table class="info-table">
<thead>
<tr><th class="th-teal">Device</th><th class="th-teal">Indication</th><th class="th-teal">Key Criteria</th></tr>
</thead>
<tbody class="tr-alt">
<tr><td><strong>ICD</strong><br>(Implantable Cardioverter Defibrillator)</td><td>Primary prevention of sudden cardiac death</td><td>EF β€ 35%, NYHA II-III, optimal medical therapy β₯3 months</td></tr>
<tr><td><strong>CRT</strong><br>(Cardiac Resynchronization Therapy)</td><td>Correct dyssynchrony in HF</td><td>EF β€ 35%, LBBB β₯150ms, NYHA II-IV, sinus rhythm</td></tr>
<tr><td><strong>CRT-D</strong></td><td>Both resynchronization + defibrillation</td><td>Combined criteria</td></tr>
<tr><td><strong>LVAD</strong></td><td>Stage D HF β bridge to transplant or destination therapy</td><td>EF <25%, severe symptoms despite max therapy</td></tr>
</tbody>
</table>
</div>
<div class="card card-orange">
<div class="section-title"><span class="icon">π₯</span> HFpEF Management & Acute Decompensation</div>
<div class="sub-head">HFpEF (EF β₯50%) β Limited evidence-based therapy</div>
<ul class="dot-list">
<li>π― Control underlying cause β HTN, DM, AF, obesity</li>
<li>π Diuretics β for symptom relief / fluid management</li>
<li>π SGLT2 inhibitors (Empagliflozin) β β hospitalization (EMPEROR-Preserved)</li>
<li>β οΈ ACEi / Beta-blockers β no clear mortality benefit in HFpEF</li>
</ul>
<div class="sub-head" style="margin-top:8px;">Acute Decompensated HF β LMNOP</div>
<div class="mnemonic" style="padding:8px 12px; margin-top:4px;">
<div class="title">π¨ LMNOP β Emergency Treatment</div>
<div class="letters">
<div class="letter-block"><strong>L</strong>asix (furosemide IV)</div>
<div class="letter-block"><strong>M</strong>orphine (anxiety, vasodilation)</div>
<div class="letter-block"><strong>N</strong>itrates (β preload)</div>
<div class="letter-block"><strong>O</strong>xygen (high-flow)</div>
<div class="letter-block"><strong>P</strong>ositioning (upright/sit)</div>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 8: Complications + Investigations ββββββββββ -->
<div class="grid-2">
<div class="card card-red">
<div class="section-title"><span class="icon">β οΈ</span> Complications</div>
<ul class="dot-list">
<li>π« <strong>Sudden Cardiac Death</strong> β most common cause of death in HF; VF/VT</li>
<li>π« <strong>Atrial Fibrillation</strong> β most common arrhythmia complicating HF; β stroke risk</li>
<li>π©Έ <strong>Cardiorenal Syndrome</strong> β β renal perfusion β AKI / CKD progression</li>
<li>π« <strong>Pulmonary Edema</strong> β acute decompensation, life-threatening</li>
<li>π« <strong>Pleural Effusion</strong> β more common on RIGHT side (if unilateral)</li>
<li>𦡠<strong>DVT / Pulmonary Embolism</strong> β stasis + hypercoagulability</li>
<li>π§ <strong>Cachexia</strong> β cardiac cachexia; β cytokines, β appetite</li>
<li>π©Ί <strong>Hepatic congestion</strong> β congestive hepatopathy β cardiac cirrhosis</li>
<li>π <strong>Drug toxicity</strong> β digoxin toxicity (hypokalemia precipitates)</li>
</ul>
</div>
<div class="card card-yellow">
<div class="section-title"><span class="icon">π§ͺ</span> Important Investigations Summary</div>
<table class="info-table">
<thead>
<tr><th class="th-orange">Investigation</th><th class="th-orange">Finding / Significance</th></tr>
</thead>
<tbody class="tr-alt">
<tr><td>π¬ <strong>BNP/NT-proBNP</strong></td><td>Best initial test; raised in all HF types; guides therapy</td></tr>
<tr><td>π· <strong>Echo (TTE)</strong></td><td>GOLD STANDARD β EF, wall motion, valves, diastology</td></tr>
<tr><td>π <strong>ECG</strong></td><td>LVH, Q waves, LBBB β guides device therapy</td></tr>
<tr><td>π« <strong>Chest X-Ray</strong></td><td>CTR >0.5, Kerley B lines, upper lobe diversion, bat-wing</td></tr>
<tr><td>π©Έ <strong>Troponin</strong></td><td>Elevated in acute HF β ongoing myocyte injury β β mortality</td></tr>
<tr><td>π« <strong>Renal function/electrolytes</strong></td><td>Baseline; monitor on diuretics/ACEi; eGFR for drug dosing</td></tr>
<tr><td>π¦ <strong>TSH</strong></td><td>Rule out thyroid cause (hypothyroid = DCM, hyperthyroid = AF/HF)</td></tr>
<tr><td>𧬠<strong>Cardiac MRI</strong></td><td>Best for cardiomyopathy characterization, viability, fibrosis</td></tr>
<tr><td>π©Ί <strong>Coronary angiography</strong></td><td>If ischemic etiology suspected; assess for revascularization</td></tr>
</tbody>
</table>
</div>
</div>
<!-- ββββββββββ ROW 9: High-Yield Pearls + Mnemonics ββββββββββ -->
<div class="grid-2">
<!-- PEARLS -->
<div class="card card-green">
<div class="section-title"><span class="icon">π</span> High-Yield Exam Pearls (NEET PG Favorites)</div>
<div class="pearl" style="margin-top:12px;">
<p><strong>PEARL 1:</strong> S3 gallop = PATHOGNOMONIC of systolic HF (volume overload). S4 = diastolic dysfunction / stiff ventricle.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 2:</strong> BNP is REDUCED in obesity (falsely low). INCREASED in renal failure, old age.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 3:</strong> Sacubitril/Valsartan (ARNI) is SUPERIOR to ACEi alone (PARADIGM-HF trial). Must have 36h washout period between ACEi β ARNI to prevent angioedema.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 4:</strong> Carvedilol (non-selective BB) is the only beta-blocker proven to reduce mortality in all 3 NYHA classes II, III, IV.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 5:</strong> Digoxin does NOT reduce mortality β only reduces hospitalizations and symptoms (DIG trial).</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 6:</strong> Pleural effusion in HF is more often <strong>RIGHT-sided</strong>; bilateral is common. Left-sided alone β think other cause.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 7:</strong> CRT indication = EF β€35% + LBBB β₯150ms + NYHA II-IV + sinus rhythm β improves EF, symptoms and survival.</p>
</div>
</div>
<!-- MNEMONICS -->
<div class="card card-purple">
<div class="section-title"><span class="icon">π§ </span> Memory Tricks & Mnemonics</div>
<div class="mnemonic" style="margin-bottom:10px;">
<div class="title">π« 4 PILLARS of HFrEF Treatment β "A-BODE"</div>
<div class="letters">
<div class="letter-block"><strong>A</strong>CEi / ARNI</div>
<div class="letter-block"><strong>B</strong>eta-Blocker</div>
<div class="letter-block"><strong>O</strong>ld β MRA (aldosterone)</div>
<div class="letter-block"><strong>D</strong>apagliflozin (SGLT2i)</div>
<div class="letter-block"><strong>E</strong>diuresis prn</div>
</div>
</div>
<div class="mnemonic" style="margin-bottom:10px;">
<div class="title">π¨ Causes of Acute Decompensation β "FAILURE"</div>
<div class="letters">
<div class="letter-block"><strong>F</strong>orgot medications</div>
<div class="letter-block"><strong>A</strong>rrhythmia / AF</div>
<div class="letter-block"><strong>I</strong>schemia / MI</div>
<div class="letter-block"><strong>L</strong>ifestyle (salt, fluid excess)</div>
<div class="letter-block"><strong>U</strong>pload (fluid overload IV)</div>
<div class="letter-block"><strong>R</strong>enal failure</div>
<div class="letter-block"><strong>E</strong>ndocrine (thyroid, DM)</div>
</div>
</div>
<div class="mnemonic" style="margin-bottom:10px;">
<div class="title">π Framingham Criteria (2 major OR 1 major + 2 minor)</div>
<div style="display:flex; gap:8px; margin-top:6px;">
<div style="flex:1; background:rgba(255,255,255,0.07); border-radius:8px; padding:6px 10px;">
<div style="color:#f9ca24; font-size:9.5px; font-weight:700; margin-bottom:4px;">MAJOR CRITERIA</div>
<div style="font-size:9.5px; color:#e2e8f0; line-height:1.6;">
β’ PND or orthopnea<br>
β’ S3 gallop<br>
β’ JVD (venous distension)<br>
β’ Cardiomegaly<br>
β’ Acute pulmonary edema<br>
β’ Hepatojugular reflux<br>
β’ β₯4.5 kg weight loss in 5 days on treatment
</div>
</div>
<div style="flex:1; background:rgba(255,255,255,0.07); border-radius:8px; padding:6px 10px;">
<div style="color:#a78bfa; font-size:9.5px; font-weight:700; margin-bottom:4px;">MINOR CRITERIA</div>
<div style="font-size:9.5px; color:#e2e8f0; line-height:1.6;">
β’ Bilateral ankle edema<br>
β’ Night cough<br>
β’ Dyspnea on exertion<br>
β’ Hepatomegaly<br>
β’ Pleural effusion<br>
β’ HR >120 bpm<br>
β’ Tachycardia
</div>
</div>
</div>
</div>
<div class="mnemonic">
<div class="title">π Drugs that WORSEN HF β "SAD DRUGS"</div>
<div class="letters">
<div class="letter-block"><strong>S</strong>odium-retaining (NSAIDs, steroids)</div>
<div class="letter-block"><strong>A</strong>nti-arrhythmics (flecainide, disopyramide)</div>
<div class="letter-block"><strong>D</strong>iltilazem / Verapamil (non-DHP CCBs)</div>
<div class="letter-block"><strong>D</strong>oxorubicin / anthracyclines</div>
<div class="letter-block"><strong>R</strong>osiglitazone (TZDs)</div>
<div class="letter-block"><strong>U</strong>nexplained alcohol</div>
<div class="letter-block"><strong>G</strong>rowth hormone excess</div>
<div class="letter-block"><strong>S</strong>timulants (cocaine, meth)</div>
</div>
</div>
</div>
</div>
<!-- ββββββββββ ROW 10: Comparison Table: HFrEF vs HFpEF ββββββββββ -->
<div class="grid-full">
<div class="card card-indigo">
<div class="section-title"><span class="icon">βοΈ</span> HFrEF vs HFpEF β Master Comparison Table</div>
<table class="info-table">
<thead>
<tr>
<th class="th-purple" style="width:18%">Parameter</th>
<th class="th-purple">HFrEF (Systolic HF)</th>
<th style="background:#ddd6fe;color:#4c1d95;font-weight:700;padding:5px 8px;font-size:9.5px;text-transform:uppercase;letter-spacing:0.3px;">HFpEF (Diastolic HF)</th>
</tr>
</thead>
<tbody class="tr-alt">
<tr><td><strong>EF</strong></td><td style="color:#dc2626;font-weight:700"><40% (reduced)</td><td style="color:#16a34a;font-weight:700">β₯50% (preserved)</td></tr>
<tr><td><strong>Mechanism</strong></td><td>β Contractility (systolic dysfunction)</td><td>β Relaxation / β Stiffness (diastolic dysfunction)</td></tr>
<tr><td><strong>LV size</strong></td><td>Dilated (β EDV)</td><td>Normal or small (concentric hypertrophy)</td></tr>
<tr><td><strong>Wall thickness</strong></td><td>Thin walls (dilated)</td><td>Thick walls (hypertrophy)</td></tr>
<tr><td><strong>Common causes</strong></td><td>MI, DCM, myocarditis</td><td>Hypertension, Diabetes, Obesity, Aging</td></tr>
<tr><td><strong>Demographics</strong></td><td>Younger males; post-MI</td><td>Older females; hypertensive</td></tr>
<tr><td><strong>Mortality</strong></td><td style="color:#dc2626">High (comparable to HFpEF)</td><td style="color:#dc2626">Similar to HFrEF</td></tr>
<tr><td><strong>Evidence-based Rx</strong></td><td>ACEi/ARNI + BB + MRA + SGLT2i (4 pillars)</td><td>SGLT2i (empagliflozin) + diuretics; control comorbidities</td></tr>
<tr><td><strong>Echo finding</strong></td><td>E/A <1 pattern reversed; dilated LV; global hypokinesia</td><td>E/e' ratio >13; LA enlargement; concentric LVH</td></tr>
<tr><td><strong>Drug to avoid</strong></td><td>Inotropes (long term); DHP CCBs worsen remodeling</td><td>ACEi (minimal benefit); Nitrates (β preload too much)</td></tr>
</tbody>
</table>
</div>
</div>
<!-- ββββββββββ WARNING SIGNS / RED FLAGS ββββββββββ -->
<div class="grid-3">
<div class="card card-red">
<div class="section-title"><span class="icon">π¨</span> Red Flag / Warning Signs</div>
<div class="highlight-box hb-red">
<span class="warn-icon">π</span>
<div>
<strong>Admit Immediately if:</strong><br>
β’ SpOβ <90% despite Oβ<br>
β’ HR >130 bpm or <40 bpm<br>
β’ SBP <90 mmHg (cardiogenic shock)<br>
β’ New-onset HF with hemodynamic instability<br>
β’ Altered mental status
</div>
</div>
<ul class="dot-list" style="margin-top:8px;">
<li>π΄ Acute pulmonary edema β EMERGENCY</li>
<li>π΄ Cardiogenic shock β LVAD / transplant urgency</li>
<li>π΄ Ventricular tachycardia β SCD risk</li>
</ul>
</div>
<div class="card card-green">
<div class="section-title"><span class="icon">π</span> Prognosis / Staging</div>
<ul class="dot-list">
<li>1-year mortality: NYHA IV = ~50%</li>
<li>5-year mortality: ~50% overall (worse than most cancers)</li>
<li>SCD accounts for ~50% of deaths in HFrEF</li>
<li>β BNP = β mortality risk</li>
<li>β Troponin in acute HF = β in-hospital mortality</li>
<li>Hyponatremia = poor prognostic sign</li>
<li>EF improvement on therapy = favorable prognosis</li>
</ul>
<div class="highlight-box hb-green">
<span class="warn-icon">β
</span>
<span>LVEF can <strong>recover</strong> in tachycardia-mediated CMP, peripartum CMP, and alcohol CMP with treatment!</span>
</div>
</div>
<div class="card card-yellow">
<div class="section-title"><span class="icon">π</span> One-Liners to Remember</div>
<ul class="dot-list">
<li>π― CAD = #1 cause of HF in developed world (~70%)</li>
<li>π― Echo = investigation of choice for HF</li>
<li>π― S3 = best bedside sign for systolic HF</li>
<li>π― Sacubitril/Valsartan = superior to ACEi (PARADIGM-HF)</li>
<li>π― SGLT2i works in BOTH HFrEF and HFpEF</li>
<li>π― Digoxin = symptom relief only, NOT mortality benefit</li>
<li>π― Ivabradine β HR reduction in sinus tachycardia when BB not tolerated</li>
<li>π― ICD if EF β€35% after 90 days optimal therapy</li>
<li>π― Pleural effusion in HF = usually RIGHT-sided</li>
<li>π― Cheyne-Stokes = ominous sign of severe/advanced HF</li>
</ul>
</div>
</div>
<!-- ββββββββββ FOOTER ββββββββββ -->
<div class="footer">
<p>π Sources: <strong>Braunwald's Heart Disease</strong> | <strong>Goldman-Cecil Medicine</strong> | <strong>Goodman & Gilman's Pharmacology</strong> | <strong>Fuster & Hurst's The Heart</strong></p>
<p>π©Ί <strong>NEET PG / MD Entrance High-Yield Sheet</strong> | Cardiovascular System | β¨ Orris AI</p>
</div>
</div>
</body>
</html>
cd /tmp/workspace/heart-failure-poster && python3 -c " import subprocess, sys # Try weasyprint first try: import weasyprint weasyprint.HTML(filename='heart_failure_poster.html').write_pdf('heart_failure_poster.pdf') print('WeasyPrint: SUCCESS') except Exception as e: print(f'WeasyPrint failed: {e}') # Try xhtml2pdf try: from xhtml2pdf import pisa with open('heart_failure_poster.html', 'rb') as src, open('heart_failure_poster.pdf', 'wb') as dest: pisa.CreatePDF(src, dest) print('xhtml2pdf: SUCCESS') except Exception as e2: print(f'xhtml2pdf failed: {e2}') "
pip install --user weasyprint --quiet 2>&1 | tail -5
cd /tmp/workspace/heart-failure-poster && python3 -c " # Use reportlab to build a PDF from the poster content # Since HTMLβPDF isn't directly available, let's use the reportlab approach # but given the complexity, let's try selenium or playwright import subprocess result = subprocess.run(['python3', '-c', 'import playwright'], capture_output=True, text=True) print('playwright:', result.returncode) result2 = subprocess.run(['python3', '-c', 'import selenium'], capture_output=True, text=True) print('selenium:', result2.returncode) result3 = subprocess.run(['chromium-browser', '--version'], capture_output=True, text=True) print('chromium:', result3.stdout, result3.stderr) result4 = subprocess.run(['chromium', '--version'], capture_output=True, text=True) print('chromium2:', result4.stdout, result4.stderr) result5 = subprocess.run(['google-chrome', '--version'], capture_output=True, text=True) print('chrome:', result5.stdout, result5.stderr) "
python3 -c "import cssselect2; print(cssselect2.__file__)"
python3 -c " import sys sys.path.insert(0, '/opt/amazon/genesis1p-tools/venv/lib64/python3.12/site-packages') import weasyprint print('weasyprint available via venv path') " 2>&1
ls -lh /tmp/workspace/heart-failure-poster/
Heart Failure medical infographic poster for NEET PG students. Include: anatomical heart diagram showing enlarged dilated left ventricle, arrows showing backward congestion to lungs and forward failure to body. Label left heart failure symptoms (dyspnea, orthopnea, PND, pulmonary edema) on left side and right heart failure signs (JVD, liver congestion, ankle edema, ascites) on right side. Show neurohormonal axis with RAAS and SNS activation loop. Color-coded boxes for HFrEF vs HFpEF. Professional medical style, white background, blue and red color scheme, clean typography.
heart failure poster
HTML File Β· HTML
Open in any browser and use Ctrl+P β Save as PDF (set to landscape, scale to fit) for a perfect print-ready PDF.

| Section | Content |
|---|---|
| π Definition | Clinical syndrome, global statistics, key concept |
| π Classification by EF | HFrEF / HFmrEF / HFpEF with EF cutoffs |
| π NYHA Functional Classes | I-IV with activity limitations |
| π ACC/AHA Staging 2022 | Stages A-D with intervention goals |
| π Causes / Etiology | CAD #1 cause + CARDIAC mnemonic |
| βοΈ Pathophysiology | 4-system model (Heart/Vessels/Kidney/Neurohormonal) |
| βοΈ Left vs Right HF | Full comparison table |
| π©Ί Clinical Features | FORD mnemonic + all physical signs |
| π¬ Diagnosis | Step-by-step + BNP pearls |
| π Management | 4 pillars of HFrEF + LMNOP for acute HF |
| β οΈ Complications | SCD, AF, cardiorenal syndrome |
| π Pearls + Mnemonics | ABODE, FAILURE, Framingham, SAD DRUGS |
MASTER PROMPT TEMPLATE β¨ Create a clean high-yield medical infographic poster for emergency medicine pg resident 1st year about: ACUTE SPINE INJURY Style: modern medical infographic highly organized exam-focused visually memorable colorful but professional easy to review before exams include emojis/icons for memory aid use clear section boxes and arrows use concise bullet points use tables for comparisons use color-coded categories include important high-yield notes and warning signs make it aesthetically pleasing like premium study notes white background readable font structured like a study cheat sheet Must include: Definition Classification Causes / risk factors Pathophysiology Clinical features Diagnosis Management Complications Important investigations High-yield exam pearls Memory tricks / mnemonics Comparison tables if applicable
mkdir -p /tmp/workspace/spine-injury-poster && echo "ready"
~/spine-injury-poster/acute_spine_injury_poster.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Acute Spine Injury β Emergency Medicine High-Yield Infographic</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background: #f1f5f9;
color: #0f172a;
font-size: 11px;
line-height: 1.5;
}
.page {
width: 1200px;
margin: 0 auto;
background: #ffffff;
padding: 20px 24px 28px;
}
/* βββ HEADER βββ */
.header {
background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 35%, #1d4ed8 70%, #7c3aed 100%);
border-radius: 16px;
padding: 20px 28px;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
box-shadow: 0 8px 32px rgba(15,23,42,0.3);
position: relative;
overflow: hidden;
}
.header::before {
content: 'π¦΄';
position: absolute;
right: 200px;
top: 50%;
transform: translateY(-50%);
font-size: 90px;
opacity: 0.08;
}
.header-left h1 {
font-family: 'Poppins', sans-serif;
font-size: 30px;
font-weight: 800;
color: #fff;
letter-spacing: -0.5px;
}
.header-left h1 span { color: #fbbf24; }
.header-left p {
font-size: 11.5px;
color: #93c5fd;
margin-top: 4px;
font-weight: 500;
}
.header-badges {
display: flex;
gap: 7px;
flex-wrap: wrap;
justify-content: flex-end;
}
.badge {
background: rgba(255,255,255,0.12);
color: #fff;
border: 1px solid rgba(255,255,255,0.25);
border-radius: 20px;
padding: 4px 12px;
font-size: 9.5px;
font-weight: 700;
backdrop-filter: blur(4px);
}
.badge.hot { background: rgba(251,191,36,0.2); border-color: #fbbf24; color: #fbbf24; }
.badge.em { background: rgba(239,68,68,0.2); border-color: #ef4444; color: #fca5a5; }
/* βββ GRID LAYOUTS βββ */
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 13px; margin-bottom: 13px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 13px; margin-bottom: 13px; }
.grid-full { margin-bottom: 13px; }
/* βββ CARDS βββ */
.card {
border-radius: 12px;
padding: 13px 15px;
border: 1.5px solid transparent;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 4px; height: 100%;
border-radius: 12px 0 0 12px;
}
.card-blue { background: #eff6ff; border-color: #bfdbfe; } .card-blue::before { background: #2563eb; }
.card-green { background: #f0fdf4; border-color: #bbf7d0; } .card-green::before { background: #16a34a; }
.card-red { background: #fff1f2; border-color: #fecdd3; } .card-red::before { background: #dc2626; }
.card-purple { background: #faf5ff; border-color: #e9d5ff; } .card-purple::before { background: #7c3aed; }
.card-orange { background: #fff7ed; border-color: #fed7aa; } .card-orange::before { background: #ea580c; }
.card-teal { background: #f0fdfa; border-color: #99f6e4; } .card-teal::before { background: #0d9488; }
.card-yellow { background: #fefce8; border-color: #fde68a; } .card-yellow::before { background: #ca8a04; }
.card-pink { background: #fdf2f8; border-color: #f9a8d4; } .card-pink::before { background: #db2777; }
.card-indigo { background: #eef2ff; border-color: #c7d2fe; } .card-indigo::before { background: #4f46e5; }
.card-slate { background: #f8fafc; border-color: #cbd5e1; } .card-slate::before { background: #475569; }
.card-dark { background: #0f172a; border-color: #1e293b; color: #f8fafc; } .card-dark::before { background: #fbbf24; }
.card-crimson { background: #fff0f0; border-color: #fca5a5; } .card-crimson::before { background: #b91c1c; }
/* βββ SECTION TITLES βββ */
.section-title {
font-family: 'Poppins', sans-serif;
font-size: 11px;
font-weight: 700;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 5px;
text-transform: uppercase;
letter-spacing: 0.6px;
}
.card-blue .section-title { color: #1d4ed8; }
.card-green .section-title { color: #15803d; }
.card-red .section-title { color: #b91c1c; }
.card-purple .section-title { color: #6d28d9; }
.card-orange .section-title { color: #c2410c; }
.card-teal .section-title { color: #0f766e; }
.card-yellow .section-title { color: #92400e; }
.card-pink .section-title { color: #be185d; }
.card-indigo .section-title { color: #3730a3; }
.card-slate .section-title { color: #334155; }
.card-dark .section-title { color: #fbbf24; }
.card-crimson .section-title { color: #991b1b; }
/* βββ LISTS βββ */
ul.dot-list { list-style: none; padding: 0; }
ul.dot-list li { padding: 2px 0 2px 14px; position: relative; font-size: 10.5px; color: #374151; }
ul.dot-list li::before { content: 'βΈ'; position: absolute; left: 0; color: #6b7280; font-size: 9px; top: 3px; }
.card-dark ul.dot-list li { color: #cbd5e1; }
.card-dark ul.dot-list li::before { color: #fbbf24; }
/* βββ TABLES βββ */
table.info-table {
width: 100%;
border-collapse: collapse;
font-size: 10px;
margin-top: 4px;
}
table.info-table th {
padding: 5px 7px;
font-weight: 700;
text-align: left;
font-size: 9.5px;
text-transform: uppercase;
letter-spacing: 0.3px;
}
table.info-table td {
padding: 4px 7px;
border-bottom: 1px solid rgba(0,0,0,0.05);
vertical-align: top;
line-height: 1.4;
}
table.info-table tr:last-child td { border-bottom: none; }
.tr-alt tr:nth-child(even) td { background: rgba(0,0,0,0.022); }
.th-blue { background: #dbeafe; color: #1e3a8a; }
.th-green { background: #dcfce7; color: #14532d; }
.th-red { background: #fee2e2; color: #7f1d1d; }
.th-purple { background: #ede9fe; color: #4c1d95; }
.th-orange { background: #fed7aa; color: #7c2d12; }
.th-teal { background: #ccfbf1; color: #134e4a; }
.th-slate { background: #e2e8f0; color: #1e293b; }
.th-dark { background: #1e293b; color: #f8fafc; }
.th-indigo { background: #e0e7ff; color: #312e81; }
/* βββ PILLS βββ */
.pill { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 9px; font-weight: 700; margin: 1px 2px; }
.pill-red { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.pill-blue { background: #dbeafe; color: #1d4ed8; border: 1px solid #93c5fd; }
.pill-green { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.pill-orange { background: #ffedd5; color: #c2410c; border: 1px solid #fb923c; }
.pill-purple { background: #ede9fe; color: #6d28d9; border: 1px solid #c4b5fd; }
.pill-teal { background: #ccfbf1; color: #0f766e; border: 1px solid #5eead4; }
.pill-yellow { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.pill-pink { background: #fce7f3; color: #be185d; border: 1px solid #f9a8d4; }
.pill-slate { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.pill-crimson{ background: #fff1f2; color: #9f1239; border: 1px solid #fda4af; }
/* βββ HIGHLIGHT / ALERT BOXES βββ */
.alert {
border-radius: 8px;
padding: 7px 11px;
margin-top: 7px;
font-size: 10px;
font-weight: 600;
display: flex;
align-items: flex-start;
gap: 6px;
line-height: 1.5;
}
.alert-red { background: #fef2f2; border: 1.5px solid #ef4444; color: #991b1b; }
.alert-yellow { background: #fefce8; border: 1.5px solid #eab308; color: #713f12; }
.alert-blue { background: #eff6ff; border: 1.5px solid #3b82f6; color: #1e3a8a; }
.alert-green { background: #f0fdf4; border: 1.5px solid #22c55e; color: #14532d; }
.alert-orange { background: #fff7ed; border: 1.5px solid #f97316; color: #7c2d12; }
.ai { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
/* βββ MNEMONIC BOXES βββ */
.mnemonic {
background: linear-gradient(135deg, #0f172a, #1e293b);
border-radius: 10px;
padding: 9px 13px;
margin-top: 7px;
color: #f8fafc;
}
.mnemonic .mtitle {
font-family: 'Poppins', sans-serif;
font-size: 9.5px;
font-weight: 700;
color: #fbbf24;
text-transform: uppercase;
letter-spacing: 0.6px;
margin-bottom: 6px;
}
.mnemonic .letters { display: flex; flex-wrap: wrap; gap: 4px; }
.mnemonic .lb {
background: rgba(255,255,255,0.07);
border: 1px solid rgba(251,191,36,0.25);
border-radius: 6px;
padding: 3px 8px;
font-size: 10px;
}
.mnemonic .lb strong { color: #fbbf24; font-size: 12px; display: block; line-height: 1.2; }
/* βββ FLOW ARROWS βββ */
.flow {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 4px;
margin: 5px 0;
}
.fbox {
border-radius: 7px;
padding: 3px 9px;
font-size: 9.5px;
font-weight: 600;
border: 1.5px solid currentColor;
text-align: center;
}
.farr { font-size: 14px; color: #6b7280; }
/* βββ PEARL BOXES βββ */
.pearl {
background: linear-gradient(135deg, #f0fdf4, #dcfce7);
border: 1.5px solid #16a34a;
border-radius: 9px;
padding: 7px 11px;
margin-top: 6px;
position: relative;
}
.pearl::before { content: 'π'; position: absolute; top: -10px; left: 8px; font-size: 15px; }
.pearl p { font-size: 10px; color: #14532d; line-height: 1.5; }
/* βββ STEPS βββ */
.step { display: flex; gap: 7px; align-items: flex-start; padding: 3px 0; }
.snum {
width: 17px; height: 17px;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 8.5px; font-weight: 800; flex-shrink: 0;
}
.sn-red { background: #dc2626; color: #fff; }
.sn-blue { background: #2563eb; color: #fff; }
.sn-green { background: #16a34a; color: #fff; }
.sn-orange { background: #ea580c; color: #fff; }
.sn-purple { background: #7c3aed; color: #fff; }
.stxt { font-size: 10.5px; color: #374151; flex: 1; }
/* βββ SUB-HEADINGS βββ */
.sh { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin: 7px 0 3px; opacity: 0.75; }
.card-blue .sh { color: #1d4ed8; }
.card-green .sh { color: #15803d; }
.card-red .sh { color: #b91c1c; }
.card-purple .sh { color: #6d28d9; }
.card-orange .sh { color: #c2410c; }
.card-teal .sh { color: #0f766e; }
.card-yellow .sh { color: #92400e; }
.card-dark .sh { color: #fbbf24; }
.card-crimson .sh { color: #991b1b; }
.card-indigo .sh { color: #3730a3; }
/* βββ SYNDROME MINI-CARDS βββ */
.syndrome-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 7px;
margin-top: 5px;
}
.syn-card {
border-radius: 8px;
padding: 7px 10px;
border: 1.5px solid transparent;
}
.syn-central { background: #eff6ff; border-color: #93c5fd; }
.syn-brown { background: #fdf2f8; border-color: #f9a8d4; }
.syn-ant { background: #fff1f2; border-color: #fca5a5; }
.syn-post { background: #f0fdfa; border-color: #99f6e4; }
.syn-conus { background: #faf5ff; border-color: #d8b4fe; }
.syn-cauda { background: #fefce8; border-color: #fde68a; }
.syn-title { font-size: 9.5px; font-weight: 800; margin-bottom: 3px; }
.syn-central .syn-title { color: #1d4ed8; }
.syn-brown .syn-title { color: #be185d; }
.syn-ant .syn-title { color: #b91c1c; }
.syn-post .syn-title { color: #0f766e; }
.syn-conus .syn-title { color: #6d28d9; }
.syn-cauda .syn-title { color: #92400e; }
.syn-body { font-size: 9.5px; color: #374151; line-height: 1.5; }
/* βββ DIVIDER βββ */
.divider {
height: 3px;
background: linear-gradient(90deg, #dc2626, #ea580c, #fbbf24, #16a34a, #2563eb, #7c3aed);
border-radius: 2px;
margin: 13px 0;
}
/* βββ NEXUS BOX βββ */
.criteria-box {
background: #fff;
border: 2px solid #2563eb;
border-radius: 10px;
padding: 8px 12px;
margin-top: 5px;
}
.criteria-box .ctitle {
font-family: 'Poppins', sans-serif;
font-size: 10px;
font-weight: 700;
color: #1d4ed8;
margin-bottom: 5px;
text-transform: uppercase;
letter-spacing: 0.4px;
}
.criteria-box ul { list-style: none; padding: 0; }
.criteria-box ul li { font-size: 10px; color: #374151; padding: 2px 0 2px 14px; position: relative; }
.criteria-box ul li::before { content: 'β'; color: #16a34a; position: absolute; left: 0; font-weight: 700; }
/* βββ FOOTER βββ */
.footer {
background: #0f172a;
border-radius: 10px;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 13px;
}
.footer p { color: #94a3b8; font-size: 9.5px; }
.footer strong { color: #fbbf24; }
/* βββ VERDICT TAG βββ */
.verdict {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 3px 10px;
border-radius: 20px;
font-size: 9px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.4px;
}
.vgood { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.vmod { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.vpoor { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
</style>
</head>
<body>
<div class="page">
<!-- ββββββββββ HEADER ββββββββββ -->
<div class="header">
<div class="header-left">
<h1>𦴠<span>ACUTE SPINE INJURY</span> β Emergency Medicine Master Sheet</h1>
<p>EMERGENCY MEDICINE | PGY-1 Resident Reference | Based on Rosen's EM, Tintinalli's EM, Current Surgical Therapy, Rockwood & Green's, Bailey & Love's</p>
</div>
<div class="header-badges">
<span class="badge hot">π₯ HIGH YIELD</span>
<span class="badge em">π¨ EMERGENCY</span>
<span class="badge">π Rosen's EM</span>
<span class="badge">π Tintinalli</span>
<span class="badge">𦴠Rockwood & Green</span>
</div>
</div>
<!-- ββββββββββ ROW 1: Definition + Overview ββββββββββ -->
<div class="grid-2">
<div class="card card-blue">
<div class="section-title"><span>π</span> Definition & Overview</div>
<ul class="dot-list">
<li><strong>Acute Spinal Cord Injury (SCI):</strong> Traumatic insult to the spinal cord causing transient or permanent motor, sensory, and/or autonomic dysfunction below the level of injury</li>
<li><strong>Spinal column injury β SCI</strong> β vertebral fracture/dislocation may or may not injure the cord</li>
<li><strong>Incidence:</strong> ~54 cases per million/year in USA; ~18,000 new cases/year</li>
<li><strong>Demographics:</strong> Males ~80% (4:1 M:F ratio); peak age = late teens to 20s; mean age is increasing as population ages</li>
<li><strong>Most common level:</strong> Cervical > Thoracic > Lumbar</li>
</ul>
<div class="alert alert-blue">
<span class="ai">π‘</span>
<div>SCI is commonly <strong>comorbid with multiorgan injury</strong>. Assess with standard ATLS protocol β Airway, Breathing, Circulation FIRST before neurologic evaluation.</div>
</div>
</div>
<div class="card card-red">
<div class="section-title"><span>β‘</span> Causes / Risk Factors / Mechanisms</div>
<div class="sh">Common Causes (in order)</div>
<div style="display:flex;flex-wrap:wrap;gap:3px;margin-bottom:6px;">
<span class="pill pill-red">π MVA ~38%</span>
<span class="pill pill-orange">π€Έ Falls ~31%</span>
<span class="pill pill-blue">π« Violence ~14%</span>
<span class="pill pill-teal">π Sports/Recreation ~9%</span>
<span class="pill pill-purple">π₯ Medical/Surgical ~4%</span>
</div>
<div class="sh">Mechanism by Level</div>
<table class="info-table">
<thead><tr><th class="th-red">Level</th><th class="th-red">Mechanism</th><th class="th-red">Classic Injury Pattern</th></tr></thead>
<tbody class="tr-alt">
<tr><td><strong>C-spine</strong></td><td>Flexion, Extension, Rotation, Axial load</td><td>Jefferson (C1), Odontoid (C2), Hangman (C2)</td></tr>
<tr><td><strong>T-spine</strong></td><td>High-energy axial load/flexion</td><td>Chance fracture (seatbelt), burst fracture</td></tr>
<tr><td><strong>L-spine</strong></td><td>Axial compression, hyperflexion</td><td>Burst fracture, Chance fracture</td></tr>
<tr><td><strong>Penetrating</strong></td><td>GSW, stabbing</td><td>Brown-SΓ©quard syndrome (hemisection)</td></tr>
</tbody>
</table>
<div class="alert alert-orange" style="margin-top:6px;">
<span class="ai">β οΈ</span>
<span><strong>10β40% of SCI patients have MULTIPLE noncontiguous fractures</strong> β always image entire spine if one level is found!</span>
</div>
</div>
</div>
<!-- ββββββββββ ROW 2: Pathophysiology ββββββββββ -->
<div class="grid-full">
<div class="card card-purple">
<div class="section-title"><span>βοΈ</span> Pathophysiology β Primary vs Secondary Injury</div>
<div style="display:grid; grid-template-columns: 1fr 1fr 3fr; gap:10px; align-items:start;">
<div>
<div class="sh">Primary Injury</div>
<ul class="dot-list">
<li>Direct mechanical disruption</li>
<li>Compression by bony fragments, disc, hematoma</li>
<li>Laceration / Transection</li>
<li>Irreversible in complete SCI</li>
</ul>
</div>
<div>
<div class="sh">Secondary Injury (treatable target)</div>
<ul class="dot-list">
<li>β± <strong>0β2 hrs:</strong> Arteriolar disruption β grey matter ischemia</li>
<li>β± <strong>2β48 hrs:</strong> Cytokine release, inflammation, apoptosis</li>
<li>β± <strong>Up to 3 weeks:</strong> Ongoing apoptotic cell death</li>
<li>Ion dysregulation, glutamate excitotoxicity, ROS</li>
<li>Loss of autoregulation β watershed ischemia</li>
</ul>
</div>
<div>
<div class="sh">Secondary Injury Cascade Flowchart</div>
<div class="flow" style="flex-direction:column; align-items:flex-start; gap:3px;">
<div style="display:flex; align-items:center; gap:5px;">
<div class="fbox" style="color:#7c3aed; background:#faf5ff;">Mechanical Trauma</div>
<div class="farr">β</div>
<div class="fbox" style="color:#dc2626; background:#fff1f2;">Vascular Disruption + β Oβ</div>
<div class="farr">β</div>
<div class="fbox" style="color:#b91c1c; background:#fee2e2;">Grey Matter Ischemia (0β2h)</div>
</div>
<div style="display:flex; align-items:center; gap:5px; margin-left:10px;">
<div class="farr">β</div>
</div>
<div style="display:flex; align-items:center; gap:5px;">
<div class="fbox" style="color:#ea580c; background:#fff7ed;">β Cytokines + Inflammation</div>
<div class="farr">β</div>
<div class="fbox" style="color:#c2410c; background:#ffedd5;">Apoptosis (24β48h)</div>
<div class="farr">β</div>
<div class="fbox" style="color:#ca8a04; background:#fefce8;">Glial Scar Formation (weeks)</div>
</div>
</div>
<div class="alert alert-yellow" style="margin-top:6px;">
<span class="ai">π―</span>
<span><strong>Clinical relevance:</strong> Preventing hypotension (SBP <90 mmHg) and hypoxia is the most impactful emergency intervention β both worsen secondary injury dramatically.</span>
</div>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 3: ASIA Scale + Incomplete Syndromes ββββββββββ -->
<div class="grid-2">
<!-- ASIA CLASSIFICATION -->
<div class="card card-teal">
<div class="section-title"><span>π</span> ASIA Impairment Scale (AIS)</div>
<div style="font-size:9.5px; color:#0f766e; margin-bottom:6px; font-style:italic;">American Spinal Injury Association β Gold standard neurological classification</div>
<table class="info-table">
<thead><tr><th class="th-teal">Grade</th><th class="th-teal">Name</th><th class="th-teal">Definition</th><th class="th-teal">Prognosis</th></tr></thead>
<tbody>
<tr style="background:#fff1f2"><td><span style="font-size:18px; font-weight:900; color:#dc2626;">A</span></td><td><strong>Complete</strong></td><td>No motor OR sensory function in S4βS5</td><td><span class="verdict vpoor">Poor</span></td></tr>
<tr style="background:#fff7ed"><td><span style="font-size:18px; font-weight:900; color:#ea580c;">B</span></td><td><strong>Sensory Incomplete</strong></td><td>Sensory preserved, NO motor below NLI, including S4βS5</td><td><span class="verdict vmod">Moderate</span></td></tr>
<tr style="background:#fefce8"><td><span style="font-size:18px; font-weight:900; color:#ca8a04;">C</span></td><td><strong>Motor Incomplete</strong></td><td>Motor preserved below NLI; >50% key muscles Grade <3</td><td><span class="verdict vmod">Variable</span></td></tr>
<tr style="background:#f0fdf4"><td><span style="font-size:18px; font-weight:900; color:#16a34a;">D</span></td><td><strong>Motor Incomplete</strong></td><td>Motor preserved; >50% key muscles Grade β₯3</td><td><span class="verdict vgood">Good</span></td></tr>
<tr style="background:#eff6ff"><td><span style="font-size:18px; font-weight:900; color:#2563eb;">E</span></td><td><strong>Normal</strong></td><td>Normal motor and sensory function</td><td><span class="verdict vgood">Excellent</span></td></tr>
</tbody>
</table>
<div class="alert alert-yellow" style="margin-top:7px;">
<span class="ai">β οΈ</span>
<div><strong>SACRAL SPARING = Key for Complete vs Incomplete:</strong><br>
Check <strong>S4-S5</strong> β any perianal sensation or voluntary anal contraction = INCOMPLETE injury (prognostically much better!)</div>
</div>
<div class="alert alert-blue" style="margin-top:5px;">
<span class="ai">π</span>
<span>ASIA motor scale: 0 to 5 per key muscle group. <strong>10 key muscles</strong> tested each side; max score = 100.</span>
</div>
</div>
<!-- INCOMPLETE SYNDROMES -->
<div class="card card-orange">
<div class="section-title"><span>π§©</span> Incomplete SCI Syndromes</div>
<div style="font-size:9.5px; color:#c2410c; margin-bottom:6px; font-style:italic;">~90% of incomplete injuries fit one of these three major patterns (Rosen's EM)</div>
<div class="syndrome-grid">
<div class="syn-card syn-central">
<div class="syn-title">π΄ Central Cord Syndrome</div>
<div class="syn-body">
<strong>Most common</strong> (~9% all SCI; ~50% incomplete)<br>
<strong>Mechanism:</strong> Hyperextension injury in elderly with cervical spondylosis; degenerative arthritis<br>
<strong>Features:</strong> Arms >> Legs weakness; variable sensory loss; bladder dysfunction (retention)<br>
<strong>Prognosis:</strong> <span class="verdict vmod">Moderate</span> β ~80% regain walking ability<br>
<strong>Key:</strong> Face spared
</div>
</div>
<div class="syn-card syn-brown">
<div class="syn-title">π£ Brown-SΓ©quard Syndrome</div>
<div class="syn-body">
<strong>Mechanism:</strong> Hemisection of cord; classic = penetrating injury (GSW, stab)<br>
<strong>IPSILATERAL:</strong> Motor paralysis + vibration/proprioception loss (dorsal columns)<br>
<strong>CONTRALATERAL:</strong> Pain & temperature loss (spinothalamic) β 1β2 levels below<br>
<strong>Prognosis:</strong> <span class="verdict vgood">Best</span> of all syndromes
</div>
</div>
<div class="syn-card syn-ant">
<div class="syn-title">π΄ Anterior Cord Syndrome</div>
<div class="syn-body">
<strong>Mechanism:</strong> Flexion injury; disc herniation; aortic surgery; anterior spinal artery territory<br>
<strong>LOST:</strong> Motor (corticospinal) + Pain & Temperature (spinothalamic)<br>
<strong>SPARED:</strong> Vibration + Proprioception (posterior columns)<br>
<strong>Prognosis:</strong> <span class="verdict vpoor">Worst</span> β <10% motor recovery
</div>
</div>
<div class="syn-card syn-post">
<div class="syn-title">π’ Posterior Cord Syndrome</div>
<div class="syn-body">
<strong>Rare</strong>; hyperextension + posterior column injury<br>
<strong>LOST:</strong> Vibration, Proprioception, Light touch<br>
<strong>SPARED:</strong> Pain & Temperature; Motor intact<br>
<strong>Presents:</strong> Sensory ataxia (wide-based gait), loss of position sense
</div>
</div>
<div class="syn-card syn-conus">
<div class="syn-title">π£ Conus Medullaris Syndrome</div>
<div class="syn-body">
<strong>Level:</strong> T12βL1 burst fracture; injury to sacral cord (S2βS5)<br>
<strong>Mixed UMN + LMN features</strong><br>
Paraparesis + saddle anesthesia + bowel/bladder dysfunction + impotence<br>
<strong>Perianal sensation usually SPARED</strong>
</div>
</div>
<div class="syn-card syn-cauda">
<div class="syn-title">π‘ Cauda Equina Syndrome</div>
<div class="syn-body">
<strong>SURGICAL EMERGENCY</strong> β nerve roots, NOT cord<br>
<strong>Saddle anesthesia</strong> (S3βS5) + bowel/bladder dysfunction<br>
LMN pattern: flaccid weakness, absent reflexes<br>
<strong>Prognosis:</strong> <span class="verdict vgood">Better than cord</span> (LMN resilience)<br>
<strong>MRI STAT β surgery within 24β48h</strong>
</div>
</div>
</div>
</div>
</div>
<!-- ββββββββββ ROW 4: Clinical Features + Neurogenic/Spinal Shock ββββββββββ -->
<div class="grid-2">
<div class="card card-indigo">
<div class="section-title"><span>π©Ί</span> Clinical Features</div>
<div class="sh">Red Flag Signs of SCI (Overt)</div>
<ul class="dot-list">
<li>𦽠<strong>Flaccid paralysis</strong> below level of injury (acute phase)</li>
<li>πΆ <strong>Sensory loss</strong> β pain, temperature, light touch, proprioception</li>
<li>π <strong>Priapism</strong> β pathognomonic of SCI in male trauma patients!</li>
<li>π« <strong>Paradoxical breathing</strong> β diaphragm active, intercostals paralyzed (C3βC5 injury)</li>
<li>π <strong>Bradycardia + Hypotension</strong> β neurogenic shock (above T6)</li>
<li>π‘οΈ <strong>Poikilothermia</strong> β inability to regulate temperature</li>
<li>π§ <strong>Loss of tendon reflexes</strong> below level (spinal shock phase)</li>
</ul>
<div class="sh">Level-Specific Features (Memory Aid)</div>
<table class="info-table">
<thead><tr><th class="th-indigo">Level</th><th class="th-indigo">Respiratory</th><th class="th-indigo">Key Deficit</th></tr></thead>
<tbody class="tr-alt">
<tr><td>C3βC4</td><td style="color:#dc2626;">Ventilator dependent</td><td>Quadriplegia; diaphragm loss</td></tr>
<tr><td>C5</td><td style="color:#ea580c;">Partial ventilation</td><td>Elbow flexion present; wrist ext gone</td></tr>
<tr><td>C6</td><td style="color:#ca8a04;">Intact</td><td>Wrist ext present; hand grip absent</td></tr>
<tr><td>C7</td><td style="color:#16a34a;">Intact</td><td>Elbow ext present; finger ext absent</td></tr>
<tr><td>T1βT12</td><td style="color:#16a34a;">Intact</td><td>Paraplegia; intercostal loss varies</td></tr>
<tr><td>L1βS1</td><td style="color:#16a34a;">Intact</td><td>Hip/knee weakness; cauda equina risk</td></tr>
</tbody>
</table>
</div>
<div class="card card-crimson">
<div class="section-title"><span>β‘</span> Neurogenic Shock vs Spinal Shock</div>
<table class="info-table">
<thead><tr><th class="th-red">Feature</th><th class="th-red">Neurogenic Shock</th><th class="th-red">Spinal Shock</th></tr></thead>
<tbody class="tr-alt">
<tr><td><strong>Definition</strong></td><td>Hemodynamic instability from loss of sympathetic tone</td><td>Loss of all spinal reflexes below injury level</td></tr>
<tr><td><strong>Mechanism</strong></td><td>β SVR (vasodilation) Β± β HR (vagal dominance)</td><td>Temporary physiologic silence of cord below injury</td></tr>
<tr><td><strong>Level</strong></td><td>Above T6 (interrupts T1βL2 sympathetic chain)</td><td>Any level</td></tr>
<tr><td><strong>BP</strong></td><td style="color:#dc2626;">β Hypotension</td><td>Normal</td></tr>
<tr><td><strong>HR</strong></td><td style="color:#dc2626;">β Bradycardia (paradoxical!)</td><td>Normal</td></tr>
<tr><td><strong>Skin</strong></td><td>Warm, flushed (vasodilated)</td><td>Variable</td></tr>
<tr><td><strong>Duration</strong></td><td>Days to weeks</td><td>1β24 hours (reflexes return)</td></tr>
<tr><td><strong>Reflexes</strong></td><td>Absent (initially)</td><td>Absent then hyperreflexia returns</td></tr>
<tr><td><strong>Incidence</strong></td><td>7β20% of SCI</td><td>All complete SCIs initially</td></tr>
<tr><td><strong>Rx</strong></td><td>IV fluids (cautious) + Vasopressors (Norepinephrine/Phenylephrine)</td><td>No specific treatment; time-based resolution</td></tr>
</tbody>
</table>
<div class="alert alert-red" style="margin-top:6px;">
<span class="ai">π¨</span>
<div><strong>CRITICAL PEARL:</strong> Neurogenic shock = <strong>bradycardia + hypotension</strong>. Hypovolemic shock = <strong>tachycardia + hypotension</strong>. Distinguish them β giving excessive fluids in neurogenic shock worsens pulmonary edema!</div>
</div>
<div class="alert alert-orange" style="margin-top:5px;">
<span class="ai">β οΈ</span>
<span><strong>Bulbocavernosus reflex return = end of spinal shock.</strong> Any deficit remaining after this point reflects true neurological injury.</span>
</div>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 5: Diagnosis / Imaging ββββββββββ -->
<div class="grid-2">
<div class="card card-blue">
<div class="section-title"><span>π¬</span> Diagnosis & Imaging Decision Rules</div>
<div class="criteria-box">
<div class="ctitle">π¦ NEXUS Low-Risk Criteria β ALL 5 must be present to CLEAR c-spine without imaging</div>
<ul>
<li>No midline cervical tenderness</li>
<li>No focal neurologic deficit</li>
<li>Normal alertness / mental status</li>
<li>No intoxication</li>
<li>No painful distracting injury</li>
</ul>
<div style="margin-top:5px; font-size:9.5px; color:#1d4ed8;"><strong>Sensitivity 99.6%, NPV 99.8%</strong></div>
</div>
<div class="criteria-box" style="border-color:#7c3aed; margin-top:7px;">
<div class="ctitle" style="color:#6d28d9;">π£ Canadian C-Spine Rule (CCR) β 3 Questions</div>
<ul>
<li><strong>Q1:</strong> Any HIGH-RISK factor? β Age β₯65, dangerous mechanism, paresthesias β Image</li>
<li><strong>Q2:</strong> Any LOW-RISK factor? β Simple rear-end MVC, ambulatory, delayed onset, no midline tenderness β can assess ROM</li>
<li><strong>Q3:</strong> Can patient actively rotate neck 45Β° L & R? β No imaging needed</li>
</ul>
<div style="margin-top:5px; font-size:9.5px; color:#6d28d9;"><strong>Sensitivity 99.4%, Specificity 45.1%</strong> β more specific than NEXUS</div>
</div>
<div class="alert alert-blue" style="margin-top:7px;">
<span class="ai">π‘</span>
<span>CCR is <strong>more specific</strong> (fewer unnecessary scans) than NEXUS. Both have similar sensitivity. NEXUS is easier to apply at bedside.</span>
</div>
</div>
<div class="card card-green">
<div class="section-title"><span>π·</span> Imaging Modalities</div>
<div class="step"><div class="snum sn-blue">1</div><div class="stxt"><strong>CT Scan β Investigation of Choice (acute trauma)</strong><br>More sensitive/specific than X-ray for vertebral fracture/dislocation. <span style="color:#dc2626;font-weight:700">If high-quality CT available β X-ray NOT required for c-spine</span>. Must image ENTIRE spine if one fracture found (10β40% multiple levels).</div></div>
<div class="step"><div class="snum sn-blue">2</div><div class="stxt"><strong>MRI β Best for cord, ligament, disc, vascular injury</strong><br>Identifies epidural hematoma, disc herniation, cord edema/hemorrhage. Recommended when: (a) neuro deficit without CT finding, (b) pre-surgical planning, (c) SCIWORA. Best prognostication tool. Time-intensive β challenging in acute trauma.</div></div>
<div class="step"><div class="snum sn-blue">3</div><div class="stxt"><strong>Plain X-Ray (3 views) β When CT unavailable</strong><br>AP + Lateral + Odontoid views for c-spine. Limited sensitivity. Level 1 evidence supports if CT unavailable.</div></div>
<div class="sh" style="margin-top:8px;">SCIWORA β Spinal Cord Injury Without Radiographic Abnormality</div>
<ul class="dot-list">
<li>Presents almost exclusively in <strong>children</strong></li>
<li>Normal CT + X-ray; MRI may show cord changes</li>
<li>Both complete and incomplete SCI can occur as SCIWORA</li>
<li>Current definition: abnormal on MRI but not CT/X-ray</li>
</ul>
<div class="alert alert-yellow" style="margin-top:5px;">
<span class="ai">β</span>
<span><strong>MRI findings predict prognosis:</strong> Cord hemorrhage = poor outcome. Cord edema alone = better recovery potential.</span>
</div>
</div>
</div>
<!-- ββββββββββ ROW 6: Management ββββββββββ -->
<div class="grid-full">
<div class="card card-dark">
<div class="section-title"><span>π</span> Management β Emergency to Surgical</div>
<div style="display:grid; grid-template-columns: 1fr 1fr 1fr; gap:10px;">
<div>
<div class="sh">π¨ IMMEDIATE (Primary Survey β ATLS)</div>
<div class="step"><div class="snum sn-red">A</div><div class="stxt" style="color:#cbd5e1;"><strong>Airway</strong> β Inline cervical stabilization; RSI for GCS β€8; C3β4 β anticipate resp failure; video laryngoscopy preferred</div></div>
<div class="step"><div class="snum sn-red">B</div><div class="stxt" style="color:#cbd5e1;"><strong>Breathing</strong> β Oβ supplementation; monitor SpOβ >95%; paradoxical breathing = cord above T6</div></div>
<div class="step"><div class="snum sn-red">C</div><div class="stxt" style="color:#cbd5e1;"><strong>Circulation</strong> β Avoid SBP <90 mmHg (target MAP 85β90 mmHg for 7 days in cervical/thoracic SCI). IV access Γ2, crystalloid cautiously. Vasopressors for neurogenic shock.</div></div>
<div class="step"><div class="snum sn-red">D</div><div class="stxt" style="color:#cbd5e1;"><strong>Disability</strong> β GCS, pupils, ASIA grading, dermatome/myotome testing</div></div>
<div class="step"><div class="snum sn-red">E</div><div class="stxt" style="color:#cbd5e1;"><strong>Exposure/Immobilization</strong> β Rigid cervical collar; backboard transfer; log-roll ONLY with inline stabilization</div></div>
</div>
<div>
<div class="sh">π₯ SECONDARY MANAGEMENT</div>
<ul class="dot-list" style="color:#cbd5e1;">
<li><strong>Immobilization:</strong> Hard cervical collar until cleared; rigid backboard during transport</li>
<li><strong>MAP Target:</strong> 85β90 mmHg for 7 days (neuroprotective)</li>
<li><strong>Vasopressors:</strong> Norepinephrine 1st choice; Phenylephrine for bradycardia-predominant; Dopamine alternative</li>
<li><strong>Foley catheter:</strong> Neurogenic bladder; strict I&O monitoring</li>
<li><strong>Bowel regimen:</strong> Prevent ileus and autonomic dysreflexia triggers</li>
<li><strong>DVT prophylaxis:</strong> LMWH + sequential compression (high VTE risk)</li>
<li><strong>PPI/H2RA:</strong> Prevent stress ulcer (Cushing ulcer)</li>
<li><strong>Pressure ulcer prevention:</strong> Turn every 2 hours</li>
<li><strong>Transfer:</strong> Specialized SCI center β improved outcomes</li>
</ul>
</div>
<div>
<div class="sh">π Methylprednisolone (MPSS) β Controversial</div>
<div style="background:rgba(251,191,36,0.12); border:1px solid rgba(251,191,36,0.3); border-radius:8px; padding:8px 10px; margin-bottom:7px;">
<div style="color:#fbbf24; font-size:9.5px; font-weight:700; margin-bottom:4px;">NASCIS III / AOSPine 2017 Protocol</div>
<ul class="dot-list" style="color:#e2e8f0;">
<li>Consider ONLY if started within <strong>8 hours of injury</strong></li>
<li>30 mg/kg IV bolus over 15 min β then 5.4 mg/kg/h Γ 23h</li>
<li>DO NOT give after 8 hours (risks outweigh benefits)</li>
<li>DO NOT use 48-hour infusion</li>
</ul>
<div style="color:#fca5a5; font-size:9.5px; font-weight:700; margin-top:5px;">β οΈ AAN recommends AGAINST routine use β risk of GI hemorrhage + respiratory infection without proven functional benefit</div>
</div>
<div class="sh">πͺ Surgical Indications</div>
<ul class="dot-list" style="color:#cbd5e1;">
<li>Cord compression with incomplete deficit (urgent)</li>
<li>Cauda equina syndrome β <strong>surgery within 24β48h</strong></li>
<li>Unstable spinal fracture with neurological progression</li>
<li>STASCIS trial: early decompression <24h β better ASIA grade improvement</li>
</ul>
</div>
</div>
</div>
</div>
<!-- ββββββββββ ROW 7: Autonomic Dysreflexia + Complications ββββββββββ -->
<div class="grid-2">
<div class="card card-red">
<div class="section-title"><span>β‘</span> Autonomic Dysreflexia β Life-Threatening Emergency</div>
<div class="alert alert-red">
<span class="ai">π</span>
<div><strong>POTENTIALLY FATAL β unique to SCI patients</strong><br>
Occurs in up to 56% of patients with lesions ABOVE T5βT6</div>
</div>
<div class="sh">Triggers (afferent stimuli from hollow viscera)</div>
<div style="display:flex; flex-wrap:wrap; gap:3px; margin-bottom:5px;">
<span class="pill pill-red">π½ Bladder distension (most common)</span>
<span class="pill pill-orange">π© Bowel impaction</span>
<span class="pill pill-purple">π€° Uterine contractions</span>
<span class="pill pill-teal">π Tight clothing/pressure sores</span>
<span class="pill pill-blue">π©Ί Catheterization</span>
</div>
<div class="sh">Clinical Features</div>
<ul class="dot-list">
<li>π΄ <strong>Paroxysmal severe hypertension</strong> β may be >200/100 mmHg</li>
<li>π Pounding headache (most common symptom)</li>
<li>π Paradoxical bradycardia (baroreceptor reflex)</li>
<li>π Flushing + diaphoresis ABOVE level of injury</li>
<li>π§ Pallor + piloerection BELOW level of injury</li>
<li>π Nasal congestion, blurred vision, anxiety</li>
</ul>
<div class="sh">Treatment β REMOVE THE TRIGGER FIRST</div>
<div class="step"><div class="snum sn-red">1</div><div class="stxt"><strong>Sit patient upright</strong> (orthostatic BP drop helps)</div></div>
<div class="step"><div class="snum sn-red">2</div><div class="stxt"><strong>Loosen clothing</strong>, check for pressure points</div></div>
<div class="step"><div class="snum sn-red">3</div><div class="stxt"><strong>Bladder:</strong> Catheterize or check/irrigate blocked catheter (most common trigger)</div></div>
<div class="step"><div class="snum sn-red">4</div><div class="stxt"><strong>Bowel:</strong> Digital rectal exam β disimpact (use lidocaine gel)</div></div>
<div class="step"><div class="snum sn-red">5</div><div class="stxt"><strong>Pharmacological:</strong> Nitrates (sublingual/topical) or Nifedipine if HTN persists</div></div>
<div class="step"><div class="snum sn-red">6</div><div class="stxt"><strong>In labor:</strong> Regional anesthesia (spinal/epidural) eliminates dysreflexia triggers</div></div>
</div>
<div class="card card-yellow">
<div class="section-title"><span>β οΈ</span> Complications β Acute & Long-Term</div>
<div class="sh">Acute Complications (ICU Phase)</div>
<ul class="dot-list">
<li>π« <strong>Respiratory failure</strong> β #1 cause of death; C3βC5 = ventilator-dependent</li>
<li>π <strong>Neurogenic shock</strong> β hypotension + bradycardia; requires vasopressors</li>
<li>β‘ <strong>Spinal shock</strong> β flaccid paralysis, absent reflexes, atonic bladder</li>
<li>π€’ <strong>Dysphagia</strong> β aspiration risk, especially c-spine injury</li>
<li>π§ͺ <strong>Stress ulcers</strong> (Cushing ulcer) β prophylaxis mandatory</li>
<li>𦡠<strong>DVT/PE</strong> β highest VTE risk of any trauma; LMWH + SCD</li>
</ul>
<div class="sh">Subacute/Chronic Complications</div>
<ul class="dot-list">
<li>π <strong>Spasticity</strong> β UMN pattern after spinal shock resolves; treat with baclofen</li>
<li>π½ <strong>Neurogenic bladder</strong> β urinary retention β recurrent UTI; intermittent catheterization</li>
<li>π© <strong>Neurogenic bowel</strong> β constipation, impaction β autonomic dysreflexia trigger</li>
<li>π©Ή <strong>Pressure ulcers</strong> β over sacrum, heels, occiput; reposition q2h</li>
<li>π‘οΈ <strong>Thermoregulatory failure</strong> β poikilothermia; risk of hyperthermia/hypothermia</li>
<li>𦴠<strong>Heterotopic ossification</strong> β ectopic bone around joints; β alkaline phosphatase</li>
<li>π§ <strong>Autonomic dysreflexia</strong> β above T6; life-threatening hypertensive emergency</li>
<li>π <strong>Psychiatric:</strong> Depression, anxiety, PTSD β major quality-of-life impact</li>
</ul>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 8: High-Yield Pearls + Mnemonics ββββββββββ -->
<div class="grid-2">
<div class="card card-green">
<div class="section-title"><span>π</span> High-Yield Exam Pearls</div>
<div class="pearl" style="margin-top:12px;">
<p><strong>PEARL 1:</strong> PRIAPISM in a trauma patient = SCI until proven otherwise. Always examine perineum in polytrauma.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 2:</strong> Central Cord Syndrome = ARMS weaker than LEGS. Classic: elderly with neck hyperextension (minor injury, degenerative spine). Most common incomplete SCI syndrome.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 3:</strong> Brown-SΓ©quard = BEST prognosis. Anterior Cord = WORST prognosis (<10% motor recovery). Know these for any exam question!</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 4:</strong> Sacral sparing (S4βS5) = INCOMPLETE injury = much better prognosis. ALWAYS check perianal sensation + voluntary anal contraction.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 5:</strong> SCIWORA = almost exclusively in CHILDREN. Normal CT/X-ray but abnormal MRI. Flexible pediatric ligaments allow cord injury without bony injury.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 6:</strong> Cauda Equina = SADDLE ANESTHESIA + bilateral leg weakness + bladder/bowel dysfunction. LMN lesion β FLACCID. SURGICAL EMERGENCY β MRI STAT.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 7:</strong> Methylprednisolone β ONLY within 8 hours, and highly controversial. AAN says avoid. AOSPine says CONSIDER. Know both perspectives for MCQs.</p>
</div>
</div>
<div class="card card-purple">
<div class="section-title"><span>π§ </span> Memory Tricks & Mnemonics</div>
<div class="mnemonic" style="margin-bottom:9px;">
<div class="mtitle">π§ Incomplete SCI Syndromes β "CAB + P" (Central, Anterior, Brown, Posterior)</div>
<div class="letters">
<div class="lb"><strong>C</strong>entral β Arms > Legs; Hyperextension elderly; Best common incomplete</div>
<div class="lb"><strong>A</strong>nterior β Motor GONE + Pain/Temp GONE; Vibration SAVED; Worst prognosis</div>
<div class="lb"><strong>B</strong>rown-SΓ©quard β IPSIlateral motor; CONTRAlateral pain/temp; Best prognosis</div>
<div class="lb"><strong>P</strong>osterior β Vibration/Proprioception LOST; Sensory ataxia; Rare</div>
</div>
</div>
<div class="mnemonic" style="margin-bottom:9px;">
<div class="mtitle">𦴠NEXUS Criteria β "No Tender Neurological Nonsense in Intoxicated Distracting"</div>
<div class="letters">
<div class="lb"><strong>N</strong>o midline tenderness</div>
<div class="lb"><strong>N</strong>o focal neuro deficit</div>
<div class="lb"><strong>N</strong>ormal alertness</div>
<div class="lb"><strong>N</strong>o intoxication</div>
<div class="lb"><strong>N</strong>o distracting injury</div>
</div>
</div>
<div class="mnemonic" style="margin-bottom:9px;">
<div class="mtitle">π¨ Neurogenic Shock vs Hypovolemic Shock β "Brad vs Tachy"</div>
<div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-top:4px;">
<div style="background:rgba(251,191,36,0.12); border:1px solid rgba(251,191,36,0.3); border-radius:7px; padding:6px 9px;">
<div style="color:#fbbf24; font-size:9.5px; font-weight:700; margin-bottom:3px;">NEUROGENIC SHOCK</div>
<div style="font-size:9.5px; color:#e2e8f0;">β BP + <strong>β HR (bradycardia)</strong><br>Warm, flushed skin<br>SCI above T6<br>Rx: Vasopressors (NE)</div>
</div>
<div style="background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.3); border-radius:7px; padding:6px 9px;">
<div style="color:#fca5a5; font-size:9.5px; font-weight:700; margin-bottom:3px;">HYPOVOLEMIC SHOCK</div>
<div style="font-size:9.5px; color:#e2e8f0;">β BP + <strong>β HR (tachycardia)</strong><br>Cold, clammy skin<br>Blood loss<br>Rx: Fluids + blood</div>
</div>
</div>
</div>
<div class="mnemonic">
<div class="mtitle">π Classic Cervical Fractures β "Jefferson HANGS from the Dens"</div>
<div class="letters">
<div class="lb"><strong>J</strong>efferson = C1 burst (axial load; "broke the ring"); <strong>STABLE</strong> β transverse lig determines</div>
<div class="lb"><strong>H</strong>angman = C2 pedicle fracture (bilateral); hyperextension/axial; often paradoxically stable</div>
<div class="lb"><strong>O</strong>dontoid = C2 dens fracture; Types I/II/III; Type II most common + unstable</div>
<div class="lb"><strong>C</strong>hance = T-L junction; seatbelt; "chance of getting it in rear-end collision"</div>
</div>
</div>
</div>
</div>
<!-- ββββββββββ ROW 9: Important Investigations + Comparison Table ββββββββββ -->
<div class="grid-2">
<div class="card card-slate">
<div class="section-title"><span>π§ͺ</span> Important Investigations Summary</div>
<table class="info-table">
<thead><tr><th class="th-slate">Investigation</th><th class="th-slate">When & Why</th><th class="th-slate">Key Finding</th></tr></thead>
<tbody class="tr-alt">
<tr><td>π©» <strong>CT Spine (entire)</strong></td><td>First-line in all trauma if NEXUS positive or CCR positive</td><td>Fracture/dislocation, cord compression</td></tr>
<tr><td>π§² <strong>MRI Spine</strong></td><td>Deficit without CT finding; pre-op planning; SCIWORA; prognosis</td><td>Cord hemorrhage (bad) vs edema (better)</td></tr>
<tr><td>π <strong>3-View X-Ray</strong></td><td>When CT unavailable (AP + Lateral + Odontoid)</td><td>Limited sensitivity β use CT if possible</td></tr>
<tr><td>π©Έ <strong>CBC, BMP, Coags</strong></td><td>All trauma patients; baseline before surgery</td><td>Anemia, coagulopathy, renal function</td></tr>
<tr><td>π« <strong>ECG / Cardiac monitoring</strong></td><td>Above T6 β arrhythmia, bradycardia, heart blocks</td><td>Sinus bradycardia, AV blocks</td></tr>
<tr><td>π« <strong>ABG + SpOβ</strong></td><td>Respiratory compromise; cervical SCI</td><td>Hypoxia, hypercarbia β intubate</td></tr>
<tr><td>πΌ <strong>Urinalysis + Foley</strong></td><td>All SCI β neurogenic bladder, UTI screening</td><td>Retention, hematuria</td></tr>
<tr><td>𦴠<strong>CXR + FAST</strong></td><td>Polytrauma β associated injuries</td><td>Pneumothorax, hemothorax, free fluid</td></tr>
</tbody>
</table>
</div>
<div class="card card-pink">
<div class="section-title"><span>βοΈ</span> Quick Reference β SCI Syndrome Comparison</div>
<table class="info-table">
<thead><tr><th class="th-red" style="width:18%">Syndrome</th><th class="th-red">Motor</th><th class="th-red">Pain/Temp</th><th class="th-red">Vibration/Proprioception</th><th class="th-red">Prognosis</th></tr></thead>
<tbody>
<tr style="background:#eff6ff"><td><strong>Central Cord</strong></td><td>Arms > Legs</td><td>Variable loss</td><td>Usually preserved</td><td><span class="verdict vmod">Moderate</span></td></tr>
<tr style="background:#fdf2f8"><td><strong>Brown-SΓ©quard</strong></td><td>Ipsilateral loss</td><td>Contralateral loss</td><td>Ipsilateral loss</td><td><span class="verdict vgood">Best</span></td></tr>
<tr style="background:#fff1f2"><td><strong>Anterior Cord</strong></td><td>Bilateral loss</td><td>Bilateral loss</td><td>SPARED β</td><td><span class="verdict vpoor">Worst</span></td></tr>
<tr style="background:#f0fdfa"><td><strong>Posterior Cord</strong></td><td>Intact</td><td>Intact β</td><td>Bilateral loss</td><td><span class="verdict vmod">Variable</span></td></tr>
<tr style="background:#faf5ff"><td><strong>Conus Medullaris</strong></td><td>Para+UMN+LMN</td><td>Saddle loss</td><td>Variable</td><td><span class="verdict vmod">Mixed</span></td></tr>
<tr style="background:#fefce8"><td><strong>Cauda Equina</strong></td><td>LMN (flaccid)</td><td>Saddle (S3β5)</td><td>Loss</td><td><span class="verdict vgood">Better (LMN)</span></td></tr>
</tbody>
</table>
<div class="alert alert-orange" style="margin-top:7px;">
<span class="ai">π―</span>
<div><strong>KEY EXAM DISTINGUISHER:</strong><br>
β’ Anterior cord: vibration/proprioception SPARED (posterior columns intact)<br>
β’ Posterior cord: pain/temp SPARED (spinothalamic intact)<br>
β’ Brown-SΓ©quard: DISSOCIATED sensory loss (each side has different deficits)</div>
</div>
</div>
</div>
<!-- ββββββββββ ROW 10: EM-Specific Quick Reference ββββββββββ -->
<div class="grid-3">
<div class="card card-red">
<div class="section-title"><span>π¨</span> Red Flags / Immediate Actions</div>
<div class="alert alert-red" style="margin-bottom:5px;">
<span class="ai">π</span>
<div>
<strong>Immediate Intubation if:</strong><br>
β’ C3βC4 injury (diaphragm at risk)<br>
β’ SpOβ <90% despite Oβ<br>
β’ GCS β€8 or airway at risk<br>
β’ Paradoxical breathing pattern<br>
β’ Rapid respiratory deterioration
</div>
</div>
<ul class="dot-list">
<li>π΄ SBP <90 β MAP <85 β vasopressors NOW</li>
<li>π΄ Priapism β SCI until proven otherwise</li>
<li>π΄ Cauda equina signs β MRI STAT + surgical consult</li>
<li>π΄ New neuro deficit on exam β re-image immediately</li>
<li>π΄ Bulging bladder β catheterize (avoid autonomic dysreflexia)</li>
</ul>
</div>
<div class="card card-teal">
<div class="section-title"><span>π</span> Vasopressor Choice in Neurogenic Shock</div>
<table class="info-table">
<thead><tr><th class="th-teal">Agent</th><th class="th-teal">Mechanism</th><th class="th-teal">Use When</th></tr></thead>
<tbody class="tr-alt">
<tr><td><strong>Norepinephrine</strong></td><td>Ξ±1 + Ξ²1; β SVR + HR</td><td>1st line; low BP + low HR</td></tr>
<tr><td><strong>Phenylephrine</strong></td><td>Pure Ξ±1; β SVR</td><td>When tachycardia also present</td></tr>
<tr><td><strong>Dopamine</strong></td><td>DA + Ξ² + Ξ± (dose-dependent)</td><td>Alternative; avoid high doses</td></tr>
<tr><td><strong>Atropine</strong></td><td>Anti-muscarinic; β HR</td><td>Symptomatic bradycardia alone</td></tr>
</tbody>
</table>
<div class="alert alert-green" style="margin-top:6px;">
<span class="ai">π―</span>
<span>MAP target: <strong>85β90 mmHg</strong> Γ 7 days post-injury (especially thoracic/cervical SCI) β maintains spinal cord perfusion pressure.</span>
</div>
</div>
<div class="card card-yellow">
<div class="section-title"><span>π</span> One-Liners for Exams</div>
<ul class="dot-list">
<li>π― Priapism in trauma β SCI</li>
<li>π― Paradoxical breathing β cervical SCI (C3βC5)</li>
<li>π― NEXUS: 5 criteria; all must be normal to clear</li>
<li>π― Central cord β elderly + hyperextension + spondylosis</li>
<li>π― Brown-SΓ©quard β stab wound to back</li>
<li>π― Anterior cord β aortic surgery / disc herniation</li>
<li>π― Cauda equina β saddle anesthesia β MRI STAT</li>
<li>π― SCIWORA β children only</li>
<li>π― 10β40% have multiple noncontiguous fractures β image whole spine</li>
<li>π― Neurogenic shock = bradycardia + hypotension (not tachy)</li>
<li>π― Sacral sparing = incomplete = better prognosis</li>
<li>π― Bulbocavernosus reflex return = end of spinal shock</li>
<li>π― MAP 85β90 mmHg Γ 7 days = neuroprotective target</li>
<li>π― MPSS = ONLY within 8 hours; controversial; consider carefully</li>
</ul>
</div>
</div>
<!-- ββββββββββ FOOTER ββββββββββ -->
<div class="footer">
<p>π Sources: <strong>Rosen's Emergency Medicine</strong> | <strong>Tintinalli's EM</strong> | <strong>Current Surgical Therapy 14e</strong> | <strong>Rockwood & Green's Fractures</strong> | <strong>Bailey & Love's Surgery</strong> | <strong>Bradley & Daroff's Neurology</strong></p>
<p>π¨ <strong>Emergency Medicine PGY-1 Reference</strong> | Acute Spine Injury | β¨ Orris AI</p>
</div>
</div>
</body>
</html>
ls -lh /tmp/workspace/spine-injury-poster/
Acute spinal cord injury medical diagram showing: cross-sectional view of spinal cord with color-coded injury syndrome patterns - Central Cord Syndrome (central gray area highlighted red, arms more affected), Brown-Sequard Syndrome (left half highlighted showing ipsilateral motor loss and contralateral pain/temperature loss), Anterior Cord Syndrome (anterior horn and spinothalamic tract highlighted, posterior columns spared), and Posterior Cord Syndrome (dorsal columns highlighted). Show anatomical tracts labeled: Corticospinal tract, Spinothalamic tract, Dorsal columns. Professional medical illustration style, white background, clean colors, labeled diagrams.
acute spine injury poster
HTML File Β· HTML
Open in any browser β Ctrl+P β Save as PDF (landscape orientation, scale to fit) for a print-ready study sheet.

| Section | Key Content |
|---|---|
| π Definition & Overview | Incidence, demographics, scope |
| β‘ Causes / Risk Factors | MVA 38%, Falls 31%, Penetrating; mechanism by level |
| βοΈ Pathophysiology | Primary vs Secondary injury; cascade timeline |
| π ASIA Impairment Scale | Grades AβE with prognosis; sacral sparing rule |
| π§© Incomplete SCI Syndromes | All 6 syndromes with mechanism, features, prognosis |
| π©Ί Clinical Features | Level-specific deficits, red flag signs |
| β‘ Neurogenic vs Spinal Shock | Full comparison table β key EM differentiator |
| π¬ Diagnosis | NEXUS criteria, Canadian C-Spine Rule, CT vs MRI |
| π Management | ATLS approach, MAP targets, vasopressors, MPSS |
| β οΈ Complications | Autonomic dysreflexia (emergency!), DVT, pressure sores |
| π High-Yield Pearls | 7 exam-critical one-liners |
| π§ Mnemonics | CAB+P syndromes, NEXUS, Neurogenic vs Hypovolemic |
MASTER PROMPT TEMPLATE β¨ Create a clean high-yield medical infographic poster for emergency medicine pg resident 1st year about: NOR ADRENALINE Style: modern medical infographic highly organized exam-focused visually memorable colorful but professional easy to review before exams include emojis/icons for memory aid use clear section boxes and arrows use concise bullet points use tables for comparisons use color-coded categories include important high-yield notes and warning signs make it aesthetically pleasing like premium study notes white background readable font structured like a study cheat sheet Must include: Definition Classification Causes / risk factors Pathophysiology Clinical features Diagnosis Management Complications Important investigations High-yield exam pearls Memory tricks / mnemonics Comparison tables , ecgs, xrays, ct photos, mri photos if applicable
mkdir -p /tmp/workspace/noradrenaline-poster && echo "ready"
~/noradrenaline-poster/noradrenaline_poster.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noradrenaline (Norepinephrine) β Emergency Medicine High-Yield Infographic</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background: #f1f5f9;
color: #0f172a;
font-size: 11px;
line-height: 1.5;
}
.page {
width: 1200px;
margin: 0 auto;
background: #ffffff;
padding: 20px 24px 28px;
}
/* βββ HEADER βββ */
.header {
background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 30%, #7c3aed 65%, #dc2626 100%);
border-radius: 16px;
padding: 20px 28px;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
box-shadow: 0 8px 32px rgba(15,23,42,0.35);
position: relative;
overflow: hidden;
}
.header::after {
content: 'β‘';
position: absolute;
right: 180px;
top: 50%;
transform: translateY(-50%);
font-size: 110px;
opacity: 0.06;
}
.header-left h1 {
font-family: 'Poppins', sans-serif;
font-size: 30px;
font-weight: 800;
color: #fff;
letter-spacing: -0.5px;
}
.header-left h1 span { color: #fbbf24; }
.header-left h1 .sub { color: #a5b4fc; font-size: 14px; font-weight: 500; margin-left: 8px; }
.header-left p { font-size: 11px; color: #c4b5fd; margin-top: 4px; font-weight: 500; }
.header-badges { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.badge { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; padding: 4px 12px; font-size: 9.5px; font-weight: 700; }
.badge.hot { background: rgba(251,191,36,0.2); border-color: #fbbf24; color: #fbbf24; }
.badge.em { background: rgba(239,68,68,0.2); border-color: #ef4444; color: #fca5a5; }
.badge.rx { background: rgba(167,139,250,0.2); border-color: #a78bfa; color: #c4b5fd; }
/* βββ GRIDS βββ */
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 13px; margin-bottom: 13px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 13px; margin-bottom: 13px; }
.grid-full { margin-bottom: 13px; }
/* βββ CARDS βββ */
.card { border-radius: 12px; padding: 13px 15px; border: 1.5px solid transparent; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; border-radius: 12px 0 0 12px; }
.card-blue { background: #eff6ff; border-color: #bfdbfe; } .card-blue::before { background: #2563eb; }
.card-green { background: #f0fdf4; border-color: #bbf7d0; } .card-green::before { background: #16a34a; }
.card-red { background: #fff1f2; border-color: #fecdd3; } .card-red::before { background: #dc2626; }
.card-purple { background: #faf5ff; border-color: #e9d5ff; } .card-purple::before { background: #7c3aed; }
.card-orange { background: #fff7ed; border-color: #fed7aa; } .card-orange::before { background: #ea580c; }
.card-teal { background: #f0fdfa; border-color: #99f6e4; } .card-teal::before { background: #0d9488; }
.card-yellow { background: #fefce8; border-color: #fde68a; } .card-yellow::before { background: #ca8a04; }
.card-pink { background: #fdf2f8; border-color: #f9a8d4; } .card-pink::before { background: #db2777; }
.card-indigo { background: #eef2ff; border-color: #c7d2fe; } .card-indigo::before { background: #4f46e5; }
.card-slate { background: #f8fafc; border-color: #cbd5e1; } .card-slate::before { background: #475569; }
.card-dark { background: #0f172a; border-color: #1e293b; color: #f8fafc; } .card-dark::before { background: #fbbf24; }
.card-crimson{ background: #fff0f0; border-color: #fca5a5; } .card-crimson::before{ background: #b91c1c; }
.card-violet { background: #f5f3ff; border-color: #ddd6fe; } .card-violet::before { background: #6d28d9; }
/* βββ SECTION TITLES βββ */
.st { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; margin-bottom: 7px; display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: 0.6px; }
.card-blue .st { color: #1d4ed8; } .card-green .st { color: #15803d; } .card-red .st { color: #b91c1c; }
.card-purple .st { color: #6d28d9; } .card-orange .st { color: #c2410c; } .card-teal .st { color: #0f766e; }
.card-yellow .st { color: #92400e; } .card-pink .st { color: #be185d; } .card-indigo .st { color: #3730a3; }
.card-slate .st { color: #334155; } .card-dark .st { color: #fbbf24; } .card-crimson .st { color: #991b1b; }
.card-violet .st { color: #5b21b6; }
/* βββ LISTS βββ */
ul.dl { list-style: none; padding: 0; }
ul.dl li { padding: 2px 0 2px 14px; position: relative; font-size: 10.5px; color: #374151; }
ul.dl li::before { content: 'βΈ'; position: absolute; left: 0; color: #6b7280; font-size: 9px; top: 3px; }
.card-dark ul.dl li { color: #cbd5e1; }
.card-dark ul.dl li::before { color: #fbbf24; }
/* βββ TABLES βββ */
table.t { width: 100%; border-collapse: collapse; font-size: 10px; margin-top: 4px; }
table.t th { padding: 5px 7px; font-weight: 700; text-align: left; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.3px; }
table.t td { padding: 4px 7px; border-bottom: 1px solid rgba(0,0,0,0.05); vertical-align: top; line-height: 1.4; }
table.t tr:last-child td { border-bottom: none; }
table.t tr:nth-child(even) td { background: rgba(0,0,0,0.022); }
.tb { background: #dbeafe; color: #1e3a8a; } .tg { background: #dcfce7; color: #14532d; }
.tr { background: #fee2e2; color: #7f1d1d; } .tp { background: #ede9fe; color: #4c1d95; }
.to { background: #fed7aa; color: #7c2d12; } .tt { background: #ccfbf1; color: #134e4a; }
.ts { background: #e2e8f0; color: #1e293b; } .td { background: #1e293b; color: #f8fafc; }
.ti { background: #e0e7ff; color: #312e81; } .ty { background: #fef3c7; color: #713f12; }
/* βββ PILLS βββ */
.pill { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 9px; font-weight: 700; margin: 1px 2px; }
.pr { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.pb { background: #dbeafe; color: #1d4ed8; border: 1px solid #93c5fd; }
.pg { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.po { background: #ffedd5; color: #c2410c; border: 1px solid #fb923c; }
.pp { background: #ede9fe; color: #6d28d9; border: 1px solid #c4b5fd; }
.pt { background: #ccfbf1; color: #0f766e; border: 1px solid #5eead4; }
.py { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.ppk { background: #fce7f3; color: #be185d; border: 1px solid #f9a8d4; }
/* βββ ALERTS βββ */
.al { border-radius: 8px; padding: 7px 11px; margin-top: 7px; font-size: 10px; font-weight: 600; display: flex; align-items: flex-start; gap: 6px; line-height: 1.5; }
.al-r { background: #fef2f2; border: 1.5px solid #ef4444; color: #991b1b; }
.al-y { background: #fefce8; border: 1.5px solid #eab308; color: #713f12; }
.al-b { background: #eff6ff; border: 1.5px solid #3b82f6; color: #1e3a8a; }
.al-g { background: #f0fdf4; border: 1.5px solid #22c55e; color: #14532d; }
.al-o { background: #fff7ed; border: 1.5px solid #f97316; color: #7c2d12; }
.al-p { background: #faf5ff; border: 1.5px solid #8b5cf6; color: #4c1d95; }
.ai { font-size: 14px; flex-shrink: 0; margin-top: 0; }
/* βββ MNEMONIC βββ */
.mn { background: linear-gradient(135deg, #0f172a, #1e293b); border-radius: 10px; padding: 9px 13px; margin-top: 7px; color: #f8fafc; }
.mn .mnt { font-family: 'Poppins', sans-serif; font-size: 9.5px; font-weight: 700; color: #fbbf24; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px; }
.mn .lts { display: flex; flex-wrap: wrap; gap: 4px; }
.mn .lb { background: rgba(255,255,255,0.07); border: 1px solid rgba(251,191,36,0.25); border-radius: 6px; padding: 3px 8px; font-size: 10px; }
.mn .lb strong { color: #fbbf24; font-size: 12px; display: block; line-height: 1.2; }
/* βββ FLOW βββ */
.flow { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; margin: 6px 0; }
.fb { border-radius: 7px; padding: 3px 9px; font-size: 9.5px; font-weight: 600; border: 1.5px solid currentColor; text-align: center; }
.fa { font-size: 16px; color: #6b7280; }
/* βββ PEARL βββ */
.pearl { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1.5px solid #16a34a; border-radius: 9px; padding: 7px 11px; margin-top: 8px; position: relative; }
.pearl::before { content: 'π'; position: absolute; top: -11px; left: 8px; font-size: 15px; }
.pearl p { font-size: 10px; color: #14532d; line-height: 1.5; }
/* βββ RECEPTOR BOX βββ */
.rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 6px; }
.rec-card { border-radius: 9px; padding: 7px 10px; border: 1.5px solid transparent; }
.rec-a1 { background: #fff1f2; border-color: #fca5a5; }
.rec-a2 { background: #fff7ed; border-color: #fdba74; }
.rec-b1 { background: #eff6ff; border-color: #93c5fd; }
.rec-b2 { background: #f0fdf4; border-color: #86efac; }
.rec-title { font-size: 10px; font-weight: 800; margin-bottom: 4px; }
.rec-a1 .rec-title { color: #b91c1c; }
.rec-a2 .rec-title { color: #c2410c; }
.rec-b1 .rec-title { color: #1d4ed8; }
.rec-b2 .rec-title { color: #15803d; }
.rec-body { font-size: 9.5px; color: #374151; line-height: 1.4; }
/* βββ STEP βββ */
.step { display: flex; gap: 7px; align-items: flex-start; padding: 3px 0; }
.snum { width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8.5px; font-weight: 800; flex-shrink: 0; }
.sr { background: #dc2626; color: #fff; }
.sb { background: #2563eb; color: #fff; }
.sg { background: #16a34a; color: #fff; }
.so { background: #ea580c; color: #fff; }
.sp { background: #7c3aed; color: #fff; }
.stxt { font-size: 10.5px; color: #374151; flex: 1; }
/* βββ SH βββ */
.sh { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin: 7px 0 3px; opacity: 0.75; }
.card-blue .sh { color: #1d4ed8; } .card-green .sh { color: #15803d; } .card-red .sh { color: #b91c1c; }
.card-purple .sh { color: #6d28d9; } .card-orange .sh { color: #c2410c; } .card-teal .sh { color: #0f766e; }
.card-yellow .sh { color: #92400e; } .card-dark .sh { color: #fbbf24; } .card-crimson .sh { color: #991b1b; }
.card-indigo .sh { color: #3730a3; } .card-violet .sh { color: #5b21b6; } .card-slate .sh { color: #334155; }
/* βββ DIVIDER βββ */
.divider { height: 3px; background: linear-gradient(90deg, #dc2626, #ea580c, #fbbf24, #7c3aed, #2563eb, #16a34a); border-radius: 2px; margin: 13px 0; }
/* βββ BIG DRUG INFO BOX βββ */
.drug-header {
background: linear-gradient(135deg, #1e1b4b, #312e81);
border-radius: 10px;
padding: 10px 15px;
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 8px;
}
.drug-emoji { font-size: 32px; }
.drug-name { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: #fbbf24; }
.drug-alias { font-size: 10px; color: #c4b5fd; margin-top: 2px; }
.drug-class-tag { background: rgba(251,191,36,0.15); border: 1px solid rgba(251,191,36,0.3); color: #fbbf24; border-radius: 6px; padding: 3px 10px; font-size: 9.5px; font-weight: 700; }
/* βββ DOSING BOX βββ */
.dose-box {
background: #0f172a;
border: 2px solid #fbbf24;
border-radius: 10px;
padding: 10px 14px;
margin-top: 6px;
}
.dose-box .dt { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; color: #fbbf24; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.dose-row { display: flex; align-items: center; gap: 8px; padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.dose-row:last-child { border-bottom: none; }
.dose-label { font-size: 9.5px; color: #94a3b8; font-weight: 600; min-width: 100px; }
.dose-val { font-size: 11px; font-weight: 700; color: #fbbf24; }
.dose-note { font-size: 9px; color: #cbd5e1; margin-left: 4px; }
/* βββ FOOTER βββ */
.footer { background: #0f172a; border-radius: 10px; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; margin-top: 13px; }
.footer p { color: #94a3b8; font-size: 9.5px; }
.footer strong { color: #fbbf24; }
</style>
</head>
<body>
<div class="page">
<!-- ββββββββββ HEADER ββββββββββ -->
<div class="header">
<div class="header-left">
<h1>π <span>NORADRENALINE</span> <span class="sub">(Norepinephrine Β· Levophed)</span></h1>
<p>EMERGENCY MEDICINE PGY-1 | Vasopressor Master Reference | Lippincott Pharmacology Β· Tintinalli's Β· Rosen's EM Β· Goldman-Cecil Β· Harrison's Β· Fischer's Surgery</p>
</div>
<div class="header-badges">
<span class="badge hot">π₯ HIGH YIELD</span>
<span class="badge em">π¨ FIRST-LINE VASOPRESSOR</span>
<span class="badge rx">π Catecholamine</span>
<span class="badge">π Lippincott Pharm</span>
</div>
</div>
<!-- ββββββββββ ROW 1: Identity Card + Classification ββββββββββ -->
<div class="grid-2">
<!-- IDENTITY CARD -->
<div class="card card-violet">
<div class="st"><span>πͺͺ</span> Drug Identity Card</div>
<div class="drug-header">
<div class="drug-emoji">β‘</div>
<div>
<div class="drug-name">Noradrenaline</div>
<div class="drug-alias">Norepinephrine Β· Levophed Β· NE Β· NAd</div>
</div>
<div>
<span class="drug-class-tag">Endogenous Catecholamine</span>
</div>
</div>
<table class="t">
<tbody>
<tr><td style="font-weight:700;color:#5b21b6;width:38%">Chemical Class</td><td>Catecholamine (sympathomimetic amine)</td></tr>
<tr><td style="font-weight:700;color:#5b21b6">Synthesis</td><td>Tyrosine β DOPA β Dopamine β <strong>Norepinephrine</strong> (via dopamine Ξ²-hydroxylase)</td></tr>
<tr><td style="font-weight:700;color:#5b21b6">Storage</td><td>Adrenal medulla (20%), sympathetic nerve terminals (80%)</td></tr>
<tr><td style="font-weight:700;color:#5b21b6">Route</td><td>IV infusion ONLY (not oral; rapid first-pass metabolism)</td></tr>
<tr><td style="font-weight:700;color:#5b21b6">Onset</td><td>1β2 min; Duration = 1β2 min after stopping infusion</td></tr>
<tr><td style="font-weight:700;color:#5b21b6">Metabolism</td><td>MAO + COMT β inactive metabolites (VMA, normetanephrine) β urine</td></tr>
<tr><td style="font-weight:700;color:#5b21b6">Elimination TΒ½</td><td>2β2.5 minutes (very short β allows fine titration)</td></tr>
</tbody>
</table>
</div>
<!-- RECEPTOR PROFILE -->
<div class="card card-indigo">
<div class="st"><span>π¬</span> Receptor Profile & Actions</div>
<div style="text-align:center; margin-bottom:6px;">
<span style="font-size:10px; color:#3730a3; font-weight:700;">NE Receptor Affinity Ranking: </span>
<span class="pill pr">Ξ±1 >>></span>
<span class="pill po">Ξ±2 >></span>
<span class="pill pb">Ξ²1 ></span>
<span class="pill pg">Ξ²2 (minimal)</span>
</div>
<div class="rec-grid">
<div class="rec-card rec-a1">
<div class="rec-title">π΄ Ξ±1 β DOMINANT</div>
<div class="rec-body">
<strong>Location:</strong> Vascular smooth muscle<br>
<strong>Effect:</strong> βββ Vasoconstriction β β SVR β β BP<br>
<strong>Clinical:</strong> Raises MAP; useful in distributive shock<br>
<strong>Also:</strong> Pupil dilation, intestinal relaxation
</div>
</div>
<div class="rec-card rec-a2">
<div class="rec-title">π Ξ±2 β Moderate</div>
<div class="rec-body">
<strong>Location:</strong> Presynaptic nerve terminals<br>
<strong>Effect:</strong> β NE release (negative feedback)<br>
<strong>Also:</strong> Platelet aggregation, CNS sedation (if crosses BBB)
</div>
</div>
<div class="rec-card rec-b1">
<div class="rec-title">π΅ Ξ²1 β Moderate</div>
<div class="rec-body">
<strong>Location:</strong> Heart (SA node, myocardium)<br>
<strong>Effect:</strong> β Inotropy + β Chronotropy (HR increase)<br>
<strong>BUT:</strong> Net HR often β due to baroreceptor reflex bradycardia<br>
<strong>Net CO:</strong> Usually maintained or slightly β
</div>
</div>
<div class="rec-card rec-b2">
<div class="rec-title">π’ Ξ²2 β Minimal</div>
<div class="rec-body">
<strong>Location:</strong> Bronchial, vascular smooth muscle<br>
<strong>Effect:</strong> Minimal bronchodilation; minimal metabolic effect<br>
<strong>Key:</strong> Unlike epinephrine, NE does NOT significantly activate Ξ²2<br>
<strong>Result:</strong> No major bronchodilation or hyperglycemia
</div>
</div>
</div>
<div class="al al-b" style="margin-top:6px;">
<span class="ai">π‘</span>
<span><strong>NET EFFECT:</strong> Potent vasoconstriction (β SVR) + cardiac support (β inotropy) + <strong>reflex bradycardia</strong> (due to baroreceptor activation from β BP). MAP rises significantly.</span>
</div>
</div>
</div>
<!-- ββββββββββ ROW 2: Biosynthesis Pathway + Hemodynamic Effects ββββββββββ -->
<div class="grid-2">
<div class="card card-teal">
<div class="st"><span>π§¬</span> Catecholamine Biosynthesis Pathway</div>
<div style="margin: 6px 0;">
<div class="flow" style="flex-direction:column; align-items:flex-start; gap:2px;">
<div style="display:flex; align-items:center; gap:8px;">
<div class="fb" style="color:#0f766e; background:#f0fdfa; min-width:160px; text-align:left; padding:4px 10px;">π₯© <strong>Phenylalanine</strong> (dietary)</div>
</div>
<div style="padding-left:20px; color:#0d9488; font-size:9.5px;">β Phenylalanine hydroxylase</div>
<div style="display:flex; align-items:center; gap:8px;">
<div class="fb" style="color:#ca8a04; background:#fefce8; min-width:160px; text-align:left; padding:4px 10px;">π‘ <strong>Tyrosine</strong></div>
</div>
<div style="padding-left:20px; color:#0d9488; font-size:9.5px;">β Tyrosine hydroxylase β <span style="color:#dc2626; font-weight:700;">RATE-LIMITING STEP</span></div>
<div style="display:flex; align-items:center; gap:8px;">
<div class="fb" style="color:#7c3aed; background:#faf5ff; min-width:160px; text-align:left; padding:4px 10px;">π <strong>L-DOPA</strong></div>
</div>
<div style="padding-left:20px; color:#0d9488; font-size:9.5px;">β DOPA decarboxylase (AADC)</div>
<div style="display:flex; align-items:center; gap:8px;">
<div class="fb" style="color:#1d4ed8; background:#eff6ff; min-width:160px; text-align:left; padding:4px 10px;">π΅ <strong>Dopamine</strong></div>
</div>
<div style="padding-left:20px; color:#0d9488; font-size:9.5px;">β Dopamine Ξ²-hydroxylase (DBH) β in vesicles</div>
<div style="display:flex; align-items:center; gap:8px;">
<div class="fb" style="color:#dc2626; background:#fff1f2; min-width:160px; text-align:left; padding:4px 10px; border-width:2.5px; font-size:12px;">π΄ <strong>NOREPINEPHRINE β
</strong></div>
</div>
<div style="padding-left:20px; color:#0d9488; font-size:9.5px;">β PNMT (only in adrenal medulla & some brain neurons)</div>
<div style="display:flex; align-items:center; gap:8px;">
<div class="fb" style="color:#ea580c; background:#fff7ed; min-width:160px; text-align:left; padding:4px 10px;">π <strong>Epinephrine</strong></div>
</div>
</div>
</div>
<div class="al al-y" style="margin-top:4px;">
<span class="ai">β</span>
<span>Tyrosine hydroxylase = rate-limiting enzyme β inhibited by catecholamine end-product feedback. Target of reserpine (depletes vesicle stores) and metyrosine.</span>
</div>
</div>
<div class="card card-red">
<div class="st"><span>π</span> Hemodynamic Effects</div>
<table class="t">
<thead><tr><th class="tr">Parameter</th><th class="tr">Effect</th><th class="tr">Mechanism</th></tr></thead>
<tbody>
<tr><td>π©Έ <strong>MAP / DBP</strong></td><td style="color:#dc2626; font-weight:700;">βββ RISES</td><td>Ξ±1 β β SVR (vasoconstriction)</td></tr>
<tr><td>π <strong>Heart Rate</strong></td><td style="color:#16a34a; font-weight:700;">β Decreases (reflex)</td><td>Baroreceptor reflex bradycardia; vagal activation overcomes Ξ²1</td></tr>
<tr><td>π« <strong>Cardiac Output</strong></td><td>β Maintained or slightly β</td><td>Ξ²1 inotropy + β preload; but β afterload may β CO in weak hearts</td></tr>
<tr><td>π©Ή <strong>SVR</strong></td><td style="color:#dc2626; font-weight:700;">βββ Major β</td><td>Primary Ξ±1 action</td></tr>
<tr><td>π« <strong>Contractility</strong></td><td style="color:#16a34a;">β Positive inotrope</td><td>Ξ²1 stimulation</td></tr>
<tr><td>π©Ί <strong>Pulse Pressure</strong></td><td>Narrows slightly</td><td>DBP rises more than SBP</td></tr>
<tr><td>π« <strong>Renal Blood Flow</strong></td><td style="color:#dc2626;">β Reduced</td><td>Renal artery vasoconstriction</td></tr>
<tr><td>π§ <strong>Skin/Gut Blood Flow</strong></td><td style="color:#dc2626;">β Reduced</td><td>Peripheral Ξ±1 vasoconstriction</td></tr>
<tr><td>π§ <strong>Cerebral/Coronary</strong></td><td style="color:#16a34a;">β Maintained</td><td>Autoregulation; β MAP helps perfusion</td></tr>
<tr><td>π¬ <strong>Blood Glucose</strong></td><td>Minimal change</td><td>Minimal Ξ²2 (no glycogenolysis)</td></tr>
</tbody>
</table>
<div class="al al-b" style="margin-top:5px;">
<span class="ai">π‘</span>
<span><strong>KEY BARORECEPTOR REFLEX:</strong> β BP β baroreceptors activate β β vagal tone β reflex bradycardia. Net HR = β despite Ξ²1 activation. Atropine blocks this reflex β reveals tachycardia.</span>
</div>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 3: INDICATIONS + DOSING ββββββββββ -->
<div class="grid-2">
<div class="card card-green">
<div class="st"><span>β
</span> Indications β When to Use NE</div>
<div class="sh">Primary Indication: Shock States</div>
<table class="t">
<thead><tr><th class="tg">Shock Type</th><th class="tg">Role</th><th class="tg">Evidence</th></tr></thead>
<tbody>
<tr style="background:#f0fdf4"><td>π¦ <strong>Septic Shock</strong></td><td><span class="pill pg">1st LINE</span> β Start after 30 mL/kg IVF</td><td>Survivor sepsis campaign; NE superior to dopamine (β arrhythmias)</td></tr>
<tr><td>π« <strong>Cardiogenic Shock</strong></td><td><span class="pill pg">Preferred 1st line</span> over epinephrine</td><td>Recent data: epinephrine β mortality in cardiogenic shock β NE preferred</td></tr>
<tr style="background:#f0fdf4"><td>π§ <strong>Neurogenic Shock</strong></td><td><span class="pill pg">1st LINE</span></td><td>Ξ±1 restores lost sympathetic tone; target MAP 85β90 mmHg</td></tr>
<tr><td>π <strong>Post-Cardiac Arrest</strong></td><td><span class="pill pg">Preferred</span> vasopressor</td><td>Maintain MAP after ROSC; push-dose epi while NE drip prepared</td></tr>
<tr style="background:#f0fdf4"><td>π©Ί <strong>Anaphylaxis (refractory)</strong></td><td><span class="pill py">2nd line</span></td><td>After epinephrine fails; for refractory hypotension component</td></tr>
<tr><td>π« <strong>Hepatorenal Syndrome</strong></td><td><span class="pill py">2nd line</span></td><td>NE + albumin + furosemide β reversed type 1 HRS in studies</td></tr>
<tr style="background:#f0fdf4"><td>π <strong>Distributive Shock (other)</strong></td><td><span class="pill pg">1st LINE</span></td><td>Adrenal crisis, drug-induced, spinal shock</td></tr>
</tbody>
</table>
<div class="al al-g" style="margin-top:6px;">
<span class="ai">π</span>
<span><strong>SURVIVNG SEPSIS CAMPAIGN 2021:</strong> NE = preferred 1st-line vasopressor in septic shock. Add vasopressin (0.03 U/min) when NE dose is high, before escalating NE further.</span>
</div>
</div>
<div class="card card-dark">
<div class="st"><span>π</span> Dosing & Administration</div>
<div class="dose-box">
<div class="dt">β‘ Standard Dosing Regimen</div>
<div class="dose-row"><div class="dose-label">Starting Dose</div><div class="dose-val">0.01β0.1 mcg/kg/min</div><div class="dose-note">(~0.5β2 mcg/min in 70kg adult)</div></div>
<div class="dose-row"><div class="dose-label">Usual Range</div><div class="dose-val">0.01β3 mcg/kg/min</div><div class="dose-note">(Fischer's; titrate to MAP β₯65 mmHg)</div></div>
<div class="dose-row"><div class="dose-label">Septic Shock (Tintinalli)</div><div class="dose-val">0.5β30 mcg/min</div><div class="dose-note">absolute dose (non-weight-based)</div></div>
<div class="dose-row"><div class="dose-label">Goldman-Cecil Range</div><div class="dose-val">1β50 mcg/min</div><div class="dose-note">with MAP target 65β70 mmHg</div></div>
<div class="dose-row"><div class="dose-label">High-Dose / Refractory</div><div class="dose-val">>0.25 mcg/kg/min</div><div class="dose-note">consider adding vasopressin</div></div>
</div>
<div class="sh" style="margin-top:10px;">Administration Rules</div>
<div class="step"><div class="snum sp">1</div><div class="stxt" style="color:#cbd5e1;"><strong>Central Line PREFERRED</strong> β extravasation causes tissue necrosis. Peripheral use acceptable short-term: large bore, proximal, secured, non-distal vein</div></div>
<div class="step"><div class="snum sp">2</div><div class="stxt" style="color:#cbd5e1;"><strong>Never bolus β always continuous infusion</strong> via pump. Short half-life (2 min) allows rapid titration up/down</div></div>
<div class="step"><div class="snum sp">3</div><div class="stxt" style="color:#cbd5e1;"><strong>Dilution:</strong> 4 mg in 250 mL D5W = 16 mcg/mL; or 8 mg in 250 mL = 32 mcg/mL</div></div>
<div class="step"><div class="snum sp">4</div><div class="stxt" style="color:#cbd5e1;"><strong>Target MAP:</strong> β₯65 mmHg (septic shock); 85β90 mmHg (spinal cord/neurogenic shock)</div></div>
<div class="step"><div class="snum sp">5</div><div class="stxt" style="color:#cbd5e1;"><strong>Monitoring:</strong> Continuous arterial line preferred; HR, BP, UO, lactate, skin perfusion q1h</div></div>
<div class="al al-y" style="margin-top:8px;">
<span class="ai">β οΈ</span>
<span style="color:#713f12;"><strong>If MAP >65 on NE 0.25+ mcg/kg/min β ADD VASOPRESSIN 0.03 U/min</strong> (steroid-sparing, NE-sparing effect; avoids toxicity)</span>
</div>
</div>
</div>
<!-- ββββββββββ ROW 4: Adverse Effects + Contraindications ββββββββββ -->
<div class="grid-2">
<div class="card card-crimson">
<div class="st"><span>β οΈ</span> Adverse Effects & Complications</div>
<div class="sh">Primary Adverse Effects</div>
<table class="t">
<thead><tr><th class="tr">Adverse Effect</th><th class="tr">Mechanism</th><th class="tr">Management</th></tr></thead>
<tbody>
<tr><td>π©Ή <strong>Tissue Necrosis</strong><br><span style="font-size:9px;color:#6b7280">(Extravasation)</span></td><td>Ξ±1 vasoconstriction β ischemia at injection site; skin blanching β sloughing</td><td><strong>Phentolamine</strong> (Ξ±-blocker) inject SC around area; OR topical nitroglycerin; OR intradermal terbutaline</td></tr>
<tr><td>π <strong>Reflex Bradycardia</strong></td><td>β BP β baroreceptor activation β β vagal tone</td><td>Usually benign; reduce dose if hemodynamically significant; atropine if severe</td></tr>
<tr><td>π <strong>Hypertension</strong></td><td>Excessive Ξ±1 vasoconstriction; over-titration</td><td>Reduce infusion rate; assess MAP target</td></tr>
<tr><td>π« <strong>Decreased CO</strong><br><span style="font-size:9px;color:#6b7280">(high doses)</span></td><td>β Afterload (SVR) β in hearts with poor function β β CO</td><td>Add dobutamine if inotropy needed; consider ARNI/MCS in cardiogenic</td></tr>
<tr><td>π« <strong>Renal Ischemia</strong></td><td>β Renal blood flow via renal artery constriction</td><td>Monitor creatinine/urine output; avoid unnecessary high doses</td></tr>
<tr><td>π« <strong>Mesenteric Ischemia</strong></td><td>Gut vasoconstriction β bowel ischemia (prolonged use)</td><td>Minimize dose; monitor lactate; consider nutritional support</td></tr>
<tr><td>π§ <strong>Peripheral Ischemia</strong></td><td>Digit/limb vasoconstriction; ischemic digits, nose</td><td>Minimize dose; local vasodilators; avoid in PAD if possible</td></tr>
<tr><td>π <strong>Hyperglycemia</strong></td><td>Mild (minimal Ξ²2 activity)</td><td>Monitor glucose; insulin if needed</td></tr>
<tr><td>π« <strong>Pulmonary HTN</strong></td><td>Pulmonary vasoconstriction (high doses)</td><td>Use lowest effective dose; consider inhaled vasodilators</td></tr>
</tbody>
</table>
<div class="al al-r" style="margin-top:6px;">
<span class="ai">π¨</span>
<div><strong>EXTRAVASATION EMERGENCY:</strong> If NE leaks into tissue β immediate phentolamine 5β10 mg in 10 mL NS injected SC into affected area. Do within 12 hours. Alternative: topical nitroglycerin patch over area.</div>
</div>
</div>
<div class="card card-orange">
<div class="st"><span>π«</span> Contraindications & Cautions</div>
<div class="sh">Absolute Contraindications</div>
<ul class="dl">
<li>β <strong>Hypovolemic shock (uncorrected)</strong> β NE without adequate volume = fatal vasoconstriction; always resuscitate first with 30 mL/kg crystalloid</li>
<li>β <strong>Mesenteric/peripheral vascular thrombosis</strong> β increases ischemia</li>
<li>β <strong>Halothane anesthesia</strong> β risk of severe arrhythmias</li>
<li>β <strong>Cyclopropane anesthesia</strong> β ventricular fibrillation risk</li>
</ul>
<div class="sh">Relative Contraindications / Use with Caution</div>
<ul class="dl">
<li>β οΈ <strong>Severe cardiac dysfunction / LV failure</strong> β β afterload worsens CO; add dobutamine</li>
<li>β οΈ <strong>MAO inhibitors</strong> β potentiation of pressor response (exaggerated HTN); use lowest dose with extreme caution</li>
<li>β οΈ <strong>Tricyclic antidepressants</strong> β potentiation via inhibiting NE reuptake</li>
<li>β οΈ <strong>Pregnancy</strong> β uterine vasoconstriction β fetal ischemia; use only when maternal benefit outweighs risk</li>
<li>β οΈ <strong>Severe atherosclerosis / PVD</strong> β peripheral ischemia risk</li>
</ul>
<div class="sh">Drug Interactions</div>
<table class="t">
<thead><tr><th class="to">Drug</th><th class="to">Interaction</th><th class="to">Effect</th></tr></thead>
<tbody>
<tr><td>MAO inhibitors</td><td>β NE breakdown</td><td>βββ Hypertensive crisis</td></tr>
<tr><td>TCAs (imipramine)</td><td>Block NE reuptake</td><td>β Pressor effect</td></tr>
<tr><td>Halogenated anesthetics</td><td>Sensitize myocardium</td><td>VF risk</td></tr>
<tr><td>Ξ±-blockers (phentolamine)</td><td>Antagonize Ξ±1</td><td>β BP effect; used for extravasation</td></tr>
<tr><td>Ξ²-blockers</td><td>Block Ξ²1/Ξ²2</td><td>Unmasks pure Ξ±1 β HTN ββ</td></tr>
<tr><td>Oxytocin</td><td>Additive vasoconstriction</td><td>β HTN risk</td></tr>
</tbody>
</table>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 5: Vasopressor Comparison Table ββββββββββ -->
<div class="grid-full">
<div class="card card-dark">
<div class="st"><span>βοΈ</span> Vasopressor Comparison Table β Emergency Medicine Quick Reference</div>
<table class="t" style="color:#f8fafc;">
<thead>
<tr>
<th class="td">Drug</th>
<th class="td">Ξ±1</th><th class="td">Ξ²1</th><th class="td">Ξ²2</th><th class="td">Dop</th>
<th class="td">MAP</th><th class="td">HR</th><th class="td">CO</th><th class="td">SVR</th>
<th class="td">Primary Use</th>
<th class="td">Key Feature</th>
</tr>
</thead>
<tbody>
<tr style="background:rgba(239,68,68,0.15)">
<td><strong style="color:#fbbf24;">β‘ Norepinephrine</strong></td>
<td><span style="color:#ef4444;font-weight:700;">++++</span></td>
<td><span style="color:#60a5fa;font-weight:700;">++</span></td>
<td><span style="color:#4ade80;">+</span></td>
<td>0</td>
<td style="color:#4ade80;">βββ</td>
<td style="color:#f87171;">β (reflex)</td>
<td>β/β</td>
<td style="color:#ef4444;">βββ</td>
<td><span class="pill pg">π₯ Septic/Distributive</span></td>
<td>1st-line most shock; reflex bradycardia</td>
</tr>
<tr style="background:rgba(255,255,255,0.03)">
<td><strong>Epinephrine</strong></td>
<td><span style="color:#ef4444;font-weight:700;">+++</span></td>
<td><span style="color:#60a5fa;font-weight:700;">++++</span></td>
<td><span style="color:#4ade80;font-weight:700;">+++</span></td>
<td>0</td>
<td style="color:#4ade80;">ββ</td>
<td style="color:#ef4444;">ββ</td>
<td style="color:#4ade80;">ββ</td>
<td style="color:#ef4444;">ββ</td>
<td><span class="pill pr">π₯ Anaphylaxis; 2nd-line sepsis</span></td>
<td>Tachycardia; hyperglycemia; lactic acidosis; arrhythmogenic</td>
</tr>
<tr style="background:rgba(255,255,255,0.06)">
<td><strong>Dopamine</strong></td>
<td>0/+ (dose)</td>
<td><span style="color:#60a5fa;font-weight:700;">+++</span></td>
<td><span style="color:#4ade80;">+</span></td>
<td><span style="color:#a78bfa;font-weight:700;">+++</span></td>
<td style="color:#4ade80;">ββ</td>
<td style="color:#ef4444;">ββ</td>
<td style="color:#4ade80;">ββ</td>
<td>β/β</td>
<td><span class="pill py">β οΈ No longer 1st-line; special cases</span></td>
<td>MORE arrhythmias (AF) than NE; dose-dependent effects</td>
</tr>
<tr style="background:rgba(255,255,255,0.03)">
<td><strong>Vasopressin</strong></td>
<td>0</td><td>0</td><td>0</td><td>0</td>
<td style="color:#4ade80;">β</td>
<td style="color:#f87171;">β</td>
<td style="color:#f87171;">β slightly</td>
<td style="color:#ef4444;">ββ</td>
<td><span class="pill pb">2nd-line add-on to NE</span></td>
<td>No arrhythmias; 0.03 U/min fixed dose; non-adrenergic</td>
</tr>
<tr style="background:rgba(255,255,255,0.06)">
<td><strong>Phenylephrine</strong></td>
<td><span style="color:#ef4444;font-weight:700;">++++</span></td>
<td>0</td><td>0</td><td>0</td>
<td style="color:#4ade80;">ββ</td>
<td style="color:#f87171;">ββ (reflex)</td>
<td style="color:#f87171;">β</td>
<td style="color:#ef4444;">βββ</td>
<td><span class="pill ppk">If tachyarrhythmia with NE</span></td>
<td>Pure Ξ±1; no Ξ²; β CO; avoid in cardiogenic shock</td>
</tr>
<tr style="background:rgba(255,255,255,0.03)">
<td><strong>Dobutamine</strong></td>
<td>0/+</td>
<td><span style="color:#60a5fa;font-weight:700;">++++</span></td>
<td><span style="color:#4ade80;font-weight:700;">++</span></td>
<td>0</td>
<td>β/β</td>
<td style="color:#ef4444;">β</td>
<td style="color:#4ade80;">βββ</td>
<td style="color:#f87171;">β</td>
<td><span class="pill pb">Cardiogenic shock + NE</span></td>
<td>Pure inotrope; vasodilator; add to NE when CO low</td>
</tr>
<tr style="background:rgba(255,255,255,0.06)">
<td><strong>Angiotensin II</strong></td>
<td>0</td><td>0</td><td>0</td><td>0</td>
<td style="color:#4ade80;">ββ</td>
<td>β</td>
<td>β</td>
<td style="color:#ef4444;">ββ</td>
<td><span class="pill po">Refractory shock (NE failed)</span></td>
<td>Non-catecholamine; Giapreza; thrombotic risk; last resort</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- ββββββββββ ROW 6: Monitoring + NE in Special Scenarios ββββββββββ -->
<div class="grid-2">
<div class="card card-blue">
<div class="st"><span>π</span> Monitoring on Norepinephrine</div>
<div class="sh">Hemodynamic Targets</div>
<table class="t">
<thead><tr><th class="tb">Parameter</th><th class="tb">Target</th><th class="tb">Note</th></tr></thead>
<tbody>
<tr><td>MAP</td><td style="color:#16a34a;font-weight:700;">β₯ 65 mmHg</td><td>Septic shock standard; may need 85β90 in spinal SCI</td></tr>
<tr><td>Urine Output</td><td style="color:#16a34a;font-weight:700;">> 0.5 mL/kg/hr</td><td>Marker of end-organ perfusion</td></tr>
<tr><td>Lactate</td><td style="color:#16a34a;font-weight:700;">< 2 mmol/L</td><td>Target clearance >10% per 2h; rising lactate = inadequate perfusion</td></tr>
<tr><td>ScvOβ</td><td style="color:#16a34a;font-weight:700;">> 70%</td><td>Central venous Oβ saturation</td></tr>
<tr><td>HR</td><td>60β100 bpm</td><td>NE often causes reflex bradycardia; <40 β reduce dose</td></tr>
<tr><td>Skin perfusion</td><td>Warm extremities</td><td>Mottling, cold digits = ischemia; minimize dose</td></tr>
<tr><td>Creatinine/BUN</td><td>Stable/improving</td><td>Monitor for renal ischemia</td></tr>
</tbody>
</table>
<div class="sh" style="margin-top:6px;">Weaning Protocol</div>
<ul class="dl">
<li>Wean by 0.01β0.05 mcg/kg/min every 15β30 min once MAP stable >65 for 4+ hours</li>
<li>Ensure volume resuscitation adequate before weaning</li>
<li>Wean vasopressin last (add first, remove last)</li>
<li>Watch for vasoplegic rebound when discontinuing (have fluids ready)</li>
</ul>
</div>
<div class="card card-purple">
<div class="st"><span>π₯</span> NE in Special Clinical Scenarios</div>
<table class="t">
<thead><tr><th class="tp">Scenario</th><th class="tp">NE Role</th><th class="tp">Special Consideration</th></tr></thead>
<tbody>
<tr><td>π¦ <strong>Septic Shock</strong></td><td>π₯ 1st line</td><td>Start early (even peripheral); target MAP 65; add vasopressin when dose >0.25 mcg/kg/min</td></tr>
<tr><td>π« <strong>Cardiogenic Shock</strong></td><td>π₯ Preferred over Epi</td><td>Epi β mortality data β use NE; ADD dobutamine for inotropy; consider IABP/Impella</td></tr>
<tr><td>π§ <strong>Neurogenic Shock</strong></td><td>π₯ 1st line</td><td>Target MAP 85β90 mmHg Γ 7 days; bradycardia prominent β atropine/pacing if needed</td></tr>
<tr><td>π <strong>Post-Cardiac Arrest</strong></td><td>Preferred vasopressor</td><td>Push-dose epi while NE drip prepared; concurrent dobutamine if EF low</td></tr>
<tr><td>π <strong>Anaphylaxis</strong></td><td>2nd line (after epi IM)</td><td>For refractory hypotension after IM epinephrine; vasoplegic component</td></tr>
<tr><td>π€° <strong>Obstetric Hypotension</strong></td><td>Use cautiously</td><td>Uterine vasoconstriction risk; phenylephrine or ephedrine preferred in spinal anesthesia hypotension</td></tr>
<tr><td>πΆ <strong>Pediatric Septic Shock</strong></td><td>1st or 2nd line</td><td>NE or Epinephrine 1st line equally; NE 0.1β2 mcg/kg/min; epinephrine associated with faster shock reversal in children</td></tr>
<tr><td>π₯ <strong>ARDS + Sepsis</strong></td><td>Maintain MAP β₯65</td><td>Avoid excessive fluids (lung protective); early NE reduces fluid loading</td></tr>
</tbody>
</table>
</div>
</div>
<div class="divider"></div>
<!-- ββββββββββ ROW 7: High-Yield Pearls + Mnemonics ββββββββββ -->
<div class="grid-2">
<div class="card card-green">
<div class="st"><span>π</span> High-Yield Exam Pearls</div>
<div class="pearl" style="margin-top:12px;">
<p><strong>PEARL 1:</strong> NE = Ξ±1 >> Ξ²1; produces vasoconstriction + reflex bradycardia. NET HR = down despite Ξ²1 stimulation (baroreceptor overrides Ξ²1).</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 2:</strong> NE is the FIRST-LINE vasopressor in septic shock (Surviving Sepsis Campaign). Dopamine is NOT preferred β higher rate of atrial fibrillation and arrhythmias (Goldman-Cecil).</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 3:</strong> In cardiogenic shock β NE is preferred over epinephrine. Recent data show epinephrine associated with INCREASED MORTALITY in cardiogenic shock (Rosen's EM).</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 4:</strong> EXTRAVASATION = tissue necrosis. Antidote = PHENTOLAMINE (Ξ±-blocker, 5β10 mg SC around area). Alternative: topical nitroglycerin or intradermal terbutaline (Lippincott).</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 5:</strong> Half-life = 2 minutes (very short). Allows rapid titration. Given only by IV infusion. Metabolized by MAO + COMT β vanillylmandelic acid (VMA) in urine.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 6:</strong> Rate-limiting step in catecholamine synthesis = TYROSINE HYDROXYLASE (Tyrosine β L-DOPA). Inhibited by end-product feedback. Target of metyrosine (Pheochromocytoma Rx).</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 7:</strong> When NE dose >0.25 mcg/kg/min without MAP target β ADD VASOPRESSIN 0.03 U/min fixed (do NOT titrate β higher doses = vasospasm). Do not add vasopressin as first agent.</p>
</div>
<div class="pearl" style="margin-top:14px;">
<p><strong>PEARL 8:</strong> NE vs Epinephrine for ANAPHYLAXIS β Epinephrine IM (thigh) is the FIRST LINE treatment for anaphylaxis. NE is second-line for refractory hypotension after Epi IM.</p>
</div>
</div>
<div class="card card-yellow">
<div class="st"><span>π§ </span> Memory Tricks & Mnemonics</div>
<div class="mn" style="margin-bottom:9px;">
<div class="mnt">β‘ NE Receptor Profile β "Alpha MAJOR, Beta Minor"</div>
<div class="lts">
<div class="lb"><strong>Ξ±1</strong> DOMINANT β Vasoconstrict β β BP β βββ SVR</div>
<div class="lb"><strong>Ξ²1</strong> moderate β β Inotropy BUT reflex β HR wins</div>
<div class="lb"><strong>Ξ²2</strong> minimal β No bronchodilation, no hypoglycemia</div>
<div class="lb"><strong>Net HR:</strong> β (baroreceptor reflex OVERCOMES Ξ²1)</div>
</div>
</div>
<div class="mn" style="margin-bottom:9px;">
<div class="mnt">π Vasopressor Order β "NE VADs" (Surviving Sepsis)</div>
<div class="lts">
<div class="lb"><strong>N</strong>orepinephrine β 1st line ALWAYS</div>
<div class="lb"><strong>E</strong>pinephrine β 2nd line (add to NE)</div>
<div class="lb"><strong>VA</strong>sopressin β add-on at 0.03 U/min (NE-sparing)</div>
<div class="lb"><strong>D</strong>opamine β NO (more arrhythmias)</div>
<div class="lb"><strong>S</strong>teroids (hydrocortisone) β refractory shock</div>
</div>
</div>
<div class="mn" style="margin-bottom:9px;">
<div class="mnt">π NE vs Epinephrine β "NE = No Excitement (no Ξ²2)"</div>
<div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-top:4px;">
<div style="background:rgba(239,68,68,0.12); border:1px solid rgba(239,68,68,0.3); border-radius:7px; padding:6px 9px;">
<div style="color:#fca5a5; font-size:9.5px; font-weight:700; margin-bottom:3px;">β‘ NOREPINEPHRINE</div>
<div style="font-size:9.5px; color:#e2e8f0; line-height:1.6;">Ξ±1 >> Ξ²1; no Ξ²2<br>ββ BP; β HR (reflex)<br>No glycogenolysis<br>No bronchodilation<br>1st-line: septic/distributive</div>
</div>
<div style="background:rgba(251,191,36,0.12); border:1px solid rgba(251,191,36,0.3); border-radius:7px; padding:6px 9px;">
<div style="color:#fbbf24; font-size:9.5px; font-weight:700; margin-bottom:3px;">π‘ EPINEPHRINE</div>
<div style="font-size:9.5px; color:#e2e8f0; line-height:1.6;">Ξ±1 + Ξ²1 + Ξ²2 all active<br>β BP; ββ HR; β CO<br>Hyperglycemia<br>Bronchodilation (Ξ²2)<br>1st-line: Anaphylaxis</div>
</div>
</div>
</div>
<div class="mn">
<div class="mnt">π§ͺ Catecholamine Synthesis Mnemonic β "The DOPE Needs No Escape"</div>
<div class="lts">
<div class="lb"><strong>T</strong>yrosine β rate-limiting step (TH enzyme)</div>
<div class="lb"><strong>D</strong>OPA β via tyrosine hydroxylase</div>
<div class="lb"><strong>D</strong>opamine β via AADC</div>
<div class="lb"><strong>N</strong>orepinephrine β via DBH (in vesicles)</div>
<div class="lb"><strong>E</strong>pinephrine β via PNMT (adrenal medulla only)</div>
</div>
</div>
<div class="al al-r" style="margin-top:8px;">
<span class="ai">π¨</span>
<div><strong>DANGER β WHEN TO STOP / REDUCE NE:</strong><br>
β’ Ischemic digits / mottled extremities (limb-threatening)<br>
β’ SBP >180 mmHg (over-pressor)<br>
β’ HR <40 bpm (severe reflex bradycardia)<br>
β’ Rising lactate despite MAP >65 (maldistribution)</div>
</div>
</div>
</div>
<!-- ββββββββββ ROW 8: One-Liners + Quick Summary ββββββββββ -->
<div class="grid-3">
<div class="card card-slate">
<div class="st"><span>π</span> One-Liners for Exams</div>
<ul class="dl">
<li>π― NE = <strong>Ξ±1 >> Ξ²1</strong>; minimal Ξ²2</li>
<li>π― Net HR = <strong>β</strong> (reflex bradycardia wins)</li>
<li>π― 1st-line vasopressor: <strong>septic + distributive + neurogenic shock</strong></li>
<li>π― NOT 1st-line in anaphylaxis β <strong>epinephrine IM is</strong></li>
<li>π― Preferred over epinephrine in <strong>cardiogenic shock</strong></li>
<li>π― Extravasation β <strong>phentolamine SC</strong></li>
<li>π― Add <strong>vasopressin 0.03 U/min</strong> when NE dose is high</li>
<li>π― Metabolized by <strong>MAO + COMT</strong></li>
<li>π― Half-life = <strong>2 minutes</strong> β allows precise titration</li>
<li>π― Dopamine = more AF than NE β <strong>no longer 1st line</strong></li>
<li>π― Rate-limiting step of synthesis = <strong>tyrosine hydroxylase</strong></li>
<li>π― MAOIs + NE = <strong>hypertensive crisis</strong> risk</li>
<li>π― Target MAP: <strong>β₯65 septic</strong>; <strong>85β90 neurogenic</strong></li>
<li>π― Peripheral use OK short-term but <strong>central line preferred</strong></li>
</ul>
</div>
<div class="card card-teal">
<div class="st"><span>βοΈ</span> Pharmacokinetics Summary</div>
<table class="t">
<thead><tr><th class="tt">Parameter</th><th class="tt">Value</th></tr></thead>
<tbody>
<tr><td>Route</td><td>IV infusion ONLY</td></tr>
<tr><td>Onset</td><td>1β2 minutes</td></tr>
<tr><td>Duration</td><td>1β2 min after stopping</td></tr>
<tr><td>Half-life</td><td>~2 minutes</td></tr>
<tr><td>Protein binding</td><td>~25%</td></tr>
<tr><td>Metabolism</td><td>MAO + COMT (liver, kidney, nerve terminal)</td></tr>
<tr><td>Metabolites</td><td>VMA, Normetanephrine (urine)</td></tr>
<tr><td>Renal dose adj</td><td>Not required</td></tr>
<tr><td>Hepatic dose adj</td><td>Not required</td></tr>
</tbody>
</table>
<div class="al al-b" style="margin-top:6px;">
<span class="ai">π‘</span>
<span>VMA (vanillylmandelic acid) is the major urinary metabolite of both NE and epinephrine. Elevated in pheochromocytoma diagnosis.</span>
</div>
</div>
<div class="card card-pink">
<div class="st"><span>π΄</span> NE vs Dopamine β The Classic Controversy</div>
<table class="t">
<thead><tr><th class="tr">Feature</th><th class="tr">Norepinephrine</th><th class="tr">Dopamine</th></tr></thead>
<tbody>
<tr><td>Receptors</td><td>Ξ±1 >> Ξ²1</td><td>D1 > Ξ²1 > Ξ±1 (dose-dep)</td></tr>
<tr><td>HR</td><td>β (reflex brady)</td><td>ββ (chronotropic)</td></tr>
<tr><td>Arrhythmias</td><td style="color:#16a34a;font-weight:700;">Less</td><td style="color:#dc2626;font-weight:700;">More (esp. AF)</td></tr>
<tr><td>Mortality</td><td style="color:#16a34a;font-weight:700;">Lower (slightly)</td><td>Higher</td></tr>
<tr><td>Renal "protection"</td><td>No specific benefit</td><td>Myth dispelled β no benefit</td></tr>
<tr><td>Recommendation</td><td style="color:#16a34a;font-weight:700;">1st LINE</td><td style="color:#dc2626;font-weight:700;">NOT 1st line</td></tr>
<tr><td>Exception</td><td>β</td><td>Bradycardia + hypotension</td></tr>
</tbody>
</table>
<div class="al al-y" style="margin-top:6px;">
<span class="ai">β</span>
<span><strong>De Backer 2010 (NEJM):</strong> RCT showed dopamine β more arrhythmias (24.1% vs 12.4%) and trend toward worse outcomes vs NE in septic shock β NE became definitive 1st-line.</span>
</div>
</div>
</div>
<!-- ββββββββββ FOOTER ββββββββββ -->
<div class="footer">
<p>π Sources: <strong>Lippincott Illustrated Reviews Pharmacology</strong> | <strong>Tintinalli's EM</strong> | <strong>Rosen's Emergency Medicine</strong> | <strong>Goldman-Cecil Medicine</strong> | <strong>Harrison's Principles 22E</strong> | <strong>Fischer's Mastery of Surgery</strong></p>
<p>π¨ <strong>Emergency Medicine PGY-1 Reference</strong> | Noradrenaline / Norepinephrine | β¨ Orris AI</p>
</div>
</div>
</body>
</html>
ls -lh /tmp/workspace/noradrenaline-poster/
Norepinephrine (noradrenaline) pharmacology medical infographic diagram showing: adrenergic receptor subtypes (alpha-1, alpha-2, beta-1, beta-2) with their locations and effects on the body. Central nervous system pathway showing sympathetic nervous system activation, adrenal medulla releasing catecholamines. Biosynthesis pathway: Tyrosine to DOPA to Dopamine to Norepinephrine to Epinephrine. Hemodynamic effects arrows showing increased SVR, MAP increase, reflex bradycardia via baroreceptors. Chemical structure of norepinephrine. Color-coded: red for alpha-1 effects, blue for beta-1 effects. Professional medical illustration, white background, clean and educational style.
noradrenaline poster
HTML File Β· HTML
Open in any browser β Ctrl+P β Save as PDF (landscape, scale to fit) for a print-ready study sheet.

| Section | Key Content |
|---|---|
| πͺͺ Drug Identity | Names, chemical class, route, onset, metabolism, half-life |
| π¬ Receptor Profile | Ξ±1 (dominant), Ξ±2, Ξ²1, Ξ²2 β each receptor's location & effect |
| 𧬠Biosynthesis Pathway | Tyrosine β DOPA β Dopamine β NE β Epi (rate-limiting step = Tyrosine hydroxylase) |
| π Hemodynamic Effects | βββ MAP, β HR (reflex bradycardia), β SVR, maintained CO |
| β Indications | Septic shock (1st line), cardiogenic, neurogenic, post-arrest |
| π Dosing | 0.01β3 mcg/kg/min; MAP targets; central vs peripheral; titration |
| β οΈ Adverse Effects | Extravasation necrosis, reflex bradycardia, renal/mesenteric ischemia |
| π« Contraindications | Uncorrected hypovolemia, MAOIs, halothane anesthesia |
| βοΈ Vasopressor Comparison | NE vs Epinephrine vs Dopamine vs Vasopressin vs Phenylephrine vs Dobutamine |
| π Monitoring | MAP β₯65, UO, lactate, ScvOβ, weaning protocol |
| π 8 High-Yield Pearls | Exam-critical one-liners from authoritative sources |
| π§ Mnemonics | NE receptor profile, vasopressor order, NE vs Epi comparison |