{"id":62,"date":"2026-01-09T08:59:57","date_gmt":"2026-01-09T08:59:57","guid":{"rendered":"https:\/\/www.mertimmunology.com\/?page_id=62"},"modified":"2026-02-27T11:45:08","modified_gmt":"2026-02-27T11:45:08","slug":"articles","status":"publish","type":"page","link":"https:\/\/www.mertimmunology.com\/?page_id=62&lang=en","title":{"rendered":"Publications"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Research Publications | Mehrdad Etemad<\/title>\n    \n    <!-- Bootstrap 5 -->\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.0\/dist\/css\/bootstrap.min.css\" rel=\"stylesheet\">\n    <!-- Font Awesome 6 -->\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    <!-- Google Fonts - Inter -->\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700;800&#038;display=swap\" rel=\"stylesheet\">\n    \n    <style>\n        :root {\n            --primary: #2563eb;\n            --primary-dark: #1d4ed8;\n            --primary-light: #3b82f6;\n            --secondary: #7c3aed;\n            --accent: #10b981;\n            --dark: #0f172a;\n            --dark-light: #1e293b;\n            --light: #f8fafc;\n            --gray: #64748b;\n            --gray-light: #e2e8f0;\n            --card-bg: #ffffff;\n            --gradient-1: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);\n            --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);\n            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);\n            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);\n        }\n        \n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n        \n        body {\n            font-family: 'Inter', sans-serif;\n            background: linear-gradient(135deg, #f1f5f9 0%, #e6edf5 100%);\n            color: var(--dark);\n            line-height: 1.6;\n        }\n        \n        \/* Hero Section - \u062a\u06a9 \u0639\u06a9\u0633 \u062f\u0631 \u0647\u0631 \u0627\u0633\u0644\u0627\u06cc\u062f *\/\n        .hero-wrapper {\n            width: 100%;\n            height: 600px;\n            background: var(--gradient-2);\n            position: relative;\n            overflow: hidden;\n            border-bottom: 1px solid rgba(255,255,255,0.1);\n        }\n        \n        .hero-grid {\n            position: relative;\n            width: 100%;\n            height: 100%;\n        }\n        \n        .hero-slide {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            opacity: 0;\n            visibility: hidden;\n            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;\n        }\n        \n        .hero-slide.active {\n            opacity: 1;\n            visibility: visible;\n        }\n        \n        .hero-item {\n            position: relative;\n            width: 100%;\n            height: 100%;\n            overflow: hidden;\n        }\n        \n        .hero-item img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            transition: transform 8s ease;\n            filter: brightness(0.8);\n        }\n        \n        .hero-slide.active .hero-item img {\n            transform: scale(1.1);\n        }\n        \n        .hero-item::after {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.7) 100%);\n            z-index: 1;\n        }\n        \n        \/* Remove any text overlays *\/\n        .hero-item::before {\n            display: none;\n        }\n        \n        \/* Slider navigation dots *\/\n        .slider-dots {\n            position: absolute;\n            bottom: 30px;\n            left: 50%;\n            transform: translateX(-50%);\n            display: flex;\n            gap: 16px;\n            z-index: 10;\n        }\n        \n        .dot {\n            width: 14px;\n            height: 14px;\n            border-radius: 50%;\n            background: rgba(255,255,255,0.4);\n            border: 2px solid transparent;\n            cursor: pointer;\n            transition: all 0.3s ease;\n        }\n        \n        .dot.active {\n            background: var(--primary);\n            transform: scale(1.3);\n            box-shadow: 0 0 20px rgba(37,99,235,0.6);\n            border-color: white;\n        }\n        \n        .dot:hover {\n            background: rgba(255,255,255,0.9);\n        }\n        \n        \/* Main Content *\/\n        .main-content {\n            padding: 4rem 0;\n        }\n        \n        \/* Section header - \u0628\u062f\u0648\u0646 \u0632\u06cc\u0631\u0646\u0648\u06cc\u0633 *\/\n        .section-header {\n            text-align: left;\n            margin-bottom: 3rem;\n            padding-bottom: 1rem;\n            border-bottom: 2px solid var(--gray-light);\n            position: relative;\n        }\n        \n        .section-header::after {\n            content: '';\n            position: absolute;\n            bottom: -2px;\n            left: 0;\n            width: 100px;\n            height: 2px;\n            background: var(--gradient-1);\n        }\n        \n        .section-header h1 {\n            font-size: 2.5rem;\n            font-weight: 700;\n            color: var(--dark);\n            margin-bottom: 0;\n        }\n        \n        \/* Articles Grid *\/\n        .articles-grid {\n            display: grid;\n            grid-template-columns: repeat(2, 1fr);\n            gap: 2rem;\n        }\n        \n        .article-card {\n            background: var(--card-bg);\n            border-radius: 20px;\n            overflow: hidden;\n            box-shadow: var(--shadow-lg);\n            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);\n            border: 1px solid rgba(37,99,235,0.1);\n            display: flex;\n            flex-direction: column;\n        }\n        \n        .article-card:hover {\n            transform: translateY(-8px);\n            box-shadow: var(--shadow-xl);\n            border-color: var(--primary-light);\n        }\n        \n        .article-image {\n            position: relative;\n            height: 220px;\n            overflow: hidden;\n            background: var(--dark-light);\n        }\n        \n        .article-image img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            transition: transform 0.6s;\n        }\n        \n        .article-card:hover .article-image img {\n            transform: scale(1.08);\n        }\n        \n        .article-category {\n            position: absolute;\n            top: 1rem;\n            right: 1rem;\n            background: var(--primary);\n            color: white;\n            padding: 0.3rem 1rem;\n            border-radius: 100px;\n            font-size: 0.7rem;\n            font-weight: 600;\n            text-transform: uppercase;\n            letter-spacing: 0.5px;\n            box-shadow: var(--shadow-lg);\n            z-index: 5;\n        }\n        \n        .article-content {\n            padding: 1.75rem;\n            flex: 1;\n            display: flex;\n            flex-direction: column;\n        }\n        \n        .article-meta {\n            display: flex;\n            gap: 0.75rem;\n            margin-bottom: 0.75rem;\n        }\n        \n        .meta-item {\n            font-size: 0.75rem;\n            color: var(--gray);\n            display: flex;\n            align-items: center;\n            gap: 0.3rem;\n        }\n        \n        .meta-item i {\n            color: var(--primary);\n            font-size: 0.7rem;\n        }\n        \n        .article-title {\n            font-size: 1.35rem;\n            font-weight: 700;\n            line-height: 1.4;\n            margin-bottom: 0.75rem;\n        }\n        \n        .article-title a {\n            color: var(--dark);\n            text-decoration: none;\n            transition: color 0.2s;\n        }\n        \n        .article-title a:hover {\n            color: var(--primary);\n        }\n        \n        .article-abstract {\n            color: var(--gray);\n            font-size: 0.9rem;\n            line-height: 1.6;\n            margin-bottom: 1.25rem;\n            flex: 1;\n        }\n        \n        .keywords {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 0.4rem;\n            margin-bottom: 1.25rem;\n        }\n        \n        .keyword {\n            padding: 0.2rem 0.8rem;\n            background: #f1f5f9;\n            border-radius: 100px;\n            font-size: 0.7rem;\n            font-weight: 500;\n            color: var(--dark-light);\n            border: 1px solid #e2e8f0;\n        }\n        \n        .article-footer {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            padding-top: 1rem;\n            border-top: 1px solid #e2e8f0;\n        }\n        \n        .author-info {\n            display: flex;\n            align-items: center;\n            gap: 0.5rem;\n        }\n        \n        .author-avatar {\n            width: 36px;\n            height: 36px;\n            border-radius: 50%;\n            background: var(--gradient-1);\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            color: white;\n            font-weight: 600;\n            font-size: 0.9rem;\n        }\n        \n        .author-details {\n            font-size: 0.85rem;\n        }\n        \n        .author-name {\n            font-weight: 600;\n            color: var(--dark);\n        }\n        \n        .author-title {\n            color: var(--gray);\n            font-size: 0.7rem;\n        }\n        \n        .pdf-actions {\n            display: flex;\n            gap: 0.5rem;\n        }\n        \n        .pdf-btn {\n            display: inline-flex;\n            align-items: center;\n            gap: 0.4rem;\n            padding: 0.5rem 1rem;\n            border-radius: 8px;\n            font-size: 0.8rem;\n            font-weight: 500;\n            text-decoration: none;\n            transition: all 0.2s;\n            border: none;\n        }\n        \n        .pdf-btn.primary {\n            background: var(--primary);\n            color: white;\n        }\n        \n        .pdf-btn.primary:hover {\n            background: var(--primary-dark);\n            transform: translateY(-2px);\n            box-shadow: var(--shadow-lg);\n        }\n        \n        .pdf-btn.outline {\n            border: 1px solid var(--primary);\n            color: var(--primary);\n        }\n        \n        .pdf-btn.outline:hover {\n            background: var(--primary);\n            color: white;\n        }\n        \n        .back-home {\n            text-align: center;\n            margin-top: 4rem;\n        }\n        \n        .back-home-btn {\n            display: inline-flex;\n            align-items: center;\n            gap: 0.5rem;\n            padding: 0.75rem 2rem;\n            background: var(--dark);\n            color: white;\n            text-decoration: none;\n            border-radius: 12px;\n            font-weight: 500;\n            transition: all 0.3s;\n        }\n        \n        .back-home-btn:hover {\n            background: var(--primary);\n            transform: translateX(-4px);\n        }\n        \n        \/* Responsive *\/\n        @media (max-width: 1024px) {\n            .hero-wrapper {\n                height: 500px;\n            }\n        }\n        \n        @media (max-width: 768px) {\n            .hero-wrapper {\n                height: 400px;\n            }\n            \n            .articles-grid {\n                grid-template-columns: 1fr;\n                gap: 1.5rem;\n            }\n            \n            .section-header h1 {\n                font-size: 2rem;\n            }\n            \n            .article-footer {\n                flex-direction: column;\n                gap: 1rem;\n                align-items: flex-start;\n            }\n            \n            .pdf-actions {\n                width: 100%;\n            }\n            \n            .pdf-btn {\n                flex: 1;\n                justify-content: center;\n            }\n        }\n        \n        @media (max-width: 480px) {\n            .hero-wrapper {\n                height: 300px;\n            }\n            \n            .article-title {\n                font-size: 1.2rem;\n            }\n        }\n        \n        html {\n            scroll-behavior: smooth;\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <!-- Hero Section - \u062a\u06a9 \u0639\u06a9\u0633 \u062f\u0631 \u0647\u0631 \u0627\u0633\u0644\u0627\u06cc\u062f -->\n    <div class=\"hero-wrapper\">\n        <div class=\"hero-grid\">\n            <!-- \u0627\u0633\u0644\u0627\u06cc\u062f 1: \u0639\u06a9\u0633 5-1.jpg -->\n            <div class=\"hero-slide active\" id=\"slide1\">\n                <div class=\"hero-item\">\n                    <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/02\/5-1.jpg\" \n                         alt=\"Immunology Research - Image 1\"\n                         loading=\"eager\">\n                <\/div>\n            <\/div>\n            \n            <!-- \u0627\u0633\u0644\u0627\u06cc\u062f 2: \u0639\u06a9\u0633 6-1.jpg -->\n            <div class=\"hero-slide\" id=\"slide2\">\n                <div class=\"hero-item\">\n                    <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/02\/6-1.jpg\" \n                         alt=\"Laboratory Research - Image 2\"\n                         loading=\"lazy\">\n                <\/div>\n            <\/div>\n            \n            <!-- \u0627\u0633\u0644\u0627\u06cc\u062f 3: \u0639\u06a9\u0633 7-1.jpg -->\n            <div class=\"hero-slide\" id=\"slide3\">\n                <div class=\"hero-item\">\n                    <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/02\/7-1.jpg\" \n                         alt=\"Publications - Image 3\"\n                         loading=\"lazy\">\n                <\/div>\n            <\/div>\n            \n            <!-- \u0627\u0633\u0644\u0627\u06cc\u062f 4: \u0639\u06a9\u0633 8.webp -->\n            <div class=\"hero-slide\" id=\"slide4\">\n                <div class=\"hero-item\">\n                    <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/02\/8.webp\" \n                         alt=\"Neuroimmunology - Image 4\"\n                         loading=\"lazy\">\n                <\/div>\n            <\/div>\n        <\/div>\n        \n        <!-- \u062f\u06a9\u0645\u0647\u200c\u0647\u0627\u06cc \u0646\u0627\u0648\u0628\u0631\u06cc -->\n        <div class=\"slider-dots\">\n            <span class=\"dot active\" data-slide=\"0\"><\/span>\n            <span class=\"dot\" data-slide=\"1\"><\/span>\n            <span class=\"dot\" data-slide=\"2\"><\/span>\n            <span class=\"dot\" data-slide=\"3\"><\/span>\n        <\/div>\n    <\/div>\n\n    <!-- Main Content - \u0628\u062f\u0648\u0646 \u0632\u06cc\u0631\u0646\u0648\u06cc\u0633 -->\n    <main class=\"main-content\">\n        <div class=\"container\">\n            <!-- Header - \u0641\u0642\u0637 \u0639\u0646\u0648\u0627\u0646 \u0627\u0635\u0644\u06cc\u060c \u0628\u062f\u0648\u0646 \u062a\u0648\u0636\u06cc\u062d\u0627\u062a -->\n            <div class=\"section-header\">\n                <h1>Research Publications<\/h1>\n                <!-- \u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u062d\u0630\u0641 \u0634\u062f -->\n            <\/div>\n            \n            <!-- Articles Grid (\u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631) -->\n            <div class=\"articles-grid\">\n                <!-- Article 1 -->\n                <article class=\"article-card\">\n                    <div class=\"article-image\">\n                        <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/spring-immunity-thumb.jpg.png\" \n                             alt=\"Spring Immune Health\"\n                             onerror=\"this.src='https:\/\/placehold.co\/600x400\/2563eb\/white?text=Spring+Immune+Health'\">\n                        <span class=\"article-category\">Immunology<\/span>\n                    <\/div>\n                    <div class=\"article-content\">\n                        <div class=\"article-meta\">\n                            <span class=\"meta-item\"><i class=\"far fa-calendar-alt\"><\/i> Jan 2026<\/span>\n                            <span class=\"meta-item\"><i class=\"far fa-clock\"><\/i> 12 min read<\/span>\n                        <\/div>\n                        \n                        <h2 class=\"article-title\">\n                            <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Spring_Immune_Health.pdf\" \n                               target=\"_blank\">Spring Immune Health<\/a>\n                        <\/h2>\n                        \n                        <p class=\"article-abstract\">\n                            Investigating how spring conditions affect immune resistance through sunlight exposure and environmental factors. A comprehensive analysis of seasonal immunological variations.\n                        <\/p>\n                        \n                        <div class=\"keywords\">\n                            <span class=\"keyword\">Immunology<\/span>\n                            <span class=\"keyword\">Seasonal Health<\/span>\n                            <span class=\"keyword\">Pediatrics<\/span>\n                            <span class=\"keyword\">Vitamin D<\/span>\n                        <\/div>\n                        \n                        <div class=\"article-footer\">\n                            <div class=\"author-info\">\n                                <div class=\"author-avatar\">ME<\/div>\n                                <div class=\"author-details\">\n                                    <div class=\"author-name\">Mehrdad Etemad<\/div>\n                                    <div class=\"author-title\">Principal Investigator<\/div>\n                                <\/div>\n                            <\/div>\n                            \n                            <div class=\"pdf-actions\">\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Spring_Immune_Health.pdf\" \n                                   target=\"_blank\" class=\"pdf-btn outline\">\n                                    <i class=\"far fa-eye\"><\/i> View PDF\n                                <\/a>\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Spring_Immune_Health.pdf\" \n                                   download class=\"pdf-btn primary\">\n                                    <i class=\"fas fa-download\"><\/i> PDF\n                                <\/a>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/article>\n                \n                <!-- Article 2 -->\n                <article class=\"article-card\">\n                    <div class=\"article-image\">\n                        <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Immunological-and-Sociological-Analysis-of-Vaccine-Hesitancy.png\" \n                             alt=\"Vaccine Hesitancy Analysis\"\n                             onerror=\"this.src='https:\/\/placehold.co\/600x400\/7c3aed\/white?text=Vaccine+Hesitancy'\">\n                        <span class=\"article-category\">Public Health<\/span>\n                    <\/div>\n                    <div class=\"article-content\">\n                        <div class=\"article-meta\">\n                            <span class=\"meta-item\"><i class=\"far fa-calendar-alt\"><\/i> Dec 2025<\/span>\n                            <span class=\"meta-item\"><i class=\"far fa-clock\"><\/i> 18 min read<\/span>\n                        <\/div>\n                        \n                        <h2 class=\"article-title\">\n                            <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Immunological-and-Sociological-Analysis-of-Vaccine-Hesitancy.pdf\" \n                               target=\"_blank\">Immunological &#038; Sociological Analysis of Vaccine Hesitancy<\/a>\n                        <\/h2>\n                        \n                        <p class=\"article-abstract\">\n                            A comprehensive study examining immunological factors influencing vaccine hesitancy in modern societies, integrating public health perspectives with sociological analysis.\n                        <\/p>\n                        \n                        <div class=\"keywords\">\n                            <span class=\"keyword\">Immunology<\/span>\n                            <span class=\"keyword\">Public Health<\/span>\n                            <span class=\"keyword\">Sociology<\/span>\n                            <span class=\"keyword\">Vaccination<\/span>\n                        <\/div>\n                        \n                        <div class=\"article-footer\">\n                            <div class=\"author-info\">\n                                <div class=\"author-avatar\">ME<\/div>\n                                <div class=\"author-details\">\n                                    <div class=\"author-name\">Mehrdad Etemad<\/div>\n                                    <div class=\"author-title\">Lead Researcher<\/div>\n                                <\/div>\n                            <\/div>\n                            \n                            <div class=\"pdf-actions\">\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Immunological-and-Sociological-Analysis-of-Vaccine-Hesitancy.pdf\" \n                                   target=\"_blank\" class=\"pdf-btn outline\">\n                                    <i class=\"far fa-eye\"><\/i> View PDF\n                                <\/a>\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Immunological-and-Sociological-Analysis-of-Vaccine-Hesitancy.pdf\" \n                                   download class=\"pdf-btn primary\">\n                                    <i class=\"fas fa-download\"><\/i> PDF\n                                <\/a>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/article>\n                \n                <!-- Article 3 -->\n                <article class=\"article-card\">\n                    <div class=\"article-image\">\n                        <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Comparison-of-the-Immunological-and-Neuroimmunological-Effects-of-Sedative-Drugs.jpg\" \n                             alt=\"Sedative Drugs Research\"\n                             onerror=\"this.src='https:\/\/placehold.co\/600x400\/10b981\/white?text=Sedative+Drugs'\">\n                        <span class=\"article-category\">Neuroimmunology<\/span>\n                    <\/div>\n                    <div class=\"article-content\">\n                        <div class=\"article-meta\">\n                            <span class=\"meta-item\"><i class=\"far fa-calendar-alt\"><\/i> Nov 2025<\/span>\n                            <span class=\"meta-item\"><i class=\"far fa-clock\"><\/i> 22 min read<\/span>\n                        <\/div>\n                        \n                        <h2 class=\"article-title\">\n                            <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Comparison-of-the-Immunological-and-Neuroimmunological-Effects-of-Sedative-Drugs.pdf\" \n                               target=\"_blank\">Comparative Effects of Sedative Drugs on Immune Function<\/a>\n                        <\/h2>\n                        \n                        <p class=\"article-abstract\">\n                            Analysis of sedative medications&#8217; impact on immune function and neuro-immune interactions, comparing different drug classes and their clinical implications.\n                        <\/p>\n                        \n                        <div class=\"keywords\">\n                            <span class=\"keyword\">Neuroimmunology<\/span>\n                            <span class=\"keyword\">Pharmacology<\/span>\n                            <span class=\"keyword\">Clinical Research<\/span>\n                            <span class=\"keyword\">Sedatives<\/span>\n                        <\/div>\n                        \n                        <div class=\"article-footer\">\n                            <div class=\"author-info\">\n                                <div class=\"author-avatar\">ME<\/div>\n                                <div class=\"author-details\">\n                                    <div class=\"author-name\">Mehrdad Etemad<\/div>\n                                    <div class=\"author-title\">Corresponding Author<\/div>\n                                <\/div>\n                            <\/div>\n                            \n                            <div class=\"pdf-actions\">\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Comparison-of-the-Immunological-and-Neuroimmunological-Effects-of-Sedative-Drugs.pdf\" \n                                   target=\"_blank\" class=\"pdf-btn outline\">\n                                    <i class=\"far fa-eye\"><\/i> View PDF\n                                <\/a>\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2026\/01\/Comparison-of-the-Immunological-and-Neuroimmunological-Effects-of-Sedative-Drugs.pdf\" \n                                   download class=\"pdf-btn primary\">\n                                    <i class=\"fas fa-download\"><\/i> PDF\n                                <\/a>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/article>\n                \n                <!-- Article 4 -->\n                <article class=\"article-card\">\n                    <div class=\"article-image\">\n                        <img decoding=\"async\" src=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2025\/12\/unnamed-1-3.jpg\" \n                             alt=\"Autologous Blood Transfusion\"\n                             onerror=\"this.src='https:\/\/placehold.co\/600x400\/2563eb\/white?text=Autologous+Transfusion'\">\n                        <span class=\"article-category\">Hematology<\/span>\n                    <\/div>\n                    <div class=\"article-content\">\n                        <div class=\"article-meta\">\n                            <span class=\"meta-item\"><i class=\"far fa-calendar-alt\"><\/i> Dec 2025<\/span>\n                            <span class=\"meta-item\"><i class=\"far fa-clock\"><\/i> 15 min read<\/span>\n                        <\/div>\n                        \n                        <h2 class=\"article-title\">\n                            <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2025\/12\/articlesAutologous-Blood-Transfusion-for-Immune-System-Rebalancing.pdf\" \n                               target=\"_blank\">Autologous Blood Transfusion for Immune System Rebalancing<\/a>\n                        <\/h2>\n                        \n                        <p class=\"article-abstract\">\n                            Investigating the potential of autologous blood transfusion techniques in modulating and rebalancing immune system function in clinical settings.\n                        <\/p>\n                        \n                        <div class=\"keywords\">\n                            <span class=\"keyword\">Immunology<\/span>\n                            <span class=\"keyword\">Hematology<\/span>\n                            <span class=\"keyword\">Clinical Research<\/span>\n                            <span class=\"keyword\">Transfusion<\/span>\n                        <\/div>\n                        \n                        <div class=\"article-footer\">\n                            <div class=\"author-info\">\n                                <div class=\"author-avatar\">ME<\/div>\n                                <div class=\"author-details\">\n                                    <div class=\"author-name\">Mehrdad Etemad<\/div>\n                                    <div class=\"author-title\">Principal Author<\/div>\n                                <\/div>\n                            <\/div>\n                            \n                            <div class=\"pdf-actions\">\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2025\/12\/articlesAutologous-Blood-Transfusion-for-Immune-System-Rebalancing.pdf\" \n                                   target=\"_blank\" class=\"pdf-btn outline\">\n                                    <i class=\"far fa-eye\"><\/i> View PDF\n                                <\/a>\n                                <a href=\"https:\/\/www.mertimmunology.com\/wp-content\/uploads\/2025\/12\/articlesAutologous-Blood-Transfusion-for-Immune-System-Rebalancing.pdf\" \n                                   download class=\"pdf-btn primary\">\n                                    <i class=\"fas fa-download\"><\/i> PDF\n                                <\/a>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/article>\n            <\/div>\n            \n            <!-- Back to Home -->\n            <div class=\"back-home\">\n                <a href=\"https:\/\/www.mertimmunology.com\/\" class=\"back-home-btn\">\n                    <i class=\"fas fa-arrow-left\"><\/i>\n                    Back to Main Website\n                <\/a>\n            <\/div>\n        <\/div>\n    <\/main>\n\n    <!-- JavaScript -->\n    <script>\n        document.addEventListener('DOMContentLoaded', function() {\n            \/\/ Image error handler\n            const images = document.querySelectorAll('img');\n            images.forEach(img => {\n                img.addEventListener('error', function() {\n                    console.warn('Image failed to load:', this.src);\n                });\n            });\n            \n            \/\/ Hero Slider - \u062a\u06a9 \u0639\u06a9\u0633 \u062f\u0631 \u0647\u0631 \u0627\u0633\u0644\u0627\u06cc\u062f\n            const slides = document.querySelectorAll('.hero-slide');\n            const dots = document.querySelectorAll('.dot');\n            let currentSlide = 0;\n            const slideCount = slides.length;\n            let slideInterval;\n            \n            function showSlide(index) {\n                slides.forEach(slide => {\n                    slide.classList.remove('active');\n                });\n                dots.forEach(dot => {\n                    dot.classList.remove('active');\n                });\n                \n                slides[index].classList.add('active');\n                dots[index].classList.add('active');\n                currentSlide = index;\n            }\n            \n            function nextSlide() {\n                let next = (currentSlide + 1) % slideCount;\n                showSlide(next);\n            }\n            \n            function startAutoPlay() {\n                slideInterval = setInterval(nextSlide, 5000); \/\/ 5 \u062b\u0627\u0646\u06cc\u0647\n            }\n            \n            function stopAutoPlay() {\n                clearInterval(slideInterval);\n            }\n            \n            dots.forEach((dot, index) => {\n                dot.addEventListener('click', function() {\n                    stopAutoPlay();\n                    showSlide(index);\n                    startAutoPlay();\n                });\n            });\n            \n            const heroWrapper = document.querySelector('.hero-wrapper');\n            heroWrapper.addEventListener('mouseenter', stopAutoPlay);\n            heroWrapper.addEventListener('mouseleave', startAutoPlay);\n            \n            \/\/ \u0646\u0645\u0627\u06cc\u0634 \u0627\u0633\u0644\u0627\u06cc\u062f \u0627\u0648\u0644 \u0648 \u0634\u0631\u0648\u0639 \u0627\u062a\u0648\u067e\u0644\u06cc\n            showSlide(0);\n            startAutoPlay();\n        });\n    <\/script>\n    \n    <!-- Bootstrap JS -->\n    <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.0\/dist\/js\/bootstrap.bundle.min.js\"><\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Research Publications | Mehrdad Etemad Research Publications Immunology Jan 2026 12 min read Spring Immune Health Investigating how spring conditions affect immune resistance through sunlight exposure and environmental factors. A comprehensive analysis of seasonal immunological variations. Immunology Seasonal Health Pediatrics Vitamin D ME Mehrdad Etemad Principal Investigator View PDF PDF Public Health Dec 2025 18&hellip;&nbsp;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"neve_meta_sidebar":"full-width","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"on","footnotes":""},"class_list":["post-62","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=\/wp\/v2\/pages\/62","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=62"}],"version-history":[{"count":10,"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=\/wp\/v2\/pages\/62\/revisions"}],"predecessor-version":[{"id":256,"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=\/wp\/v2\/pages\/62\/revisions\/256"}],"wp:attachment":[{"href":"https:\/\/www.mertimmunology.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=62"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}