{"id":93598,"date":"2025-11-08T21:51:08","date_gmt":"2025-11-08T21:51:08","guid":{"rendered":"https:\/\/redlightjazz.com\/home-test\/"},"modified":"2026-04-21T10:24:02","modified_gmt":"2026-04-21T10:24:02","slug":"home-2","status":"publish","type":"page","link":"https:\/\/redlightjazz.com\/en\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"93598\" class=\"elementor elementor-93598 elementor-93590\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3a768942 e-con-full e-flex e-con e-parent\" data-id=\"3a768942\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-41e87aa2 elementor-widget elementor-widget-html\" data-id=\"41e87aa2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"video-wrapper\">\n  <video class=\"hero-video\" autoplay=\"\" muted=\"\" loop=\"\" playsinline=\"\">\n    <source src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/10\/Redl-Light-Promo.mp4\">\n  Your browser does not support this video type.\n  <\/source><\/video>\n<\/div>\n\n\n<style>\n.hero-video {\n  position: relative;\n  display: block;\n  width: 100%;\n  height: calc(100dvh - 80px); \/* Pas 80px aan naar je echte headerhoogte *\/\n  object-fit: cover;\n}\n\n\n\n<\/style>\n\n<script>\n  function toggleMute(button) {\n    const video = document.querySelector('.hero-video');\n    video.muted = !video.muted;\n    button.textContent = video.muted ? '\ud83d\udd08' : '\ud83d\udd0a';\n  }\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3c7e0111 e-con-full e-flex e-con e-parent\" data-id=\"3c7e0111\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-107379e0 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-shortcode\" data-id=\"107379e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">    \n\n    <div class=\"events-display\">\n                \n        <!-- Datum navigatie kolom (Desktop) -->\n        <div class=\"date-column\">\n            <div class=\"nav-arrow up-arrow\"><\/div>\n            \n            <div class=\"date-nav\">\n                            <\/div>\n            \n            <div class=\"nav-arrow down-arrow\"><\/div>\n            \n                    <\/div>\n        \n        <!-- Mobiele elementen -->\n        <div class=\"mobile-center-date\">\n                    <\/div>\n        \n        <div class=\"mobile-bottom-nav\">\n            <div class=\"date-block-container\">\n                <button class=\"mobile-nav-arrow mobile-left-arrow\" style=\"width:50px; height:50px; background:#ff0000; color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; border:none;\">\n                    <div style=\"width:12px; height:12px; border-style:solid; border-width:3px 3px 0 0; border-color:white; transform:rotate(-135deg); margin-left:5px;\"><\/div>\n                <\/button>\n                                <button class=\"mobile-nav-arrow mobile-right-arrow\" style=\"width:50px; height:50px; background:#ff0000; color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; border:none;\">\n                    <div style=\"width:12px; height:12px; border-style:solid; border-width:3px 3px 0 0; border-color:white; transform:rotate(45deg); margin-right:5px;\"><\/div>\n                <\/button>\n                <div class=\"month-block\">\n    APRIL<\/div>\n            <\/div>\n        <\/div>\n        \n        <!-- Event slides -->\n        <div class=\"event-slides\">\n                            <div class=\"no-events\">\n                <p>No events found for the selected dates.<\/p>\n                <\/div>\n                    <\/div>\n    <\/div>\n\n    <script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ Selecteer elementen\n    var dateButtons = document.querySelectorAll('.date-button');\n    var eventSlides = document.querySelectorAll('.event-slide');\n    var upArrow = document.querySelector('.up-arrow');\n    var downArrow = document.querySelector('.down-arrow');\n    var monthLabel = document.querySelector('.month-label');\n    var mobileLeftArrow = document.querySelector('.mobile-left-arrow');\n    var mobileRightArrow = document.querySelector('.mobile-right-arrow');\n    var mobileBlocks = document.querySelectorAll('.date-block');\n    var centerDateDisplay = document.querySelector('.mobile-center-date');\n    \n    \/\/ Houdt bij welke datum actief is\n    var activeIndex = 0;\n    var maxIndex = dateButtons.length - 1;\n    var slideInterval;\n    \n    \/\/ Functie om naar een specifieke datum te gaan\n    function goToDate(index) {\n        console.log(\"goToDate called with index: \" + index);\n        \n        \/\/ Maak de index cyclisch (doorlopend)\n        if (index < 0) index = maxIndex;\n        if (index > maxIndex) index = 0;\n        \n        \/\/ Update actieve status\n        activeIndex = index;\n        \n        \/\/ Update datumknoppen voor desktop\n        dateButtons.forEach(function(btn) {\n            btn.classList.remove('active');\n        });\n        if (dateButtons[index]) {\n            dateButtons[index].classList.add('active');\n        }\n        \n        \/\/ Update mobiele datum blokken\n        var mobileBlocks = document.querySelectorAll('.date-block');\n        if (mobileBlocks && mobileBlocks.length > 0) {\n            mobileBlocks.forEach(function(block) {\n                block.classList.remove('active');\n            });\n            if (mobileBlocks[index]) {\n                mobileBlocks[index].classList.add('active');\n            }\n        }\n        \n        \/\/ Update maandlabel en centrale datum weergave\n        var dateInfo = null;\n        var activeButton = dateButtons[index];\n        if (activeButton) {\n            var dateIndex = parseInt(activeButton.getAttribute('data-index'));\n            var activeSlides = document.querySelectorAll('.event-slide[data-date-index=\"' + dateIndex + '\"]');\n            \n            if (activeSlides.length > 0) {\n                \/\/ Verzamel datum informatie\n                var day = activeButton.textContent.trim();\n                var monthName = activeSlides[0].getAttribute('data-month');\n                dateInfo = { day: day, month: monthName };\n                \n                \/\/ Update maandlabel op desktop\n                if (monthName && monthLabel) {\n                    monthLabel.textContent = monthName.toUpperCase();\n                }\n                \n                \/\/ Update centrale datum weergave op mobiel\n                if (centerDateDisplay && day && monthName) {\n                    centerDateDisplay.textContent = day + ' ' + monthName.toUpperCase();\n                }\n                \n                \/\/ Verberg alle slides\n                eventSlides.forEach(function(slide) {\n                    slide.classList.remove('active');\n                });\n                \n                \/\/ Toon alleen de actieve slide\n                activeSlides[0].classList.add('active');\n            }\n        }\n        \n        \/\/ Reset de timer bij elke slide wisseling\n        resetSlideTimer();\n    }\n    \n    \/\/ Functie om automatisch te sliden\n    function startSlideTimer() {\n        slideInterval = setInterval(function() {\n            goToDate(activeIndex + 1);\n        }, 5000); \/\/ 5 seconden\n    }\n    \n    \/\/ Reset de timer\n    function resetSlideTimer() {\n        clearInterval(slideInterval);\n        startSlideTimer();\n    }\n    \n    \/\/ Event listeners voor datumknoppen\n    dateButtons.forEach(function(button) {\n        button.addEventListener('click', function() {\n            var index = parseInt(this.getAttribute('data-index'));\n            goToDate(index);\n        });\n    });\n    \n    \/\/ Event listeners voor desktop pijltjes\n    if (upArrow) {\n        upArrow.addEventListener('click', function() {\n            goToDate(activeIndex - 1);\n        });\n    }\n    \n    if (downArrow) {\n        downArrow.addEventListener('click', function() {\n            goToDate(activeIndex + 1);\n        });\n    }\n    \n    \/\/ Event listeners voor mobiele pijltjes\n    if (mobileLeftArrow) {\n        mobileLeftArrow.addEventListener('click', function() {\n            console.log(\"Left arrow clicked\");\n            goToDate(activeIndex - 1);\n        });\n    }\n    \n    if (mobileRightArrow) {\n        mobileRightArrow.addEventListener('click', function() {\n            console.log(\"Right arrow clicked\");\n            goToDate(activeIndex + 1);\n        });\n    }\n    \n    \/\/ Event listeners voor mobiele datum blokken\n    mobileBlocks.forEach(function(block) {\n        block.addEventListener('click', function() {\n            var index = parseInt(this.getAttribute('data-index'));\n            goToDate(index);\n        });\n    });\n    \n    \/\/ Start de automatische slideshow\n    startSlideTimer();\n    \n    \/\/ Pauzeer de slideshow bij hover (optioneel)\n    var eventsDisplay = document.querySelector('.events-display');\n    if (eventsDisplay) {\n        eventsDisplay.addEventListener('mouseenter', function() {\n            clearInterval(slideInterval);\n        });\n        \n        eventsDisplay.addEventListener('mouseleave', function() {\n            startSlideTimer();\n        });\n    }\n    \n    \/\/ Maak de goToDate functie globaal beschikbaar\n    window.goToDate = goToDate;\n    \n    \/\/ Initialiseer met de eerste datum actief\n    goToDate(0);\n    \n    \/\/ Debug code om te zien of de pijlen bestaan\n    console.log(\"Left arrow exists: \", !!mobileLeftArrow);\n    console.log(\"Right arrow exists: \", !!mobileRightArrow);\n    console.log(\"Mobile blocks count: \", mobileBlocks.length);\n});\n<\/script>\n\n<script>\n  document.addEventListener(\"DOMContentLoaded\", function() {\n    const header = document.querySelector('.elementor-location-header'); \/\/ Pas aan als je header een andere tag of klasse heeft\n    if (header) {\n      const height = header.offsetHeight;\n      document.documentElement.style.setProperty('--header-height', height + 'px');\n      console.log('Header hoogte ingesteld op:', height + 'px');\n    }\n  });\n<\/script>\n\n\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-137e0811 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"137e0811\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"768\" height=\"1024\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo-768x1024.webp\" class=\"attachment-large size-large wp-image-89026\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo-768x1024.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo-225x300.webp 225w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo-600x800.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo.webp 1080w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3e60ad07 e-con-full e-flex e-con e-parent\" data-id=\"3e60ad07\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2216d40a hm-programma-sc elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-shortcode\" data-id=\"2216d40a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\n<!-- ================= Desktop Layout ================= -->\n<div class=\"program-home-desktop\">\n    <header class=\"program-home-header\">\n    <h2 class=\"program-home-title\"><span style=\"color:red;\">Concerten<\/span><\/h2>\n    <\/header>\n\n    <div class=\"program-hm-sc-row program-hm-sc-header-row\">\n        <div class=\"program-hm-sc-date-header\">DATE<\/div>\n        <div class=\"program-hm-sc-featured-header\"><\/div>\n        <div class=\"program-hm-sc-artist-header\">ARTIST<\/div>\n        <div class=\"program-hm-sc-ticket-header\">TICKETS<\/div>\n    <\/div>\n\n    <div class=\"program-hm-sc-list\">\n                    <div class=\"program-hm-sc-item\">\n                <div class=\"program-hm-sc-date\">\n                    <div class=\"program-hm-sc-date-day\">5<\/div>\n                    <div class=\"program-hm-sc-date-month\">June<\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-featured-image\">\n                    <img decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-300x225.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Saxofonist Mark Beebe zit op een trap en speelt terwijl mensen ontspannen in een huiselijke setting om hem heen zitten, sommigen luisterend en anderen met een drankje of telefoon in de hand.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-300x225.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-768x576.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-600x450.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1.webp 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                <\/div>\n\n                <div class=\"program-hm-sc-event-info\">\n                    <div class=\"program-hm-sc-daytime\">\n                        <span class=\"program-hm-sc-date-day-name\">Friday<\/span>\n                        <span class=\"program-hm-sc-separator\">|<\/span>\n                        <span class=\"program-hm-sc-time\">\n\n                        2:00 PM - 4:00 PM\n                        <\/span>\n                    <\/div>\n                    <div class=\"program-hm-sc-title\">\n                        <h3><a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/mark-beebe-trio\/\" class=\"program-hm-sc-title-link\">Mark Beebe Trio<\/a><\/h3>\n                    <\/div>\n                    <div class=\"program-hm-sc-location\">\n                        Location:                        <span>\n                                                            <a href=\"https:\/\/redlightjazz.com\/en\/locations\/dutch-courage-cocktail-bar\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Dutch Courage Cocktail Bar<\/a>\n                                                    <\/span>\n                        <div class=\"program-hm-sc-address\">Seawall 12 | 1012 AX Amsterdam<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-ticket\">\n                    <span class=\"program-hm-sc-ticket-button\" style=\"background-color: green; color: white;\">Free Entry<\/span>                <\/div>\n            <\/div>\n                    <div class=\"program-hm-sc-item\">\n                <div class=\"program-hm-sc-date\">\n                    <div class=\"program-hm-sc-date-day\">5<\/div>\n                    <div class=\"program-hm-sc-date-month\">June<\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-featured-image\">\n                    <img decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-300x225.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Vijf bandleden van Achha staan samen op het podium en poseren na een optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-300x225.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-768x576.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-600x450.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1.webp 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                <\/div>\n\n                <div class=\"program-hm-sc-event-info\">\n                    <div class=\"program-hm-sc-daytime\">\n                        <span class=\"program-hm-sc-date-day-name\">Friday<\/span>\n                        <span class=\"program-hm-sc-separator\">|<\/span>\n                        <span class=\"program-hm-sc-time\">\n\n                        4:00 PM - 7:00 PM\n                        <\/span>\n                    <\/div>\n                    <div class=\"program-hm-sc-title\">\n                        <h3><a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/achha-2\/\" class=\"program-hm-sc-title-link\">ACHHA<\/a><\/h3>\n                    <\/div>\n                    <div class=\"program-hm-sc-location\">\n                        Location:                        <span>\n                                                            <a href=\"https:\/\/redlightjazz.com\/locaties\/brouwerij-de-prael\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Brouwerij De Prael<\/a>\n                                                    <\/span>\n                        <div class=\"program-hm-sc-address\">Oudezijds Armsteeg 26 | 1012 GP Amsterdam<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-ticket\">\n                    <span class=\"program-hm-sc-ticket-button\" style=\"background-color: green; color: white;\">Free Entry<\/span>                <\/div>\n            <\/div>\n                    <div class=\"program-hm-sc-item\">\n                <div class=\"program-hm-sc-date\">\n                    <div class=\"program-hm-sc-date-day\">5<\/div>\n                    <div class=\"program-hm-sc-date-month\">June<\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-featured-image\">\n                    <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Amsterdam Organ Trio\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                <\/div>\n\n                <div class=\"program-hm-sc-event-info\">\n                    <div class=\"program-hm-sc-daytime\">\n                        <span class=\"program-hm-sc-date-day-name\">Friday<\/span>\n                        <span class=\"program-hm-sc-separator\">|<\/span>\n                        <span class=\"program-hm-sc-time\">\n\n                        6:30 PM - 7:30 PM\n                        <\/span>\n                    <\/div>\n                    <div class=\"program-hm-sc-title\">\n                        <h3><a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/the-amsterdam-organ-trio\/\" class=\"program-hm-sc-title-link\">The Amsterdam Organ Trio<\/a><\/h3>\n                    <\/div>\n                    <div class=\"program-hm-sc-location\">\n                        Location:                        <span>\n                                                            <a href=\"https:\/\/redlightjazz.com\/en\/locations\/casablanca\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Casablanca<\/a>\n                                                    <\/span>\n                        <div class=\"program-hm-sc-address\">Zeedijk 26-E | 1012 AZ Amsterdam<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-ticket\">\n                    <span class=\"program-hm-sc-ticket-button\" style=\"background-color: green; color: white;\">Free Entry<\/span>                <\/div>\n            <\/div>\n                    <div class=\"program-hm-sc-item\">\n                <div class=\"program-hm-sc-date\">\n                    <div class=\"program-hm-sc-date-day\">5<\/div>\n                    <div class=\"program-hm-sc-date-month\">June<\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-featured-image\">\n                    <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-300x225.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Twee muzikanten zitten in een gezellige studio: een vrouw met een mondharmonica en een man met een elektrische gitaar, omringd door instrumenten en apparatuur.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-300x225.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-768x576.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-600x450.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1.webp 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                <\/div>\n\n                <div class=\"program-hm-sc-event-info\">\n                    <div class=\"program-hm-sc-daytime\">\n                        <span class=\"program-hm-sc-date-day-name\">Friday<\/span>\n                        <span class=\"program-hm-sc-separator\">|<\/span>\n                        <span class=\"program-hm-sc-time\">\n\n                        7:00 PM - 8:00 PM\n                        <\/span>\n                    <\/div>\n                    <div class=\"program-hm-sc-title\">\n                        <h3><a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/hermine-deurloo-anton-goudsmit\/\" class=\"program-hm-sc-title-link\">Hermine Deurloo &#038; Anton Goudsmit<\/a><\/h3>\n                    <\/div>\n                    <div class=\"program-hm-sc-location\">\n                        Location:                        <span>\n                                                            <a href=\"https:\/\/redlightjazz.com\/locaties\/leger-des-heils-korpszaal\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Leger des Heils (Korpszaal)<\/a>\n                                                    <\/span>\n                        <div class=\"program-hm-sc-address\">Oudezijds Achterburgwal 45 | 1012 DB Amsterdam<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-ticket\">\n                    <span class=\"program-hm-sc-ticket-button\" style=\"background-color: green; color: white;\">Free Entry<\/span>                <\/div>\n            <\/div>\n                    <div class=\"program-hm-sc-item\">\n                <div class=\"program-hm-sc-date\">\n                    <div class=\"program-hm-sc-date-day\">5<\/div>\n                    <div class=\"program-hm-sc-date-month\">June<\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-featured-image\">\n                    <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                <\/div>\n\n                <div class=\"program-hm-sc-event-info\">\n                    <div class=\"program-hm-sc-daytime\">\n                        <span class=\"program-hm-sc-date-day-name\">Friday<\/span>\n                        <span class=\"program-hm-sc-separator\">|<\/span>\n                        <span class=\"program-hm-sc-time\">\n\n                        7:00 PM - 10:00 PM\n                        <\/span>\n                    <\/div>\n                    <div class=\"program-hm-sc-title\">\n                        <h3><a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/the-monkey-trio\/\" class=\"program-hm-sc-title-link\">The Monkey Trio<\/a><\/h3>\n                    <\/div>\n                    <div class=\"program-hm-sc-location\">\n                        Location:                        <span>\n                                                            <a href=\"https:\/\/redlightjazz.com\/en\/locations\/cafe-in-t-aepjen\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Caf\u00e9 In &#8216;t Aepjen<\/a>\n                                                    <\/span>\n                        <div class=\"program-hm-sc-address\">Zeedijk 1 | 1012 AN Amsterdam<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"program-hm-sc-ticket\">\n                    <span class=\"program-hm-sc-ticket-button\" style=\"background-color: green; color: white;\">Free Entry<\/span>                <\/div>\n            <\/div>\n            <\/div>\n<\/div>\n\n<!-- ================= Mobile Layout ================= -->\n<div class=\"program-home-mobile\">\n    <div class=\"program-home-header\">\n        <h2 class=\"program-home-title\"><span style=\"color:black;\">Concerts<\/span><\/h2>\n    <\/div>\n\n    <div class=\"program-home-mobile__list\">\n                    <div class=\"program-home-mobile__item\">\n                                    <div class=\"program-home-mobile__thumbnail\"><img decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-300x225.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Saxofonist Mark Beebe zit op een trap en speelt terwijl mensen ontspannen in een huiselijke setting om hem heen zitten, sommigen luisterend en anderen met een drankje of telefoon in de hand.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-300x225.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-768x576.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1-600x450.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-800x600-1.webp 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n                \n                <div class=\"program-home-mobile__content\">\n                    <div class=\"program-home-mobile__date\">\n                        <div class=\"program-home-mobile__date-day\">\n                            5 \n                            June (Friday)\n                        <\/div>\n                        <div class=\"program-home-mobile__time\">14:00 - 16:00<\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__title-locatie\">\n                        <h3 class=\"program-home-mobile__title\">\n                            <a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/mark-beebe-trio\/\">Mark Beebe Trio<\/a>\n                        <\/h3>\n                        <div class=\"program-home-mobile__location\">\n                                                            <a href=\"https:\/\/redlightjazz.com\/en\/locations\/dutch-courage-cocktail-bar\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Dutch Courage Cocktail Bar<\/a>\n                                                                                        <p>| Seawall 12 | 1012 AX Amsterdam<\/p>\n                                                    <\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__toegang\">\n                        <span class=\"event-status free\">Free Admission<\/span>                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"program-home-mobile__item\">\n                                    <div class=\"program-home-mobile__thumbnail\"><img decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-300x225.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Vijf bandleden van Achha staan samen op het podium en poseren na een optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-300x225.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-768x576.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1-600x450.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-800x600-1.webp 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n                \n                <div class=\"program-home-mobile__content\">\n                    <div class=\"program-home-mobile__date\">\n                        <div class=\"program-home-mobile__date-day\">\n                            5 \n                            June (Friday)\n                        <\/div>\n                        <div class=\"program-home-mobile__time\">16:00 - 19:00<\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__title-locatie\">\n                        <h3 class=\"program-home-mobile__title\">\n                            <a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/achha-2\/\">ACHHA<\/a>\n                        <\/h3>\n                        <div class=\"program-home-mobile__location\">\n                                                            <a href=\"https:\/\/redlightjazz.com\/locaties\/brouwerij-de-prael\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Brouwerij De Prael<\/a>\n                                                                                        <p>| Oudezijds Armsteeg 26 | 1012 GP Amsterdam<\/p>\n                                                    <\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__toegang\">\n                        <span class=\"event-status free\">Free Admission<\/span>                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"program-home-mobile__item\">\n                                    <div class=\"program-home-mobile__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Amsterdam Organ Trio\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n                \n                <div class=\"program-home-mobile__content\">\n                    <div class=\"program-home-mobile__date\">\n                        <div class=\"program-home-mobile__date-day\">\n                            5 \n                            June (Friday)\n                        <\/div>\n                        <div class=\"program-home-mobile__time\">18:30 - 19:30<\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__title-locatie\">\n                        <h3 class=\"program-home-mobile__title\">\n                            <a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/the-amsterdam-organ-trio\/\">The Amsterdam Organ Trio<\/a>\n                        <\/h3>\n                        <div class=\"program-home-mobile__location\">\n                                                            <a href=\"https:\/\/redlightjazz.com\/en\/locations\/casablanca\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Casablanca<\/a>\n                                                                                        <p>| Zeedijk 26-E | 1012 AZ Amsterdam<\/p>\n                                                    <\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__toegang\">\n                        <span class=\"event-status free\">Free Admission<\/span>                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"program-home-mobile__item\">\n                                    <div class=\"program-home-mobile__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-300x225.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Twee muzikanten zitten in een gezellige studio: een vrouw met een mondharmonica en een man met een elektrische gitaar, omringd door instrumenten en apparatuur.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-300x225.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-768x576.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1-600x450.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-800x600-1.webp 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n                \n                <div class=\"program-home-mobile__content\">\n                    <div class=\"program-home-mobile__date\">\n                        <div class=\"program-home-mobile__date-day\">\n                            5 \n                            June (Friday)\n                        <\/div>\n                        <div class=\"program-home-mobile__time\">19:00 - 20:00<\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__title-locatie\">\n                        <h3 class=\"program-home-mobile__title\">\n                            <a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/hermine-deurloo-anton-goudsmit\/\">Hermine Deurloo &#038; Anton Goudsmit<\/a>\n                        <\/h3>\n                        <div class=\"program-home-mobile__location\">\n                                                            <a href=\"https:\/\/redlightjazz.com\/locaties\/leger-des-heils-korpszaal\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Leger des Heils (Korpszaal)<\/a>\n                                                                                        <p>| Oudezijds Achterburgwal 45 | 1012 DB Amsterdam<\/p>\n                                                    <\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__toegang\">\n                        <span class=\"event-status free\">Free Admission<\/span>                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"program-home-mobile__item\">\n                                    <div class=\"program-home-mobile__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n                \n                <div class=\"program-home-mobile__content\">\n                    <div class=\"program-home-mobile__date\">\n                        <div class=\"program-home-mobile__date-day\">\n                            5 \n                            June (Friday)\n                        <\/div>\n                        <div class=\"program-home-mobile__time\">19:00 - 22:00<\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__title-locatie\">\n                        <h3 class=\"program-home-mobile__title\">\n                            <a href=\"https:\/\/redlightjazz.com\/en\/program\/friday-june-5\/the-monkey-trio\/\">The Monkey Trio<\/a>\n                        <\/h3>\n                        <div class=\"program-home-mobile__location\">\n                                                            <a href=\"https:\/\/redlightjazz.com\/en\/locations\/cafe-in-t-aepjen\/\" class=\"program-hm-sc-loc-link\" target=\"_blank\">Caf\u00e9 In &#8216;t Aepjen<\/a>\n                                                                                        <p>| Zeedijk 1 | 1012 AN Amsterdam<\/p>\n                                                    <\/div>\n                    <\/div>\n\n                    <div class=\"program-home-mobile__toegang\">\n                        <span class=\"event-status free\">Free Admission<\/span>                    <\/div>\n                <\/div>\n            <\/div>\n            <\/div>\n<\/div>\n\n<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2975e9fd elementor-widget__width-auto elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"2975e9fd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/redlightjazz.com\/en\/program\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">View the full program<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-31c598b7 e-con-full e-flex e-con e-parent\" data-id=\"31c598b7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4e1eea08 e-con-full e-flex e-con e-child\" data-id=\"4e1eea08\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-461dd50f e-con-full e-flex e-con e-child\" data-id=\"461dd50f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dcb06ca elementor-widget elementor-widget-html\" data-id=\"dcb06ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@400;700;800&display=swap\" rel=\"stylesheet\"><style>body {\n    margin: 0;\n    font-family: 'Inter', Arial, sans-serif;\n    background: #000;\n  }\n  \n  .programma-banner-wrapper {\n    position: relative;\n    width: 100%;\n    max-width: 100%;\n    margin: 0 auto;\n  }\n  \n  .programma-banner-wrapper img {\n    width: 100%;\n    height: auto;\n    display: block;\n    border-radius: 1rem;\n  }\n  \n  .overlay {\n    position: absolute;\n    top: 0; left: 0;\n    width: 100%;\n    height: 100%;\n    background: rgba(0, 0, 0, 0.25);\n    z-index: 1;\n    border-radius: 1rem;\n  }\n  \n  .programma-banner {\n    position: absolute;\n    top: 0;\n    left: 0;\n    z-index: 2;\n    padding: 1.5rem;\n    color: #ede8d6;\n    text-align: left;\n    height: 100%;\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n  }\n  \n  .programma-banner h2 {\n    font-size: 1.25rem;\n    font-weight: 800;\n    text-transform: uppercase;\n    margin-bottom: -5px;\n    color: #ede8d6 !important;\n    font-family: inter;\n    margin-bottom: 0.125rem;\n  }\n  \n  .programma-banner .dates .datum {\n    font-size: 2.7rem;\n    font-weight: 800;\n    margin: 0;\n    line-height: 1;\n  }\n  \n  .programma-banner p.datum {\n    letter-spacing: 12px;\n    letter-spacing: 12px !important;\n  }\n  \n  .programma-banner .dates .dagen {\n    font-size: 2.7rem;\n    font-weight: 800;\n    margin: 0;\n    line-height: 1;\n  }\n  \n  .programma-banner .dot {\n    margin: 0 0.3rem;\n  }\n  \n  .download-button {\n    display: inline-block;\n    background-color: #ff0000;\n    color: #ede8d6;\n    padding: 0.7rem 1.2rem;\n    text-decoration: none;\n    font-weight: 700;\n    font-size: 1rem;\n    border-radius: 3px;\n    align-self: flex-start;\n  }\n  \n  .download-button:hover {\n    background-color: #c11920;\n    color: #ede8d6;\n  }\n  \n<\/style><div class=\"programma-banner-wrapper\"><img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ronald-Snijder-Red-Light-Jazz-Programma-Cover.webp\" alt=\"Red Light Jazz Programma\"><div class=\"overlay\"><\/div><div class=\"programma-banner\"><div><h2>Programma<\/h2><div class=\"dates\"><p class=\"datum\">JUNI<\/p><p class=\"dagen\"><span>6<\/span><span class=\"dot\" style=\"color:red;\">\u2022<\/span><span>7<\/span><span class=\"dot\" style=\"color:red;\">\u2022<\/span><span>8<\/span><\/p><\/div><\/div><a class=\"download-button\" href=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Programmagids-Red-Light-Jazz-2025.pdf\" target=\"_blank\">Download Programma\n      <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width: 1em; height: 1em; margin-left: 0.5em; vertical-align: middle;\" viewBox=\"0 0 20 20\" fill=\"currentColor\"><path fill-rule=\"evenodd\" d=\"M3 14a1 1 0 011-1h3v-3a1 1 0 112 0v3h3a1 1 0 110 2H7a1 1 0 01-1-1zm6-13a1 1 0 00-1 1v11.586l-3.293-3.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0l5-5a1 1 0 00-1.414-1.414L11 13.586V2a1 1 0 00-1-1z\" clip-rule=\"evenodd\" \/><\/svg><\/a><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6f7829c2 e-con-full e-flex e-con e-child\" data-id=\"6f7829c2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2bfe42e2 elementor-widget elementor-widget-html\" data-id=\"2bfe42e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@400;600;800&display=swap\" rel=\"stylesheet\"><style>.optreden-banner-wrapper {\n    position: relative;\n    max-width: 100%;\n    width: 100%;\n  }\n  \n.optreden-banner-wrapper img {\n    width: 100%;\n    height: auto;\n    display: block;\n    border-radius: 1rem;\n}\n\n.optreden-overlay {\n    position: absolute;\n    top: 0; left: 0;\n    width: 100%;\n    height: 100%;\n    background: rgba(0, 0, 0, 0.25);\n    z-index: 1;\n    border-radius: 1rem;\n}\n  \n.optreden-content {\n    position: absolute;\n    top: 0;\n    left: 0;\n    z-index: 2;\n    padding: 1.5rem;\n    color: white;\n    text-align: left;\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    height: 100%;\n    box-sizing: border-box;\n    width: 100%;\n  }\n  \n.optreden-content h2 {\n    font-size: 1.5rem;\n    font-weight: 800;\n    text-transform: uppercase;\n    margin: 0 0 0.5rem;\n    color: #ff0000;\n}\n  \n.optreden-content .artist-container {\n    display: flex;\n    margin-top: 1rem;\n}\n  \n.optreden-content .vertical-line {\n    width: 8px;\n    background-color: #ff0000;\n    margin-right: 2rem;\n    align-self: stretch;\n    border-radius: 4px;\n  }\n  \n.optreden-content .artist-name {\n    font-size: 2rem;\n    font-weight: 800;\n    line-height: 1;\n    margin: 0;\n    color: #ede8d6;\n  }\n  \n.optreden-content .event-details {\n    display: flex;\n    margin-top: 1.5rem;\n    position: absolute;\n    bottom: 6rem;\n     color: #ede8d6;\n  }\n  \n.optreden-content .spacer {\n    width: 8px;\n    margin-right: 2rem;\n  }\n  \n .optreden-content .date-info {\n    font-size: 1rem;\n    font-weight: 700;\n    line-height: 1;\n}\n  \n.optreden-content .tickets {\n     display: inline-block;\n    background-color: #ff0000;\n    color: #ede8d6;\n    padding: 0.7rem 1.2rem;\n    text-decoration: none;\n    font-weight: 700;\n    font-size: 1rem;\n    border-radius: 3px;\n    align-self: flex-start;\n  }\n\n.optreden-content .tickets svg {\n    margin-left: 0.5rem;\n    vertical-align: middle;\n    width: 1em;\n    height: 1em;\n    fill: currentColor;\n}\n\n.optreden-content .spacer{\n    margin-right: 0rem;\n}\n\n    \n@media (max-width: 600px) {\n    .optreden-content {\n      padding: 1.5rem;\n    }\n    .optreden-content .artist-name {\n      font-size: 2rem;\n      color:#ede8d6;\n    }\n    \n    .optreden-content .vertical-line{\n        margin-right:1rem;\n    }\n    \n    .optreden-content .date-info {\n        font-size: 1rem;\n        line-height: 1;\n        font-weight: 700;\n        position: absolute;\n        bottom: 6rem;\n    }\n    \n    .optreden-content .tickets{\n    display: inline-block;\n    background-color: #ff0000;\n    color: #ede8d6;\n    padding: 0.7rem 1.2rem;\n    text-decoration: none;\n    font-weight: 700;\n    font-size: 1rem;\n    border-radius: 3px;\n    align-self: flex-start;\n    }\n    \n    .optreden-content .spacer{\n        margin-right: 1rem;\n    }\n    \n  }\n  \n<\/style><div class=\"optreden-banner-wrapper\"><img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Matt-Bianco.webp\" alt=\"Matt Bianco bij Red Light Jazz Diner\"><div class=\"optreden-overlay\"><\/div><div class=\"optreden-content\"><div><h2>RED LIGHT JAZZ DINER<\/h2><div class=\"artist-container\"><div class=\"vertical-line\"><\/div><div class=\"artist-name\">Matt<br\/>Bianco<\/div><\/div><div class=\"event-details\"><div class=\"spacer\"><\/div><div class=\"date-info\">Zondag | 8 juni<br\/>\u2014<br\/>19:00 | Olof's <small><\/small>(St. Olofskapel)<\/small><\/div><\/div><\/div><a href=\"https:\/\/redlightjazz.com\/en\/tickets\/\" class=\"tickets\" target=\"_blank\">Tickets bestellen\n      <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 20 20\" width=\"20\" height=\"20\"><path d=\"M10 17l4-4H6l4 4zm0-14L6 7h8l-4-4z\" fill=\"currentColor\"\/><\/svg><\/a><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5416889c e-con-full e-flex e-con e-child\" data-id=\"5416889c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4f2bc402 elementor-widget elementor-widget-heading\" data-id=\"4f2bc402\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:#ff0000\">Red Light Jazz<\/span> in the Media<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6d5ddb86 elementor-widget elementor-widget-shortcode\" data-id=\"6d5ddb86\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"rim-container\">\n            <div class=\"rim-item-container\">\n                <!-- Meta Information -->\n                <div class=\"rim-meta\">\n                    <div class=\"rim-info\">\n                                                    <p class=\"rim-date\">June 20, 2025<\/p>\n                                                                            <p class=\"rim-publisher\">Rodi.nl<\/p>\n                                            <\/div>\n                    <!-- Title -->\n                    <a href=\"https:\/\/www.rodi.nl\/amsterdam-noord\/amsterdam-750\/451380\/column-marcel-in-mokum-weerzien-met-wouter\" class=\"rim-title-link\" target=\"_blank\" rel=\"noopener noreferrer\">\n                    <h3 class=\"rim-title\">Marcel\u2019s Column in Mokum: Reunion with Wouter<\/h3>\n                    <\/a>\n                <\/div>\n\n                <!-- Thumbnail -->\n                <div class=\"rim-thumbnail\">\n                <a href=\"https:\/\/www.rodi.nl\/amsterdam-noord\/amsterdam-750\/451380\/column-marcel-in-mokum-weerzien-met-wouter\" target=\"_blank\" rel=\"noopener noreferrer\">\n                                                    <img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/06\/column-marcel-in-mokum-weerzien-met-wouter.webp\" alt=\"Marcel\u2019s Column in Mokum: Reunion with Wouter\">\n                                            <\/a>\n                <\/div>\n                <!-- Separator -->\n            <hr class=\"rim-separator\">\n            <\/div>\n            \n            \n            <div class=\"rim-item-container\">\n                <!-- Meta Information -->\n                <div class=\"rim-meta\">\n                    <div class=\"rim-info\">\n                                                    <p class=\"rim-date\">12 juni 2025<\/p>\n                                                                            <p class=\"rim-publisher\">Jazzism<\/p>\n                                            <\/div>\n                    <!-- Title -->\n                    <a href=\"https:\/\/www.jazzism.nl\/nieuws\/verslag-red-light-jazz-festival-amsterdam\/\" class=\"rim-title-link\" target=\"_blank\" rel=\"noopener noreferrer\">\n                    <h3 class=\"rim-title\">Summary: Red Light Jazz Festival Amsterdam<\/h3>\n                    <\/a>\n                <\/div>\n\n                <!-- Thumbnail -->\n                <div class=\"rim-thumbnail\">\n                <a href=\"https:\/\/www.jazzism.nl\/nieuws\/verslag-red-light-jazz-festival-amsterdam\/\" target=\"_blank\" rel=\"noopener noreferrer\">\n                                                    <img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/06\/verslag-van-het-red-light-jazz-festival-jazzism.webp\" alt=\"Summary: Red Light Jazz Festival Amsterdam\">\n                                            <\/a>\n                <\/div>\n                <!-- Separator -->\n            <hr class=\"rim-separator\">\n            <\/div>\n            \n            \n            <div class=\"rim-item-container\">\n                <!-- Meta Information -->\n                <div class=\"rim-meta\">\n                    <div class=\"rim-info\">\n                                                    <p class=\"rim-date\">2025, May 13<\/p>\n                                                                            <p class=\"rim-publisher\">Mokum Magazine<\/p>\n                                            <\/div>\n                    <!-- Title -->\n                    <a href=\"https:\/\/www.mokummagazine.nl\/nieuws-uit-en-over-020\/red-light-jazz-keert-terug-drie-dagen-jazz-in-het-hart-van-amsterdam\/\" class=\"rim-title-link\" target=\"_blank\" rel=\"noopener noreferrer\">\n                    <h3 class=\"rim-title\">Red Light Jazz returns: three days of jazz in the heart of Amsterdam<\/h3>\n                    <\/a>\n                <\/div>\n\n                <!-- Thumbnail -->\n                <div class=\"rim-thumbnail\">\n                <a href=\"https:\/\/www.mokummagazine.nl\/nieuws-uit-en-over-020\/red-light-jazz-keert-terug-drie-dagen-jazz-in-het-hart-van-amsterdam\/\" target=\"_blank\" rel=\"noopener noreferrer\">\n                                                    <img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/red-light-jazz-keert-terug-drie-dagen-jazz-in-het-hart-van-amsterdam.webp\" alt=\"Red Light Jazz returns: three days of jazz in the heart of Amsterdam\">\n                                            <\/a>\n                <\/div>\n                <!-- Separator -->\n            <hr class=\"rim-separator\">\n            <\/div>\n            \n            <\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18e6985d elementor-widget elementor-widget-button\" data-id=\"18e6985d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">More media<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-25bd2e35 e-con-full e-flex e-con e-parent\" data-id=\"25bd2e35\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4fa19b4f e-con-full e-flex e-con e-child\" data-id=\"4fa19b4f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-406820f e-con-full home-video-container elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-child\" data-id=\"406820f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5f130a1b elementor-widget elementor-widget-video\" data-id=\"5f130a1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/HbCXetf-XsE&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4dcd3813 elementor-widget elementor-widget-heading\" data-id=\"4dcd3813\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:red\">Red<\/span> Light Jazz<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2f26f92b e-con-full home-video-container elementor-hidden-mobile e-flex e-con e-child\" data-id=\"2f26f92b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-763f6905 elementor-widget elementor-widget-video\" data-id=\"763f6905\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/HbCXetf-XsE&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c635475 elementor-widget elementor-widget-heading\" data-id=\"4c635475\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:red\">Red<\/span> Light Jazz<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-756c054f e-con-full elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"756c054f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-631c0ea0 hm-sc-random-artist-slider elementor-widget elementor-widget-shortcode\" data-id=\"631c0ea0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"rlj-slick-slider single-row\"><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/ruth-geerse\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Ruth Geerse<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/nohmi\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit portret van jazzpianiste Miran Noh, frontaal kijkend, met een rustige en zelfverzekerde uitstraling tegen een zacht vervaagde stedelijke achtergrond\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>NOHMI<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/esther-van-hees\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Vrouw met donker haar in een rode jurk staat buiten op een balkon, met wind door haar haar en een stadslandschap op de achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Esther van Hees<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/anna-sollewijn-chris-muller-quartet\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Anna Sollewijn zingt terwijl Chris M\u00fcller piano speelt tijdens een live optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Anna Sollewijn &#8211; Chris M\u00fcller Quartet<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/dj-phil-horneman\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-phil-horeman-feautured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-phil-horeman-feautured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-phil-horeman-feautured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-phil-horeman-feautured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-phil-horeman-feautured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>DJ Phil Horneman<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/trio-of-liberty\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Saxofonist en bassist van Trio of Liberty staan samen op het podium en maken contact tijdens een live optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Trio of Liberty<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/hans-dulfer\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Hans Dulfer opent het Red Light Jazz Festival 2026 met een energieke saxofoonperformance in Amsterdam\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Hans Dulfer<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/saskia-laroo\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Close-up portret van een vrouwelijke jazztrompettist met roodbruine haren en rode lippenstift, die haar trompet dicht bij haar gezicht houdt en met gesloten ogen lijkt op te gaan in de muziek tegen een donkere achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Saskia Laroo<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/the-monkey-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van The Monkey Trio voor optreden tijdens Red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Monkey-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>The monkey trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/hans-dulfer\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Hans Dulfer opent het Red Light Jazz Festival 2026 met een energieke saxofoonperformance in Amsterdam\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/hans-dulfer-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Hans Dulfer<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/dj-lucas-benjamin\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"DJ Lucas Benjamin met zonnebril tijdens een performance, bekend om jazz, soul en funk invloeden\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>DJ Lucas Benjamin<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/trio-of-liberty\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Saxofonist en bassist van Trio of Liberty staan samen op het podium en maken contact tijdens een live optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Trio of Liberty<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/maison-prettyboy\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Grafisch vormgegeven afbeelding met portretten van muzikanten van Maison Prettyboy in contrasterende kleuren (rood, geel en blauw), elk afzonderlijk gepositioneerd in geometrische vlakken met een retro, collage-achtige stijl.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Maison Prettyboy<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/tos\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tos-Featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tos-Featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tos-Featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tos-Featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tos-Featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>TOS<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/dj-lucas-benjamin\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"DJ Lucas Benjamin met zonnebril tijdens een performance, bekend om jazz, soul en funk invloeden\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/dj-lucas-benjamin-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>DJ Lucas Benjamin<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/benjamin-herman-robin-nolan-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit portret van Benjamin Herman en Robin Nolan die omhoog in de camera kijken; links een saxofonist in pak met bril die zijn instrument vasthoudt, rechts een gitarist met een gitaar, beiden strak gekleed en close bij elkaar in beeld.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Benjamin Herman &#038; Robin Nolan Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/benjamin-herman-robin-nolan-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit portret van \nBenjamin Herman en Robin Nolan die omhoog in de camera kijken; links een saxofonist in pak met bril die zijn instrument vasthoudt, rechts een gitarist met een gitaar, beiden strak gekleed en close bij elkaar in beeld.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/benjamin-herman-robin-nolan-trio-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Benjamin Herman &#038; Robin Nolan Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/bout-du-monde\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"169\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-300x169.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto met de bandleden van Bout du Monde (Einde van de Wereld) is een jazzkwartet bestaande uit vier muzikanten met ieder een zeer respectabele staat van dienst.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-300x169.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-1024x576.webp 1024w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-768x432.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-1536x864.webp 1536w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-600x338.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero.webp 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Bout du Monde<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/marleen-palmer\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van Marleen Palmer-optreden-Red-Light-Jazz-in-caf\u00e9-de-Roode-Laars\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Marleen Palmer<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/liquid-spirits\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Liqiud-spirits-featured-2-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Liqiud-spirits-featured-2-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Liqiud-spirits-featured-2-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Liqiud-spirits-featured-2-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Liqiud-spirits-featured-2.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Liquid Spirits<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/xavi-torres-barencia\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Xavi-Torres-Barencia-Beiggja-ft.-Kika-Sprangers-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Xavi-Torres-Barencia-Beiggja-ft.-Kika-Sprangers-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Xavi-Torres-Barencia-Beiggja-ft.-Kika-Sprangers-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Xavi-Torres-Barencia-Beiggja-ft.-Kika-Sprangers-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Xavi-Torres-Barencia-Beiggja-ft.-Kika-Sprangers.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Xavi Torres\u2019 Barencia<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/rob-van-de-wouw-quartet\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit groepsportret van IPC Orchestra een groot jazzensemble met mannen en \u00e9\u00e9n vrouw, zittend en staand op een podium tegen een donkere achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Rob van de Wouw Quartet<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/massimo-imperatore-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Massimo-Imperatore-Trio-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Massimo-Imperatore-Trio-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Massimo-Imperatore-Trio-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Massimo-Imperatore-Trio-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Massimo-Imperatore-Trio-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Massimo Imperatore Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/arthur-heuwekemeijer-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Arthur-Heuwekemeijer-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Arthur-Heuwekemeijer-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Arthur-Heuwekemeijer-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Arthur-Heuwekemeijer-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Arthur-Heuwekemeijer-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Arthur Heuwekemeijer trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/berend-van-den-berg-joep-lumeij-itai-weissman\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Berend-van-den-Berg-Joep-Lumeij-Itai-Weissman-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Berend van den Berg - Joep Lumeij &amp; Itai Weissman\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Berend-van-den-Berg-Joep-Lumeij-Itai-Weissman-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Berend-van-den-Berg-Joep-Lumeij-Itai-Weissman-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Berend-van-den-Berg-Joep-Lumeij-Itai-Weissman-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Berend-van-den-Berg-Joep-Lumeij-Itai-Weissman-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Berend van den Berg &#038; Joep Lumeij + Itai Weissman<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/arthur-heuwekemeijer-joris-teepe\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/arthur-heuwekemeijer-joris-teepe-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"arthur-heuwekemeijer-joris-teepe\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/arthur-heuwekemeijer-joris-teepe-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/arthur-heuwekemeijer-joris-teepe-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/arthur-heuwekemeijer-joris-teepe-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/arthur-heuwekemeijer-joris-teepe-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Arthur Heuwekemeijer &#038; Joris Teepe<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/tim-garland-lighthouse-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Drie jazzmuzikanten van het Tim Garland Lighthouse Trio \u2013 saxofonist, pianist en drummer \u2013 lachend bij een vleugel in een studio.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Tim Garland Lighthouse Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/ronald-snijders\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ronald-Snijders-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ronald-Snijders-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ronald-Snijders-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ronald-Snijders-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ronald-Snijders-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Ronald Snijders<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/paul-van-kessel-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Paul-van-Kessel-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Paul-van-Kessel-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Paul-van-Kessel-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Paul-van-Kessel-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Paul-van-Kessel-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Paul Van Kessel Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/anna-sollewijn-chris-muller-quartet\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Anna Sollewijn zingt terwijl Chris M\u00fcller piano speelt tijdens een live optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2026\/04\/anna-sollewijn-chris-muller-quartet-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Anna Sollewijn &#8211; Chris M\u00fcller Quartet<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/veerle-van-der-wal\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit portret van Veerle van der Wal - contrabassist die met een zachte glimlach opzij kijkt, terwijl ze haar instrument vasthoudt; haar gezicht is half verlicht tegen een donkere achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Veerle van der Wal<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/kamile-deveikyte\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Kamile-Deveikyte-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Kamile-Deveikyte-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Kamile-Deveikyte-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Kamile-Deveikyte-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Kamile-Deveikyte-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Kamil\u00e9 Deveikyt\u00e9<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/likeminds\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"LIKEMINDS duo uit Amsterdam met Tjerk Lammers en Lucas van Ee in een rood gestileerde portretfoto\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>LIKEMINDS<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/tim-garland-lighthouse-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Drie jazzmuzikanten van het Tim Garland Lighthouse Trio \u2013 saxofonist, pianist en drummer \u2013 lachend bij een vleugel in een studio.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/TIM-GARLAND-LIGHTHOUSE-TRIO-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Tim Garland Lighthouse Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/gumbo-the-monk\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Gumbo &amp; The Monk poseren met gitaren en een zelfgebouwde cigar box guitar in een houten, intieme setting, voorafgaand aan hun optreden tijdens Red Light Jazz.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Gumbo &#038; The Monk<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/cindy\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Cindy live optreden tijdens Red Light Jazz 2026 op de Wallen in Amsterdam.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Cindy<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/lilian-vieira\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Van Camden Market naar Red Light Jazz: Jack Rosies brengt feelgood vibes naar Amsterdam\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Lilian Vieira<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/groove-yonglee-the-doltang\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Groove-Yonglee-the-doltang-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Groove-Yonglee-the-doltang-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Groove-Yonglee-the-doltang-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Groove-Yonglee-the-doltang-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Groove-Yonglee-the-doltang-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Groove&#038; | Yonglee &#038; the Doltang<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/sabrina-starke\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Sabrina Starke tijdens Red Light Jazz editie 14 live in het Tabocco Theather\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Sabrina Starke<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/wouter-kiers-quartet\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Wouter-Kiers-Quartet-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van Wouter Kiers Quartet optreden in Paleis van Weemoed Amsterdam red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Wouter-Kiers-Quartet-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Wouter-Kiers-Quartet-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Wouter-Kiers-Quartet-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Wouter-Kiers-Quartet-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Wouter Kiers Quartet<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/the-jazzy-rabbits\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>The Jazzy Rabbits<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/cindy\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Cindy live optreden tijdens Red Light Jazz 2026 op de Wallen in Amsterdam.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/cindyat-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Cindy<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/vincent-pino-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Vincent-Pino-Trio-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Vincent-Pino-Trio-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Vincent-Pino-Trio-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Vincent-Pino-Trio-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Vincent-Pino-Trio-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Vincent Pino Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/sanne-sanne\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Sanne-Sanne-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Sanne-Sanne-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Sanne-Sanne-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Sanne-Sanne-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Sanne-Sanne-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Sanne Sanne<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/lorijn-von-piekartz\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Lorijn-von-Piekartz-featured-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Lorijn-von-Piekartz-featured-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Lorijn-von-Piekartz-featured-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Lorijn-von-Piekartz-featured-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Lorijn-von-Piekartz-featured-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Lorijn Von Piekartz<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/jack-rosies\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Portret van een jonge man met een zwarte pet en lichte trui, glimlachend aan het water met boten en bomen op de achtergrond in daglicht.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/jack-rosies-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Jack Rosies<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/jan-van-duikeren-quartet\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Jan-van-Duikeren-Quartet-Featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Jan-van-Duikeren-Quartet-Featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Jan-van-Duikeren-Quartet-Featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Jan-van-Duikeren-Quartet-Featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Jan-van-Duikeren-Quartet-Featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Jan Van Duikeren Quartet<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/joep-lumeij\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"158\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Joep-Lumeij-social-300x158.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Photo by Joep Lumeij performance Red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Joep-Lumeij-social-300x158.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Joep-Lumeij-social-1024x538.webp 1024w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Joep-Lumeij-social-768x403.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Joep-Lumeij-social-600x315.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Joep-Lumeij-social.webp 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Joep Lumeij<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/river-adomeit-liva-dumpe\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/River-Adomeit-Liva-Dumpe-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/River-Adomeit-Liva-Dumpe-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/River-Adomeit-Liva-Dumpe-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/River-Adomeit-Liva-Dumpe-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/River-Adomeit-Liva-Dumpe-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>River Adomeit &#038; Liva Dumpe<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/erik-verwey-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Erik Verwey Trio in een industri\u00eble setting, voorafgaand aan hun optreden op Red Light Jazz.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Erik Verwey Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/yvonne-weijers-jazz-latin\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Yvonne Weijers: Jazz &#038; Latin<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/iman-spaargaren-peter-bjornild\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Iman-Spaargaren-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Iman-Spaargaren-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Iman-Spaargaren-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Iman-Spaargaren-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Iman-Spaargaren-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Iman Spaargaren &#038; Peter Bj\u00f8rnild<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/misha-mengelberg-louis-andriessen-goede-maten\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit foto van Misha Mengelberg &amp; Louis Andriessen: Goede Maten die geconcentreerd kijken naar een glazen vitrine met een kleine installatie, terwijl ze met elkaar in gesprek zijn.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Goede Maten<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/zuco-103\/\"><img loading=\"lazy\" decoding=\"async\" width=\"240\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-1080x1350-1-240x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zuco 103 bandfoto met zangeres Lilian Vieira en bandleden in warme gele setting\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-1080x1350-1-240x300.webp 240w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-1080x1350-1-819x1024.webp 819w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-1080x1350-1-768x960.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-1080x1350-1-600x750.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-1080x1350-1.webp 1080w\" sizes=\"(max-width: 240px) 100vw, 240px\" \/><\/a><\/div><div class=\"artist-info\"><h3>ZUCO 103<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/accha\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Samora Pinderhughes at Red Light Jazz in Bimhuis\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Accha<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/achha\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Vijf bandleden van Achha staan samen op het podium en poseren na een optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>ACHHA<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/likeminds\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"LIKEMINDS duo uit Amsterdam met Tjerk Lammers en Lucas van Ee in een rood gestileerde portretfoto\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/LIKEMINDS-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>LIKEMINDS<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/red-light-jazz-dinner-feat-dj-new-cool-collective\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Groepsfoto van een jazzband in een groene, tropische omgeving; meerdere mannen in nette kleding en zonnebrillen poseren samen, met een saxofonist prominent vooraan die zijn instrument vasthoudt.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Red Light Jazz Dinner Feat. DJ + New Cool Collective<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/maison-prettyboy\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Grafisch vormgegeven afbeelding met portretten van muzikanten van Maison Prettyboy in contrasterende kleuren (rood, geel en blauw), elk afzonderlijk gepositioneerd in geometrische vlakken met een retro, collage-achtige stijl.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/maison-prettyboy-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Maison Prettyboy<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/erik-verwey-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Erik Verwey Trio in een industri\u00eble setting, voorafgaand aan hun optreden op Red Light Jazz.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/erik-verwey-trio-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Erik Verwey Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/sabrina-starke\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Sabrina Starke tijdens Red Light Jazz editie 14 live in het Tabocco Theather\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/sabrina-starke-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Sabrina Starke<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/samora-pinderhughes\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Samora Pinderhughes tijdens Red Light Jazz editie 14 live in het Bimhuis\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/samora-pinderhughes-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Samora Pinderhughes<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/agus-fulka\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Agus Fulka op een podium met rood verlichte stoelen op de achtergrond, die een semi-hollow elektrische gitaar vasthoudt en zijwaarts kijkt terwijl hij zich voorbereidt om te spelen.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Agus Fulka<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/hermine-deurloo-anton-goudsmit\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Twee muzikanten zitten in een gezellige studio: een vrouw met een mondharmonica en een man met een elektrische gitaar, omringd door instrumenten en apparatuur.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Hermine Deurloo &#038; Anton Goudsmit<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/double-espresso\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Double-Espresso-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Double-Espresso-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Double-Espresso-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Double-Espresso-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Double-Espresso-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Double Espresso<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/hermine-deurloo-anton-goudsmit\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Twee muzikanten zitten in een gezellige studio: een vrouw met een mondharmonica en een man met een elektrische gitaar, omringd door instrumenten en apparatuur.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/hermine-deurloo-anton-goudsmit-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Hermine Deurloo &#038; Anton Goudsmit<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/rickys-silver-blues-syndicate\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"158\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rickys-Silver-Blues-Social-featured-300x158.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rickys-Silver-Blues-Social-featured-300x158.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rickys-Silver-Blues-Social-featured-1024x538.webp 1024w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rickys-Silver-Blues-Social-featured-768x403.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rickys-Silver-Blues-Social-featured-600x315.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rickys-Silver-Blues-Social-featured.webp 1200w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Ricky\u2019s Silver Blues Syndicate<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/something-about-sanna\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/something-about-Sanna-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/something-about-Sanna-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/something-about-Sanna-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/something-about-Sanna-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/something-about-Sanna-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Something about Sanna<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/veerle-van-der-wal-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit portret van Veerle van der Wal - contrabassist die met een zachte glimlach opzij kijkt, terwijl ze haar instrument vasthoudt; haar gezicht is half verlicht tegen een donkere achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/veerle-van-der-wal-at-red-light-jazz-uitgelicht-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Veerle van der Wal trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/berend-van-den-berg-joep-lumeij-dimitri-chapeau\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/Berend-van-den-Berg-Joep-Lumeij-Dimitri-Chapeau-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Berend van den Berg (piano), Joep Lumeij (gitaar) en gastsolist Dimitri Chapeau (saxofoon) tijdens hun optreden op het Red Light Jazz Festival, als onderdeel van het Mascini-duo met wisselende gasten.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/Berend-van-den-Berg-Joep-Lumeij-Dimitri-Chapeau-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/Berend-van-den-Berg-Joep-Lumeij-Dimitri-Chapeau-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/Berend-van-den-Berg-Joep-Lumeij-Dimitri-Chapeau-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/01\/Berend-van-den-Berg-Joep-Lumeij-Dimitri-Chapeau-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Berend van den Berg &#038; Joep Lumeij + Dimitri-Chapeau<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/amsterdam-organ-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van Amsterdam Organ Trio voor het Red Light Jazz Festival\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Amsterdam Organ Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/farida-merville-friends\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Farida Merville &#038; Friends<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/agus-fulka\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Agus Fulka op een podium met rood verlichte stoelen op de achtergrond, die een semi-hollow elektrische gitaar vasthoudt en zijwaarts kijkt terwijl hij zich voorbereidt om te spelen.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/agus-fulka-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Agus Fulka<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/red-light-jazz-dinner-feat-dj-new-cool-collective\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Groepsfoto van een jazzband in een groene, tropische omgeving; meerdere mannen in nette kleding en zonnebrillen poseren samen, met een saxofonist prominent vooraan die zijn instrument vasthoudt.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/new-cool-collective-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Red Light Jazz Dinner Feat. DJ + New Cool Collective<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/mats-gustafsson-goran-kajfes-cosmic-ear\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Vrouw met donker haar in een rode jurk staat buiten op een balkon, met wind door haar haar en een stadslandschap op de achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/esther-van-hees-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Mats Gustafsson &#038; Goran Kajfes&#8217; Cosmic Ear<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/ruth-geerse\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van Ruth Geerse optreden Red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ruth-Geerse-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Ruth Geerse<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/biggles-big-band\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Biggles-Big-Band-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Biggles-Big-Band-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Biggles-Big-Band-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Biggles-Big-Band-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Biggles-Big-Band-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Biggles Big Band<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/bout-du-monde\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"169\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-300x169.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto met de bandleden van Bout du Monde (Einde van de Wereld) is een jazzkwartet bestaande uit vier muzikanten met ieder een zeer respectabele staat van dienst.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-300x169.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-1024x576.webp 1024w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-768x432.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-1536x864.webp 1536w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero-600x338.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Bout-du-Monde-hero.webp 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Bout du Monde<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/nohmi\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit portret van jazzpianiste Miran Noh, frontaal kijkend, met een rustige en zelfverzekerde uitstraling tegen een zacht vervaagde stedelijke achtergrond\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/NOHMI-500x500-3.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>NOHMI<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/mark-beebe-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Saxofonist Mark Beebe zit op een trap en speelt terwijl mensen ontspannen in een huiselijke setting om hem heen zitten, sommigen luisterend en anderen met een drankje of telefoon in de hand.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Mark Beebe Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/mark-beebe-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Saxofonist Mark Beebe zit op een trap en speelt terwijl mensen ontspannen in een huiselijke setting om hem heen zitten, sommigen luisterend en anderen met een drankje of telefoon in de hand.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/mark-beebe-trio-hero-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Mark Beebe Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/achha\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Vijf bandleden van Achha staan samen op het podium en poseren na een optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/ACHHA-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>ACHHA<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/ella-zirina-teis-semey\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Ella Zirina &amp; Teis Semey tijdens Red Light Jazz editie 14 live in het Bimhuis\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Ella Zirina &#038; Teis Semey<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/something-about-sanna\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Something-About-Sanna-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Drie muzikanten van Something About Sanna poseren samen en kijken glimlachend in de camera.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Something-About-Sanna-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Something-About-Sanna-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Something-About-Sanna-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Something-About-Sanna-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Something about Sanna<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/oscar-ployart-the-serenaders\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit foto van twee mannen die geconcentreerd kijken naar een glazen vitrine met een kleine installatie, terwijl ze met elkaar in gesprek zijn.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/goede-mateb-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Oscar Ployart &#038; The Serenaders<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/rob-van-bavel-ronald-douglas\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rob-van-Bavel-Ronald-Douglas-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rob-van-Bavel-Ronald-Douglas-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rob-van-Bavel-Ronald-Douglas-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rob-van-Bavel-Ronald-Douglas-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Rob-van-Bavel-Ronald-Douglas-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Rob van Bavel &#038; Ronald Douglas<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/zuco-103\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zuco 103 bandfoto met zangeres Lilian Vieira en bandleden in warme gele setting\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/zuco-103-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>ZUCO 103<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/federica-lorusso-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Federica-Lorusso-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Federica-Lorusso-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Federica-Lorusso-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Federica-Lorusso-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Federica-Lorusso-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Federica Lorusso Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/farida-merville-friends\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van Farida Merville voor haar optreden op het Red Light Jazz Festival\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Farida-Merville-and-friends-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Farida Merville &#038; Friends<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/amsterdam-organ-trio\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Amsterdam Organ Trio\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/The-Amsterdam-Organ-Trio-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Amsterdam Organ Trio<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/marleen-palmer\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van Marleen Palmer-optreden-Red-Light-Jazz-in-caf\u00e9-de-Roode-Laars\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Marleen-Palmer-Featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Marleen Palmer<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/the-jazzy-rabbits\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van The Jazzy Rabbits optreden Red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/The-Jazz-Rabbits-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>The Jazzy Rabbits<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/la-ratte\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/La-Ratte-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto La Ratte optreden Red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/La-Ratte-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/La-Ratte-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/La-Ratte-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/La-Ratte-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>La Ratte<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/amsterdam-funk-orchestra\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Amsterdam-Funk-Orchestra-Featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Amsterdam-Funk-Orchestra-Featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Amsterdam-Funk-Orchestra-Featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Amsterdam-Funk-Orchestra-Featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Amsterdam-Funk-Orchestra-Featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Amsterdam Funk Orchestra<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/gumbo-the-monk\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Gumbo &amp; The Monk poseren met gitaren en een zelfgebouwde cigar box guitar in een houten, intieme setting, voorafgaand aan hun optreden tijdens Red Light Jazz.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/05\/gumbo-the-monk-at-red-light-jazz-uitgelicht.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Gumbo &#038; The Monk<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/icp-orchestra\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Zwart-wit groepsportret van IPC Orchestra een groot jazzensemble met mannen en \u00e9\u00e9n vrouw, zittend en staand op een podium tegen een donkere achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/icp-orchestra-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>ICP Orchestra<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/alex-rossi-david-golek\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Alex-Rossi-David-Golek-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Photo of Alex Rossi &amp; David Golek performance Red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Alex-Rossi-David-Golek-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Alex-Rossi-David-Golek-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Alex-Rossi-David-Golek-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Alex-Rossi-David-Golek-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Alex Rossi &amp; David Golek<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/yvonne-weijers-jazz-latin\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Foto van Yvonne Weijers voor haar optreden Red Light tijdens het Red Light Jazz Festival\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Yvonne-Weijers-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Yvonne Weijers: Jazz &#038; Latin<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/artiesten\/saskia-laroo\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Close-up portret van een vrouwelijke jazztrompettist met roodbruine haren en rode lippenstift, die haar trompet dicht bij haar gezicht houdt en met gesloten ogen lijkt op te gaan in de muziek tegen een donkere achtergrond.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/saskia-laroo-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Saskia Laroo<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/ben-van-gelder-ella-zirina\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Ella Zirina &amp; Teis Semey tijdens Red Light Jazz editie 14 live in het Bimhuis\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Ella-zirina-and-teis-semey-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Ben van Gelder &#038; Ella Zirina<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/philip-lassiters-soul-church\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Philip-Lassiter-featured-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Philip-Lassiter-featured-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Philip-Lassiter-featured-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Philip-Lassiter-featured-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Philip-Lassiter-featured.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Philip Lassiter\u2019s Soul Church<\/h3><\/div><\/div><div class=\"rlj-artist-item\"><div class=\"artist-image\"><a href=\"https:\/\/redlightjazz.com\/en\/artists\/joris-teepe-quartet-feat-mark-gross\/\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Joris-Teepe-Quartet-feat.-Mark-Gross-featured-500x500-1-300x300.webp\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Joris-Teepe-Quartet-feat.-Mark-Gross-featured-500x500-1-300x300.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Joris-Teepe-Quartet-feat.-Mark-Gross-featured-500x500-1-150x150.webp 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Joris-Teepe-Quartet-feat.-Mark-Gross-featured-500x500-1-100x100.webp 100w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/04\/Joris-Teepe-Quartet-feat.-Mark-Gross-featured-500x500-1.webp 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"artist-info\"><h3>Joris Teepe Quartet feat. Mark Gross<\/h3><\/div><\/div><\/div><div class=\"slick-arrow-wrapper bottom-arrows\"><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3c9f57d8 e-con-full e-flex e-con e-parent\" data-id=\"3c9f57d8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-42e4ef0d e-con-full e-flex e-con e-child\" data-id=\"42e4ef0d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5320a22f elementor-widget elementor-widget-heading\" data-id=\"5320a22f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Latest News<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3fa6dbf1 hm-nieuws elementor-widget elementor-widget-shortcode\" data-id=\"3fa6dbf1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"rlj-nieuws-slick-slider\"><div class=\"slick-slide\"><div class=\"slide-image\"><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/red-light-jazz-returns-to-amsterdam-for-its-13th-edition\/\" title=\"Red Light Jazz Returns to Amsterdam for Its 13th Edition\"><img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/zuco-103-800x600-1.webp\" alt=\"Red Light Jazz Returns to Amsterdam for Its 13th Edition\"><\/a><\/div><div class=\"slide-content\"><div class=\"nieuws-auth-date\"><p>Nieuws<\/p><\/div><h3><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/red-light-jazz-returns-to-amsterdam-for-its-13th-edition\/\" title=\"Red Light Jazz Returns to Amsterdam for Its 13th Edition\">Red Light Jazz Returns to Amsterdam for Its 13th Edition<\/a><\/h3><\/div><\/div><div class=\"slick-slide\"><div class=\"slide-image\"><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/red-light-jazz-program-guide-is-now-online\/\" title=\"Red Light Jazz program guide is now online\"><img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Ronald-Snijders-hero.webp\" alt=\"Red Light Jazz program guide is now online\"><\/a><\/div><div class=\"slide-content\"><div class=\"nieuws-auth-date\"><p>Nieuws<\/p><p><i class=\"fa fa-calendar\"><\/i> 2025, may 9<\/p><\/div><h3><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/red-light-jazz-program-guide-is-now-online\/\" title=\"Red Light Jazz program guide is now online\">Red Light Jazz program guide is now online<\/a><\/h3><p>As in previous editions, Red Light Jazz once again offers a diverse program this year, featuring both established names and emerging talent.<\/p><\/div><\/div><div class=\"slick-slide\"><div class=\"slide-image\"><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/red-light-jazz-is-more-than-just-a-jazz-festival\/\" title=\"Red Light Jazz is more than just a jazz festival\"><img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Red-Light-Jazz-meer-dan-een-Festival.webp\" alt=\"Red Light Jazz is more than just a jazz festival\"><\/a><\/div><div class=\"slide-content\"><div class=\"nieuws-auth-date\"><p>News<\/p><p><i class=\"fa fa-calendar\"><\/i> 2025, may 1<\/p><\/div><h3><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/red-light-jazz-is-more-than-just-a-jazz-festival\/\" title=\"Red Light Jazz is more than just a jazz festival\">Red Light Jazz is more than just a jazz festival<\/a><\/h3><p>Jazz in caf\u00e9s, churches, and clubs: on June 6, 7, and 8, Red Light Jazz once again celebrates the music and soul of Amsterdam\u2019s Red Light District.<\/p><\/div><\/div><div class=\"slick-slide\"><div class=\"slide-image\"><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/first-names-announced-for-red-light-jazz-2025\/\" title=\"First Names Announced for Red Light Jazz 2025\"><img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/12\/Eerste-Artiesten-Red-Light-Jazz-2025-Bekend-.webp\" alt=\"First Names Announced for Red Light Jazz 2025\"><\/a><\/div><div class=\"slide-content\"><div class=\"nieuws-auth-date\"><p>News<\/p><p><i class=\"fa fa-calendar\"><\/i> 2025, march 21<\/p><\/div><h3><a href=\"https:\/\/redlightjazz.com\/en\/rlj-news\/first-names-announced-for-red-light-jazz-2025\/\" title=\"First Names Announced for Red Light Jazz 2025\">First Names Announced for Red Light Jazz 2025<\/a><\/h3><p>On June 6, 7, and 8, Red Light Jazz will be organized for the 12th consecutive time in and around the vibrant heart of Amsterdam: the world-famous Red Light District.<\/p><\/div><\/div><\/div><div class=\"navigation-buttons-container\"><button class=\"prev-post\">\u00ab Vorige nieuws<\/button><div class=\"horizontal-line\"><\/div><button class=\"next-post\">Volgende nieuws \u00bb<\/button><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7dd38172 e-flex e-con-boxed e-con e-parent\" data-id=\"7dd38172\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1aa4f91f single-ticket elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-shortcode\" data-id=\"1aa4f91f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">        <div class=\"ticket-card-main-container\">\n            <header class=\"tickets-page-header\">\n                <h2 class=\"tickets-page-title\">\n                    TICKETS <span style=\"color:black;\">2026<\/span>\n                <\/h2>\n            <\/header>\n            <div class=\"ticket-card-container\">\n                            <div class=\"ticket-card\">\n                    <div class=\"ticket-card-image-wrapper\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-800x600-1-300x225.webp\" class=\"ticket-card-image wp-post-image\" alt=\"Saxofonist en bassist van Trio of Liberty staan samen op het podium en maken contact tijdens een live optreden.\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-800x600-1-300x225.webp 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-800x600-1-768x576.webp 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-800x600-1-600x450.webp 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/trio-of-liberty-800x600-1.webp 800w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n                    <div class=\"ticket-card-title\">\n                        <h3><a href=\"https:\/\/redlightjazz.com\/en\/program\/saturday-june-6\/trio-of-liberty\/\">Trio of Liberty<\/a><\/h3>\n                    <\/div>\n                    <hr class=\"ticket-card-divider\">\n                    <div class=\"ticket-card-date-time\">\n                        <div class=\"date-block\">\n                            <div class=\"ticket-card-day\">6<\/div>\n                                                        <div class=\"ticket-card-month\">June<\/div>\n                        <\/div>\n                        <div class=\"date-details\">\n                            <div class=\"start-time\">\n                                <i class=\"fas fa-clock start-time-icon\" aria-hidden=\"true\"><\/i>\n                                <span class=\"label\">Start time:<\/span>\n                                20:15                            <\/div>\n                            <div class=\"location\">\n                                <i class=\"fas fa-map-marker-alt location-icon\" aria-hidden=\"true\"><\/i>\n                                                                    <a href=\"https:\/\/redlightjazz.com\/en\/locations\/casablanca\/\">\n                                        Casablanca                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <hr class=\"ticket-card-divider\">\n                    <div class=\"ticket-card-location-price\">\n\n                        <div class=\"price\">\n                            <strong>Entrance:<\/strong>\n                                                            <div class=\"price-grid\">\n                                                                            <div class=\"price-item\">\u20ac 12,50<\/div>\n                                                                    <\/div>\n                                                    <\/div>\n\n                        <div class=\"ticket-card-footer\">\n                                                            <a href=\"https:\/\/www.ticketkantoor.nl\/shop\/triooflibertyRLJ\/en\" class=\"ticket-card-button\" style=\"background-color: green; color: white;\" target=\"_blank\">Tickets<\/a>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                        <\/div>\n        <\/div>\n        <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ddef103 e-con-full e-flex e-con e-parent\" data-id=\"ddef103\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-272a21fd e-con-full e-flex e-con e-child\" data-id=\"272a21fd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-34d6cfb9 elementor-widget elementor-widget-heading\" data-id=\"34d6cfb9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Red Light Jazz Radio<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4839ec19 elementor-widget elementor-widget-html\" data-id=\"4839ec19\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"responsive-iframe-container\"><iframe \n    src=\"https:\/\/embed.radio.co\/player\/731b6a6.html\" \n    allow=\"autoplay\" \n    scrolling=\"no\" \n    frameborder=\"0\" \n    allowfullscreen\n  ><\/iframe><\/div><style>.responsive-iframe-container {\n  position: relative;\n  width: 100%;\n  padding-bottom: 140%; \/* verhouding voor desktop *\/\n  height: 10%;\n  overflow: hidden;\n  border-radius: 16px;\n}\n\n.responsive-iframe-container iframe {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  border: none;\n}\n\n\/* Tablet *\/\n@media (max-width: 768px) {\n  .responsive-iframe-container {\n     position: relative;\n  width: 100%;\n  padding-bottom: 110%; \/* verhouding voor desktop *\/\n  height: 100%;\n  min-height: 406px;\n  overflow: hidden;\n  border-radius: 16px;\n  }\n}\n\n\/* Mobiel *\/\n@media (max-width: 480px) {\n  .responsive-iframe-container {\n       position: relative;\n  width: 100%;\n  padding-bottom: 140%; \/* verhouding voor desktop *\/\n  height: 100%;\n  min-height: 406px;\n  overflow: hidden;\n  border-radius: 16px;\n  }\n}\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5d6b3c48 elementor-mobile-align-center elementor-widget elementor-widget-button\" data-id=\"5d6b3c48\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/redlightjazzradio.nl\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-circle-right\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Listen on Red Light Jazz Radio<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61978541 e-con-full e-flex e-con e-child\" data-id=\"61978541\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-12b24c00 e-con-full e-flex e-con e-child\" data-id=\"12b24c00\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-224ec1ab elementor-widget elementor-widget-shortcode\" data-id=\"224ec1ab\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><p>Er zijn momenteel geen ambassadeurs beschikbaar.<\/p><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6721c3e6 e-con-full e-flex e-con e-child\" data-id=\"6721c3e6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_top&quot;:&quot;waves&quot;,&quot;shape_divider_bottom&quot;:&quot;waves&quot;}\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-top\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7\n\tc23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4\n\tc21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7\n\tc23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4\n\tc21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z\"\/>\n<\/svg>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-779795df e-con-full e-flex e-con e-child\" data-id=\"779795df\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-720bf197 e-con-full e-flex e-con e-child\" data-id=\"720bf197\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4b2cccb8 elementor-widget elementor-widget-image\" data-id=\"4b2cccb8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/redlightjazz.com\/merchandise\/t-shirt-red-light-jazz-logo\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tshirt-mustard-1.jpg\" class=\"attachment-large size-large wp-image-89142\" alt=\"t-shirt mustard red light jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tshirt-mustard-1.jpg 1000w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tshirt-mustard-1-300x300.jpg 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tshirt-mustard-1-150x150.jpg 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tshirt-mustard-1-768x768.jpg 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tshirt-mustard-1-600x600.jpg 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Tshirt-mustard-1-100x100.jpg 100w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6cd42b45 e-con-full e-flex e-con e-child\" data-id=\"6cd42b45\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-78f62a97 elementor-widget elementor-widget-heading\" data-id=\"78f62a97\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Red Light Jazz<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-658e70a3 elementor-widget elementor-widget-heading\" data-id=\"658e70a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/redlightjazz.com\/merchandise\/t-shirt-red-light-jazz-logo\/\">T-SHIRT <span style=\"color:black\">mustard<\/span><br> Red Light Jazz <span style=\"color:black\">PRINT<\/span><\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-353eefeb elementor-widget elementor-widget-text-editor\" data-id=\"353eefeb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>COMFORT, STYLE<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c1bdeb1 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"4c1bdeb1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/redlightjazz.com\/merchandise\/t-shirt-red-light-jazz-logo\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-83ed2f9 e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"83ed2f9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6bed1b5c e-con-full e-flex e-con e-child\" data-id=\"6bed1b5c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5492f720 elementor-widget elementor-widget-image\" data-id=\"5492f720\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/redlightjazz.com\/merchandise\/hoody-red-light-jazz-logo\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Hoody-zwart-1.jpg\" class=\"attachment-large size-large wp-image-89144\" alt=\"Hoody black Red Light Jazz\" srcset=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Hoody-zwart-1.jpg 1000w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Hoody-zwart-1-300x300.jpg 300w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Hoody-zwart-1-150x150.jpg 150w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Hoody-zwart-1-768x768.jpg 768w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Hoody-zwart-1-600x600.jpg 600w, https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Hoody-zwart-1-100x100.jpg 100w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-62b4cdaf e-con-full e-flex e-con e-child\" data-id=\"62b4cdaf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ba3d32d elementor-widget elementor-widget-heading\" data-id=\"ba3d32d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Red Light Jazz<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-418b3dd7 elementor-widget elementor-widget-heading\" data-id=\"418b3dd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/redlightjazz.com\/merchandise\/hoody-red-light-jazz-logo\/\"><p class=\"shop-title\">\n  Hoody <span style=\"color:black\">BLACK<\/span><br> Red Light Jazz <span style=\"color:black\">PRINT<\/span>\n<\/p><\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6db72b3e elementor-widget elementor-widget-text-editor\" data-id=\"6db72b3e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>COMFORT, STYLE<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6eaa0672 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"6eaa0672\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/redlightjazz.com\/merchandise\/hoody-red-light-jazz-logo\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-25c19945 e-con-full e-flex e-con e-parent\" data-id=\"25c19945\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b2364af elementor-widget elementor-widget-heading\" data-id=\"6b2364af\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Practical Info<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7c3bccd2 e-con-full e-flex e-con e-child\" data-id=\"7c3bccd2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-52a535ae elementor-widget__width-initial elementor-view-default elementor-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"52a535ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 150 150\" style=\"enable-background:new 0 0 150 150;\" xml:space=\"preserve\"><style type=\"text\/css\">\t.Drop_x0020_Shadow{fill:none;}\t.Round_x0020_Corners_x0020_2_x0020_pt{fill:#FFFFFF;stroke:#231F20;stroke-miterlimit:10;}\t.Live_x0020_Reflect_x0020_X{fill:none;}\t.Bevel_x0020_Soft{fill:url(#SVGID_1_);}\t.Dusk{fill:#FFFFFF;}\t.Foliage_GS{fill:#FFDD00;}\t.Pompadour_GS{fill-rule:evenodd;clip-rule:evenodd;fill:#44ADE2;}\t.st0{display:none;}\t.st1{display:inline;}<\/style><linearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"0\" x2=\"0.7071\" y2=\"0.7071\">\t<stop offset=\"0\" style=\"stop-color:#DEDFE3\"><\/stop>\t<stop offset=\"0.1783\" style=\"stop-color:#DADBDF\"><\/stop>\t<stop offset=\"0.3611\" style=\"stop-color:#CECFD3\"><\/stop>\t<stop offset=\"0.546\" style=\"stop-color:#B9BCBF\"><\/stop>\t<stop offset=\"0.7324\" style=\"stop-color:#9CA0A2\"><\/stop>\t<stop offset=\"0.9181\" style=\"stop-color:#787D7E\"><\/stop>\t<stop offset=\"1\" style=\"stop-color:#656B6C\"><\/stop><\/linearGradient><g id=\"Layer_1\" class=\"st0\">\t<g class=\"st1\">\t\t<path d=\"M93,14.9c-4-1-8.2-1.6-12.3-2.3c-1.6,0-3.2,0-4.9,0c-1.3,0.3-2.6,0.6-4,0.8c-11.6,1-22,5.2-31.3,12.1   c-7.9,5.9-14,13.4-18.8,22.7c-0.8-2.5-1.5-4.4-2-6.3c-0.9-3.2-2.9-5-6.3-4.1c-3.5,1-4,3.7-3,6.8c1.7,5.8,3.6,11.6,5.3,17.4   c1.1,3.8,3.7,4.8,7.2,3.9c5.7-1.5,11.5-3.1,17.2-4.7c3.5-1,5-3.5,3.9-6.4c-1.2-3.1-3.6-3.8-6.6-3c-2.3,0.6-4.4,1.7-7,1.5   c7.7-20.8,34.2-34.6,57-29.9c29.3,6.1,46.9,31.8,42,61.4c-4.5,27.5-33.5,47.5-60.8,41.8c-20.7-4.3-34.4-16.5-41-36.7   c-1.3-4.1-3.7-5.8-6.6-4.8c-3,1-3.9,3.7-2.7,7.7c8.8,29.4,38.7,48.3,68.9,43.7c28.5-4.4,51.4-29,52.7-56.7   C141.5,48.7,122.6,22.4,93,14.9z\"><\/path>\t\t<path d=\"M73.4,87.8c6.7,3.7,13.4,7.6,20.1,11.4c3.5,2,6.3,1.5,7.8-1.1c1.5-2.7,0.5-5.3-2.9-7.3c-5-2.9-10-5.9-15.2-8.5   c-2.6-1.3-3.6-3-3.6-6c0.2-9.2,0.1-18.4,0.1-27.6c0-3.3-1.5-5.7-4.9-5.7c-3.4,0-4.8,2.3-4.8,5.7c0.1,5.5,0,11.1,0,16.6   c0,5.5,0.1,11.1,0,16.6C69.9,84.7,71,86.5,73.4,87.8z\"><\/path>\t<\/g><\/g><g id=\"Layer_2\">\t<g>\t\t<path d=\"M75.2,11.3c-23.2,0-43.5,12.3-54.7,30.8l-7.2-3.4l1.5,15.6v0l0.7,7.4l5.3-3.2l15.1-9.1l-9-4.3   c10.1-16.1,28-26.8,48.4-26.8c31.5,0,57.1,25.6,57.1,57.1c0,31.5-25.6,57.1-57.1,57.1c-23.5,0-43.8-14.3-52.5-34.7h-7.5   c9.1,24.3,32.6,41.7,60,41.7c35.3,0,64.1-28.7,64.1-64.1C139.2,40,110.5,11.3,75.2,11.3z\"><\/path>\t\t<path d=\"M75,118.5c24,0,43.5-19.5,43.5-43.5c0-24-19.5-43.5-43.5-43.5C51,31.5,31.5,51,31.5,75C31.5,99,51,118.5,75,118.5z    M75,37.5c20.7,0,37.5,16.8,37.5,37.5c0,20.7-16.8,37.5-37.5,37.5c-20.7,0-37.5-16.8-37.5-37.5C37.5,54.3,54.3,37.5,75,37.5z\"><\/path>\t\t<polygon points=\"82.4,91.2 72.7,81.6 72.7,56.6 66.7,56.6 66.7,84.1 78.2,95.5   \"><\/polygon>\t<\/g><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tRed Light Jazz\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tThe Red Light Jazz Festival is an annual multi-day international jazz festival that has been taking place in and around Amsterdam's iconic Red Light District since 2014.<br><a href=\"https:\/\/redlightjazz.com\/en\/about-red-light-jazz\/\">Read more &gt;<\/a>\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-34cc26a7 elementor-widget__width-initial elementor-view-default elementor-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"34cc26a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 150 150\" style=\"enable-background:new 0 0 150 150;\" xml:space=\"preserve\"><style type=\"text\/css\">\t.Drop_x0020_Shadow{fill:none;}\t.Round_x0020_Corners_x0020_2_x0020_pt{fill:#FFFFFF;stroke:#231F20;stroke-miterlimit:10;}\t.Live_x0020_Reflect_x0020_X{fill:none;}\t.Bevel_x0020_Soft{fill:url(#SVGID_1_);}\t.Dusk{fill:#FFFFFF;}\t.Foliage_GS{fill:#FFDD00;}\t.Pompadour_GS{fill-rule:evenodd;clip-rule:evenodd;fill:#44ADE2;}\t.st0{display:none;}\t.st1{display:inline;}<\/style><linearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"0\" x2=\"0.7071\" y2=\"0.7071\">\t<stop offset=\"0\" style=\"stop-color:#DEDFE3\"><\/stop>\t<stop offset=\"0.1783\" style=\"stop-color:#DADBDF\"><\/stop>\t<stop offset=\"0.3611\" style=\"stop-color:#CECFD3\"><\/stop>\t<stop offset=\"0.546\" style=\"stop-color:#B9BCBF\"><\/stop>\t<stop offset=\"0.7324\" style=\"stop-color:#9CA0A2\"><\/stop>\t<stop offset=\"0.9181\" style=\"stop-color:#787D7E\"><\/stop>\t<stop offset=\"1\" style=\"stop-color:#656B6C\"><\/stop><\/linearGradient><g id=\"Layer_1\" class=\"st0\">\t<g class=\"st1\">\t\t<path d=\"M93,14.9c-4-1-8.2-1.6-12.3-2.3c-1.6,0-3.2,0-4.9,0c-1.3,0.3-2.6,0.6-4,0.8c-11.6,1-22,5.2-31.3,12.1   c-7.9,5.9-14,13.4-18.8,22.7c-0.8-2.5-1.5-4.4-2-6.3c-0.9-3.2-2.9-5-6.3-4.1c-3.5,1-4,3.7-3,6.8c1.7,5.8,3.6,11.6,5.3,17.4   c1.1,3.8,3.7,4.8,7.2,3.9c5.7-1.5,11.5-3.1,17.2-4.7c3.5-1,5-3.5,3.9-6.4c-1.2-3.1-3.6-3.8-6.6-3c-2.3,0.6-4.4,1.7-7,1.5   c7.7-20.8,34.2-34.6,57-29.9c29.3,6.1,46.9,31.8,42,61.4c-4.5,27.5-33.5,47.5-60.8,41.8c-20.7-4.3-34.4-16.5-41-36.7   c-1.3-4.1-3.7-5.8-6.6-4.8c-3,1-3.9,3.7-2.7,7.7c8.8,29.4,38.7,48.3,68.9,43.7c28.5-4.4,51.4-29,52.7-56.7   C141.5,48.7,122.6,22.4,93,14.9z\"><\/path>\t\t<path d=\"M73.4,87.8c6.7,3.7,13.4,7.6,20.1,11.4c3.5,2,6.3,1.5,7.8-1.1c1.5-2.7,0.5-5.3-2.9-7.3c-5-2.9-10-5.9-15.2-8.5   c-2.6-1.3-3.6-3-3.6-6c0.2-9.2,0.1-18.4,0.1-27.6c0-3.3-1.5-5.7-4.9-5.7c-3.4,0-4.8,2.3-4.8,5.7c0.1,5.5,0,11.1,0,16.6   c0,5.5,0.1,11.1,0,16.6C69.9,84.7,71,86.5,73.4,87.8z\"><\/path>\t<\/g><\/g><g id=\"Layer_2\">\t<g>\t\t<path d=\"M54.4,140.6c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h18.1v-21.1h5v21.1h18.1c1.4,0,2.5,1.1,2.5,2.5s-1.1,2.5-2.5,2.5H54.4   z\"><\/path>\t\t<path d=\"M95.6,136.1H76.9V115h-3.9v21.1H54.4c-1.1,0-1.9,0.9-1.9,1.9c0,1.1,0.9,1.9,1.9,1.9h41.3c1.1,0,1.9-0.9,1.9-1.9   C97.6,137,96.7,136.1,95.6,136.1z\"><\/path>\t\t<path d=\"M74,101.4c-16.6,0-30.1-13.5-30.1-30.1V39.5C43.9,22.9,57.4,9.4,74,9.4H76c16.6,0,30.1,13.5,30.1,30.1v31.7   c0,16.6-13.5,30.1-30.1,30.1H74z M74,14.5C60.2,14.5,49,25.7,49,39.5v31.7C49,85.1,60.2,96.3,74,96.3H76   c13.8,0,25.1-11.2,25.1-25.1V39.5c0-13.8-11.2-25.1-25.1-25.1H74z\"><\/path>\t\t<path d=\"M74,100.8H76c16.3,0,29.5-13.2,29.5-29.5V39.5C105.5,23.2,92.2,10,76,10H74c-16.3,0-29.5,13.2-29.5,29.5v31.7   C44.5,87.5,57.8,100.8,74,100.8z M48.4,39.5c0-14.2,11.5-25.7,25.7-25.7H76c14.2,0,25.7,11.5,25.7,25.7v31.7   c0,14.2-11.5,25.7-25.7,25.7H74c-14.2,0-25.7-11.5-25.7-25.7V39.5z\"><\/path>\t\t<path d=\"M75,115.5c-22.3,0-40.4-18.1-40.4-40.4c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5c0,19.5,15.8,35.3,35.3,35.3   c19.5,0,35.3-15.8,35.3-35.3c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C115.4,97.4,97.3,115.5,75,115.5z\"><\/path>\t\t<path d=\"M112.8,73.2c-1.1,0-1.9,0.9-1.9,1.9c0,19.8-16.1,35.9-35.9,35.9c-19.8,0-35.9-16.1-35.9-35.9c0-1.1-0.9-1.9-1.9-1.9   c-1.1,0-1.9,0.9-1.9,1.9c0,21.9,17.8,39.8,39.8,39.8s39.8-17.8,39.8-39.8C114.8,74.1,113.9,73.2,112.8,73.2z\"><\/path>\t<\/g><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tPress\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tThe <strong>Red Light Jazz<\/strong> in the press. \nCheck out what you are saying and writing about this festival in Amsterdam on TV, Radio and here.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41b0a2c7 elementor-widget__width-initial elementor-view-default elementor-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"41b0a2c7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 283.5 283.5\" style=\"enable-background:new 0 0 283.5 283.5;\" xml:space=\"preserve\"><style type=\"text\/css\">\t.Drop_x0020_Shadow{fill:none;}\t.Round_x0020_Corners_x0020_2_x0020_pt{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}\t.Live_x0020_Reflect_x0020_X{fill:none;}\t.Bevel_x0020_Soft{fill:url(#SVGID_1_);}\t.Dusk{fill:#FFFFFF;}\t.Foliage_GS{fill:#FFDD00;}\t.Pompadour_GS{fill-rule:evenodd;clip-rule:evenodd;fill:#44ADE2;}<\/style><linearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"0\" x2=\"0.7071\" y2=\"0.7071\">\t<stop offset=\"0\" style=\"stop-color:#DEDFE3\"><\/stop>\t<stop offset=\"0.1738\" style=\"stop-color:#D8D9DD\"><\/stop>\t<stop offset=\"0.352\" style=\"stop-color:#C9CACD\"><\/stop>\t<stop offset=\"0.5323\" style=\"stop-color:#B4B5B8\"><\/stop>\t<stop offset=\"0.7139\" style=\"stop-color:#989A9C\"><\/stop>\t<stop offset=\"0.8949\" style=\"stop-color:#797C7E\"><\/stop>\t<stop offset=\"1\" style=\"stop-color:#656B6C\"><\/stop><\/linearGradient><g id=\"Layer_1\">\t<g>\t\t<g id=\"isakvT_00000117641950331093756550000004630356721605513636_\">\t\t\t<g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M230.9,113.7c3.2,0,5.4-0.5,7.4-1.4c5.1-2.2,9-1.1,12.2,3.4c5,6.9,9.9,13.7,14.9,20.6c3.6,5,2.8,10.1-2.2,13.7      c-30.5,22-61.1,44.1-91.6,66.1c-24,17.3-48,34.7-72,52c-4.8,3.5-10,2.7-13.5-2.1c-5.1-7.1-10.2-14.1-15.3-21.2      c-2.9-4-2.6-8.2,0.7-11.9c4.2-4.8,5.6-10.3,3.5-16.4c-2-6-6.3-9.7-12.5-10.9c-4.3-0.8-8.4,0-12.1,2.5c-2.8,1.9-5.1,1.5-7.1-1.3      c-5.8-8.1-11.7-16.1-17.5-24.2c-3.6-5-2.8-10,2.3-13.7c22.4-16.2,44.8-32.4,67.3-48.6c26.8-19.3,53.5-38.7,80.3-58      c5.3-3.8,10.6-7.5,15.7-11.4c4.6-3.6,10.8-2.4,14,2.3c4.8,7.1,10,14,15.1,21c2.8,3.8,2.6,8.2-0.6,11.8      c-4.3,4.9-5.6,10.4-3.6,16.6C218.5,109.3,224.8,113.7,230.9,113.7z M84.7,222.3c0,5.7-2.1,11.3-6.3,16      c-0.6,0.7-0.7,1.1-0.1,1.9c4.9,6.7,9.8,13.5,14.6,20.3c0.6,0.9,1,1,2,0.3c16.2-11.7,32.4-23.4,48.6-35.1      c24.9-18,49.8-35.9,74.6-53.9c0.9-0.6,1.4-1.2,1.3-2.4c0-2.7,3.7-5.1,6.2-4.1c0.7,0.3,1.1,0.3,1.6-0.2      c10.1-7.3,20.3-14.7,30.4-22c0.8-0.6,1.1-0.9,0.4-1.9c-4.9-6.7-9.8-13.5-14.6-20.3c-0.6-0.8-1.1-1-2-0.6      c-4.3,1.9-8.8,2.4-13.5,1.7c-11.7-1.6-21-11.9-21.4-23.7c-0.2-6.6,1.7-12.5,6.1-17.5c0.8-0.8,0.8-1.4,0.1-2.4      c-4.9-6.6-9.7-13.3-14.5-20c-0.7-0.9-1.1-1-2-0.3c-10,7.2-19.9,14.5-29.9,21.6c-0.8,0.6-1.2,1.1-1.2,2.2      c0.1,2.5-3.5,5.2-5.9,4.3c-1-0.4-1.7-0.2-2.5,0.4c-17.1,12.4-34.2,24.7-51.2,37.1c-24,17.3-48,34.7-72,52      c-1,0.7-1.1,1.2-0.4,2.2c4.8,6.6,9.7,13.2,14.4,19.9c0.7,1,1.2,1.1,2.3,0.6C66.5,191.7,84.6,203.8,84.7,222.3z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M148,43.5c-0.1-2.1,0.4-4.7,1.2-7.1c0.2-0.7,0.2-1.1-0.5-1.6c-7.4-4.3-14.7-8.6-22.1-12.9c-0.7-0.4-1-0.3-1.4,0.4      c-6.4,10.9-12.7,21.8-19.1,32.7c-0.3,0.6-0.3,1,0,1.5c1.3,2.7-0.9,6.6-4,6.7c-1,0-1.2,0.6-1.5,1.2      C92.6,78,84.6,91.6,76.7,105.2c-7.8,13.3-15.5,26.6-23.3,39.9c-0.8,1.4-1.8,2.3-3.4,2.5c-1.8,0.2-3.3-0.4-4.3-1.9      c-1-1.6-0.9-3.2,0-4.8c10.6-18.1,21.2-36.2,31.7-54.3c13.4-22.9,26.8-45.9,40.2-68.8c1.9-3.2,4.6-4.9,8.4-4.9      c1.5,0,3,0.5,4.3,1.3c7.8,4.6,15.6,9.1,23.4,13.7c3.8,2.3,5.4,6.5,3.9,10.7c-1.6,4.8-1.2,9.3,1.1,13.7c1.3,2.5,0.6,5-1.6,6.3      c-2.2,1.2-4.8,0.4-6.1-2.1C149,52.5,147.9,48.4,148,43.5z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M14.2,197.3c0.1-3.1,1.5-5.6,3.4-7.8c1.3-1.6,3.8-1.7,5.5-0.5c1.6,1.1,2.3,3.3,1.7,5.2c-0.1,0.2-0.2,0.4-0.3,0.6      c-1.4,2.7-1.4,2.7,1.3,4.2c3.4,2,6.7,3.9,10.1,5.9c2.4,1.4,3.2,3.9,1.9,6.2c-1.2,2.2-3.9,2.8-6.3,1.4      c-4.2-2.4-8.4-4.9-12.6-7.4C15.7,203.2,14.3,200.6,14.2,197.3z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M116.1,62.5c0.7-0.1,1.3,0.2,2,0.6c2.5,1.4,5,2.9,7.5,4.4c2.2,1.3,2.7,3.1,1.4,5.3c-0.2,0.4-0.5,0.8-0.7,1.2      c-1.1,1.8-2.9,2.3-4.8,1.3c-2.7-1.5-5.4-3.1-8.1-4.7c-1.7-1-2.2-2.9-1.2-4.7C113.1,64.2,113.9,62.5,116.1,62.5z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M140.7,78.3c0,1.9-1.9,4.6-3.6,5c-1.3,0.3-2.4-0.1-3.3-1.1c-1.2-1.4-1-3,0.6-5.6c0.9-1.4,2.4-2,3.9-1.6      C139.7,75.4,140.7,76.7,140.7,78.3z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M183.9,109.1c1.2,0,2.1,0.5,2.8,1.4c1.6,2.2,3.3,4.4,4.8,6.7c1.3,1.8,0.9,3.6-0.8,5c-0.5,0.4-1.1,0.8-1.6,1.1      c-1.7,0.9-3.4,0.6-4.5-0.9c-1.7-2.2-3.3-4.5-4.9-6.8c-1.2-1.7-0.8-3.5,0.8-4.8C182.2,109.4,182.8,109.1,183.9,109.1z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M205.7,137.9c0.2,2-2,3.5-3.8,4.3c-1.5,0.7-3,0-4.2-1.6c-1.5-2.1-3-4.1-4.5-6.2c-1.4-2-1-3.7,0.9-5.2      c0.5-0.3,0.9-0.7,1.4-1c1.6-1,3.4-0.8,4.6,0.7c1.7,2.3,3.4,4.7,5.1,7C205.6,136.6,205.8,137.3,205.7,137.9z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M173.9,105.1c-1.2,0-2.1-0.5-2.8-1.4c-1.7-2.3-3.3-4.5-4.9-6.8c-1.1-1.6-0.8-3.5,0.7-4.7c0.6-0.5,1.2-0.9,1.8-1.3      c1.5-0.9,3.3-0.7,4.3,0.7c1.8,2.4,3.6,4.8,5.2,7.3c1,1.5,0.6,3.3-0.7,4.3C176.5,104.1,175.5,105.2,173.9,105.1z\"><\/path>\t\t\t\t<\/g>\t\t\t\t<g>\t\t\t\t\t<path d=\"M219.2,156.6c0.1,2-2,3.5-4,4.3c-1.5,0.6-2.9-0.1-4-1.6c-1.5-2.1-3-4.1-4.5-6.2c-1.3-1.8-1-3.7,0.7-5      c0.6-0.4,1.1-0.9,1.7-1.2c1.5-0.9,3.3-0.6,4.3,0.8c1.7,2.3,3.4,4.7,5.1,7C219.1,155.2,219.2,155.9,219.2,156.6z\"><\/path>\t\t\t\t<\/g>\t\t\t<\/g>\t\t<\/g>\t\t<g>\t\t\t<path d=\"M50.3,148.8l-4.9-2.9l78.5-134.5l34.1,20l-0.9,2.3c-0.1,0.1-5.3,13.5,2.3,21.4l-4.1,4c-4.3-4.4-6.2-10.6-5.6-17.9    c0.2-2.9,0.8-5.5,1.3-7.2L126,19.2L50.3,148.8z\"><\/path>\t\t<\/g>\t\t<g>\t\t\t<path d=\"M92.9,272L69,241.2l1.2-1.7c0.1-0.2,11.3-16.2,4.8-25.7c-6.7-9.8-12.9-13.7-28.1-7.9l-2.2,0.8l-19.3-32.2L199,48.1    l23.6,28.1l-1.2,1.8c0,0.1-3.6,5.6-6.1,12c-3.8,9.7-2.3,14-0.3,15.9c8.5,8.5,16.1,10.5,29.2,7.6l1.8-0.4l23.4,31.4L92.9,272z     M76.1,241l18,23.2l167.3-121l-17.8-23.9c-3.4,0.7-6.4,1-9.3,1c-9,0-16.1-3.3-23.3-10.5c-4.5-4.5-4.8-12-0.9-22.1    c1.8-4.7,4.2-8.9,5.5-11.1L198,55.8L33,176.1l14.2,23.7c7.5-2.5,13.4-2.9,18.5-1.2c5.1,1.7,9.5,5.4,14.1,12.1    C87,221.2,79.2,235.9,76.1,241z\"><\/path>\t\t<\/g>\t\t<g>\t\t\t<polygon points=\"34.8,212.7 14.6,200.8 19.6,190.7 24.7,193.3 22,198.6 37.7,207.8    \"><\/polygon>\t\t<\/g>\t\t<g>\t\t\t<path d=\"M105.9,64.8c0,0-0.9-0.8-3.3-2.1l2.8-5c3.1,1.7,4.3,2.8,4.5,3L105.9,64.8L105.9,64.8z\"><\/path>\t\t<\/g>\t\t<g>\t\t\t<rect x=\"117\" y=\"61.7\" transform=\"matrix(0.5019 -0.8649 0.8649 0.5019 -0.1543 138.1609)\" width=\"5.7\" height=\"15\"><\/rect>\t\t<\/g>\t\t<g>\t\t\t<path d=\"M139.5,85.1c-0.3-0.2-6.6-4.5-8.9-6l3.2-4.7c2.2,1.5,8.8,5.9,8.9,6L139.5,85.1z\"><\/path>\t\t<\/g>\t\t<g>\t\t\t<rect x=\"170\" y=\"90.8\" transform=\"matrix(0.8013 -0.5982 0.5982 0.8013 -24.2587 122.8705)\" width=\"5.7\" height=\"14.2\"><\/rect>\t\t<\/g>\t\t<g>\t\t\t<rect x=\"158.5\" y=\"80\" transform=\"matrix(0.7647 -0.6444 0.6444 0.7647 -16.0113 123.646)\" width=\"5.7\" height=\"7.6\"><\/rect>\t\t<\/g>\t\t<g>\t\t\t<rect x=\"182.9\" y=\"108.9\" transform=\"matrix(0.8372 -0.547 0.547 0.8372 -33.2634 120.4856)\" width=\"5.7\" height=\"14.4\"><\/rect>\t\t<\/g>\t\t<g>\t\t\t<rect x=\"196.5\" y=\"127.7\" transform=\"matrix(0.8237 -0.567 0.567 0.8237 -41.5232 136.8745)\" width=\"5.7\" height=\"15\"><\/rect>\t\t<\/g>\t\t<g>\t\t\t<rect x=\"209.9\" y=\"146.1\" transform=\"matrix(0.8304 -0.5572 0.5572 0.8304 -49.4213 144.5458)\" width=\"5.7\" height=\"14.7\"><\/rect>\t\t<\/g>\t\t<g>\t\t\t<rect x=\"220.9\" y=\"164.4\" transform=\"matrix(0.8252 -0.5649 0.5649 0.8252 -56.1224 155.8613)\" width=\"5.7\" height=\"8.4\"><\/rect>\t\t<\/g>\t<\/g><\/g><g id=\"Layer_2\"><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tTickets Dinner\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\t<a href=\"https:\/\/redlightjazz.com\/en\/tickets\/\" style=\"color:red\">Reserve your seat<\/a>(s) or an entire 6-person table here for the exclusive <a href=\"https:\/\/www.ticketkantoor.nl\/en\/shop\/jazzdiner2025\">Red Light Jazz Diner<\/a> on Sunday, June 8, at Olof\u2019s (Sint-Olof Chapel). Amsterdam.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-301c7474 elementor-widget__width-initial elementor-view-default elementor-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"301c7474\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 150 150\" style=\"enable-background:new 0 0 150 150;\" xml:space=\"preserve\"><style type=\"text\/css\">\t.Drop_x0020_Shadow{fill:none;}\t.Round_x0020_Corners_x0020_2_x0020_pt{fill:#FFFFFF;stroke:#231F20;stroke-miterlimit:10;}\t.Live_x0020_Reflect_x0020_X{fill:none;}\t.Bevel_x0020_Soft{fill:url(#SVGID_1_);}\t.Dusk{fill:#FFFFFF;}\t.Foliage_GS{fill:#FFDD00;}\t.Pompadour_GS{fill-rule:evenodd;clip-rule:evenodd;fill:#44ADE2;}\t.st0{display:none;}\t.st1{display:inline;}<\/style><linearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" y1=\"0\" x2=\"0.7071\" y2=\"0.7071\">\t<stop offset=\"0\" style=\"stop-color:#DEDFE3\"><\/stop>\t<stop offset=\"0.1783\" style=\"stop-color:#DADBDF\"><\/stop>\t<stop offset=\"0.3611\" style=\"stop-color:#CECFD3\"><\/stop>\t<stop offset=\"0.546\" style=\"stop-color:#B9BCBF\"><\/stop>\t<stop offset=\"0.7324\" style=\"stop-color:#9CA0A2\"><\/stop>\t<stop offset=\"0.9181\" style=\"stop-color:#787D7E\"><\/stop>\t<stop offset=\"1\" style=\"stop-color:#656B6C\"><\/stop><\/linearGradient><g id=\"Layer_1\" class=\"st0\">\t<g class=\"st1\">\t\t<path d=\"M93,14.9c-4-1-8.2-1.6-12.3-2.3c-1.6,0-3.2,0-4.9,0c-1.3,0.3-2.6,0.6-4,0.8c-11.6,1-22,5.2-31.3,12.1   c-7.9,5.9-14,13.4-18.8,22.7c-0.8-2.5-1.5-4.4-2-6.3c-0.9-3.2-2.9-5-6.3-4.1c-3.5,1-4,3.7-3,6.8c1.7,5.8,3.6,11.6,5.3,17.4   c1.1,3.8,3.7,4.8,7.2,3.9c5.7-1.5,11.5-3.1,17.2-4.7c3.5-1,5-3.5,3.9-6.4c-1.2-3.1-3.6-3.8-6.6-3c-2.3,0.6-4.4,1.7-7,1.5   c7.7-20.8,34.2-34.6,57-29.9c29.3,6.1,46.9,31.8,42,61.4c-4.5,27.5-33.5,47.5-60.8,41.8c-20.7-4.3-34.4-16.5-41-36.7   c-1.3-4.1-3.7-5.8-6.6-4.8c-3,1-3.9,3.7-2.7,7.7c8.8,29.4,38.7,48.3,68.9,43.7c28.5-4.4,51.4-29,52.7-56.7   C141.5,48.7,122.6,22.4,93,14.9z\"><\/path>\t\t<path d=\"M73.4,87.8c6.7,3.7,13.4,7.6,20.1,11.4c3.5,2,6.3,1.5,7.8-1.1c1.5-2.7,0.5-5.3-2.9-7.3c-5-2.9-10-5.9-15.2-8.5   c-2.6-1.3-3.6-3-3.6-6c0.2-9.2,0.1-18.4,0.1-27.6c0-3.3-1.5-5.7-4.9-5.7c-3.4,0-4.8,2.3-4.8,5.7c0.1,5.5,0,11.1,0,16.6   c0,5.5,0.1,11.1,0,16.6C69.9,84.7,71,86.5,73.4,87.8z\"><\/path>\t<\/g><\/g><g id=\"Layer_2\">\t<g>\t\t<path d=\"M86.5,29H53.8v44.4h32.6c15.1,0,24.4-8.5,24.4-22.2S101.5,29,86.5,29z M86.5,69.4H57.8V33h28.6c13,0,20.4,6.6,20.4,18.2   S99.4,69.4,86.5,69.4z\"><\/path>\t\t<path d=\"M88.7,16.1H39.2v119h18.7V86.4H92c9.5,0,17-2.8,23.6-8.7c7.3-6.7,10.6-14.6,10.6-25.8C126.2,29.1,112.5,16.1,88.7,16.1z    M112.9,74.7c-5.8,5.2-12.5,7.7-20.9,7.7H53.8v48.8H43.2v-111h45.5c21.6,0,33.5,11.3,33.5,31.8C122.2,61.9,119.4,68.8,112.9,74.7z   \"><\/path>\t<\/g><\/g><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tParking\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tIn <strong><a href=\"https:\/\/redlightjazz.com\/en\/parking\/\" target=\"_blank\" style=\"color:red\">Parking Centrum Oosterdok<\/a><\/strong> you can park affordably, quickly and safely in the heart of Amsterdam.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2bdc6989 e-con-full e-flex e-con e-parent\" data-id=\"2bdc6989\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57ae5e33 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"57ae5e33\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Gold Sponsors<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-593446fa e-grid e-con-full e-con e-child\" data-id=\"593446fa\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-65d4bbcd elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"65d4bbcd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.heineken.com\" target=\"_blank\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Heineken-logo.svg\" title=\"Heineken logo\" alt=\"Heineken logo\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f3da2cb elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"1f3da2cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/in2retail.nl\/nl\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/In2Retail-Logo.svg\" class=\"attachment-large size-large wp-image-89154\" alt=\"In2Retail Logo\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-37677b7 elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"37677b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/thebulldog.com\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/The-Bulldog-Logo-1.svg\" class=\"attachment-large size-large wp-image-89290\" alt=\"The Bulldog Logo\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-60ab9402 elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"60ab9402\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.casarosso.nl\/en\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Casa-Rosso.svg\" class=\"attachment-large size-large wp-image-89150\" alt=\"Casa Rosso\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f810d9c elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"f810d9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.bananenbar.nl\/en\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Bananenbar-Logo.svg\" class=\"attachment-large size-large wp-image-89148\" alt=\"Banana Bar Logo\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-497ef013 elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"497ef013\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.burgwallen.nl\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/BIZ-Burgerwallen-Logo.svg\" class=\"attachment-large size-large wp-image-89149\" alt=\"BIZ-Burgerwallen Logo\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-39dc956e elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"39dc956e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.amsterdam.info\/museums\/erotic-museum\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Erotic-Museum-Logo.svg\" class=\"attachment-large size-large wp-image-89151\" alt=\"Erotic Museum Logo\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Your browser does not support this video type. View the full program Programma JUNI 6\u20227\u20228 Download Programma RED LIGHT JAZZ DINER MattBiancoZondag | 8 juni\u201419:00 | Olof&#8217;s (St. Olofskapel)Tickets bestellen Red Light Jazz in the Media More media Red Light Jazz Red Light Jazz Latest News Red Light Jazz Radio Listen on Red Light Jazz [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-93598","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Home - redlightjazz.com<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/redlightjazz.com\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home - redlightjazz.com\" \/>\n<meta property=\"og:description\" content=\"Your browser does not support this video type. View the full program Programma JUNI 6\u20227\u20228 Download Programma RED LIGHT JAZZ DINER MattBiancoZondag | 8 juni\u201419:00 | Olof&#8217;s (St. Olofskapel)Tickets bestellen Red Light Jazz in the Media More media Red Light Jazz Red Light Jazz Latest News Red Light Jazz Radio Listen on Red Light Jazz [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/redlightjazz.com\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"redlightjazz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/redlightjazzfestival\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-21T10:24:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/12\/Eerste-Artiesten-Red-Light-Jazz-2025-Bekend-.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/\",\"url\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/\",\"name\":\"Home - redlightjazz.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/redlightjazz.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Red-Light-Jazz-Logo-768x1024.webp\",\"datePublished\":\"2025-11-08T21:51:08+00:00\",\"dateModified\":\"2026-04-21T10:24:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/redlightjazz.com\\\/en\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#primaryimage\",\"url\":\"https:\\\/\\\/redlightjazz.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Red-Light-Jazz-Logo-768x1024.webp\",\"contentUrl\":\"https:\\\/\\\/redlightjazz.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Red-Light-Jazz-Logo-768x1024.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/\",\"name\":\"redlightjazz.com\",\"description\":\"Jazz in het Red Light District\",\"publisher\":{\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#organization\",\"name\":\"redlightjazz.com\",\"url\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/redlightjazz.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Red-Light-Jazz-Favicon.svg\",\"contentUrl\":\"https:\\\/\\\/redlightjazz.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Red-Light-Jazz-Favicon.svg\",\"width\":80,\"height\":102,\"caption\":\"redlightjazz.com\"},\"image\":{\"@id\":\"https:\\\/\\\/redlightjazz.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/redlightjazzfestival\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home - redlightjazz.com","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/redlightjazz.com\/en\/","og_locale":"en_US","og_type":"article","og_title":"Home - redlightjazz.com","og_description":"Your browser does not support this video type. View the full program Programma JUNI 6\u20227\u20228 Download Programma RED LIGHT JAZZ DINER MattBiancoZondag | 8 juni\u201419:00 | Olof&#8217;s (St. Olofskapel)Tickets bestellen Red Light Jazz in the Media More media Red Light Jazz Red Light Jazz Latest News Red Light Jazz Radio Listen on Red Light Jazz [&hellip;]","og_url":"https:\/\/redlightjazz.com\/en\/","og_site_name":"redlightjazz.com","article_publisher":"https:\/\/www.facebook.com\/redlightjazzfestival","article_modified_time":"2026-04-21T10:24:02+00:00","og_image":[{"width":1080,"height":1440,"url":"https:\/\/redlightjazz.com\/wp-content\/uploads\/2024\/12\/Eerste-Artiesten-Red-Light-Jazz-2025-Bekend-.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/redlightjazz.com\/en\/","url":"https:\/\/redlightjazz.com\/en\/","name":"Home - redlightjazz.com","isPartOf":{"@id":"https:\/\/redlightjazz.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/redlightjazz.com\/en\/#primaryimage"},"image":{"@id":"https:\/\/redlightjazz.com\/en\/#primaryimage"},"thumbnailUrl":"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo-768x1024.webp","datePublished":"2025-11-08T21:51:08+00:00","dateModified":"2026-04-21T10:24:02+00:00","breadcrumb":{"@id":"https:\/\/redlightjazz.com\/en\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/redlightjazz.com\/en\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/redlightjazz.com\/en\/#primaryimage","url":"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo-768x1024.webp","contentUrl":"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/04\/Red-Light-Jazz-Logo-768x1024.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/redlightjazz.com\/en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/redlightjazz.com\/en\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/redlightjazz.com\/en\/#website","url":"https:\/\/redlightjazz.com\/en\/","name":"redlightjazz.com","description":"Jazz in het Red Light District","publisher":{"@id":"https:\/\/redlightjazz.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/redlightjazz.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/redlightjazz.com\/en\/#organization","name":"redlightjazz.com","url":"https:\/\/redlightjazz.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/redlightjazz.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Red-Light-Jazz-Favicon.svg","contentUrl":"https:\/\/redlightjazz.com\/wp-content\/uploads\/2025\/05\/Red-Light-Jazz-Favicon.svg","width":80,"height":102,"caption":"redlightjazz.com"},"image":{"@id":"https:\/\/redlightjazz.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/redlightjazzfestival"]}]}},"_links":{"self":[{"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/pages\/93598","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/comments?post=93598"}],"version-history":[{"count":6,"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/pages\/93598\/revisions"}],"predecessor-version":[{"id":96689,"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/pages\/93598\/revisions\/96689"}],"wp:attachment":[{"href":"https:\/\/redlightjazz.com\/en\/wp-json\/wp\/v2\/media?parent=93598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}