{"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-06-16T11:06:36","modified_gmt":"2026-06-16T06:06:36","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\/member-orakzai-jirga-meets-federal-minister-amir-muqam\/\">\r\n                                        <img fetchpriority=\"high\" decoding=\"async\" width=\"741\" height=\"369\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Ameer-Muqam.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Local News\" \/>                                    <\/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\/member-orakzai-jirga-meets-federal-minister-amir-muqam\/\">Member Orakzai Jirga Meets Federal Minister Amir Muqam<\/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> June 13, 2026                                            <\/span>\r\n                                                                                                                    <\/div>\r\n                                \r\n                                                                    <div class=\"vokp-post-excerpt\">\r\n                                        Peshawar: A 100-member jirga from the tribal district Orakzai met with Federal Minister Engineer Amir Muqam to discuss public issues, development projects and the provision of basic facilities in the area. The jirga, led by former Member of the National Assembly Spin Gul Malik, met the federal minister in Peshawar Cantonment. Murtaza Javed Abbasi, General [&hellip;]                                    <\/div>\r\n                                \r\n                                <a href=\"https:\/\/voiceofkp.org\/en\/member-orakzai-jirga-meets-federal-minister-amir-muqam\/\" 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\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\">Shandur Polo Festival Begins at the World&#8217;s Highest Polo Ground<\/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> June 11, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Sports News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-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\/kp-governor-expresses-concern-over-wheat-supply-issues\/\">KP Governor Expresses Concern Over Wheat Supply Issues<\/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> June 11, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/kp-governor-expresses-concern-over-wheat-supply-issues\/\">\r\n                                        <img decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Governor-Khyber-Pakhtunkhwa-Faisal-Karim-Kundi-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Governor KP News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Governor-Khyber-Pakhtunkhwa-Faisal-Karim-Kundi-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Governor-Khyber-Pakhtunkhwa-Faisal-Karim-Kundi-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Governor-Khyber-Pakhtunkhwa-Faisal-Karim-Kundi-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\/section-144-imposed-in-mardan-to-prevent-forest-fires\/\">Section 144 Imposed in Mardan to Prevent Forest Fires<\/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> June 11, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/section-144-imposed-in-mardan-to-prevent-forest-fires\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Section-144-Imposed-in-Mardan-due-to-forrests-Fires-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Local News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Section-144-Imposed-in-Mardan-due-to-forrests-Fires-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Section-144-Imposed-in-Mardan-due-to-forrests-Fires-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Section-144-Imposed-in-Mardan-due-to-forrests-Fires-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Section-144-Imposed-in-Mardan-due-to-forrests-Fires-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Section-144-Imposed-in-Mardan-due-to-forrests-Fires-135x135.jpg 135w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Section-144-Imposed-in-Mardan-due-to-forrests-Fires.jpg 1254w\" 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\/art-exhibition-in-abbottabad\/\">Art Exhibition in Abbottabad<\/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> June 8, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/art-exhibition-in-abbottabad\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Art-Exhibition-in-Abbotabad-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Local News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Art-Exhibition-in-Abbotabad-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Art-Exhibition-in-Abbotabad-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Art-Exhibition-in-Abbotabad-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Art-Exhibition-in-Abbotabad-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\/national-junior-championship-kicks-off-in-peshawar\/\">National Junior Championship Kicks Off in Peshawar<\/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> June 8, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/national-junior-championship-kicks-off-in-peshawar\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"National Sport News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-135x135.jpg 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\/waziristan-peace-festival-to-begin-on-june-12\/\">Waziristan Peace Festival to begin on June 12<\/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> June 8, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/waziristan-peace-festival-to-begin-on-june-12\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Waziristan-Peace-Festival-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Local News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Waziristan-Peace-Festival-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Waziristan-Peace-Festival-300x300.png 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Waziristan-Peace-Festival-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\/three-day-student-summit-peak-2026-concludes\/\">Three-Day Student Summit \u201cPEAK 2026\u201d Concludes<\/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> June 3, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/three-day-student-summit-peak-2026-concludes\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Summer-Camp-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"PEAK 2026 News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Summer-Camp-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Summer-Camp-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Summer-Camp-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Summer-Camp-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Summer-Camp-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\/strong-winds-and-rain-forecast-across-kp-till-june-5\/\">Strong Winds and Rain Forecast Across KP Till June 5<\/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> June 2, 2026                                        <\/span>\r\n                                    <\/div>\r\n                                                            <\/div>\r\n                                                            <div class=\"vokp-list-thumbnail\">\r\n                                    <a href=\"https:\/\/voiceofkp.org\/en\/strong-winds-and-rain-forecast-across-kp-till-june-5\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Rain-in-KP-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Monsoon Rains in KP\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Rain-in-KP-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Rain-in-KP-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\/pdma-issues-glofs-and-flash-floods-alert-in-kp\/\">PDMA Issues GLOFs and Flash Floods Alert in 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> June 2, 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-glofs-and-flash-floods-alert-in-kp\/\">\r\n                                        <img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Provincial_Disaster_Management_Authority_Khyber_Pakhtunkhwa_logo-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"PDMA Provincial Disaster Management Authority (Khyber Pakhtunkhwa)\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Provincial_Disaster_Management_Authority_Khyber_Pakhtunkhwa_logo-150x150.png 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2025\/05\/Provincial_Disaster_Management_Authority_Khyber_Pakhtunkhwa_logo-135x135.png 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=\"xQxDkpKj_bo\" title=\"Watch: Politics Intensifies Over KP Budget; Flour Prices Remain High (Pashto)\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/xQxDkpKj_bo\/sddefault.jpg\" alt=\"Politics Intensifies Over KP Budget; Flour Prices Remain High (Pashto)\" 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\">Politics Intensifies Over KP Budget; Flour Prices Remain High (Pashto)<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"lPufdgcDhdw\" title=\"Watch: Taliban Under Pressure as Resistance Grows; Pakistan and China Raise Security Concerns\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/lPufdgcDhdw\/sddefault.jpg\" alt=\"Taliban Under Pressure as Resistance Grows; Pakistan and China Raise Security Concerns\" 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\">Taliban Under Pressure as Resistance Grows; Pakistan and China Raise Security Concerns<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"-Fm-AbUoKEI\" title=\"Watch: Proposal for Major Federal Budget Allocation for Tribal Areas and the Iran\u2013U.S Agreement\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/-Fm-AbUoKEI\/sddefault.jpg\" alt=\"Proposal for Major Federal Budget Allocation for Tribal Areas and the Iran\u2013U.S Agreement\" 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\">Proposal for Major Federal Budget Allocation for Tribal Areas and the Iran\u2013U.S Agreement<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"6pYhFt7U0QU\" title=\"Watch: PPP Emerges Strongest in Gilgit-Baltistan, PTI Suffers Setback; Forward Bloc Gains Momentum in KP\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/6pYhFt7U0QU\/sddefault.jpg\" alt=\"PPP Emerges Strongest in Gilgit-Baltistan, PTI Suffers Setback; Forward Bloc Gains Momentum in KP\" 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\">PPP Emerges Strongest in Gilgit-Baltistan, PTI Suffers Setback; Forward Bloc Gains Momentum in KP<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"jJzMTQ00E0U\" title=\"Watch: KPK&#039;s Future: Peace, Development, PPP&#039;s Role &amp; PTI Accountability\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/jJzMTQ00E0U\/sddefault.jpg\" alt=\"KPK&#039;s Future: Peace, Development, PPP&#039;s Role &amp; PTI Accountability\" 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\">KPK&#039;s Future: Peace, Development, PPP&#039;s Role &amp; PTI Accountability<\/h3>\r\n                <\/div>\r\n                <div class=\"yt-video-item\" data-video-id=\"WC57DqRQ-XA\" title=\"Watch: Azad Kashmir Unrest Plot; Major Operation in North Waziristan\">\r\n                    <div class=\"yt-video-thumbnail\"><img decoding=\"async\" src=\"https:\/\/i.ytimg.com\/vi\/WC57DqRQ-XA\/sddefault.jpg\" alt=\"Azad Kashmir Unrest Plot; Major Operation in North Waziristan\" 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\">Azad Kashmir Unrest Plot; Major Operation in North Waziristan<\/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-49042\" class=\"vokp-sports-item post-49042 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports tag-kpupdate tag-pakarmy tag-polo tag-shandoorpolofestival tag-voiceofkp tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-chitral tag-kp tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\" aria-label=\"Read more about Shandur Polo Festival Begins at the World&#8217;s Highest Polo Ground\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"Sports News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/Chitral-Polo-Festival-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\/shandur-polo-festival-begins-at-the-worlds-highest-polo-ground\/\">\r\n                                Shandur Polo Festival Begins at the World&#8217;s Highest Polo Ground                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 11, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-49015\" class=\"vokp-sports-item post-49015 post type-post status-publish format-standard has-post-thumbnail hentry category-national category-news category-sports tag-kpsports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-kp tag-national-junior-championship tag-pakistan tag-sports tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/national-junior-championship-kicks-off-in-peshawar\/\" aria-label=\"Read more about National Junior Championship Kicks Off in Peshawar\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"768\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-768x768.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"National Sport News\" srcset=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-768x768.jpg 768w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-300x300.jpg 300w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-1024x1024.jpg 1024w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-150x150.jpg 150w, https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-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\/national-junior-championship-kicks-off-in-peshawar\/\">\r\n                                National Junior Championship Kicks Off in Peshawar                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 8, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\r\n                             <article id=\"post-48957\" class=\"vokp-sports-item post-48957 post type-post status-publish format-standard has-post-thumbnail hentry category-local category-news category-sports tag-kpupdate tag-voiceofkp-kpk-khyberpakhtoonkhwa tag-kp tag-national-junior-championship tag-youth\">\r\n                                            <div class=\"vokp-sports-thumbnail\">\r\n                            <a href=\"https:\/\/voiceofkp.org\/en\/national-junior-championship-2026-to-begin-in-peshawar-on-june-7\/\" aria-label=\"Read more about National Junior Championship 2026 to Begin in Peshawar on June 7\">\r\n                                <img loading=\"lazy\" decoding=\"async\" width=\"435\" height=\"489\" src=\"https:\/\/voiceofkp.org\/en\/wp-content\/uploads\/sites\/3\/2026\/06\/National-Junior-Championship-2026.png\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"National Junior Championship 2026\" \/>                            <\/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\/national-junior-championship-2026-to-begin-in-peshawar-on-june-7\/\">\r\n                                National Junior Championship 2026 to Begin in Peshawar on June 7                            <\/a>\r\n                        <\/h3>\r\n                                                    <span class=\"vokp-sports-date\">\r\n                                June 2, 2026                            <\/span>\r\n                                            <\/div>\r\n                <\/article>\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                    <\/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-auce2169a8\"><div data-element-id=\"auce2169a8\" 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-06-16T06:06:36+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-06-16T06:06:36+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-06-16T06:06:36+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-06-16T06:06:36+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":49071,"href":"https:\/\/voiceofkp.org\/en\/wp-json\/wp\/v2\/pages\/12631\/revisions\/49071"}],"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}]}}