// YouTube channel integration. The Sermons page embeds curated playlists; the // home page embeds the channel's uploads playlist. We use YouTube's own iframe // player UI rather than scraping RSS, so this stays small and reliable. const YT = { // Gerizim Hope Presbyterian Church (Korean main channel) channelId: 'UCcV6BoQvlHIhkNk8ln3GN-g', channelHandle: '@GHPChurch', channelUrl: 'https://www.youtube.com/@GHPChurch', // YouTube uploads playlist convention: replace the "UC" channel prefix with "UU". uploadsPlaylistId: 'UUcV6BoQvlHIhkNk8ln3GN-g', // Curated playlists, in display order. id, label_ko, label_en. playlists: [ { id: 'PLZv23oAzOYyzaEb1XX_3iZ5INV3w4BWmV', ko: '주일예배', en: "Lord's Day" }, { id: 'PLZv23oAzOYyz0ygKxkqtmwZ1NHGIdia3W', ko: '수요예배', en: 'Wednesday' }, { id: 'PLZv23oAzOYyzN9t5jBvS08wD1eGUPe83g', ko: '새벽예배', en: 'Dawn' }, { id: 'PLZv23oAzOYyxqJ_MAWJMUhzce5oI5exrX', ko: '성경공부', en: 'Bible Study' }, { id: 'PLZv23oAzOYyxZCppOryyLru4qp9CCkOHz', ko: '특별집회', en: 'Special' }, { id: 'PLZv23oAzOYyzElN9pP4ucFQNWBS2y2br7', ko: '특송', en: 'Songs' }, ], }; function YouTubeEmbed({ videoId, playlistId }) { const src = videoId ? `https://www.youtube.com/embed/${videoId}?rel=0&modestbranding=1` : `https://www.youtube.com/embed?listType=playlist&list=${playlistId}&rel=0&modestbranding=1`; return (