{"id":12631,"date":"2022-02-01T17:33:54","date_gmt":"2022-02-01T12:33:54","guid":{"rendered":"https:\/\/voiceofkp.org\/en\/?page_id=12631"},"modified":"2026-05-25T13:19:20","modified_gmt":"2026-05-25T08:19:20","slug":"home","status":"publish","type":"page","link":"https:\/\/voiceofkp.org\/en\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"12631\" class=\"elementor elementor-12631\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b442355 e-flex e-con-boxed e-con e-parent\" data-id=\"b442355\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-24e9ef3 elementor-widget elementor-widget-text-editor\" data-id=\"24e9ef3\" data-element_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<p>\t\t<div data-elementor-type=\"container\" data-elementor-id=\"44422\" class=\"elementor elementor-44422\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-79b8c0d6 e-flex e-con-boxed e-con e-parent\" data-id=\"79b8c0d6\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22c5a4cd elementor-widget elementor-widget-html\" data-id=\"22c5a4cd\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"opinions-carousel-container\">\r\n  <div class=\"opinions-carousel\">\r\n    <!-- Slides will be populated here -->\r\n  <\/div>\r\n<\/div>\r\n\r\n<script>\r\n  document.addEventListener('DOMContentLoaded', function() {\r\n    \/\/ Fetch posts from WordPress - using the current site's API endpoint\r\n    fetchOpinionPosts();\r\n    \r\n    function fetchOpinionPosts() {\r\n      \/\/ Get the current site's REST API base URL\r\n      const currentSiteRestUrl = getCurrentSiteRestUrl();\r\n      \r\n      \/\/ Using the WordPress REST API to fetch posts from the Opinions category\r\n      fetch(`${currentSiteRestUrl}\/categories?search=opinions`)\r\n        .then(response => response.json())\r\n        .then(categories => {\r\n          if (categories.length > 0) {\r\n            const categoryId = categories[0].id;\r\n            \/\/ Now fetch posts from this category\r\n            return fetch(`${currentSiteRestUrl}\/posts?categories=${categoryId}&_embed&per_page=5`);\r\n          } else {\r\n            throw new Error('Opinions category not found');\r\n          }\r\n        })\r\n        .then(response => response.json())\r\n        .then(posts => {\r\n          populateCarousel(posts);\r\n        })\r\n        .catch(error => {\r\n          console.error('Error fetching posts:', error);\r\n          \/\/ Create fallback content in case of API failure\r\n          createFallbackContent();\r\n        });\r\n    }\r\n    \r\n    \/\/ Function to get the current site's REST API URL\r\n    function getCurrentSiteRestUrl() {\r\n      \/\/ Check if we're on a secondary site by looking at the URL path\r\n      const currentUrl = window.location.href;\r\n      const urlParts = currentUrl.split('\/');\r\n      \r\n      \/\/ Default REST API endpoint for the main site\r\n      let restApiUrl = '\/wp-json\/wp\/v2';\r\n      \r\n      \/\/ If we're on a secondary site (e.g., voiceofkp.org\/en\/...)\r\n      \/\/ we need to adjust the REST API endpoint accordingly\r\n      if (urlParts.includes('en')) {\r\n        restApiUrl = '\/en\/wp-json\/wp\/v2';\r\n      }\r\n      \r\n      return restApiUrl;\r\n    }\r\n    \r\n    function getSubcategoryClass(subcategory) {\r\n      if (!subcategory) return 'subcategory-default';\r\n      \r\n      const subcategoryLower = subcategory.toLowerCase();\r\n      if (subcategoryLower.includes('editorial')) return 'subcategory-editorial';\r\n      if (subcategoryLower.includes('article')) return 'subcategory-article';\r\n      if (subcategoryLower.includes('blog')) return 'subcategory-blog';\r\n      if (subcategoryLower.includes('opinion')) return 'subcategory-opinion';\r\n      if (subcategoryLower.includes('review')) return 'subcategory-review';\r\n      \r\n      return 'subcategory-default';\r\n    }\r\n    \r\n    function populateCarousel(posts) {\r\n      const carouselElement = document.querySelector('.opinions-carousel');\r\n      \r\n      if (!posts || posts.length === 0) {\r\n        createFallbackContent();\r\n        return;\r\n      }\r\n      \r\n      posts.forEach((post, index) => {\r\n        \/\/ Get the subcategories (child categories of Opinions)\r\n        let subcategory = 'Opinion';\r\n        if (post._embedded && post._embedded['wp:term']) {\r\n          const categories = post._embedded['wp:term'][0];\r\n          \/\/ Find child categories (excluding the main Opinions category)\r\n          const subCategories = categories.filter(cat => \r\n            !cat.name.toLowerCase().includes('opinion'));\r\n          \r\n          if (subCategories.length > 0) {\r\n            subcategory = subCategories[0].name;\r\n          }\r\n        }\r\n        \r\n        \/\/ Get the post URL\r\n        const postUrl = post.link;\r\n        \r\n        \/\/ Create the slide\r\n        const slide = document.createElement('div');\r\n        slide.className = `carousel-slide ${getSubcategoryClass(subcategory)}`;\r\n        \r\n        \/\/ Get the author data\r\n        const author = post._embedded?.author?.[0] || { name: 'Anonymous' };\r\n        const authorAvatar = author.avatar_urls?.['96'] || '\/wp-content\/plugins\/elementor\/assets\/images\/placeholder.png';\r\n        \r\n        \/\/ Create slide content\r\n        slide.innerHTML = `\r\n          <a href=\"${postUrl}\" class=\"slide-link\" aria-label=\"Read ${post.title.rendered}\"><\/a>\r\n          <div class=\"slide-content\">\r\n            <div class=\"author-section\">\r\n              <img decoding=\"async\" src=\"${authorAvatar}\" alt=\"${author.name}\" class=\"author-image\">\r\n              <p class=\"author-name\">${author.name}<\/p>\r\n            <\/div>\r\n            <div class=\"content-section\">\r\n              <h3 class=\"slide-title\">${post.title.rendered}<\/h3>\r\n              <p class=\"subcategory\">${subcategory}<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        `;\r\n        \r\n        carouselElement.appendChild(slide);\r\n      });\r\n      \r\n      \/\/ Clone the first 2 slides and append them to the end for seamless looping\r\n      const slides = document.querySelectorAll('.carousel-slide');\r\n      if (slides.length > 0) {\r\n        const firstSlideClone = slides[0].cloneNode(true);\r\n        const secondSlideClone = slides.length > 1 ? slides[1].cloneNode(true) : null;\r\n        \r\n        carouselElement.appendChild(firstSlideClone);\r\n        if (secondSlideClone) {\r\n          carouselElement.appendChild(secondSlideClone);\r\n        }\r\n      }\r\n      \r\n      \/\/ Set up the carousel\r\n      setupCarousel();\r\n    }\r\n    \r\n    function createFallbackContent() {\r\n      const carouselElement = document.querySelector('.opinions-carousel');\r\n      \r\n      \/\/ Sample subcategories\r\n      const subcategories = ['Editorial', 'Article', 'Blog', 'Opinion', 'Review'];\r\n      \r\n      \/\/ Create 5 placeholder slides\r\n      for (let i = 0; i < 5; i++) {\r\n        const subcategory = subcategories[i % subcategories.length];\r\n        const slide = document.createElement('div');\r\n        slide.className = `carousel-slide ${getSubcategoryClass(subcategory)}`;\r\n        \r\n        \/\/ Use placeholder link for fallback content\r\n        slide.innerHTML = `\r\n          <a href=\"#\" class=\"slide-link\" aria-label=\"Read sample content\"><\/a>\r\n          <div class=\"slide-content\">\r\n            <div class=\"author-section\">\r\n              <img decoding=\"async\" src=\"\/wp-content\/plugins\/elementor\/assets\/images\/placeholder.png\" alt=\"Author\" class=\"author-image\">\r\n              <p class=\"author-name\">Author Name<\/p>\r\n            <\/div>\r\n            <div class=\"content-section\">\r\n              <h3 class=\"slide-title\">Sample ${subcategory} Title ${i + 1}<\/h3>\r\n              <p class=\"subcategory\">${subcategory}<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        `;\r\n        \r\n        carouselElement.appendChild(slide);\r\n      }\r\n      \r\n      \/\/ Clone the first 2 slides and append them to the end for seamless looping\r\n      const slides = document.querySelectorAll('.carousel-slide');\r\n      if (slides.length > 0) {\r\n        const firstSlideClone = slides[0].cloneNode(true);\r\n        const secondSlideClone = slides.length > 1 ? slides[1].cloneNode(true) : null;\r\n        \r\n        carouselElement.appendChild(firstSlideClone);\r\n        if (secondSlideClone) {\r\n          carouselElement.appendChild(secondSlideClone);\r\n        }\r\n      }\r\n      \r\n      \/\/ Set up the carousel\r\n      setupCarousel();\r\n    }\r\n    \r\n    function setupCarousel() {\r\n      let currentSlide = 0;\r\n      const carouselElement = document.querySelector('.opinions-carousel');\r\n      const slides = document.querySelectorAll('.carousel-slide');\r\n      const actualSlides = slides.length - 2; \/\/ Subtract the cloned slides\r\n      \r\n      \/\/ Set initial position\r\n      updateCarousel();\r\n      \r\n      \/\/ Function to update the carousel position with seamless looping\r\n      function updateCarousel() {\r\n        carouselElement.style.transition = currentSlide < 0 || currentSlide >= actualSlides ? 'none' : 'transform 0.5s ease';\r\n        carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n        \r\n        \/\/ Handle seamless looping\r\n        if (currentSlide < 0) {\r\n          \/\/ If we go to -1, we need to jump to the real last slide after animation\r\n          currentSlide = actualSlides - 1;\r\n          \/\/ Use setTimeout with 0ms to allow the browser to apply the 'none' transition first\r\n          setTimeout(() => {\r\n            carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n          }, 0);\r\n        } else if (currentSlide >= actualSlides) {\r\n          \/\/ If we go past the last real slide, we need to jump to the first real slide after animation\r\n          currentSlide = 0;\r\n          \/\/ Use setTimeout with 0ms to allow the browser to apply the 'none' transition first\r\n          setTimeout(() => {\r\n            carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n          }, 0);\r\n        }\r\n      }\r\n      \r\n      \/\/ Set up automatic sliding\r\n      let autoSlideInterval = setInterval(() => {\r\n        currentSlide++;\r\n        updateCarousel();\r\n      }, 5000);\r\n      \r\n      \/\/ Pause auto-sliding when hovering over the carousel\r\n      carouselElement.addEventListener('mouseenter', () => {\r\n        clearInterval(autoSlideInterval);\r\n      });\r\n      \r\n      carouselElement.addEventListener('mouseleave', () => {\r\n        autoSlideInterval = setInterval(() => {\r\n          currentSlide++;\r\n          updateCarousel();\r\n        }, 5000);\r\n      });\r\n      \r\n      \/\/ Handle transition end for seamless looping\r\n      carouselElement.addEventListener('transitionend', () => {\r\n        if (currentSlide >= actualSlides) {\r\n          currentSlide = 0;\r\n          carouselElement.style.transition = 'none';\r\n          carouselElement.style.transform = `translateX(0)`;\r\n          \/\/ Force reflow\r\n          void carouselElement.offsetWidth;\r\n          \/\/ Restore transition\r\n          carouselElement.style.transition = 'transform 0.5s ease';\r\n        } else if (currentSlide < 0) {\r\n          currentSlide = actualSlides - 1;\r\n          carouselElement.style.transition = 'none';\r\n          carouselElement.style.transform = `translateX(-${currentSlide * 100}%)`;\r\n          \/\/ Force reflow\r\n          void carouselElement.offsetWidth;\r\n          \/\/ Restore transition\r\n          carouselElement.style.transition = 'transform 0.5s ease';\r\n        }\r\n      });\r\n      \r\n      \/\/ For touch devices\r\n      let touchStartX = 0;\r\n      let touchEndX = 0;\r\n      let isSwiping = false;\r\n      \r\n      carouselElement.addEventListener('touchstart', (e) => {\r\n        touchStartX = e.changedTouches[0].screenX;\r\n        isSwiping = true;\r\n        clearInterval(autoSlideInterval);\r\n      }, { passive: true });\r\n      \r\n      carouselElement.addEventListener('touchmove', (e) => {\r\n        if (isSwiping) {\r\n          \/\/ Prevent default scrolling behavior while swiping the carousel\r\n          e.preventDefault();\r\n        }\r\n      }, { passive: false });\r\n      \r\n      carouselElement.addEventListener('touchend', (e) => {\r\n        touchEndX = e.changedTouches[0].screenX;\r\n        const wasSwiping = isSwiping;\r\n        isSwiping = false;\r\n        \r\n        if (wasSwiping) {\r\n          const swipeDistance = Math.abs(touchEndX - touchStartX);\r\n          if (swipeDistance > 50) {\r\n            \/\/ Only handle as swipe if distance is significant\r\n            handleSwipe();\r\n            \r\n            \/\/ Prevent click on links immediately after swiping\r\n            const slideLinks = document.querySelectorAll('.slide-link');\r\n            slideLinks.forEach(link => {\r\n              const originalClickHandler = link.onclick;\r\n              link.onclick = (e) => {\r\n                e.preventDefault();\r\n                setTimeout(() => {\r\n                  link.onclick = originalClickHandler;\r\n                }, 100);\r\n              };\r\n            });\r\n          }\r\n        }\r\n        \r\n        \/\/ Restart auto-sliding\r\n        autoSlideInterval = setInterval(() => {\r\n          currentSlide++;\r\n          updateCarousel();\r\n        }, 5000);\r\n      }, { passive: true });\r\n      \r\n      function handleSwipe() {\r\n        const swipeThreshold = 50;\r\n        if (touchEndX < touchStartX - swipeThreshold) {\r\n          \/\/ Swiped left, go to next slide\r\n          currentSlide++;\r\n          updateCarousel();\r\n        } else if (touchEndX > touchStartX + swipeThreshold) {\r\n          \/\/ Swiped right, go to previous slide\r\n          currentSlide--;\r\n          updateCarousel();\r\n        }\r\n      }\r\n    }\r\n  });\r\n<\/script>\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\t\t<\/div>\n\t\t<\/p>\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-845d10b e-flex e-con-boxed e-con e-parent\" data-id=\"845d10b\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5b5190c elementor-widget elementor-widget-html\" data-id=\"5b5190c\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t    <div class=\"vokp-news-container\">\r\n                    <h2 class=\"vokp-section-title\">\r\n                <a href=\"https:\/\/voiceofkp.org\/en\/news\/\">Latest News<\/a>\r\n            <\/h2>\r\n        \r\n        <div class=\"vokp-news-section three-column-layout\">\r\n\r\n            <!-- First Column - Featured Post -->\r\n            <div class=\"vokp-column featured-column\">\r\n                                        <article class=\"vokp-news-item vokp-featured-post\">\r\n                                                            <div class=\"vokp-post-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/masood-khan-sets-world-record-with-800km-non-stop-run\/\">\r\n                                        <img fetchpriority=\"high\" decoding=\"async\" width=\"900\" height=\"900\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-1024x1024.png\" class=\"attachment-large size-large wp-post-image\" alt=\"\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-1024x1024.png 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-768x768.png 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-135x135.png 135w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"vokp-post-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/masood-khan-sets-world-record-with-800km-non-stop-run\/\">Masood Khan Sets World Record with 800km Non-Stop Run<\/a>\r\n                                <\/h3>\r\n\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                                                                    <span class=\"vokp-post-date\">\r\n                                                <i class=\"fas fa-calendar-alt\"><\/i> May 25, 2026                                            <\/span>\r\n                                                                                                                    <\/div>\r\n                                \r\n                                                                    <div class=\"vokp-post-excerpt\">\r\n                                        Masood Khan Sets World Record with 800km Non-Stop Run from Peshawar to Skardu Peshawar: Pakistani endurance athlete Masood Khan has set a world record by successfully completing an approximately 800-kilometre non-stop run from Peshawar to Skardu. Masood Khan completed the long and challenging route without stopping, passing through the rugged mountainous terrain of the Karakoram [&hellip;]                                    <\/div>\r\n                                \r\n                                <a href=\"https:\/\/voiceofkp.org\/en\/masood-khan-sets-world-record-with-800km-non-stop-run\/\" class=\"vokp-read-more\">\r\n                                    See More                                <\/a>\r\n                            <\/div>\r\n                        <\/article>\r\n                            <\/div>\r\n\r\n            <!-- Second Column - List with Offset -->\r\n            <div class=\"vokp-column middle-column\">\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/transformation-plan-for-bannu-police-modern-equipment-provided\/\">Transformation plan for Bannu Police, modern equipment provided<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 23, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/transformation-plan-for-bannu-police-modern-equipment-provided\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Bannu-Police--150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"KP Police Bannu\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Bannu-Police--150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Bannu-Police--135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/federal-government-announces-eidul-azha-holidays\/\">Federal Government Announces Eidul Azha Holidays<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 20, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/federal-government-announces-eidul-azha-holidays\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Eid-ul-Adha-Holidays-May-2026-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Eid ul Adha Holidays May 2026\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Eid-ul-Adha-Holidays-May-2026-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Eid-ul-Adha-Holidays-May-2026-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Eid-ul-Adha-Holidays-May-2026-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Eid-ul-Adha-Holidays-May-2026-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Eid-ul-Adha-Holidays-May-2026-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/pdma-issues-weather-alert-for-kp-as-rain\/\">PDMA Issues Weather Alert for KP as Rain<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 20, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/pdma-issues-weather-alert-for-kp-as-rain\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Screenshot_8-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Rains are likely in most districts of Khyber Pakhtunkhwa from tomorrow\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Screenshot_8-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Screenshot_8-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Screenshot_8-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/street-child-world-cup-top-scorer-kashif-shinwari-returns-home\/\">Street Child World Cup Top Scorer Kashif Shinwari Returns Home<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 19, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/street-child-world-cup-top-scorer-kashif-shinwari-returns-home\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Kashif Shinwari Street Child World Cup\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                             <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/rescue-1122-kp-launchs-ambulance-service-for-transportation-of-dead-bodies-from-airport\/\">Rescue 1122 KP Launched Ambulance Service for Transportation of Dead Bodies from Airport<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 19, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/rescue-1122-kp-launchs-ambulance-service-for-transportation-of-dead-bodies-from-airport\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Rescue-1122-Airport-Ambulence-Service-150x150.webp\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Rescue News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Rescue-1122-Airport-Ambulence-Service-150x150.webp 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Rescue-1122-Airport-Ambulence-Service-300x300.webp 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Rescue-1122-Airport-Ambulence-Service-135x135.webp 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                            <\/div>\r\n\r\n            <!-- Third Column - List with Offset -->\r\n            <div class=\"vokp-column right-column\">\r\n                                         <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-announces-summer-vacations-for-plain-areas\/\">KP Announces Summer Vacations for Plain Areas<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 18, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-announces-summer-vacations-for-plain-areas\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Summer-Holidays-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"KP Summer Vocations\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Summer-Holidays-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Summer-Holidays-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Summer-Holidays-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/job-fair-open-house-2026-held-at-abdul-wali-khan-university-mardan\/\">Job Fair Open House 2026 Held at AWKUM Mardan<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 18, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/job-fair-open-house-2026-held-at-abdul-wali-khan-university-mardan\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/AWKUM-Job-Fair-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"AWKUM Job Fair News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/AWKUM-Job-Fair-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/AWKUM-Job-Fair-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/AWKUM-Job-Fair-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/AWKUM-Job-Fair-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/AWKUM-Job-Fair-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/pashtun-tribal-jirga-delegation-called-on-governor-kp\/\">Pashtun Tribal Jirga Delegation Called On Governor KP<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 18, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/pashtun-tribal-jirga-delegation-called-on-governor-kp\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Tribal-Jirga-Meets-Governor-KP-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Governor Tribal Jirga News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Tribal-Jirga-Meets-Governor-KP-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Tribal-Jirga-Meets-Governor-KP-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Tribal-Jirga-Meets-Governor-KP-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Tribal-Jirga-Meets-Governor-KP-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                                        <article class=\"vokp-news-item vokp-list-item\">\r\n                            <div class=\"vokp-list-content\">\r\n                                <h3 class=\"vokp-post-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/free-it-and-ai-courses-to-police-families\/\">Free IT and AI Courses to Police Families<\/a>\r\n                                <\/h3>\r\n                                                                    <div class=\"vokp-post-meta\">\r\n                                        <span class=\"vokp-post-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 14, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/free-it-and-ai-courses-to-police-families\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Haripur-Police-and-Ranking-Grow-MoU-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Local News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Haripur-Police-and-Ranking-Grow-MoU-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Haripur-Police-and-Ranking-Grow-MoU-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Haripur-Police-and-Ranking-Grow-MoU-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Haripur-Police-and-Ranking-Grow-MoU-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Haripur-Police-and-Ranking-Grow-MoU-135x135.jpg 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                    <\/article>\r\n                            <\/div>\r\n\r\n        <\/div><!-- \/.vokp-news-section -->\r\n    <\/div><!-- \/.vokp-news-container -->\r\n    \t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f5c688 elementor-widget elementor-widget-text-editor\" data-id=\"9f5c688\" data-element_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<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/news\/\">See More<\/a>\r\n                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\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-37ecb5c e-flex e-con-boxed e-con e-parent\" data-id=\"37ecb5c\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb2bf43 elementor-widget elementor-widget-html\" data-id=\"eb2bf43\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"manual-youtube-gallery yt-gallery-cols-3\">\r\n                <div class=\"yt-video-item\" data-video-id=\"-_GeWA4FUeQ\" title=\"Watch: ANP vs PTI: A Conversation on Terrorism, State Narrative, Security and Governance in KPK\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/-_GeWA4FUeQ\/sddefault.jpg\" alt=\"ANP vs PTI: A Conversation on Terrorism, State Narrative, Security and Governance in KPK\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">ANP vs PTI: A Conversation on Terrorism, State Narrative, Security and Governance in KPK<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"Lvp8DMEwDnQ\" title=\"Watch: Minority Sports Festival 2026 Held in Peshawar\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/Lvp8DMEwDnQ\/sddefault.jpg\" alt=\"Minority Sports Festival 2026 Held in Peshawar\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Minority Sports Festival 2026 Held in Peshawar<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"uokTUYB-s2A\" title=\"Watch: KP Madaris Sports Cricket Festival 2026, Peshawar\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/uokTUYB-s2A\/sddefault.jpg\" alt=\"KP Madaris Sports Cricket Festival 2026, Peshawar\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">KP Madaris Sports Cricket Festival 2026, Peshawar<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"URFcE1u20Qs\" title=\"Watch: Security Actions in KP and Government Response | Aqeel Yousafzai\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/URFcE1u20Qs\/sddefault.jpg\" alt=\"Security Actions in KP and Government Response | Aqeel Yousafzai\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Security Actions in KP and Government Response | Aqeel Yousafzai<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"TmW1u8RNgGg\" title=\"Watch: Marka-e-Haq and Istehkam-e-Pakistan Conference in Peshawar\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/TmW1u8RNgGg\/sddefault.jpg\" alt=\"Marka-e-Haq and Istehkam-e-Pakistan Conference in Peshawar\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Marka-e-Haq and Istehkam-e-Pakistan Conference in Peshawar<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"tvhHxnLKlvk\" title=\"Watch: Criticism Over CM\u2019s Political Activities, Bannu Security Situation, and Threat to Police Officer\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/tvhHxnLKlvk\/sddefault.jpg\" alt=\"Criticism Over CM\u2019s Political Activities, Bannu Security Situation, and Threat to Police Officer\" loading=\"lazy\"><div class=\"yt-play-button\">\r\n                            <svg width=\"48\" height=\"34\" viewBox=\"0 0 68 48\"><path class=\"yt-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"><\/path><path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"><\/path><\/svg>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <h3 class=\"yt-video-title\">Criticism Over CM\u2019s Political Activities, Bannu Security Situation, and Threat to Police Officer<\/h3>\r\n                <\/div><\/div>\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-8220f78 e-flex e-con-boxed e-con e-parent\" data-id=\"8220f78\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9caf25f elementor-widget elementor-widget-html\" data-id=\"9caf25f\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t        <h2 class=\"vokp-section-title\">\r\n            Sports News        <\/h2>\r\n            <div class=\"vokp-sports-grid vokp-grid-cols-4\">\r\n                             <article id=\"post-48907\" class=\"vokp-sports-item post-48907 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-800km tag-kp tag-marathon tag-masood-khan tag-non-stop-run tag-peshawar tag-skardu tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/masood-khan-sets-world-record-with-800km-non-stop-run\/\" aria-label=\"Read more about Masood Khan Sets World Record with 800km Non-Stop Run\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-768x768.png\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-768x768.png 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-1024x1024.png 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Masood-Khan-News-Poster-135x135.png 135w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/masood-khan-sets-world-record-with-800km-non-stop-run\/\">\r\n                                Masood Khan Sets World Record with 800km Non-Stop Run                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 25, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-48567\" class=\"vokp-sports-item post-48567 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-national category-news category-sports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-kp tag-pakistan tag-pashtuns tag-tribal-districts tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/street-child-world-cup-top-scorer-kashif-shinwari-returns-home\/\" aria-label=\"Read more about Street Child World Cup Top Scorer Kashif Shinwari Returns Home\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Kashif Shinwari Street Child World Cup\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Kashif-Shinwari-Street-Child-World-Cup-135x135.jpg 135w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/street-child-world-cup-top-scorer-kashif-shinwari-returns-home\/\">\r\n                                Street Child World Cup Top Scorer Kashif Shinwari Returns Home                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 19, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45701\" class=\"vokp-sports-item post-45701 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/new-afghan-di-khan-qualifies-for-quarterfinals-in-saeed-khan-memorial-football-tournament\/\" aria-label=\"Read more about New Afghan DI Khan qualifies for Quarterfinals in Saeed Khan Memorial Football Tournament\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"585\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/07\/WhatsApp-Image-2025-07-03-at-12.35.41_e36c8791-768x585.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"New Afghan DI Khan Qualifies for Quarterfinals in Saeed Khan Memorial Football Tournament\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/new-afghan-di-khan-qualifies-for-quarterfinals-in-saeed-khan-memorial-football-tournament\/\">\r\n                                New Afghan DI Khan qualifies for Quarterfinals in Saeed Khan Memorial Football Tournament                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                July 3, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45595\" class=\"vokp-sports-item post-45595 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-kicks-off\/\" aria-label=\"Read more about Shandur Polo Festival Kicks Off\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/06\/505435710_1104263551725533_3813989821859288615_n-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Pakistan&#039;s biggest Shandur Polo Festival will be held from June 20. Khyber Pakhtunkhwa Chief Minister Ali Amin Gandapur has fixed the date of Shandur Polo Festival. Advisor to Tourism Zahid Chanzeb has directed to finalize all preparations for Shandur Polo Festival. Shandur Polo Festival will be held in Upper Chitral from June 20 to June 22, 2025. All preparations for Shandur Polo Festival will be finalized. All possible facilities will be provided to the tourists coming to the festival. Shandur Polo Festival will be successfully organized and awareness campaign will be launched from now. Teams from Chitral Lower and Chitral Upper will compete with teams from Gilgit-Baltistan in the festival. Shandur Polo Festival will be organized in collaboration with Pakistan Army, Khyber Pakhtunkhwa Tourism Authority, District Administration Chitral Lower and Upper, Police and Chitral Scouts.\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-kicks-off\/\">\r\n                                Shandur Polo Festival Kicks Off                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 20, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45474\" class=\"vokp-sports-item post-45474 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-wins-gold-at-asian-athletics-championship\/\" aria-label=\"Read more about Arshad Nadeem Wins Asian Gold\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"565\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/497923599_583717618103496_7776699047564078136_n-768x565.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Arshad Nadeem wins Gold at Asian Athletics Championship\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-wins-gold-at-asian-athletics-championship\/\">\r\n                                Arshad Nadeem Wins Asian Gold                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 31, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45477\" class=\"vokp-sports-item post-45477 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/world-cycling-day-2025-to-be-celebrated-nationwide-in-pakistan\/\" aria-label=\"Read more about Nationwide World Cycling Day 2025\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"600\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/i7l89o.o-768x600.webp\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"World Cycling Day 2025\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/world-cycling-day-2025-to-be-celebrated-nationwide-in-pakistan\/\">\r\n                                Nationwide World Cycling Day 2025                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 31, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45463\" class=\"vokp-sports-item post-45463 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-secures-spot-in-javelin-final-at-asian-athletics-championship\/\" aria-label=\"Read more about Javelin: Arshad Nadeem in Final\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"369\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/ezgif.com-resize-2024-07-07T180517.287.webp\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Arshad Nadeem Secures Spot in Javelin Final at Asian Athletics Championship\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/arshad-nadeem-secures-spot-in-javelin-final-at-asian-athletics-championship\/\">\r\n                                Javelin: Arshad Nadeem in Final                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 30, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-45408\" class=\"vokp-sports-item post-45408 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-sports\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/lahore-qalandars-snatch-thrilling-psl-x-title-with-record-chase-against-quetta-gladiators\/\" aria-label=\"Read more about Lahore Qalandars snatch thrilling PSL X title with record chase against Quetta Gladiators\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"405\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/401138.6.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Lahore Qalandars snatch thrilling PSL X title with record chase against Quetta Gladiators\" \/>                            <\/a>\r\n                        <\/div>\r\n                                        <div class=\"vokp-sports-content\">\r\n                        <h3 class=\"vokp-sports-title\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/lahore-qalandars-snatch-thrilling-psl-x-title-with-record-chase-against-quetta-gladiators\/\">\r\n                                Lahore Qalandars snatch thrilling PSL X title with record chase against Quetta Gladiators                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                May 26, 2025                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                    <\/div>\r\n        \t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3510e65 elementor-widget elementor-widget-text-editor\" data-id=\"3510e65\" data-element_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<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            <a href=\"https:\/\/www.voiceofkp.org\/en\/news\/sports\/\">See More<\/a>\r\n                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\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-c3f52c9 e-flex e-con-boxed e-con e-parent\" data-id=\"c3f52c9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-99eb3c8 elementor-widget elementor-widget-html\" data-id=\"99eb3c8\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t    <div class=\"vokp-opinions-container\">\r\n                    <h2 class=\"vokp-section-title\">Opinions<\/h2>\r\n                \r\n        <div class=\"vokp-opinions-section\">\r\n            <!-- Editorials Column -->\r\n            <div class=\"vokp-opinions-column editorials-column\">\r\n                <h3 class=\"vokp-column-title\">\r\n                    <a href=\"https:\/\/voiceofkp.org\/en\/editorials\/\" class=\"vokp-column-link\">\r\n                        Editorials                    <\/a>\r\n                <\/h3>\r\n                \r\n                                        <article class=\"vokp-opinion-item featured-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail vokp-featured-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/peace-is-elusive-for-afghan-land\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-300x300.webp\" class=\"featured-image wp-post-image\" alt=\"Peace is elusive for Afghan land\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-300x300.webp 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-150x150.webp 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/05\/112284762_mediaitem112284761.jpg-135x135.webp 135w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/peace-is-elusive-for-afghan-land\/\">Peace is elusive for Afghan land<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Hassan Khan                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 16, 2020                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/media-role-in-pakistan\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ-135x135.jpg 135w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2020\/02\/jJXWOmYrTBy5X4D2SvZCaQ.jpg 409w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/media-role-in-pakistan\/\">Media Role in Pakistan<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Aqeel Yousafzai                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> February 22, 2020                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                <\/div>\r\n            \r\n            <!-- Articles Column -->\r\n            <div class=\"vokp-opinions-column articles-column\">\r\n                <h3 class=\"vokp-column-title\">\r\n                    <a href=\"https:\/\/voiceofkp.org\/en\/opinions\/articles\/\" class=\"vokp-column-link\">\r\n                        Articles                    <\/a>\r\n                <\/h3>\r\n                \r\n                                        <article class=\"vokp-opinion-item featured-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail vokp-featured-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/jirga-held-to-discuss-peace-and-development-in-tirah\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-300x300.jpg\" class=\"featured-image wp-post-image\" alt=\"Jirga Tirah Peace\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Jirga-on-Tirah-Peace-135x135.jpg 135w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/jirga-held-to-discuss-peace-and-development-in-tirah\/\">Jirga Held to Discuss Peace and Development in Tirah<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Webdesk                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 23, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/youth-radicalization-vs-youth-empowerment\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/The-Battle-for-Narratives-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/The-Battle-for-Narratives-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/The-Battle-for-Narratives-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/youth-radicalization-vs-youth-empowerment\/\">YOUTH RADICALIZATION VS YOUTH EMPOWERMENT<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Webdesk                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 13, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kps-fiscal-stress-in-2026\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Piscal-Stress-in-26-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Piscal-Stress-in-26-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Piscal-Stress-in-26-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kps-fiscal-stress-in-2026\/\">KP&#8217;S FISCAL STRESS IN 2026: WHEN THE WALLET IS THIN BUT THE PROMISES ARE THICK<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Webdesk                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 13, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kps-counter-terror-gains-a-resilient-march-towards-security-and-stability\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Magazine Article\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/KP-Terror-Gains-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kps-counter-terror-gains-a-resilient-march-towards-security-and-stability\/\">KP&#8217;S COUNTER TERROR GAINS: A RESILIENT MARCH TOWARDS SECURITY AND STABILITY<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Webdesk                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> May 13, 2026                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                <\/div>\r\n            \r\n            <!-- Blogs Column -->\r\n            <div class=\"vokp-opinions-column blogs-column\">\r\n                <h3 class=\"vokp-column-title\">\r\n                    <a href=\"https:\/\/voiceofkp.org\/en\/opinions\/blogs\/\" class=\"vokp-column-link\">\r\n                        Blogs                    <\/a>\r\n                <\/h3>\r\n                \r\n                                        <article class=\"vokp-opinion-item featured-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail vokp-featured-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/unraveling-the-healthcare-quagmire-in-kp-a-critical-analysis\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-300x300.jpg\" class=\"featured-image wp-post-image\" alt=\"First Cardiology Summit held at LRH Peshawar\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/11\/thumbs_b_c_d758316b18c0db29eac8a102498c2cc5-135x135.jpg 135w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/unraveling-the-healthcare-quagmire-in-kp-a-critical-analysis\/\">Unraveling the Healthcare Quagmire in KP: A Critical Analysis<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> January 5, 2024                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/transcending-barriers-the-quest-for-transgender-empowerment-in-kp-politics\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Transcending Barriers: The Quest for Transgender Empowerment in KP Politics\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-416x419.png 416w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-27_16-38-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/transcending-barriers-the-quest-for-transgender-empowerment-in-kp-politics\/\">Transcending Barriers: The Quest for Transgender Empowerment in KP Politics<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 27, 2023                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/maulana-fazlur-rehman-gets-official-invitation-to-visit-kabul-amid-strained-bilateral-ties\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"JUIF leader fazal ur rehman invited by afghan taliab to visit to kabul\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-19_15-16-135x135.png 135w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/maulana-fazlur-rehman-gets-official-invitation-to-visit-kabul-amid-strained-bilateral-ties\/\">Maulana Fazlur Rehman gets official invitation to visit Kabul amid strained bilateral ties<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 19, 2023                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                            <article class=\"vokp-opinion-item\">\r\n                                                            <div class=\"vokp-opinion-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/terror-wave-grips-khyber-pakhtunkhwa-alarming-statistics-revealed\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Terror Wave Grips Khyber Pakhtunkhwa: Alarming Statistics Revealed\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26-135x135.png 135w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2023\/12\/2023-12-18_13-26.png 676w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>                                    <\/a>\r\n                                <\/div>\r\n                                                        \r\n                            <div class=\"vokp-opinion-content\">\r\n                                <h4 class=\"vokp-opinion-title\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/terror-wave-grips-khyber-pakhtunkhwa-alarming-statistics-revealed\/\">Terror Wave Grips Khyber Pakhtunkhwa: Alarming Statistics Revealed<\/a>\r\n                                <\/h4>\r\n                                \r\n                                <div class=\"vokp-opinion-meta\">\r\n                                                                            <span class=\"vokp-opinion-author\">\r\n                                            <i class=\"fas fa-user\"><\/i> Mansoor Bakhtiar                                        <\/span>\r\n                                                                        \r\n                                                                            <span class=\"vokp-opinion-date\">\r\n                                            <i class=\"fas fa-calendar-alt\"><\/i> December 18, 2023                                        <\/span>\r\n                                                                    <\/div>\r\n                            <\/div>\r\n                        <\/article>\r\n                                <\/div>\r\n        <\/div>\r\n    <\/div>\r\n    \t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-789aca4 elementor-widget elementor-widget-text-editor\" data-id=\"789aca4\" data-element_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<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            See More                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\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\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1568c75 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1568c75\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"aux-parallax-section elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c9b8694\" data-id=\"c9b8694\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-cf1c9a2 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cf1c9a2\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"aux-parallax-section elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a5b53d4\" data-id=\"a5b53d4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a08d259 elementor-widget elementor-widget-heading\" data-id=\"a08d259\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Newsletters<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div class=\"elementor-element elementor-element-a9e20e4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"a9e20e4\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-547e94d elementor-widget elementor-widget-aux_recent_posts\" data-id=\"547e94d\" data-element_type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;3&quot;,&quot;columns_tablet&quot;:&quot;inherit&quot;,&quot;columns_mobile&quot;:&quot;1&quot;}\" data-widget_type=\"aux_recent_posts.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<section class=\"widget-container aux-widget-recent-posts aux-parent-auab0ca63a\"><div data-element-id=\"auab0ca63a\" class=\"aux-match-height aux-row aux-de-col3 aux-tb-col3 aux-mb-col1 aux-total-3 aux-entry-boxed aux-no-meta aux-ajax-view  \"><div class=\"aux-col post-48584\">\r\n                        <article class=\"post column-entry post-48584 type-post status-publish format-standard has-post-thumbnail hentry category-vokp-newsletter\">\r\n                                                        <div class=\"entry-media\"><div class=\"aux-media-frame aux-media-image aux-image-mask\"><a href=\"https:\/\/voiceofkp.org\/en\/22nd-edition-jan-mar-2026\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-48585 \" alt=\"Cover Page 22nd Magazine\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-150x96.jpg 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-300x193.jpg 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-510x327.jpg 510w\" data-ratio=\"1.56\" data-original-w=\"520\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,280px\" \/><\/a><\/div><\/div>\r\n                            \r\n                            <div class=\"entry-main\">\r\n                                                        \r\n                                <header class=\"entry-header\">\r\n                                \r\n                                    <h4 class=\"entry-title\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/22nd-edition-jan-mar-2026\/\">\r\n                                            22nd Edition Jan-Mar 2026                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/22nd-edition-jan-mar-2026\/\">\r\n                                            <div class=\"post-format format-\"> <\/div>\r\n                                        <\/a>\r\n                                    <\/div>\r\n                                <\/header>\r\n                            \r\n                                                        \r\n                            <\/div>\r\n\r\n                        <\/article>\r\n<\/div><div class=\"aux-col post-48841\">\r\n                        <article class=\"post column-entry post-48841 type-post status-publish format-standard has-post-thumbnail hentry category-vokp-newsletter\">\r\n                                                        <div class=\"entry-media\"><div class=\"aux-media-frame aux-media-image aux-image-mask\"><a href=\"https:\/\/voiceofkp.org\/en\/21st-edition-oct-dec-2025\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-280x180.png\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-48842 \" alt=\"21st Edition Cover Page\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-150x96.png 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-300x193.png 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-280x180.png 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/21st-Edition-Cover-Page-455x292.png 455w\" data-ratio=\"1.56\" data-original-w=\"465\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,280px\" \/><\/a><\/div><\/div>\r\n                            \r\n                            <div class=\"entry-main\">\r\n                                                        \r\n                                <header class=\"entry-header\">\r\n                                \r\n                                    <h4 class=\"entry-title\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/21st-edition-oct-dec-2025\/\">\r\n                                            21st Edition Oct-Dec 2025                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/21st-edition-oct-dec-2025\/\">\r\n                                            <div class=\"post-format format-\"> <\/div>\r\n                                        <\/a>\r\n                                    <\/div>\r\n                                <\/header>\r\n                            \r\n                                                        \r\n                            <\/div>\r\n\r\n                        <\/article>\r\n<\/div><div class=\"aux-col post-48844\">\r\n                        <article class=\"post column-entry post-48844 type-post status-publish format-standard has-post-thumbnail hentry category-vokp-newsletter\">\r\n                                                        <div class=\"entry-media\"><div class=\"aux-media-frame aux-media-image aux-image-mask\"><a href=\"https:\/\/voiceofkp.org\/en\/20th-edition-july-sept-2025\/\"><img decoding=\"async\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-280x180.png\" class=\"aux-attachment aux-featured-image attachment-280x180 aux-attachment-id-48845 \" alt=\"20th Edition Cover Photo\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-150x96.png 150w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-300x193.png 300w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-280x180.png 280w,https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/20th-Edition-Cover-Photo-458x294.png 458w\" data-ratio=\"1.56\" data-original-w=\"468\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,280px\" \/><\/a><\/div><\/div>\r\n                            \r\n                            <div class=\"entry-main\">\r\n                                                        \r\n                                <header class=\"entry-header\">\r\n                                \r\n                                    <h4 class=\"entry-title\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/20th-edition-july-sept-2025\/\">\r\n                                            20th Edition July-Sept 2025                                        <\/a>\r\n                                    <\/h4>\r\n                                                                    <div class=\"entry-format\">\r\n                                        <a href=\"https:\/\/voiceofkp.org\/en\/20th-edition-july-sept-2025\/\">\r\n                                            <div class=\"post-format format-\"> <\/div>\r\n                                        <\/a>\r\n                                    <\/div>\r\n                                <\/header>\r\n                            \r\n                                                        \r\n                            <\/div>\r\n\r\n                        <\/article>\r\n<\/div><\/div><\/section><!-- widget-container -->\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ec071e0 elementor-widget elementor-widget-text-editor\" data-id=\"ec071e0\" data-element_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<p>    <div class=\"vokp-divider-container\" style=\"margin-top: 0px; margin-bottom: 0px; --vokp-divider-hover-color: #0156af;\">\r\n        <span class=\"vokp-divider-line vokp-divider-line-left\"><\/span>\r\n        <h2 class=\"vokp-divider-text\" style=\"color: #38332f;\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/vokp-newsletter\/\">See More<\/a>\r\n                    <\/h2>\r\n        <span class=\"vokp-divider-line vokp-divider-line-right\"><\/span>\r\n    <\/div>\r\n    <\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Newsletters 22nd Edition Jan-Mar 2026 21st Edition Oct-Dec 2025 20th Edition July-Sept 2025<\/p>\n","protected":false},"author":55,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-12631","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.8.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Home - Voice of KP English<\/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:\/\/voiceofkp.org\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home - Voice of KP English\" \/>\n<meta property=\"og:description\" content=\"Newsletters 22nd Edition Jan-Mar 2026 21st Edition Oct-Dec 2025 20th Edition July-Sept 2025\" \/>\n<meta property=\"og:url\" content=\"https:\/\/voiceofkp.org\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Voice of KP English\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-25T08:19:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/voiceofkp.org\/en\/\",\"url\":\"https:\/\/voiceofkp.org\/en\/\",\"name\":\"Home - Voice of KP English\",\"isPartOf\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg\",\"datePublished\":\"2022-02-01T12:33:54+00:00\",\"dateModified\":\"2026-05-25T08:19:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/voiceofkp.org\/en\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/voiceofkp.org\/en\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/voiceofkp.org\/en\/#primaryimage\",\"url\":\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg\",\"contentUrl\":\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg\",\"width\":520,\"height\":696},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/voiceofkp.org\/en\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/voiceofkp.org\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/voiceofkp.org\/en\/#website\",\"url\":\"https:\/\/voiceofkp.org\/en\/\",\"name\":\"Voice of KP English\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/voiceofkp.org\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home - Voice of KP English","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:\/\/voiceofkp.org\/en\/","og_locale":"en_US","og_type":"article","og_title":"Home - Voice of KP English","og_description":"Newsletters 22nd Edition Jan-Mar 2026 21st Edition Oct-Dec 2025 20th Edition July-Sept 2025","og_url":"https:\/\/voiceofkp.org\/en\/","og_site_name":"Voice of KP English","article_modified_time":"2026-05-25T08:19:20+00:00","og_image":[{"url":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/voiceofkp.org\/en\/","url":"https:\/\/voiceofkp.org\/en\/","name":"Home - Voice of KP English","isPartOf":{"@id":"https:\/\/voiceofkp.org\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/voiceofkp.org\/en\/#primaryimage"},"image":{"@id":"https:\/\/voiceofkp.org\/en\/#primaryimage"},"thumbnailUrl":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1-280x180.jpg","datePublished":"2022-02-01T12:33:54+00:00","dateModified":"2026-05-25T08:19:20+00:00","breadcrumb":{"@id":"https:\/\/voiceofkp.org\/en\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/voiceofkp.org\/en\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/voiceofkp.org\/en\/#primaryimage","url":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg","contentUrl":"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/05\/Cover-Page-22nd-Magazine-1.jpg","width":520,"height":696},{"@type":"BreadcrumbList","@id":"https:\/\/voiceofkp.org\/en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/voiceofkp.org\/en\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/voiceofkp.org\/en\/#website","url":"https:\/\/voiceofkp.org\/en\/","name":"Voice of KP English","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/voiceofkp.org\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/users\/55"}],"replies":[{"embeddable":true,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/comments?post=12631"}],"version-history":[{"count":10,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631\/revisions"}],"predecessor-version":[{"id":48917,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631\/revisions\/48917"}],"wp:attachment":[{"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/media?parent=12631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}