{"id":1299,"date":"2025-11-25T10:29:32","date_gmt":"2025-11-25T10:29:32","guid":{"rendered":"https:\/\/www.chromacon.com\/?post_type=articles&#038;p=1299"},"modified":"2026-02-12T11:42:27","modified_gmt":"2026-02-12T10:42:27","slug":"what-is-chromatography","status":"publish","type":"articles","link":"https:\/\/www.chromacon.com\/en\/articles\/what-is-chromatography\/","title":{"rendered":"Part I &#8211; What Is Chromatography? The Universal Primer for New Scientists"},"content":{"rendered":"\n<style>\n        \/* ==========================================\n           CSS VARIABLES - Customize your fonts\/colors here\n           ========================================== *\/\n        :root {\n            \/* Colors - modify these to match your WordPress theme *\/\n            --color-primary: #1a365d;\n            --color-primary-light: #2c5282;\n            --color-accent: #3182ce;\n            --color-accent-light: #63b3ed;\n            --color-text: #2d3748;\n            --color-text-light: #718096;\n            --color-bg: #ffffff;\n            --color-bg-alt: #f7fafc;\n            --color-bg-card: #edf2f7;\n            --color-border: #e2e8f0;\n            \n            \/* Fonts - modify these to match your WordPress theme *\/\n            --font-heading: inherit;\n            --font-body: inherit;\n            \n            \/* Spacing *\/\n            --space-xs: 0.5rem;\n            --space-sm: 1rem;\n            --space-md: 1.5rem;\n            --space-lg: 2rem;\n            --space-xl: 3rem;\n            --space-2xl: 4rem;\n            \n            \/* Layout *\/\n            --max-width: 900px;\n            --sidebar-width: 260px;\n        }\n\n        \/* ==========================================\n           BASE STYLES\n           ========================================== *\/\n        *, *::before, *::after {\n            box-sizing: border-box;\n        }\n\n        html {\n            scroll-behavior: smooth;\n        }\n\n        body {\n            margin: 0;\n            padding: 0;\n            font-family: var(--font-body);\n            color: var(--color-text);\n            background: var(--color-bg);\n            line-height: 1.7;\n            font-size: 17px;\n        }\n\n        img {\n            max-width: 100%;\n            height: auto;\n            display: block;\n        }\n\n        \/* ==========================================\n           LAYOUT\n           ========================================== *\/\n        .article-wrapper {\n            display: flex;\n            max-width: 1400px;\n            margin: 0 auto;\n            position: relative;\n        }\n\n        .article-main {\n            flex: 1;\n            max-width: var(--max-width);\n            margin: 0 auto;\n            padding: var(--space-lg);\n        }\n\n        \/* Sidebar \/ Table of Contents *\/\n        .article-sidebar {\n            width: var(--sidebar-width);\n            flex-shrink: 0;\n            padding: var(--space-lg);\n            display: none;\n        }\n\n        @media (min-width: 1200px) {\n            .article-sidebar {\n                display: block;\n            }\n            \n            .article-wrapper {\n                padding-left: var(--space-lg);\n            }\n        }\n\n        .toc {\n            position: sticky;\n            top: var(--space-lg);\n        }\n\n        .toc-title {\n            font-size: 0.75rem;\n            text-transform: uppercase;\n            letter-spacing: 0.1em;\n            color: var(--color-text-light);\n            margin-bottom: var(--space-sm);\n            font-weight: 600;\n        }\n\n        .toc-list {\n            list-style: none;\n            padding: 0;\n            margin: 0;\n        }\n\n        .toc-list li {\n            margin-bottom: var(--space-xs);\n        }\n\n        .toc-list a {\n            color: var(--color-text-light);\n            text-decoration: none;\n            font-size: 0.875rem;\n            display: block;\n            padding: var(--space-xs) 0;\n            border-left: 2px solid transparent;\n            padding-left: var(--space-sm);\n            transition: all 0.2s ease;\n        }\n\n        .toc-list a:hover,\n        .toc-list a.active {\n            color: var(--color-accent);\n            border-left-color: var(--color-accent);\n        }\n\n        \/* ==========================================\n           HERO SECTION\n           ========================================== *\/\n        .article-hero {\n            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);\n            color: white;\n            padding: var(--space-2xl) var(--space-lg);\n            margin: calc(-1 * var(--space-lg));\n            margin-bottom: var(--space-xl);\n            border-radius: 0 0 2rem 2rem;\n        }\n\n        .article-hero h1 {\n            font-family: var(--font-heading);\n            font-size: clamp(2rem, 5vw, 2.75rem);\n            margin: 0 0 var(--space-md);\n            line-height: 1.2;\n            font-weight: 700;\n            color: white;\n        }\n\n        .article-hero .lead {\n            font-size: 1.2rem;\n            color: white;\n            max-width: 700px;\n            margin: 0;\n        }\n\n        \/* ==========================================\n           TYPOGRAPHY\n           ========================================== *\/\n        h2 {\n            font-family: var(--font-heading);\n            font-size: 1.75rem;\n            color: var(--color-primary);\n            margin: var(--space-2xl) 0 var(--space-md);\n            padding-bottom: var(--space-sm);\n            border-bottom: 2px solid var(--color-border);\n            scroll-margin-top: var(--space-lg);\n        }\n\n        h3 {\n            font-family: var(--font-heading);\n            font-size: 1.35rem;\n            color: var(--color-accent);\n            margin: var(--space-xl) 0 var(--space-sm);\n        }\n\n        h4 {\n            font-family: var(--font-heading);\n            font-size: 1.15rem;\n            color: var(--color-text);\n            margin: var(--space-lg) 0 var(--space-xs);\n        }\n\n        p {\n            margin: 0 0 var(--space-md);\n        }\n\n        strong {\n            color: var(--color-primary);\n        }\n\n        \/* ==========================================\n           KEY CONCEPT CALLOUT\n           ========================================== *\/\n        .callout {\n            background: var(--color-bg-alt);\n            border-left: 4px solid var(--color-accent);\n            padding: var(--space-md) var(--space-lg);\n            margin: var(--space-lg) 0;\n            border-radius: 0 0.5rem 0.5rem 0;\n        }\n\n        .callout p {\n            margin: 0;\n            font-size: 1.15rem;\n        }\n\n        .callout strong {\n            color: var(--color-accent);\n        }\n\n        \/* ==========================================\n           LISTS - Card Style\n           ========================================== *\/\n        .card-list {\n            list-style: none;\n            padding: 0;\n            margin: var(--space-lg) 0;\n            display: grid;\n            gap: var(--space-sm);\n        }\n\n        .card-list li {\n            background: var(--color-bg);\n            padding: var(--space-md);\n            border-radius: 0.75rem;\n            border: 1px solid var(--color-border);\n            transition: transform 0.2s ease, box-shadow 0.2s ease;\n            font-size: 16px;\n        }\n\n        .card-list li:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 4px 12px rgba(0,0,0,0.08);\n        }\n\n        .card-list li strong {\n            display: block;\n            margin-bottom: var(--space-xs);\n            font-size: 1.1rem;\n            color: var(--color-accent);\n        }\n\n        \/* Simple inline lists *\/\n        .simple-list {\n            padding-left: var(--space-lg);\n            margin: var(--space-md) 0;\n        }\n\n        .simple-list li {\n            margin-bottom: var(--space-xs);\n        }\n\n        \/* Nested lists *\/\n        .nested-list {\n            padding-left: var(--space-lg);\n            margin: var(--space-sm) 0;\n        }\n\n        .nested-list li {\n            margin-bottom: var(--space-xs);\n        }\n\n        \/* ==========================================\n           TWO-COLUMN GRID\n           ========================================== *\/\n        .two-col-grid {\n            display: grid;\n            grid-template-columns: 1fr;\n            gap: var(--space-md);\n            margin: var(--space-lg) 0;\n        }\n\n        @media (min-width: 640px) {\n            .two-col-grid {\n                grid-template-columns: 1fr 1fr;\n            }\n        }\n\n        .grid-card {\n            background: var(--color-bg);\n            padding: var(--space-md);\n            border-radius: 0.75rem;\n            border: 1px solid var(--color-border);\n            font-size: 16px;\n        }\n\n        .grid-card h4 {\n            margin-top: 0;\n            color: var(--color-accent);\n        }\n\n        .grid-card p:last-child {\n            margin-bottom: 0;\n        }\n\n        \/* ==========================================\n           IMAGES\n           ========================================== *\/\n        .article-image {\n            margin: var(--space-xl) 0;\n            border-radius: 1rem;\n            overflow: hidden;\n            box-shadow: 0 4px 20px rgba(0,0,0,0.1);\n        }\n\n        .article-image img {\n            width: 100%;\n        }\n\n        .article-image figcaption {\n            background: var(--color-bg-alt);\n            padding: var(--space-sm) var(--space-md);\n            font-size: 0.875rem;\n            color: var(--color-text-light);\n            text-align: center;\n        }\n\n        \/* ==========================================\n           ANALOGY BOX\n           ========================================== *\/\n        .analogy-box {\n            background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-alt) 100%);\n            border-radius: 1rem;\n            padding: var(--space-lg);\n            margin: var(--space-xl) 0;\n            border: 1px solid var(--color-border);\n        }\n\n        .analogy-box h4 {\n            margin-top: 0;\n            display: flex;\n            align-items: center;\n            gap: var(--space-xs);\n        }\n\n        .analogy-box h4::before {\n            content: \"\ud83d\udca1\";\n        }\n\n        \/* ==========================================\n           COMPONENT GRID\n           ========================================== *\/\n        .component-grid {\n            display: grid;\n            grid-template-columns: 1fr;\n            gap: var(--space-md);\n            margin: var(--space-lg) 0;\n        }\n\n        @media (min-width: 640px) {\n            .component-grid {\n                grid-template-columns: repeat(2, 1fr);\n            }\n        }\n\n        @media (min-width: 900px) {\n            .component-grid {\n                grid-template-columns: repeat(3, 1fr);\n            }\n        }\n\n        .component-card {\n            background: var(--color-bg);\n            border: 1px solid var(--color-border);\n            border-radius: 0.75rem;\n            padding: var(--space-md);\n            transition: all 0.2s ease;\n        }\n\n        .component-card:hover {\n            border-color: var(--color-accent);\n            box-shadow: 0 4px 12px rgba(0,0,0,0.08);\n        }\n\n        .component-card strong {\n            display: block;\n            font-size: 1.05rem;\n            margin-bottom: var(--space-xs);\n            color: var(--color-accent);\n        }\n\n        .component-card p {\n            font-size: 0.95rem;\n            color: var(--color-text-light);\n            margin: 0;\n        }\n\n        \/* ==========================================\n           CHROMATOGRAM FEATURES\n           ========================================== *\/\n        .feature-list {\n            list-style: none;\n            padding: 0;\n            margin: var(--space-lg) 0;\n        }\n\n        .feature-list li {\n            display: flex;\n            gap: var(--space-md);\n            padding: var(--space-md) 0;\n            border-bottom: 1px solid var(--color-border);\n        }\n\n        .feature-list li:last-child {\n            border-bottom: none;\n        }\n\n        .feature-label {\n            flex-shrink: 0;\n            width: 140px;\n            font-weight: 600;\n            color: var(--color-primary);\n        }\n\n        @media (max-width: 480px) {\n            .feature-list li {\n                flex-direction: column;\n                gap: var(--space-xs);\n            }\n            \n            .feature-label {\n                width: auto;\n            }\n        }\n\n        \/* ==========================================\n           COMPARISON SECTION\n           ========================================== *\/\n        .comparison-section {\n            display: grid;\n            grid-template-columns: 1fr;\n            gap: var(--space-lg);\n            margin: var(--space-xl) 0;\n        }\n\n        @media (min-width: 768px) {\n            .comparison-section {\n                grid-template-columns: 1fr 1fr;\n            }\n        }\n\n        .comparison-card {\n            background: var(--color-bg);\n            border: 2px solid var(--color-border);\n            border-radius: 1rem;\n            overflow: hidden;\n        }\n\n        .comparison-card.analytical {\n            border-color: var(--color-accent-light);\n        }\n\n        .comparison-card.preparative {\n            border-color: var(--color-primary);\n        }\n\n        .comparison-header {\n            padding: var(--space-sm) var(--space-md);\n            font-weight: 700;\n            font-size: 1rem;\n        }\n\n        .comparison-card.analytical .comparison-header {\n            background: var(--color-accent-light);\n            color: var(--color-primary);\n        }\n\n        .comparison-card.preparative .comparison-header {\n            background: var(--color-primary);\n            color: white;\n        }\n\n        .comparison-content {\n            padding: var(--space-sm) var(--space-md);\n            font-size: 0.875rem;\n        }\n\n        .comparison-content ul {\n            list-style: none;\n            padding: 0;\n            margin: 0;\n        }\n\n        .comparison-content li {\n            padding: 0.35rem 0;\n            border-bottom: 1px solid var(--color-border);\n            display: flex;\n            gap: var(--space-xs);\n        }\n\n        .comparison-content li:last-child {\n            border-bottom: none;\n        }\n\n        .comparison-content li strong {\n            flex-shrink: 0;\n            width: 75px;\n            color: var(--color-text-light);\n            font-weight: 600;\n            font-size: 0.8rem;\n        }\n\n        \/* ==========================================\n           TABLE - Glossary\n           ========================================== *\/\n        .glossary-table {\n            width: 100%;\n            border-collapse: collapse;\n            margin: var(--space-lg) 0;\n            font-size: 0.95rem;\n        }\n\n        .glossary-table thead {\n            background: var(--color-primary);\n            color: white;\n        }\n\n        .glossary-table th {\n            padding: var(--space-md);\n            text-align: left;\n            font-weight: 600;\n            color: white !important;\n        }\n\n        .glossary-table td {\n            padding: var(--space-md);\n            border-bottom: 1px solid var(--color-border);\n            vertical-align: top;\n        }\n\n        .glossary-table tr:hover td {\n            background: var(--color-bg-alt);\n        }\n\n        .glossary-table td:first-child {\n            font-weight: 600;\n            color: var(--color-primary);\n            white-space: nowrap;\n            width: 220px;\n        }\n\n        @media (max-width: 640px) {\n            .glossary-table {\n                display: block;\n            }\n            \n            .glossary-table thead {\n                display: none;\n            }\n            \n            .glossary-table tbody {\n                display: block;\n            }\n            \n            .glossary-table tr {\n                display: block;\n                margin-bottom: var(--space-md);\n                background: var(--color-bg-alt);\n                border-radius: 0.5rem;\n                overflow: hidden;\n            }\n            \n            .glossary-table td {\n                display: block;\n                border-bottom: none;\n            }\n            \n            .glossary-table td:first-child {\n                width: auto;\n                white-space: normal;\n                background: var(--color-primary);\n                color: white;\n                padding: var(--space-sm) var(--space-md);\n            }\n        }\n\n        \/* ==========================================\n           FAQ ACCORDION\n           ========================================== *\/\n        .faq-section {\n            margin: var(--space-xl) 0;\n        }\n\n        .faq-item {\n            border: 1px solid var(--color-border);\n            border-radius: 0.75rem;\n            margin-bottom: var(--space-sm);\n            overflow: hidden;\n            transition: box-shadow 0.2s ease;\n        }\n\n        .faq-item:hover {\n            box-shadow: 0 2px 8px rgba(0,0,0,0.06);\n        }\n\n        .faq-question {\n            width: 100%;\n            background: var(--color-bg);\n            border: none;\n            padding: var(--space-md) var(--space-lg);\n            text-align: left;\n            cursor: pointer;\n            font-size: 1.05rem;\n            font-weight: 600;\n            color: var(--color-primary);\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            gap: var(--space-md);\n            font-family: inherit;\n        }\n\n        .faq-question::after {\n            content: \"+\";\n            font-size: 1.5rem;\n            font-weight: 300;\n            color: var(--color-accent);\n            transition: transform 0.2s ease;\n        }\n\n        .faq-item.open .faq-question::after {\n            transform: rotate(45deg);\n        }\n\n        .faq-answer {\n            max-height: 0;\n            overflow: hidden;\n            transition: max-height 0.3s ease;\n        }\n\n        .faq-item.open .faq-answer {\n            max-height: 1000px;\n        }\n\n        .faq-answer-inner {\n            padding: 0 var(--space-lg) var(--space-lg);\n            border-top: 1px solid var(--color-border);\n            padding-top: var(--space-md);\n        }\n\n        .faq-answer-inner p:last-child,\n        .faq-answer-inner ul:last-child {\n            margin-bottom: 0;\n        }\n\n        \/* ==========================================\n           MOBILE TABLE OF CONTENTS\n           ========================================== *\/\n        .mobile-toc {\n            display: block;\n            background: var(--color-bg-alt);\n            border-radius: 0.75rem;\n            padding: var(--space-md);\n            margin-bottom: var(--space-xl);\n        }\n\n        @media (min-width: 1200px) {\n            .mobile-toc {\n                display: none;\n            }\n        }\n\n        .mobile-toc-toggle {\n            width: 100%;\n            background: none;\n            border: none;\n            font-family: inherit;\n            font-size: 0.875rem;\n            font-weight: 600;\n            color: var(--color-primary);\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            padding: 0;\n        }\n\n        .mobile-toc-toggle::after {\n            content: \"\u25bc\";\n            font-size: 0.75rem;\n            transition: transform 0.2s ease;\n        }\n\n        .mobile-toc.open .mobile-toc-toggle::after {\n            transform: rotate(180deg);\n        }\n\n        .mobile-toc-list {\n            display: none;\n        }\n\n        .mobile-toc.open .mobile-toc-list {\n            display: block;\n        }\n\n        .mobile-toc-list ul {\n            list-style: none;\n            padding: 0;\n            margin: var(--space-sm) 0 0;\n        }\n\n        .mobile-toc-list li {\n            margin-bottom: var(--space-xs);\n        }\n\n        .mobile-toc-list a {\n            color: var(--color-text-light);\n            text-decoration: none;\n            font-size: 0.875rem;\n            display: block;\n            padding: var(--space-xs) 0;\n        }\n\n        .mobile-toc-list a:hover {\n            color: var(--color-accent);\n        }\n\n        \/* ==========================================\n           UTILITY CLASSES\n           ========================================== *\/\n        .visually-hidden {\n            position: absolute;\n            width: 1px;\n            height: 1px;\n            padding: 0;\n            margin: -1px;\n            overflow: hidden;\n            clip: rect(0, 0, 0, 0);\n            white-space: nowrap;\n            border: 0;\n        }\n    <\/style>\n\n\n\n<div class=\"article-wrapper\">\n        <!-- Sidebar TOC (desktop only) -->\n        <aside class=\"article-sidebar\">\n            <nav class=\"toc\">\n                <p class=\"toc-title\">In this article<\/p>\n                <ul class=\"toc-list\">\n                    <li><a href=\"#why-matters\">1. Why Chromatography Matters<\/a><\/li>\n                    <li><a href=\"#what-is\">2. What Is Chromatography?<\/a><\/li>\n                    <li><a href=\"#how-works\">3. How It Works<\/a><\/li>\n                    <li><a href=\"#components\">4. Core Components<\/a><\/li>\n                    <li><a href=\"#chromatogram\">5. Reading a Chromatogram<\/a><\/li>\n                    <li><a href=\"#types\">6. Types of Chromatography<\/a><\/li>\n                    <li><a href=\"#analytical-vs-prep\">7. Analytical vs. Preparative<\/a><\/li>\n                    <li><a href=\"#glossary\">8. Key Terms<\/a><\/li>\n                    <li><a href=\"#faq\">9. FAQs<\/a><\/li>\n                <\/ul>\n            <\/nav>\n        <\/aside>\n\n        <!-- Main Content -->\n        <article class=\"article-main\">\n            <!-- Hero Section -->\n            <header class=\"article-hero\">\n                <h1>Understanding Chromatography: A Practical Primer<\/h1>\n                <p class=\"lead\">Chromatography is one of the most important separation techniques in modern science. It underpins pharmaceutical manufacturing, biopharmaceutical purification, food safety testing, environmental analysis, clinical diagnostics, and more.<\/p>\n            <\/header>\n\n            <!-- Mobile TOC -->\n            <nav class=\"mobile-toc\" id=\"mobileToc\">\n                <button class=\"mobile-toc-toggle\" aria-expanded=\"false\" aria-controls=\"mobileTocList\">\n                    Table of Contents\n                <\/button>\n                <div class=\"mobile-toc-list\" id=\"mobileTocList\">\n                    <ul>\n                        <li><a href=\"#why-matters\">1. Why Chromatography Matters<\/a><\/li>\n                        <li><a href=\"#what-is\">2. What Is Chromatography?<\/a><\/li>\n                        <li><a href=\"#how-works\">3. How It Works<\/a><\/li>\n                        <li><a href=\"#components\">4. Core Components<\/a><\/li>\n                        <li><a href=\"#chromatogram\">5. Reading a Chromatogram<\/a><\/li>\n                        <li><a href=\"#types\">6. Types of Chromatography<\/a><\/li>\n                        <li><a href=\"#analytical-vs-prep\">7. Analytical vs. Preparative<\/a><\/li>\n                        <li><a href=\"#glossary\">8. Key Terms<\/a><\/li>\n                        <li><a href=\"#faq\">9. FAQs<\/a><\/li>\n                    <\/ul>\n                <\/div>\n            <\/nav>\n\n            <p>For many newcomers, chromatography can feel like an overwhelming alphabet soup of acronyms \u2014 HPLC, UHPLC, FPLC, GC, SEC, IEX, TLC, HIC, and others. It may look like a collection of unrelated methods, each with its own rules and equipment.<\/p>\n\n            <div class=\"callout\">\n                <p>In reality, <strong>chromatography is a single, unifying concept<\/strong>. A mixture flows through a medium, and its components move at different speeds \u2014 so they separate. Everything else \u2014 the instrumentation, software, resin chemistries, and method names \u2014 are just different ways to implement this core principle.<\/p>\n            <\/div>\n\n            <p>This article provides a practical primer on chromatography: what it is, how it works, key types, and why it matters.<\/p>\n\n            <!-- Section 1 -->\n            <h2 id=\"why-matters\">1. Why Chromatography Matters: Real-World Impact<\/h2>\n\n            <p>Chromatography is deeply embedded in modern life. It helps ensure that medicines are safe, water is clean, foods are consistent, and research data are reliable.<\/p>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part1_22-1024x765.jpg\" alt=\"Chromatography in real-world applications\" loading=\"lazy\">\n            <\/figure>\n\n            <ul class=\"card-list\">\n                <li>\n                    <strong>Pharmaceutical development and manufacturing<\/strong>\n                    Chromatography is used to purify small-molecule drugs, biologics (such as antibodies and proteins), vaccines, peptides, oligonucleotides, and many other modalities. Quality control labs use analytical HPLC and related techniques to measure purity, assay active ingredients, and monitor impurities and degradation products.\n                <\/li>\n                <li>\n                    <strong>Environmental analysis<\/strong>\n                    LC and GC detect pollutants in air, water, and soil, often down to parts-per-billion or parts-per-trillion. This includes pesticides, industrial chemicals, and other contaminants.\n                <\/li>\n                <li>\n                    <strong>Food and beverage testing<\/strong>\n                    Chromatography helps ensure safety and quality by measuring vitamins, flavor compounds, additives, and residues from pesticides, mycotoxins, or veterinary drugs.\n                <\/li>\n                <li>\n                    <strong>Biotechnology and research<\/strong>\n                    Chromatography is central to purifying and characterizing biomolecules in proteomics, metabolomics, and genomics workflows.\n                <\/li>\n                <li>\n                    <strong>Forensic and clinical applications<\/strong>\n                    GC\u2013MS and LC\u2013MS are standard tools in forensic labs for identifying drugs of abuse, toxins, and unknown compounds. Clinical labs use chromatography to measure analytes such as amino acids, vitamins, and therapeutic drug levels in patient samples.\n                <\/li>\n            <\/ul>\n\n            <!-- Section 2 -->\n            <h2 id=\"what-is\">2. What Is Chromatography? (Definition)<\/h2>\n\n            <div class=\"callout\">\n                <p><strong>Chromatography is a separation technique that separates components of a mixture based on their different interactions with a stationary phase and a mobile phase.<\/strong><\/p>\n            <\/div>\n\n            <p>In simple terms, chromatography helps you <strong>isolate, identify, and sometimes collect<\/strong> individual components from a complex mixture. It is used both to gain information (analytical chromatography) and to obtain purified material (preparative chromatography).<\/p>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Gemini_Generated_Image_4ivf5h4ivf5h4ivf-1024x565.jpg\" alt=\"Chromatography concept illustration\" loading=\"lazy\">\n            <\/figure>\n\n            <h3>The Two Phases: Stationary and Mobile<\/h3>\n\n            <p>Chromatography always involves two distinct phases:<\/p>\n\n            <div class=\"two-col-grid\">\n                <div class=\"grid-card\">\n                    <h4>Stationary Phase<\/h4>\n                    <p>A material that stays fixed in place and interacts with the sample components. It may be porous beads packed into a column, a thin layer on a plate (TLC), or a membrane.<\/p>\n                <\/div>\n                <div class=\"grid-card\">\n                    <h4>Mobile Phase<\/h4>\n                    <p>A fluid (liquid or gas) that flows over or through the stationary phase and carries the sample mixture with it.<\/p>\n                <\/div>\n            <\/div>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part1_19-1-1024x559.jpg\" alt=\"Stationary and mobile phases diagram\" loading=\"lazy\">\n            <\/figure>\n\n            <h3>How Chromatographic Separation Happens<\/h3>\n\n            <p>As the mobile phase moves through the stationary phase, each molecule in the sample spends a different proportion of time in each phase:<\/p>\n\n            <ul class=\"simple-list\">\n                <li>Molecules that strongly interact with the stationary phase move more slowly.<\/li>\n                <li>Molecules that prefer to remain in the mobile phase move more quickly.<\/li>\n            <\/ul>\n\n            <p>Because of these different migration speeds, the components of the mixture gradually separate. Faster-moving species elute (exit the column) first, followed by slower-moving ones.<\/p>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part-1_11-1024x559.jpg\" alt=\"Separation process visualization\" loading=\"lazy\">\n            <\/figure>\n\n            <div class=\"analogy-box\">\n                <h4>A Simple Analogy<\/h4>\n                <p>Imagine a running track with sticky patches:<\/p>\n                <ul class=\"simple-list\">\n                    <li>Each runner represents a different molecule.<\/li>\n                    <li>The track is the stationary phase.<\/li>\n                    <li>Air pushing the runners forward is the mobile phase.<\/li>\n                <\/ul>\n                <p>Runners who get stuck more often (high affinity for the stationary phase) finish later. Runners who rarely get stuck (low affinity) finish earlier. By the finish line, the runners are spread out. In chromatography, that spread is your separation.<\/p>\n            <\/div>\n\n            <!-- Section 3 -->\n            <h2 id=\"how-works\">3. How Chromatography Works: Key Separation Mechanisms<\/h2>\n\n            <p>To make separations useful and selective, scientists exploit specific physical or chemical properties of molecules. The stationary phase is chemically designed to interact with those properties. Most chromatography modes are built on one or more of the mechanisms below.<\/p>\n\n            <h3>Polarity: Adsorption and Partition Chromatography<\/h3>\n\n            <p>Here, separation is based on how strongly compounds interact with a surface or how they distribute between two phases.<\/p>\n\n            <div class=\"two-col-grid\">\n                <div class=\"grid-card\">\n                    <h4>Normal-phase chromatography<\/h4>\n                    <p>Uses a <strong>polar stationary phase<\/strong> (such as silica) and a <strong>non-polar mobile phase<\/strong>. Polar compounds stick longer and elute later; non-polar compounds elute earlier.<\/p>\n                <\/div>\n                <div class=\"grid-card\">\n                    <h4>Reversed-phase chromatography (RPC)<\/h4>\n                    <p>The most common mode in HPLC. The <strong>stationary phase is non-polar<\/strong> (hydrophobic) and the <strong>mobile phase is polar<\/strong> (such as water mixed with an organic solvent). Non-polar compounds interact longer with the stationary phase and elute later, while polar compounds elute earlier.<\/p>\n                <\/div>\n            <\/div>\n\n            <h3>Charge: Ion Exchange Chromatography (IEX)<\/h3>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Gemini_Generated_Image_pqal08pqal08pqal-1024x547.jpg\" alt=\"Ion exchange chromatography illustration\" loading=\"lazy\">\n            <\/figure>\n\n            <p>Ion exchange chromatography separates molecules based on their electrical charge. The stationary phase is a resin functionalized with charged groups:<\/p>\n\n            <ul class=\"simple-list\">\n                <li><strong>Anion exchangers<\/strong> carry positive charges and bind negatively charged molecules.<\/li>\n                <li><strong>Cation exchangers<\/strong> carry negative charges and bind positively charged molecules.<\/li>\n            <\/ul>\n\n            <p>Charged molecules bind to the resin and can later be eluted by changing pH or salt concentration. Ion exchange is widely used for protein, peptide, and amino acid purification.<\/p>\n\n            <h3>Size: Size Exclusion Chromatography (SEC)<\/h3>\n\n            <p>Size exclusion chromatography, also called <strong>gel filtration<\/strong>, separates molecules by size using a porous stationary phase:<\/p>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part1_17-1024x559.jpg\" alt=\"Size exclusion chromatography diagram\" loading=\"lazy\">\n            <\/figure>\n\n            <ul class=\"simple-list\">\n                <li><strong>Small molecules<\/strong> can enter the pores, taking a longer, more tortuous path.<\/li>\n                <li><strong>Large molecules<\/strong> cannot enter the pores and move around them, taking a shorter path.<\/li>\n            <\/ul>\n\n            <p>The result is intuitive: large molecules elute first, and smaller molecules elute later. SEC is frequently used to analyze or purify proteins, polymers, and aggregates.<\/p>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part1_16-1024x559.jpg\" alt=\"SEC results visualization\" loading=\"lazy\">\n            <\/figure>\n\n            <h3>Specific Binding: Affinity Chromatography (AC)<\/h3>\n\n            <p>Affinity chromatography relies on a &#8220;lock-and-key&#8221; interaction between a <strong>ligand<\/strong> immobilized on the stationary phase and a specific <strong>target molecule<\/strong> in the sample.<\/p>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part1_14-1024x559.jpg\" alt=\"Affinity chromatography diagram\" loading=\"lazy\">\n            <\/figure>\n\n            <ul class=\"simple-list\">\n                <li>The target molecule binds strongly and is retained.<\/li>\n                <li>Non-binding components wash through and are removed.<\/li>\n                <li>The target is then eluted by changing conditions (for example, pH, salt, or competitive ligand).<\/li>\n            <\/ul>\n\n            <p>Affinity chromatography is extremely powerful and can deliver very high purity in a single step. It is a cornerstone of antibody and protein purification in biopharmaceutical manufacturing.<\/p>\n\n            <h3>Volatility: Gas Chromatography (GC)<\/h3>\n\n            <p>Gas chromatography separates compounds based on volatility (how easily they vaporize) and their interactions with a coated stationary phase inside a narrow capillary column. The mobile phase is an inert gas (such as helium or nitrogen). GC is ideal for small, volatile organic compounds, including solvents, fragrances, and environmental pollutants.<\/p>\n\n            <!-- Section 4 -->\n            <h2 id=\"components\">4. Core Components of a Chromatography System<\/h2>\n\n            <p>Although chromatographic systems vary widely in complexity and scale, they share a common architecture. Understanding these building blocks gives you the basic vocabulary of chromatography.<\/p>\n\n            <div class=\"component-grid\">\n                <div class=\"component-card\">\n                    <strong>Sample (mixture)<\/strong>\n                    <p>The material you want to separate (e.g., a blood sample, fermentation broth, plant extract, or reaction mixture).<\/p>\n                <\/div>\n                <div class=\"component-card\">\n                    <strong>Mobile phase (eluent)<\/strong>\n                    <p>The moving liquid or gas that carries the sample through the system. In LC, this is a solvent or solvent mixture; in GC, it is an inert gas.<\/p>\n                <\/div>\n                <div class=\"component-card\">\n                    <strong>Pump or flow system<\/strong>\n                    <p>The engine that drives the mobile phase through the system at a defined flow rate and pressure. HPLC uses high-pressure pumps to push solvent through tightly packed columns.<\/p>\n                <\/div>\n                <div class=\"component-card\">\n                    <strong>Column (stationary phase)<\/strong>\n                    <p>The heart of the separation. The stationary phase (often called resin in LC) is packed into a column. Its chemistry and physical properties determine how components are separated.<\/p>\n                <\/div>\n                <div class=\"component-card\">\n                    <strong>Detector<\/strong>\n                    <p>A device at the column outlet that senses when compounds elute. Common detectors include UV\u2013Vis absorbance (LC), flame ionization detectors (GC), and mass spectrometers (LC\u2013MS, GC\u2013MS).<\/p>\n                <\/div>\n                <div class=\"component-card\">\n                    <strong>Chromatogram<\/strong>\n                    <p>The digital or printed output of the detector, showing how the signal changes over time during a run.<\/p>\n                <\/div>\n                <div class=\"component-card\">\n                    <strong>Waste \/ fraction collector<\/strong>\n                    <p>After detection, separated components either go to waste or are collected in separate containers for further use or analysis.<\/p>\n                <\/div>\n            <\/div>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Gemini_Generated_Image_msnu90msnu90msnu-1024x541.jpg\" alt=\"Chromatography system components\" loading=\"lazy\">\n            <\/figure>\n\n            <!-- Section 5 -->\n            <h2 id=\"chromatogram\">5. How to Read a Chromatogram<\/h2>\n\n            <p>A <strong>chromatogram<\/strong> is the visual output of a chromatography experiment. It is typically a plot of <strong>detector signal (Y-axis)<\/strong> versus <strong>time (X-axis)<\/strong>.<\/p>\n\n            <h3>Key Features of a Chromatogram<\/h3>\n\n            <ul class=\"feature-list\">\n                <li>\n                    <span class=\"feature-label\">Baseline<\/span>\n                    <span>The flat signal when only the mobile phase is passing through the detector and no analytes are eluting.<\/span>\n                <\/li>\n                <li>\n                    <span class=\"feature-label\">Peaks<\/span>\n                    <span>When a separated compound elutes, the detector signal rises and falls, forming a peak. Ideally, each peak corresponds to a single component (analyte).<\/span>\n                <\/li>\n                <li>\n                    <span class=\"feature-label\">Retention time (RT)<\/span>\n                    <span>The time from sample injection to the maximum of a peak. For given conditions, each compound has a characteristic retention time, which can be used for identification.<\/span>\n                <\/li>\n                <li>\n                    <span class=\"feature-label\">Peak height &amp; area<\/span>\n                    <span>The size of a peak correlates with the amount of analyte. Quantitation is usually based on <strong>peak area<\/strong>, which is more robust than peak height.<\/span>\n                <\/li>\n            <\/ul>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part-1_2-1024x559.jpg\" alt=\"Chromatogram features diagram\" loading=\"lazy\">\n            <\/figure>\n\n            <h3>Assessing Separation Quality<\/h3>\n\n            <p>Two important indicators of separation quality are <strong>resolution<\/strong> and <strong>peak shape<\/strong>.<\/p>\n\n            <ul class=\"card-list\">\n                <li>\n                    <strong>Resolution<\/strong>\n                    Describes how well two peaks are separated. Good resolution shows distinct peaks with baseline separation. Poor resolution appears as overlapping or merged peaks (co-elution).\n                <\/li>\n                <li>\n                    <strong>Peak shape<\/strong>\n                    <ul class=\"nested-list\">\n                        <li><strong>Symmetrical, narrow peaks<\/strong> indicate efficient separation.<\/li>\n                        <li><strong>Tailing<\/strong> (a long, drawn-out trailing edge) can suggest strong or heterogeneous interactions with the stationary phase, or column issues.<\/li>\n                        <li><strong>Fronting<\/strong> (a steep drop-off after the peak with a broadened front) often indicates column overload or saturation.<\/li>\n                        <li><strong>Broad peaks<\/strong> mean the analyte took a long time to elute, which can reduce resolution.<\/li>\n                    <\/ul>\n                <\/li>\n            <\/ul>\n\n            <figure class=\"article-image\">\n                <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part-1_1-1024x559.jpg\" alt=\"Peak shape examples\" loading=\"lazy\">\n            <\/figure>\n\n            <!-- Section 6 -->\n            <h2 id=\"types\">6. Types of Chromatography: The Practical Toolbox<\/h2>\n\n            <p>Chromatography techniques can be categorized in several useful ways. Two of the most intuitive are by the physical phase used and by the separation mechanism.<\/p>\n\n            <h3>By Physical Phase<\/h3>\n\n            <ul class=\"card-list\">\n                <li>\n                    <strong>Liquid chromatography (LC)<\/strong>\n                    The mobile phase is a liquid. LC is highly versatile and can handle small molecules, peptides, proteins, oligonucleotides, and more.\n                <\/li>\n                <li>\n                    <strong>High-performance liquid chromatography (HPLC)<\/strong>\n                    A high-resolution, high-pressure form of LC that uses tightly packed columns and small particles for fast, efficient separations.\n                <\/li>\n                <li>\n                    <strong>Gas chromatography (GC)<\/strong>\n                    The mobile phase is a gas, and analytes must be volatile and thermally stable. GC excels at separating volatile organic compounds such as solvents, flavors, and pollutants.\n                <\/li>\n                <li>\n                    <strong>Planar chromatography (e.g., TLC)<\/strong>\n                    The stationary phase is coated on a flat plate, and the mobile phase rises via capillary action. TLC is simple, low-cost, and ideal for quick qualitative checks.\n                <\/li>\n            <\/ul>\n\n            <h3>By Separation Mechanism<\/h3>\n\n            <p>Many common chromatography modes can be grouped by the dominant interaction they use:<\/p>\n\n            <ul class=\"card-list\">\n                <li>\n                    <strong>Polarity-based<\/strong>\n                    Normal-phase, reversed-phase, and hydrophilic interaction chromatography (HILIC).\n                <\/li>\n                <li>\n                    <strong>Ion exchange (IEX)<\/strong>\n                    Separates charged analytes based on electrostatic interactions.\n                <\/li>\n                <li>\n                    <strong>Size exclusion (SEC)<\/strong>\n                    Separates molecules by size using porous beads.\n                <\/li>\n                <li>\n                    <strong>Affinity chromatography (AC)<\/strong>\n                    Uses specific biological or chemical binding to capture the target.\n                <\/li>\n                <li>\n                    <strong>Hydrophobic interaction chromatography (HIC)<\/strong>\n                    Separates biomolecules based on hydrophobicity under high-salt conditions.\n                <\/li>\n            <\/ul>\n\n            <!-- Section 7 -->\n            <h2 id=\"analytical-vs-prep\">7. Analytical vs. Preparative Chromatography<\/h2>\n\n            <p>A powerful way to categorize chromatography is by its primary goal: <strong>information<\/strong> vs. <strong>purification<\/strong>.<\/p>\n\n            <div class=\"comparison-section\">\n                <div class=\"comparison-card analytical\">\n                    <div class=\"comparison-header\">Analytical Chromatography<\/div>\n                    <figure class=\"article-image\" style=\"margin: 0; border-radius: 0;\">\n                        <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part1_6-1024x559.jpg\" alt=\"Analytical chromatography\" loading=\"lazy\">\n                    <\/figure>\n                    <div class=\"comparison-content\">\n                        <ul>\n                            <li><strong>Goal<\/strong> Identify what is in a sample and determine how much (qualitative and quantitative analysis)<\/li>\n                            <li><strong>Scale<\/strong> Very small samples (microliters, micrograms)<\/li>\n                            <li><strong>Focus<\/strong> High resolution, sensitivity, and reproducibility. Every component should ideally be baseline-separated for accurate quantitation.<\/li>\n                            <li><strong>Equipment<\/strong> Small-bore columns packed with fine particles and highly sensitive detectors (e.g., HPLC, UHPLC, LC\u2013MS, GC\u2013MS)<\/li>\n                            <li><strong>Outcome<\/strong> A chromatogram and numerical data. Separated components are usually discarded as waste after detection.<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                <div class=\"comparison-card preparative\">\n                    <div class=\"comparison-header\">Preparative Chromatography<\/div>\n                    <figure class=\"article-image\" style=\"margin: 0; border-radius: 0;\">\n                        <img decoding=\"async\" src=\"https:\/\/www.chromacon.com\/wp-content\/uploads\/2025\/11\/Part1_7-1024x559.jpg\" alt=\"Preparative chromatography\" loading=\"lazy\">\n                    <\/figure>\n                    <div class=\"comparison-content\">\n                        <ul>\n                            <li><strong>Goal<\/strong> Purify and collect material \u2014 for example, a drug substance, intermediate, or protein of interest<\/li>\n                            <li><strong>Scale<\/strong> Larger sample amounts (milligrams in research, grams to kilograms in manufacturing)<\/li>\n                            <li><strong>Focus<\/strong> Purity, yield (recovery), and throughput. Complete resolution is desirable but may be traded off against speed and capacity.<\/li>\n                            <li><strong>Equipment<\/strong> Larger columns and higher flow rates, often with automated fraction collection<\/li>\n                            <li><strong>Outcome<\/strong> Isolated fractions containing the target component for downstream use<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <p>In practice, you might first run an <strong>analytical HPLC<\/strong> method to understand the mixture. Once the method is optimized, you scale it to a <strong>preparative chromatography<\/strong> setup to collect grams or kilograms of a specific component.<\/p>\n\n            <!-- Section 8 -->\n            <h2 id=\"glossary\">8. Key Chromatography Terms (Glossary)<\/h2>\n\n            <table class=\"glossary-table\">\n                <thead>\n                    <tr>\n                        <th>Term<\/th>\n                        <th>Definition<\/th>\n                    <\/tr>\n                <\/thead>\n                <tbody>\n                    <tr>\n                        <td>Affinity chromatography (AC)<\/td>\n                        <td>A chromatography mode where the stationary phase contains ligands that selectively bind a specific target molecule.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Analyte<\/td>\n                        <td>The substance or molecule being detected, measured, or purified in a chromatography run.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Analytical chromatography<\/td>\n                        <td>Chromatography performed to identify and quantify components in a sample, typically at small scale.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Chromatogram<\/td>\n                        <td>A plot of detector signal versus time that visualizes analyte separation during a run.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Column<\/td>\n                        <td>A tube packed with stationary phase where the separation process occurs.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Detector<\/td>\n                        <td>An instrument that measures compounds as they elute from the column and converts the signal into data.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Elution<\/td>\n                        <td>The process of washing analytes from a chromatography column using the mobile phase.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Gas chromatography (GC)<\/td>\n                        <td>A chromatography technique using a gas as the mobile phase, ideal for volatile compounds.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>High-performance liquid chromatography (HPLC)<\/td>\n                        <td>An advanced form of LC that uses high pressure and fine particles for improved resolution and speed.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Ion exchange chromatography (IEX)<\/td>\n                        <td>A separation mode that uses charged stationary phases to separate analytes by charge.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Liquid chromatography (LC)<\/td>\n                        <td>Chromatography using a liquid mobile phase; widely used for small and large molecules.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Mobile phase<\/td>\n                        <td>The liquid or gas that flows through the chromatographic system and carries the sample.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Preparative chromatography<\/td>\n                        <td>Chromatography designed to purify and collect larger quantities of material, focusing on purity and yield.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Resin<\/td>\n                        <td>The stationary phase material (often porous beads) used inside liquid chromatography columns.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Resolution<\/td>\n                        <td>A measure of how well two analyte peaks are separated from each other.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Retention time (RT)<\/td>\n                        <td>The time between sample injection and the apex of a chromatographic peak.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Size exclusion chromatography (SEC)<\/td>\n                        <td>A chromatography mode that separates molecules by size using porous media.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Stationary phase<\/td>\n                        <td>The fixed phase that interacts with analytes and slows their movement, enabling separation.<\/td>\n                    <\/tr>\n                    <tr>\n                        <td>Thin-layer chromatography (TLC)<\/td>\n                        <td>A planar chromatography method where the stationary phase is coated on a flat plate and separation occurs by capillary action.<\/td>\n                    <\/tr>\n                <\/tbody>\n            <\/table>\n\n            <!-- Section 9 - FAQ -->\n            <h2 id=\"faq\">9. Frequently Asked Questions About Chromatography<\/h2>\n\n            <div class=\"faq-section\">\n                <div class=\"faq-item\">\n                    <button class=\"faq-question\" aria-expanded=\"false\">\n                        Q1. Why is it called &#8220;chromatography&#8221;? Do the substances have to be colored?\n                    <\/button>\n                    <div class=\"faq-answer\">\n                        <div class=\"faq-answer-inner\">\n                            <p>The name comes from Greek roots meaning &#8220;color writing.&#8221; Early chromatography was used to separate plant pigments into colored bands on a column. Today, however, chromatography is applied to many substances that are not visible to the eye. Modern detectors (such as UV or mass spectrometers) allow us to &#8220;see&#8221; colorless compounds during separation.<\/p>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"faq-item\">\n                    <button class=\"faq-question\" aria-expanded=\"false\">\n                        Q2. What is the main difference between gas chromatography (GC) and liquid chromatography (LC)?\n                    <\/button>\n                    <div class=\"faq-answer\">\n                        <div class=\"faq-answer-inner\">\n                            <p>The primary difference is the <strong>mobile phase<\/strong>:<\/p>\n                            <ul class=\"simple-list\">\n                                <li><strong>GC<\/strong> uses a gas as the mobile phase and requires analytes that can be vaporized without decomposing. It is ideal for small, volatile compounds.<\/li>\n                                <li><strong>LC<\/strong> uses a liquid mobile phase and can handle a far wider range of analytes, including large and thermally sensitive molecules such as proteins, peptides, and polymers.<\/li>\n                            <\/ul>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"faq-item\">\n                    <button class=\"faq-question\" aria-expanded=\"false\">\n                        Q3. What exactly is HPLC, and how is it different from traditional liquid chromatography?\n                    <\/button>\n                    <div class=\"faq-answer\">\n                        <div class=\"faq-answer-inner\">\n                            <p><strong>High-performance liquid chromatography (HPLC)<\/strong> is an advanced form of liquid chromatography that uses:<\/p>\n                            <ul class=\"simple-list\">\n                                <li>High-pressure pumps to drive solvent through the system.<\/li>\n                                <li>Columns packed with very small particles to increase surface area and resolution.<\/li>\n                                <li>Highly sensitive detectors and automated data analysis.<\/li>\n                            <\/ul>\n                            <p>Compared to older gravity-driven methods, HPLC delivers faster, more efficient, and more reproducible separations \u2014 making it the standard for modern analytical chromatography.<\/p>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"faq-item\">\n                    <button class=\"faq-question\" aria-expanded=\"false\">\n                        Q4. Can chromatography purify large molecules like proteins and DNA?\n                    <\/button>\n                    <div class=\"faq-answer\">\n                        <div class=\"faq-answer-inner\">\n                            <p>Yes. Chromatography is a core technology in protein and nucleic acid purification. Common strategies include:<\/p>\n                            <ul class=\"simple-list\">\n                                <li><strong>Affinity chromatography<\/strong> to selectively capture specific proteins (for example, antibodies binding to Protein A ligands).<\/li>\n                                <li><strong>Ion exchange chromatography<\/strong> to separate proteins based on charge.<\/li>\n                                <li><strong>Size exclusion chromatography<\/strong> to separate by size and remove aggregates.<\/li>\n                            <\/ul>\n                            <p>For DNA, RNA, and oligonucleotides, specialized ion exchange and reversed-phase methods are often used at both analytical and preparative scales.<\/p>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"faq-item\">\n                    <button class=\"faq-question\" aria-expanded=\"false\">\n                        Q5. What if two substances are very similar? Can chromatography still separate them?\n                    <\/button>\n                    <div class=\"faq-answer\">\n                        <div class=\"faq-answer-inner\">\n                            <p>Often yes, but it may require method optimization or specialized columns. If two compounds have very similar properties, they may initially co-elute. To improve resolution, you can:<\/p>\n                            <ul class=\"simple-list\">\n                                <li>Adjust the mobile phase composition, gradient, pH, or temperature.<\/li>\n                                <li>Select a different stationary phase chemistry.<\/li>\n                                <li>Use a more selective mode (for example, chiral chromatography for enantiomers).<\/li>\n                                <li>Combine techniques in <strong>two-dimensional chromatography<\/strong>, using two different columns in sequence.<\/li>\n                            <\/ul>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"faq-item\">\n                    <button class=\"faq-question\" aria-expanded=\"false\">\n                        Q6. How sensitive is chromatography?\n                    <\/button>\n                    <div class=\"faq-answer\">\n                        <div class=\"faq-answer-inner\">\n                            <p>Sensitivity depends on the detector. When coupled with mass spectrometry (LC\u2013MS or GC\u2013MS), chromatography can detect extremely small amounts of analytes, often down to the picogram or femtogram range. This makes it suitable for measuring trace impurities in pharmaceuticals or pollutants at very low concentrations in environmental samples.<\/p>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/article>\n    <\/div>\n\n\n\n<script>\n        \/\/ FAQ Accordion functionality\n        document.querySelectorAll('.faq-question').forEach(button => {\n            button.addEventListener('click', () => {\n                const faqItem = button.parentElement;\n                const isOpen = faqItem.classList.contains('open');\n                \n                \/\/ Close all other items\n                document.querySelectorAll('.faq-item').forEach(item => {\n                    item.classList.remove('open');\n                    item.querySelector('.faq-question').setAttribute('aria-expanded', 'false');\n                });\n                \n                \/\/ Toggle current item\n                if (!isOpen) {\n                    faqItem.classList.add('open');\n                    button.setAttribute('aria-expanded', 'true');\n                }\n            });\n        });\n\n        \/\/ Mobile TOC toggle\n        const mobileToc = document.getElementById('mobileToc');\n        const mobileTocToggle = mobileToc.querySelector('.mobile-toc-toggle');\n        \n        mobileTocToggle.addEventListener('click', () => {\n            const isOpen = mobileToc.classList.contains('open');\n            mobileToc.classList.toggle('open');\n            mobileTocToggle.setAttribute('aria-expanded', !isOpen);\n        });\n\n        \/\/ Close mobile TOC when clicking a link\n        document.querySelectorAll('.mobile-toc-list a').forEach(link => {\n            link.addEventListener('click', () => {\n                mobileToc.classList.remove('open');\n                mobileTocToggle.setAttribute('aria-expanded', 'false');\n            });\n        });\n\n        \/\/ Highlight active TOC item on scroll (desktop)\n        const observerOptions = {\n            rootMargin: '-100px 0px -70% 0px',\n            threshold: 0\n        };\n\n        const observer = new IntersectionObserver(entries => {\n            entries.forEach(entry => {\n                const id = entry.target.getAttribute('id');\n                const tocLink = document.querySelector(`.toc-list a[href=\"#${id}\"]`);\n                \n                if (tocLink) {\n                    if (entry.isIntersecting) {\n                        document.querySelectorAll('.toc-list a').forEach(link => {\n                            link.classList.remove('active');\n                        });\n                        tocLink.classList.add('active');\n                    }\n                }\n            });\n        }, observerOptions);\n\n        document.querySelectorAll('h2[id]').forEach(section => {\n            observer.observe(section);\n        });\n    <\/script>\n","protected":false},"excerpt":{"rendered":"<p>A practical primer on chromatography: what it is, how it works, and why it matters. Learn about key separation mechanisms including reversed-phase, ion exchange, size exclusion and affinity chromatography, plus how to read chromatograms and the difference between analytical and preparative methods.<\/p>\n","protected":false},"featured_media":1307,"comment_status":"closed","ping_status":"closed","template":"","article_category":[22],"class_list":["post-1299","articles","type-articles","status-publish","has-post-thumbnail","","article_category-fundamentals-of-preparative-chromatography"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.chromacon.com\/en\/wp-json\/wp\/v2\/articles\/1299","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.chromacon.com\/en\/wp-json\/wp\/v2\/articles"}],"about":[{"href":"https:\/\/www.chromacon.com\/en\/wp-json\/wp\/v2\/types\/articles"}],"replies":[{"embeddable":true,"href":"https:\/\/www.chromacon.com\/en\/wp-json\/wp\/v2\/comments?post=1299"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.chromacon.com\/en\/wp-json\/wp\/v2\/media\/1307"}],"wp:attachment":[{"href":"https:\/\/www.chromacon.com\/en\/wp-json\/wp\/v2\/media?parent=1299"}],"wp:term":[{"taxonomy":"article_category","embeddable":true,"href":"https:\/\/www.chromacon.com\/en\/wp-json\/wp\/v2\/article_category?post=1299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}