403Webshell
Server IP : 104.21.93.192  /  Your IP : 216.73.216.73
Web Server : LiteSpeed
System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
User : redwjova ( 1790)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : OFF |  Pkexec : OFF
Directory :  /home/redwjova/clevorio.com/wp-content/themes/smart-mag/lib/vendor/plugins/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/redwjova/clevorio.com/wp-content/themes/smart-mag/lib/vendor/plugins/smartmag-core.zip
PK03Y[���8�8smartmag-core/smartmag-core.php<?php
/**
 * SmartMag Core
 *
 * Plugin Name:       SmartMag Core
 * Description:       Elements and core functionality for SmartMag Theme.
 * Version:           1.5.0
 * Author:            ThemeSphere
 * Author URI:        https://theme-sphere.com
 * License:           ThemeForest Split
 * License URI:       https://themeforest.net/licenses/standard
 * Text Domain:       smartmag
 * Domain Path:       /languages
 * Requires PHP:      7.1
 */

defined('WPINC') || exit;

class SmartMag_Core 
{
	const VERSION    = '1.5.0';

	// Due to legacy reasons, it's named smartmag without dash.
	const THEME_SLUG = 'smartmag';

	protected static $instance;

	/**
	 * Path to plugin folder, trailing slashed.
	 */
	public $path;
	public $path_url;

	/**
	 * Flag to indicat plugin successfuly ran init. This confirms no conflicts.
	 */
	public $did_init = false;

	/**
	 * Whether the correct accompanying theme exists or implementations are done.
	 *
	 * @var boolean
	 */
	public $theme_supports = [];

	public function __construct()
	{
		$this->path = plugin_dir_path(__FILE__);

		// URL for the plugin dir
		$this->path_url = plugin_dir_url(__FILE__);

		/**
		 * Register autoloader. Usually uses the loader from theme if present.
		 */
		if (!class_exists('\Bunyad\Lib\Loader', false)) {
			require_once $this->path . 'lib/loader.php';
		}
		
		$path       = $this->path;
		$namespaces = [
			'SmartMag\\'       => $path . 'inc', 
			'Bunyad\Blocks\\' => [
				'search_reverse' => true,
				'paths'          => $path . 'blocks',
			],
			'Bunyad\Elementor\\' => $path . 'inc/elementor',
			'Bunyad\Widgets\\'   => $path . 'inc/widgets',
			'Bunyad\Studio\\'    => $path . 'inc/studio',
		];

		$loader = new \Bunyad\Lib\Loader($namespaces);

	}
	
	/**
	 * Setup to be hooked after setup theme.
	 */
	public function init()
	{		
		$this->did_init = true;
		$lib_path = $this->path . 'lib/';
		
		/**
		 * When one of our themes isn't active, use shims
		 */
		if (!class_exists('Bunyad_Core')) {
			require_once $this->path . 'lib/bunyad.php';
			require_once $this->path . 'inc/bunyad.php';

			require_once $this->path . 'lib/util.php';
			require_once $this->path . 'blocks/helpers.php';

			// Set path to local as theme isn't active
			Bunyad::$fallback_path = $lib_path;

			Bunyad::options()->set_config([
				'theme_prefix' => self::THEME_SLUG,
				'meta_prefix'  => '_bunyad'
			]);
		}
		else {

			// If we're here, there's a ThemeSphere theme active. All ThemeSphere themes have
			// their own core plugins. Theme's own core plugin should be used instead.
			if (Bunyad::options()->get_config('theme_name') !== self::THEME_SLUG) {
				return;
			}

			$this->theme_supports = ['blocks' => true];
		}

		// Outdated Bunyad from an old theme? Cannot continue.
		if (!property_exists('Bunyad', 'fallback_path')) {
			return;
		}

		// Set local fallback for some components not packaged with theme.
		Bunyad::$fallback_path = $lib_path;

		/**
		 * Setup filters and data
		 */

		// Elementor specific
		if (class_exists('\Elementor\Plugin') || did_action('elementor/loaded')) {
			$elementor = new \Bunyad\Elementor\Module;
			$elementor->register_hooks();

			// And the studio.
			new \Bunyad\Studio\Module;
		}

		// Admin related actions
		add_action('admin_init', [$this, 'register_metaboxes']);

		// User profile fields
		add_filter('user_contactmethods', [$this, 'add_profile_fields']);

		// Register assets
		add_action('admin_enqueue_scripts', [$this, 'admin_assets']);

		// Setup blocks
		$this->setup_blocks();

		// Setup widgets - hook will be handled by Bunyad_Widgets.
		$this->setup_widgets();

		// Performance optimizations.
		require_once $this->path . 'inc/optimize.php';

		// Social Share and Follow.
		require_once $this->path . 'inc/social-share.php';

		// Classic Editor features
		if (is_admin()) {
			require_once $this->path . 'inc/editor.php';
		}

		// Init menu helper classes
		Bunyad::menus();
		add_filter('bunyad_custom_menu_fields', [$this, 'custom_menu_fields']);

		// Init reviews.
		Bunyad::register('reviews', [
			'object' => new SmartMag\Reviews\Module
		]);

		// Translation: To be loaded via theme. Uncomment below to do a local translate.
		// load_plugin_textdomain(
		// 	'bunyad',
		// 	false,
		// 	basename($this->path) . '/languages'
		// );

		/**
		 * Old version migration.
		 */
		// DEBUG: update_option('smartmag_convert_from_v3', 1);
		if (is_admin() && get_option('smartmag_convert_from_v3')) {
			new SmartMag\ConvertV5\ConvertV5;
		}
	}

	/**
	 * Register our custom metaboxes. Should run admin side only via admin_init.
	 * 
	 * Note: You may use filter bunyad_meta_boxes from lib/meta-boxes.php file to modify or extend these
	 * in a Child Theme or plugin.
	 * 
	 * Example, to enable post options metabox on CPT my-cpt:
	 * 
	 *     add_filter('bunyad_meta_boxes', function($meta) {
	 *         array_push($meta['post-options']['page'], 'my-cpt');
	 *         return $meta;
	 *     });
	 */
	public function register_metaboxes()
	{
		// Set active metaboxes
		$meta_boxes = (array) Bunyad::options()->get_config('meta_boxes');
		$meta_boxes = array_merge($meta_boxes, [
			// Enabled metaboxes and prefs - id is prefixed with _bunyad_ in init() method of lib/admin/meta-boxes.php
			'post-options' => [
				'id'       => 'post-options', 
				'title'    => esc_html_x('Post Options', 'Admin: Meta', 'bunyad-admin'), 
				'priority' => 'high', 
				'page'     => ['post'],
				'form'     => $this->path . 'metaboxes/post-options.php',
				'options'  => $this->path . 'metaboxes/options/post.php',
			],

			'page-options' => [
				'id'       => 'page-options', 
				'title'    => esc_html_x('Page Options', 'Admin: Meta', 'bunyad-admin'),
				'priority' => 'high', 
				'page'     => ['page'],
				'form'     => $this->path . 'metaboxes/page-options.php',
				'options'  => $this->path . 'metaboxes/options/page.php',
			],
		]);
		
		Bunyad::options()->set_config('meta_boxes', $meta_boxes);

		Bunyad::load_file('admin/meta-base');
		Bunyad::factory('admin/meta-boxes');

		/**
		 * Setup term meta custom fields.
		 */
		$meta = Bunyad::factory('admin/meta-terms', true);
		$meta->taxonomy     = 'category';
		$meta->options_file = $this->path . 'metaboxes/terms/category-options.php';
		$meta->form_file    = $this->path . 'metaboxes/terms/category-form.php';
		
		$meta->init();
	}

	/**
	 * Register assets for admin context only.
	 */
	public function admin_assets($hook)
	{
		wp_enqueue_style(
			'smartmag-admin', 
			$this->path_url . 'css/admin/common.css', 
			[], 
			self::VERSION
		);
		
		wp_register_script(
			'bunyad-lib-options', 
			$this->path_url . 'lib/js/admin/options.js',
			['jquery'],
			self::VERSION
		);

		// We need this globally as widgets may be used on widget screen, customizer, or 
		// in a pagebuilder like Elementor.
		wp_enqueue_script(
			'bunyad-widgets', 
			$this->path_url . 'js/widgets.js',
			['jquery', 'wp-api-request'],
			self::VERSION
		);

		// Enqueue selectize only when theme is active.
		if (Bunyad::get('theme')) {
			wp_enqueue_script(
				'bunyad-customize-selectbox', 
				get_template_directory_uri() . '/inc/core/assets/js/selectize.js',
				['jquery'],
				Bunyad::options()->get_config('theme_version')
			);

			wp_enqueue_style(
				'bunyad-customize-selectbox', 
				get_template_directory_uri() . '/inc/core/assets/css/selectize.css', 
				[], 
				Bunyad::options()->get_config('theme_version')
			);
		}
	}

	/**
	 * Setup Widgets
	 */
	public function setup_widgets()
	{
		/** @var \Bunyad_Widgets $widgets  */
		$widgets = Bunyad::get('widgets');

		if (!is_object($widgets)) {
			return;
		}

		// Configure the object.
		$widgets->path   = $this->path;
		$widgets->prefix = 'SmartMag_Widgets_';
		$widgets->active = [
			'about',
			'tabbed-recent',
			'tabber',
			'social-follow',
			'bbp-login',
			'latest-reviews',
			'flickr'
		];

		// Only add these for legacy.
		if (Bunyad::options()->legacy_mode) {
			$widgets->active = array_merge($widgets->active, [
				'blocks',
				'ads',
				'latest-posts',
				'popular-posts',
			]);
		}

		/**
		 * Block Widgets.
		 */
		add_action('widgets_init', function() {
			// Load the class map to prevent unnecessary autoload to save resources.
			include_once \SmartMag_Core::instance()->path . 'inc/widgets/classmap-widgets.php';

			// Block widgets to load.
			$blocks = [
				'Loops\Grid', 
				'Loops\Overlay', 
				'Loops\PostsSmall', 
				'Loops\Highlights', 
				'Newsletter',
				'Codes'
			];
			
			foreach ($blocks as $block) {	
				$class = 'Bunyad\Widgets\\' . $block . '_Block';
				register_widget($class);
			}
		});
	}

	/**
	 * Setup blocks and their shortcodes.
	 */
	public function setup_blocks()
	{
		require_once $this->path . 'inc/shortcodes.php';
		
		/**
		 * Register all the blocks
		 */
		$blocks = [
			'ts_loop_feat_grid'   => 'Loops\FeatGrid', 
			'ts_loop_grid'        => 'Loops\Grid', 
			'ts_loop_large'       => 'Loops\Large', 
			'ts_loop_overlay'     => 'Loops\Overlay', 
			'ts_loop_posts_list'  => 'Loops\PostsList', 
			'ts_loop_posts_small' => 'Loops\PostsSmall',
			'ts_loop_news_focus'  => 'Loops\NewsFocus', 
			'ts_loop_focus_grid'  => 'Loops\FocusGrid', 
			'ts_loop_highlights'  => 'Loops\Highlights', 
			'ts_block_newsletter' => 'Newsletter',
			'ts_block_heading'    => 'Heading',
			'ts_breadcrumbs'      => 'Breadcrumbs',
			'ts_social_icons'     => 'SocialIcons',

			// Blocks without shortcodes.
			1  => 'Codes',
		];

		// Register with elementor.
		add_filter('bunyad_elementor_widgets', function($value) use ($blocks) {
			return array_merge((array) $value, $blocks);
		});

		// Register shortcodes.
		foreach ($blocks as $id => $block) {

			if (!is_string($id)) {
				continue;
			}

			Bunyad::get('shortcodes')->add([
				$id => [
					'render'       => 'block',
					'block_class'  => $block
				]
			]);
		}

		//
		// Some necessary legacy shortcodes.
		//
		if (Bunyad::options()->legacy_mode) {
			Bunyad::get('shortcodes')->add([
				'latest_gallery' => [
					'render'      => 'block',
					'map_attribs' => [
						'number'  => 'posts',
						'format'  => 'post_formats',
						'tax_tag' => 'tags',
						'title'   => 'heading',
					],
					'alias'   => 'ts_loop_grid',
					'attribs' => [
						'post_formats'       => 'gallery',
						// Intentionally '0' as false could default to ''.
						'cat_labels'         => '0',
						'posts'              => 5, 
						'title'              => '', 
						'cat'                => '',
						'type'               => '', 
						'tax_tag'            => '', 
						'offset'             => '', 
						'post_type'          => '',
						'show_content'       => false,
						'excerpts'           => false,
						'meta_items_default' => false,
						'carousel'           => true,
						'show_post_formats'  => false,
						'carousel_slides'    => 1,
						'carousel_dots'      => false,
						'meta_below'         => [],
						'meta_above'         => [],
					]
				]
			]);
		}

		/**
		 * Other shortcodes.
		 */
		Bunyad::get('shortcodes')->add([
			'main-color' => [
				'render' => function($atts) {
					return '<span class="main-color">'. esc_html($atts['text']) .'</span>';
				},
				'attribs' => ['text' => '']
			],
		]);
	}

	/**
	 * Filter callback: Custom menu fields.
	 *
	 * Required for both back-end and front-end.
	 *
	 * @see Bunyad_Menus::init()
	 */
	public function custom_menu_fields($fields)
	{
		$fields = [
			'mega_menu' => [
				'label'   => esc_html__('Mega Menu', 'bunyad-admin'),
				'element' => [
					'type'    => 'select',
					'class'   => 'widefat',
					'options' => [
						0              => esc_html__('Disabled', 'bunyad-admin'),
						'category-a'   => esc_html__('Category Modern', 'bunyad-admin'),
						'category'     => esc_html__('Category Legacy: (Subcats, Featured & Recent)', 'bunyad-admin'),
						'normal'       => esc_html__('Mega Menu for Links', 'bunyad-admin')
					]
				],
				'parent_only' => true,
			]
		];
	
		return $fields;
	}

	/**
	 * Filter callback: Add theme-specific profile fields
	 */
	public function add_profile_fields($fields)
	{
		$fields = array_merge((array) $fields, [
			'bunyad_facebook'  => esc_html__('Facebook URL', 'bunyad-admin'),	
			'bunyad_twitter'   => esc_html__('X (Twitter) URL', 'bunyad-admin'),
			'bunyad_instagram' => esc_html__('Instagram URL', 'bunyad-admin'),
			'bunyad_pinterest' => esc_html__('Pinterest URL', 'bunyad-admin'),
			'bunyad_bloglovin' => esc_html__('BlogLovin URL', 'bunyad-admin'),
			'bunyad_dribble'   => esc_html__('Dribble URL', 'bunyad-admin'),
			'bunyad_linkedin'  => esc_html__('LinkedIn URL', 'bunyad-admin'),
			'bunyad_tumblr'    => esc_html__('Tumblr URL', 'bunyad-admin'),
		]);
		
		return $fields;
	}

	/**
	 * Singleton instance
	 * 
	 * @return SmartMag_Core
	 */
	public static function instance() 
	{
		if (!isset(self::$instance)) {
			self::$instance = new self;
		}
		
		return self::$instance;
	}
}

/**
 * Add notice and bail if there's an incompatible plugin active.
 * 
 * Note: Needed for outdated libs in ContentBerg Core. Not required for others, but 
 * good practice to keep them out for conflicting features.
 */
add_action('after_setup_theme', function() {
	$core_plugins = [
		'contentberg-core' => 'ContentBerg_Core',
		'cheerup-core'     => 'CheerUp_Core',
		'bunyad-widgets'   => 'Bunyad_Widgets',
	];

	$conflict = false;
	foreach ($core_plugins as $plugin => $class) {	

		// Check but don't auto-load this class.
		if (class_exists($class, false)) {
		
			add_action('admin_notices', function() use ($plugin) {

				// Path to plugin/plugin.php file.
				$plugin_file = $plugin . '/' . $plugin . '.php';

				include_once ABSPATH . 'wp-admin/includes/plugin.php';
				$plugin_full_path = WP_PLUGIN_DIR . '/' . $plugin_file;

				if (file_exists($plugin_full_path)) {
					$plugin_data = get_plugin_data($plugin_full_path);
				}
				else {
					$plugin_data = ['Name' => $plugin];
				}

				$message = sprintf(
					'Plugin %1$s is incompatible with current theme\'s Core Plugin. Please deactivate.',
					'<strong>' . esc_html($plugin_data['Name']) . '</strong>'
				);

				printf(
					'<div class="notice notice-error"><h3>Important:</h3><p>%1$s</p></div>',
					wp_kses_post($message)
				);
			});

			$conflict = true;
		}
	}

	if ($conflict) {
		return;
	}

	/**
	 * Initialize the plugin at correct hook.
	 */
	$smartmag = SmartMag_Core::instance();
	add_action('after_setup_theme', [$smartmag, 'init']);

}, 1);
PK03Y@ً3smartmag-core/blocks/ajax.php<?php
namespace Bunyad\Blocks;
use Bunyad;

/**
 * Helper methods for Blocks & Listing Archives
 */
class Ajax 
{
	public function init()
	{
		add_action('wp_ajax_nopriv_bunyad_block', [$this, 'render_block']);
		add_action('wp_ajax_bunyad_block', [$this, 'render_block']);
	}

	/**
	 * Callback: AJAX request, render block.
	 *
	 * @return void
	 */
	public function render_block()
	{
		if (!isset($_REQUEST['block'])) {
			wp_die('0');
		}

		$block = $_REQUEST['block'];

		if (!isset($block['props']) || !isset($block['id'])) {
			wp_die('0');
		}

		$block_class = str_replace(
			'Bunyad\Blocks\\', 
			'', 
			Bunyad::file_to_class_name($block['id'])
		);

		$block['props'] = (array) $block['props'];
		$query_type = $block['props']['query_type'] ?? '';

		// Can't support main query here, for obvious reasons.
		if (!in_array($query_type, ['section', 'custom'])) {
			$block['props']['query_type'] = 'custom';
		}

		if ($query_type === 'section' && empty($block['props']['section_query'])) {
			$block['props']['query_type'] = 'custom';
		}

		// Set a max posts per page limit to prevent DOS.
		if (isset($block['props']['posts'])) {
			$block['props']['posts'] = min(intval($block['props']['posts']), 100);
		}
		
		$block['props'] = $this->process_booleans($block['props']);

		/** @var \Bunyad\Blocks\Base\LoopBlock $block */
		$block = Bunyad::blocks()->load(
			'Loops\\' . $block_class,
			$block['props']
		);

		$block->render();
		wp_die();
	}

	/**
	 * Convert string true/false to boolean values.
	 *
	 * @param array $props
	 * @return array
	 */
	protected function process_booleans($props) 
	{
		foreach ($props as $prop => $value) {
			if ($value === "true" || $value === "false") {
				$props[$prop] = \filter_var($value, FILTER_VALIDATE_BOOLEAN);
			}
		}

		return $props;
	}
}
PK03Y�F@�� smartmag-core/blocks/helpers.php<?php

namespace Bunyad\Blocks;
use Bunyad;

/**
 * Helper methods for Blocks & Listing Archives
 */
class Helpers 
{
	/**
	 * @var \Bunyad\Blocks\Ajax
	 */
	public $ajax;

	public function __construct()
	{
		$this->ajax = new Ajax;
		$this->ajax->init();
	}
	
	/**
	 * Load a block 
	 * 
	 * Usage: 
	 *  load('Loops\Grid');
	 * 
	 * @param string $block  Block identifier
	 * @param array  $atts   Attributes for the block
	 * 
	 * @return Base\LoopBlock|bool
	 */
	public function load($block, $atts = [])
	{
		/**
		 * Locate and initialize the loop post.
		 */
		$class = '\\' . __NAMESPACE__ . '\\' . $block;

		// Fallback to base if not present, for Loops.
		if (!class_exists($class)) {
			if (!strstr($block, 'Loops')) {
				return false;
			}

			$class = __NAMESPACE__ . '\\' . 'Base\LoopBlock';
		}

		/** @var Base\LoopBlock $obj */
		$obj = new $class($atts);

		if (!$obj->id) {
			$obj->set_id($block);
		}

		return $obj;
	}

	/**
	 * Load legacy loops - for archives, cats, tags etc.
	 * 
	 * @return Base\LoopBlock
	 */
	public function load_loop($loop, $props = array()) 
	{
		// Some sane defaults for general loops.
		$props = array_replace([
			'pagination'      => true,
			'pagination_type' => Bunyad::options()->pagination_type,
			'space_below'     => 'none',
		], $props);

		// Set column for ids like loop-3
		if (preg_match('/([a-z\-]+)\-(\d)$/i', $loop, $match)) {
			$loop             = $match[1];
			$props['columns'] = $match[2];
		}

		// @deprecated Old key maps, just in case.
		$map = array(
			'loop'       => 'grid',
			'loop-alt'   => 'posts-list',
			
			// Still needed.
			'classic'    => 'large',
		);

		// Classic requires large_style
		if ($loop === 'classic') {
			$props['large_style'] = 'legacy';
		}

		$id = (array_key_exists($loop, $map) ? $map[$loop] : $loop);
		$id = 'Loops\\' . Bunyad::file_to_class_name($id);

		$block = $this->load($id, $props);

		return $block;
	}

	/**
	 * Load a loop post class
	 * 
	 * Example: Load the loop class from inc/loop-posts/grid.php if it exists 
	 * or fallback to inc/loop-posts/post.php
	 * 
	 * @param string $id     Loop post id
	 * @param array  $props  Props to set for loop post
	 *
	 * @return LoopPosts\BasePost
	 */
	public function load_post($id, $props = array()) 
	{
		/**
		 * Locate and initialize the loop post
		 */
		$class = __NAMESPACE__ . '\LoopPosts\\' . Bunyad::file_to_class_name($id) . 'Post';

		// Fallback to base if not present
		if (!class_exists($class)) {
			$class = __NAMESPACE__ . '\LoopPosts\BasePost';
		}

		/** @var LoopPosts\BasePost $obj */
		$obj = new $class($props);

		return $obj;
	}
		
	/**
	 * Get HTML for category label with link. 
	 * 
	 * Checks global and local settings before generating the output.
	 *
	 * @uses  Bunyad::registry()->block_atts  The current block attribs in registry
	 * @param  boolean $options 
	 * @return string|void  HTML with category label
	 */
	public function cat_label($options = [], $post_id = false)
	{
		$options = wp_parse_args($options, [
			'force_show' => false,
			'position'   => '',
			'focusable'  => false,
		]);		

		$position = $options['position'] ? 'p-' . $options['position'] : '';
		$output   = sprintf(
			'<span class="cat-labels cat-labels-overlay c-overlay %1$s">
				%2$s
			</span>
			',
			esc_attr($position),
			$this->get_categories(null, false, ['focusable' => 	$options['focusable']])
		);
		
		return apply_filters('bunyad_blocks_cat_label', $output);
	}

	/**
	 * Categories for meta.
	 * 
	 * @param boolean|null $all      Display primary/one category or all categories.
	 * @param boolean|int  $post_id  Post ID.
	 * @param array        $options
	 * @return string Rendered HTML.
	 */
	public function get_categories($all = null, $post_id = false, $options = [])
	{
		// Object has category taxonomy? i.e., is it a post or a valid CPT?
		if (!is_object_in_taxonomy(get_post_type($post_id), 'category')) {
			return;
		}

		$options = array_replace([
			// For accessibility, whether to make it focusable or not.
			'focusable' => true
		], $options);

		$categories = apply_filters('the_category_list', get_the_category($post_id), $post_id);
		$output     = [];

		// Not showing all categories.
		if (!$all) {
			$category = $this->get_primary_cat();

			$categories = [];
			if (is_object($category)) { 
				$categories[] = $category;
			}
		}
		
		foreach ($categories as $category) {

			$classes = ['category'];
			if (Bunyad::options()->cat_labels_use_colors) {
				$classes[] = 'term-color-' . $category->term_id;
			}

			$output[] = sprintf(
				'<a href="%1$s" class="%2$s" rel="category"' . (!$options['focusable'] ? ' tabindex="-1"' : '') . '>%3$s</a>',
				esc_url(get_category_link($category)),
				esc_attr(join(' ', $classes)),
				esc_html($category->name)
			);
		}

		return join(' ', $output);
	}

	/**
	 * Get primary category for a post.
	 *
	 * @param int $post_id
	 * @return object|WP_Error|null
	 */
	public function get_primary_cat($post_id = null)
	{
		// Object must have category taxonomy? i.e., is it a post or a valid CPT.
		if (!is_object_in_taxonomy(get_post_type($post_id), 'category')) {
			return;
		}

		// Primary category defined.
		if (($cat_label = Bunyad::posts()->meta('cat_label', $post_id))) {
			$category = get_category($cat_label);
		}

		// Fallback to using Yoast if available.
		if (empty($category) && Bunyad::options()->yoast_primary_cat && function_exists('yoast_get_primary_term_id')) {
			$id = yoast_get_primary_term_id();
			$category = $id ? get_term($id) : null;
		}
		
		// This test is needed even if a primary cat is defined to test for its
		// existence (it might be deleted etc.)
		if (empty($category)) {
			$category = current(get_the_category($post_id));
		}

		return apply_filters('bunyad_get_primary_cat', $category);
	}	

	/**
	 * Get relative width for current block, based on sidebar or data stored 
	 * in the registry.
	 * 
	 * @return float Column width in percent number, example 66.
	 */
	public function get_relative_width()
	{
		// Set current column width weight (width/100) - used to determine image sizing 
		$col_relative_width = 1;
		if (isset(Bunyad::registry()->layout['col_relative_width'])) {
			$col_relative_width = Bunyad::registry()->layout['col_relative_width'];
		}
	
		// Adjust relative width if there's a sidebar
		if (Bunyad::core()->get_sidebar() !== 'none') {
			$col_relative_width = ($col_relative_width * (8/12));
		}

		return $col_relative_width * 100;
	}
}

// init and make available in Bunyad::get('blocks')
Bunyad::register('blocks', array(
	'class' => '\Bunyad\Blocks\Helpers',
	'init' => true
));
PK03Y�%���#smartmag-core/blocks/base/block.php<?php

namespace Bunyad\Blocks\Base;

/**
 * Base Blocks Class.
 */
abstract class Block 
{
	/**
	 * @var array Properties/attributes for the block.
	 */
	public $props = [];

	/**
	 * @var array Original props, after filtering by setup_props().
	 */
	protected $orig_props = [];

	/**
	 * @var string Identifier of the block - may also be used for block view.
	 */
	public $id  = '';

	/**
	 * @param array $props
	 */
	public function __construct($props = [])
	{
        if (!is_array($props)) {
			$props = [];
		}
		
		$props = $this->setup_props($props);

		// Save originally provided props, after unknowns are removed.
		$this->orig_props = $props;

		// Override default props with processed props (by setup_props()).
		$this->props = array_replace(
			$this->get_default_props(),
			apply_filters('bunyad_blocks_setup_props', $props, $this->id)
		);

		$this->init();
	}

	public function init() {}

	/**
	 * Get default props for this block.
	 *
	 * @return array
	 */
	abstract public static function get_default_props();

	/**
	 * Render and print the output, such as HTML.
	 */
	abstract public function render();

	/**
	 * Setup / process props before overriding the defaults with provided.
	 * 
	 * By default, removes:
	 * 
	 * 1. Unrecognized props (not in defaults array).
	 * 2. When the value is _default (forces to use default prop).
	 * 3. Props with same value as default.
	 * 
	 * To be used to extend properties for this block based on provided props, or when
	 * some computation is needed that's not available to the method get_default_props().
	 *
	 * @param array $props
	 * @return array
	 */
	public function setup_props(array $props) 
	{
		$defaults = $this->get_default_props();
		foreach ($props as $key => $value) {

			// Remove if unrecognized prop or has _default value.
            if (!array_key_exists($key, $defaults) || $value === '_default') {
				unset($props[$key]);
				continue;
			}

			/**
			 * If the default prop value is an array, the expected value is an array, so 
			 * strings should be split by comma separation.
			 */
			if (is_array($defaults[$key])) {
				
				$orig_is_array = true;

				// If it's an alias, check if the original is an array.
				if (array_key_exists('alias', $defaults[$key])) {
					$ref = $defaults[$key]['alias'];

					if (!is_array($defaults[$ref])) {
						$orig_is_array = false;
					}
				}
				
				// Nothing to do anymore.
				if (!$orig_is_array) {
					continue;
				}

				// Not empty string but an array is expected.
				if ($value && is_string($value)) {
					$value = array_map(
						'trim',
						explode(',', $value)
					);
				}

				// An array is expected for this key, cast it if not empty.
				$props[$key] = $value ? (array) $value : [];
			}
		}

		/**
		 * Removes defaults for external non-programmatic calls. For internal calls, we generally 
		 * wish to use exactly what is specified in props. Otherwise, default props will be 
		 * removed and set to global props via map_global_props().
		 */
		if (!empty($props['is_sc_call'])) {
			$props = $this->remove_defaults($props, $defaults);
		}

		// ThemeSphere theme active, add in the defaults.
		if (class_exists('\Bunyad', false) && \Bunyad::get('theme')) {
			$props = $this->map_global_props($props);
		}

		return $props;
	}

	/**
	 * Remove props with same value as default. 
	 * 
	 * Can help if correct global/default value is not set. Also required so global default 
	 * options can be added via self::map_global_props().
	 *
	 * @param array $props
	 * @param array $defaults
	 * @return array
	 */
	protected function remove_defaults(array $props, $defaults = [])
	{
		foreach ($props as $key => $value) {
			
			/**
			 * We don't do strict matching in all cases for removal. Based on default prop type:
			 * 
			 * - Strict comparison for null type.
			 * - Following are considered equal:
			 * 
			 *  0     == ''
			 *  false == '0'
			 *  false == ''
			 *  true  == '1'
			 *  true  == 1
			 *  10    == '10'
			 *  []    == ''
			 * 
			 * - Loose comparison done for boolean, integer, float (double).
			 * - Strict comparison with cast for string type.
			 * - Arrays strict comparison to allow all order sort, with cast.
			 */
			$remove  = false;
			$default = $defaults[$key];
			
			switch (gettype($default)) {

				case 'boolean':
				case 'integer':
				case 'double':
					$remove = $default == $value;
					break;

				case 'string':
					if (!is_array($value)) {
						// Everything but arrays. Good to cast to string first.
						$remove = (string) $default === (string) $value;
					}

					break;

				case 'array':
					$remove = (array) $default === (array) $value;
					break;

				default:
					$remove = $default === $value;
					break;
			}

			if ($remove) {
				unset($props[$key]);
			}
		}

		return $props;
	}

	/**
	 * Add in global props as specified. Only invoked when a ThemeSphere theme is active.
	 * 
	 * Called via setup_props() method after removing default props. Only overrides are 
	 * preserved.
	 * 
	 * Proper Usage:
	 *  1. Defaults/global options should be overridden by provided props.
	 *  <code>return array_replace($global_options, $props);</code>
	 *
	 * @param array $props Props after processed by self::setup_props().
	 * @return array
	 */
	public function map_global_props($props)
	{
		return $props;
	}

	/**
	 * Get all the props.
	 *
	 * @return array
	 */
	public function get_props()
	{
		return $this->props;
	}

	/**
	 * Magic method for print / echo.
	 */
	public function __toString() 
	{
		ob_start();
		$this->render();
		
		return ob_get_clean();
	}

}PK03Y�kL;;,smartmag-core/blocks/base/carousel-trait.php<?php

namespace Bunyad\Blocks\Base;

/**
 * Share methods for implementing carousel support in a loop block.
 */
trait CarouselTrait 
{
	/**
	 * Gets the carousel related props.
	 *
	 * @return array
	 */
	public static function get_carousel_props()
	{
		return [
			'carousel'            => false,
			'carousel_slides'     => '',
			'carousel_slides_md'  => '',
			'carousel_slides_sm'  => '',
			'carousel_dots'       => true,
			'carousel_arrows'     => 'b',
			'carousel_autoplay'   => false,
			'carousel_play_speed' => '',
		];
	}

	/**
	 * Setup carousel for this block, if supported.
	 */
	protected function setup_carousel()
	{
		if (!$this->props['carousel']) {
			return;
		}

		// Enqueue slick slider.
		if (wp_script_is('smartmag-slick', 'registered')) {
			wp_enqueue_script('smartmag-slick');
		}

		// Pagination is not available for carousels.
		if ($this->props['pagination']) {
			$this->props['pagination'] = 0;
		}

		$this->props['slide_attrs'] = isset($this->props['slide_attrs']) ? $this->props['slide_attrs'] : [];

		$this->props['slide_attrs'] = array_replace($this->props['slide_attrs'], [
			'data-slider'     => 'carousel',
			'data-autoplay'   => $this->props['carousel_autoplay'],
			'data-speed'      => $this->props['carousel_play_speed'],
			'data-slides'     => (
				$this->props['carousel_slides'] 
					? $this->props['carousel_slides'] 
					: $this->props['columns']
			),
			'data-slides-md' => $this->props['carousel_slides_md'],
			'data-slides-sm' => $this->props['carousel_slides_sm'],
			'data-arrows'    => $this->props['carousel_arrows'],
			'data-dots'      => $this->props['carousel_dots'],
		]);

		// Add the classes.
		$this->props['class'] = array_merge(
			$this->props['class'],
			[
				'common-slider loop-carousel',
				$this->props['carousel_arrows'] ? 'arrow-hover' : '',
				$this->props['carousel_arrows'] ? 'slider-arrow-' . $this->props['carousel_arrows'] : ''
			]
		);

		// Add slide attrs to wrap attrs if it exists.
		$this->props['wrap_attrs'] = array_replace(
			$this->props['wrap_attrs'], 
			$this->props['slide_attrs']
		);
	}
}PK03Y�
-Ȇj�j(smartmag-core/blocks/base/loop-block.php<?php

namespace Bunyad\Blocks\Base;

use \Bunyad;
use \WP_Query;

/**
 * Base Blocks Class for Loops type blocks - should be extended for other blocks
 * 
 * Note: This is not an abstract class and may be used standalone. More of template method.
 */
class LoopBlock extends Block
{
	/**
	 * @var string Block type
	 */
	public $type = 'loop';

	/**
	 * @var boolean Is the block processed yet
	 */
	public $processed = false;

	/**
	 * @var array Internal data, extended by data retrieved from Query::setup()
	 */
	public $data = [
		'unique_id' => null
	];

	/**
	 * @var \WP_Query
	 */
	public $query;

	/**
	 * @var string ID for the view file. Defaults to $this->id.
	 */
	public $view_id;

	/**
	 * @var integer Number of posts rendered so far.
	 */
	protected $rendered_posts = 0;

	/**
	 * @param array $props
	 */
	public function __construct($props = [])
	{
		parent::__construct($props);
		
		// Resolve aliases
		$this->props = $this->resolve_aliases($this->props);

		// Setup enqueues if any
		add_action('wp_enqueue_scripts', [$this, 'register_assets']);
	}

	/**
	 * Get props related to query.
	 *
	 * @return array
	 */
	public static function get_query_props()
	{
		$query_props = [
			'posts'        => 4,
			'offset'       => '',

			// Sticky posts generally only enabled for home/blog archives.
			'sticky_posts' => false,

			// Internal for section queries, and passed 'query' objects.
			// Different from offset: These posts are manually skipped in the loop.
			'skip_posts'   => 0,

			// Main category
			'cat'          => '',

			// Tag slugs - separated by commas. Not in 'terms' to allow limit by tags AND cats.
			'tags'         => [],

			// Categories, or custom taxonomies' term ids, or author ids.
			'terms'         => [],
			'exclude_terms' => [],

			// Limit to a specific custom taxonomy
			'taxonomy'     => '',

			// Custom taxonomy IDs to use
			'tax_ids'      => [],
			'sort_order'   => '',
			'sort_by'      => '',

			// Only for JetPack views sort.
			'sort_days'    => 30,
			'post_formats' => [],

			// Multiple supported only for legacy compat. Recommended: Single value.
			'post_type'    => '',

			// Specific post IDs
			'post_ids'     => [],

			// Skip posts by ids.
			// Special: Also supported for main query.
			'exclude_ids'  => [],

			// Exclude posts by tags, by ids or slugs.
			'exclude_tags' => [],

			'pagination'   => '',

			// Only show review posts if enabled.
			'reviews_only' => false,

			// A custom identifier for programmatically changing things.
			'query_id'     => '',

			// Exclude current post on a single post page.
			'exclude_current' => false,

			// Others that may be used:
			// 'page' => 0
		];

		return $query_props;
	}

	/**
	 * Default properties for the block.
	 * 
	 * @param string $type Type of props to return.
	 * @return array
	 */
	public static function get_default_props()
	{
		// Config props (not for sc)
		$props = [

			// Expected: 
			//  null|empty: Use global $wp_query or legacy $bunyad_loop, ignores all query props
			//  'custom':   Create create based on provided props.
			//  'section':  Use section query. Data must be provided in section_query.
			'query_type'      => '',

			// Forces to use the specified query.
			'query'           => null,

			// WP_Query|array Section query data.
			'section_query'   => [],

			// Whether is it called via a shortcode / builder - adds .block-sc to wrap
			'is_sc_call'      => false,

			// Style Variation for the block.
			'style'         => '',

			// Dark or normal.
			'scheme'        => '',

			// Many blocks support columns setting.
			'columns'        => '',
			'columns_main'   => '',
			'columns_medium' => '',
			'columns_small'  => '',

			'heading'           => '',
			'heading_type'      => '',
			'heading_align'     => 'left',
			'heading_link'      => '',
			'heading_more'      => '',
			'heading_more_text' => '',
			'heading_more_link' => '',
			'heading_colors'    => '',
			'heading_tag'       => 'h4',

			// Values: category, tag, or taxonomy - if empty, defaults to category 
			'filters'       => false,
			'filters_terms' => [],
			'filters_tags'  => [],

			// When using custom taxonomy
			'filters_tax'   => '',

			// Current filter to apply.
			'filter'        => '',

			// Loop specific props
			'excerpts'           => true,
			'excerpt_length'     => 0,
			'excerpt_lines'      => '',
			'cat_labels'         => '',
			'cat_labels_pos'     => '',
			'read_more'          => '',
			'reviews'            => '',
			'show_post_formats'  => true,
			'post_formats_pos'   => '',
			'show_content'       => true,
			'content_center'     => false,

			// When empty, automatically inferred based on columns.
			'show_media'         => true,
			'force_image'        => '',
			'media_ratio'        => '',
			'media_ratio_custom' => '',

			// Only for some blocks: list, small.
			'media_width'        => '',
			'media_style_shadow' => '',

			// Define a parent container to get relative width from.
			'container_width' => '',

			'separators'      => false,
			'separators_cols' => false,

			// Margin below block
			'space_below'     => '',
			'column_gap'      => '',

			'meta_items_default' => true,
			'meta_above'         => [],
			'meta_below'         => [],

			// Do not change default of empty string value for loop options field to work.
			'meta_sponsor_items_default' => true,
			'meta_sponsor'       => '',
			'meta_sponsor_label' => '',
			'meta_sponsor_logo'  => '',
			'meta_sponsor_info'  => '',
			'meta_sponsor_above' => [],
			'meta_sponsor_below' => [],

			'show_title'         => true,
			'title_tag'          => 'h2',
			'title_lines'        => '',

			// These meta items should not get a default value as global settings are important.
			'meta_align'         => '',
			'meta_cat_style'     => 'text',
			'meta_author_img'    => false,

			// Pagination settings.
			'pagination_type'   => 'numbers-ajax',
			'load_more_style'   => '',
			'pagination_links'  => true,
			
			// Pagination may be enabled, but may not be always rendered, such as for multi-blocks.
			'pagination_render' => true,

			// Number of posts to skip lazyload image for.
			'skip_lazy_number'  => 0,

			// Only when query_type is related.
			'query_yarpp' => false,

			// Legacy Aliases (DEPRECATED)
			'link'         => ['alias' => 'heading_link'],
			'post_format'  => ['alias' => 'post_formats'],
			'title'        => ['alias' => 'heading'],
			'cats'         => ['alias' => 'terms'],
		];

		$props = $props + static::get_query_props();

		return $props;
	}

	/**
	 * Add in some values from global options.
	 */
	public function map_global_props($props)
	{
		$global = [
			'cat_labels'         => Bunyad::options()->get('cat_labels'),
			'cat_labels_pos'     => Bunyad::options()->get('cat_labels_pos'),
			'reviews'            => Bunyad::options()->get('loops_reviews'),
			'post_formats_pos'   => Bunyad::options()->get('post_formats_pos'),
			'load_more_style'    => Bunyad::options()->get('load_more_style'),
			'meta_cat_style'     => Bunyad::options()->get('post_meta_cat_style'),
			'media_style_shadow' => Bunyad::options()->get('loops_media_style_shadow'),
			'meta_sponsor'       => Bunyad::options()->get('post_meta_sponsor'),
			'meta_sponsor_logo'  => Bunyad::options()->get('post_meta_sponsor_logo'),
			'meta_sponsor_label' => Bunyad::options()->get('post_meta_sponsor_label'),
		];

		// Only set this default for listings/internal calls. Blocks/SC do not use the global
		// setting for these.
		if (empty($props['is_sc_call'])) {
			$global += [
				'show_post_formats' => Bunyad::options()->get('post_format_icons'),
			];
		}

		// Setting it as it will be frequently used by inheritance too.
		$props['meta_items_default'] = !isset($props['meta_items_default']) || $props['meta_items_default'];

		// If not known or explicitly set to default, global meta should be used.
		if ($props['meta_items_default']) {
			$global += [
				'meta_above'  => Bunyad::options()->get('post_meta_above'),
				'meta_below'  => Bunyad::options()->get('post_meta_below'),
			];
		}

		// Setting it as it will be frequently used by inheritance too.
		$props['meta_sponsor_items_default'] = !isset($props['meta_sponsor_items_default']) || $props['meta_sponsor_items_default'];

		// If not known or explicitly set to default, global meta should be used.
		if ($props['meta_sponsor_items_default']) {
			$global += [
				'meta_sponsor_above'  => Bunyad::options()->get('post_meta_sponsor_above'),
				'meta_sponsor_below'  => Bunyad::options()->get('post_meta_sponsor_below'),
			];
		}

		return array_replace($global, $props);
	}

	/**
	 * @inheritDoc 
	 */
	public function init()
	{
		// Setup internal props. These are not set from external call.
		$this->props += [
			'image'        => '',
			'image_props'  => [],
			'class_grid'   => ['grid'],

			// Not all support it yet.
			'class'        => [],

			// Loop wrapper div attributes. Some loops use it, not all.
			'wrap_attrs'   => [],
		];
	}

	/**
	 * @inheritDoc
	 */
	public function setup_props(array $props) 
	{
		$props = parent::setup_props($props);

		if (isset($props['columns_main'])) {
			$props['columns'] = $props['columns_main'];
		}

		// Clean up section_query props by only using valid.
		if (isset($props['section_query'])) {

			$props['section_query_type'] = isset($props['section_query']['query_type']) ? $props['section_query']['query_type'] : '';
			$props['section_query'] = array_intersect_key(
				$props['section_query'],
				$this->get_query_props()
			);
		}
		else if (isset($props['query_type']) && $props['query_type'] === 'section') {
			// section_query doesn't exist, so remove it.
			$props['query_type'] = 'custom';
		}

		return $props;
	}

	/**
	 * Set the block identifier
	 * 
	 * @return $this
	 */
	public function set_id($id) 
	{
		$this->id = $id;
		return $this;
	}

	/**
	 * Set a single property - sets on $this->props[] array
	 * 
	 * @return $this
	 */
	public function set($key, $value) 
	{
		$this->props[$key] = $value;
		return $this;
	}

	/**
	 * Get all props.
	 * 
	 * @see $this::get_default_props()
	 * @return array
	 */
	public function get_props($original = false)
	{
		if ($original) {
			return $this->orig_props;
		}

		return $this->props;
	}

	/**
	 * Setup aliases for provided props.
	 */
	public function resolve_aliases($props)
	{
		$default = $this->get_default_props();

		foreach ($default as $key => $prop) {

			// Is not an alias? Skip
			if (!is_array($prop) OR !array_key_exists('alias', $prop)) {
				continue;
			}
			
			// Alias used here
			if (array_key_exists($key, $props)) {

				// A stray config prop, remove it
				if (!empty($props[$key]['alias'])) {

					unset($props[$key]);
					continue;
				}

				// Example: 'terms' set from $props['cats']
				$props[ $prop['alias'] ] = $props[$key];
			}
		}

		return $props;
	}

	/**
	 * Any assets to register for this block.
	 */
	public function register_assets() {}

	/**
	 * Process and setup query.
	 * 
	 * @uses \Bunyad\Blocks\Base\Query
	 */
	public function process()
	{
		$this->create_unique_id();

		// Currently applying a filter. Query type can only be custom.
		if ($this->props['filter']) {
			$this->props = array_replace($this->props, [
				'query'      => '',
				'query_type' => 'custom'
			]);
		}

		/**
		 * Determine current page based on main query or provided paged param in AJAX.
		 * Only done if pagination is enabled.
		 */
		if ($this->props['pagination']) {
			$page = (get_query_var('paged') ? get_query_var('paged') : get_query_var('page'));
			if (empty($page) && isset($_REQUEST['paged'])) {
				$this->props['page'] = intval($_REQUEST['paged']);
			}
			else {
				$this->props['page'] = intval($page);
			}
		}

		/**
		 * Query type: Global or a custom defined.
		 */
		// Section query may be using main query, instead of a custom one.
		if ($this->props['query_type'] === 'section' && $this->props['section_query_type'] === 'main-custom') {
			$this->props['query_type'] = 'main-custom';
			$this->props = array_replace(
				$this->props,
				(array) $this->props['section_query']
			);
		}

		// This query type re-executes main query, with support for some extra query props.
		if ($this->props['query_type'] === 'main-custom') {
			// Remove unsupported.
			$this->props = array_diff_key(
				$this->props, 
				array_flip([
					'cat',
					'terms',
					'taxonomy',
					'tax_ids',
					'post_type',
					'exclude_terms',
					'exclude_ids',
					'exclude_current',
					'exclude_tags',
				])
			);

			$this->props['query'] = $GLOBALS['wp_query'];
		}

		// Global query for 'main' or if no query_type is defined.
		if (
			$this->props['query_type'] === 'main'
			|| (!$this->props['query_type'] && !$this->props['query'])
		) {
			$this->props['query'] = !empty($GLOBALS['bunyad_loop']) ? $GLOBALS['bunyad_loop'] : $GLOBALS['wp_query'];
		}

		/**
		 * Use a pre-defined query. May also be the main query (defined above).
		 * 
		 * Note: This is different from an undefined 'query', which fallbacks to global (core archives).
		 * 
		 * @todo refactor to MainQuery.
		 */
		if ($this->props['query'] instanceof WP_Query) {

			// Clone to prevent modification on original query object.
			// As it may be re-used again, modifications such as post_count below would
			// affect the object passed by ref.
			$this->query = clone $this->props['query'];

			/** @var WP_Query $query */
			$query = $this->query;
			$new_args = [];
			
			/**
			 * For Main custom query, we'll add or replace query_vars based on provided props
			 * and re-execute the current main wp_query.
			 */
			if ($this->props['query_type'] === 'main-custom') {
				$query_process = new Query(array_replace(
					$this->props,
					[
						// Enable sticky posts unless disabled in original query.
						'sticky_posts' => empty($query->query_vars['ignore_sticky_posts']) ? true : false
					]
				));

				$new_args   = $query_process->setup_query_data();
				$this->data = array_replace($this->data, $query_process->get_data());

			} 
			/**
			 * Fallback to WordPress main/global query. Mainly for native archives.
			 */
			else if ($this->props['query']->is_main_query()) {

				// Exclude IDs can also be used on main query, ex. skip archive featured posts.
				if ($this->props['exclude_ids']) {
					$vars = &$query->query_vars;

					$new_args['post__not_in'] = array_merge(
						isset($vars['post__not_in']) ? (array) $vars['post__not_in'] : [],
						$this->props['exclude_ids']
					);
				}
			}
			/**
			 * Used for a mixed internal block, mega menu etc. Or for blocks that call 
			 * another block and use same query, like news focus and highlights.
			 * 
			 * - Change post_count to limit to post number specified.
			 */
			else {
				
				$do_skip_posts = $this->props['skip_posts'];

				// Adjust posts if number of posts specified.
				if ($this->props['posts']) {

					if ($query->post_count > $this->props['posts']) {
						$query->post_count = $this->props['posts'];
					} 
					else if ($query->post_count < $this->props['posts']) {
						$new_args['post_per_page'] = $this->props['posts'];
					}
				}
			}

			// Pagination fix for all queries.
			if (!$this->props['pagination'] && $query->get('paged') > 1) {
				$new_args['paged'] = 1;
			}

			/**
			 * Re-execute the global query with added vars, if needed. This is done for:
			 *  - 'main-custom': Always.
			 *  - Global Main query: If exclude_ids provided.
			 *  - Others: If more posts are required than in the original query, pagination fix etc.
			 */
			if (count($new_args)) {
				/**
				 * We use the same filter in Query::setup(), so to remain consistent do the same when the
				 * pre-provided query has to be re-executed.
				 * 
				 * Note: We don't always run this filter as that would cause issues with no duplicate posts
				 * feature. 
				 */
				$new_args = apply_filters(
					'bunyad_block_query_args', 
					array_replace($query->query_vars, $new_args), 
					$this
				);
				$query->query($new_args);
			}

			// Just sets the internal pointer to skip over some posts. Used internally.
			if (!empty($do_skip_posts)) {
				$query->current_post = $this->props['skip_posts'] - 1;
			}

			$this->query = $query;

			// Setup data required to match Query::setup().
			if (!$this->data) {
				$this->data = array_replace($this->data, [
					'heading'    => $this->props['heading'],
					'term_link'  => '',
					'term'       => '',
					'display_filters' => [],
				]);
			}

		} else {

			// Skip current post.
			if ($this->props['exclude_current'] && is_single()) {
				$this->props['exclude_ids'] = array_merge(
					isset($this->props['exclude_ids']) ? (array) $this->props['exclude_ids'] : [],
					[get_the_ID()]
				);
			}

			// All the other type of queries.
			switch ($this->props['query_type']) {
				case 'custom':
					// Setup the block query
					$query = new Query($this->props, $this);
					$this->data = array_merge($this->data, $query->setup());

					$this->query = $this->data['query'];
					unset($this->data['query']);

					break;
					
				case 'section':
					$query = $this->props['section_query'];

					if (!is_object($query)) {
						$query_props = array_replace(
							$this->props,
							(array) $this->props['section_query']
						);

						// Add posts limit.
						$query_props = array_replace($query_props, [
							'posts'  => $this->props['posts'],
						]);

						$query = new Query($query_props);
					}
					
					$this->data  = array_merge($this->data, $query->setup());
					$this->query = $this->data['query'];

					break;

				case 'related':
					// Related posts query.
					if (Bunyad::posts()) {
						$this->query = Bunyad::posts()->get_related(
							$this->props['posts'],
							null,
							[
								'custom' => true,
								'yarpp'  => $this->props['query_yarpp'],
							]
						);
						$this->data = array_merge($this->data, [
							'heading' => $this->props['heading']
						]);
					}
					break;
			}
		}

		// Flag to mark processed
		$this->processed = true;
	}

	/**
	 * Render the partial view for this loop.
	 * 
	 * @uses \Bunyad_Core::partial()
	 */
	public function render($options = array())
	{
		$options = wp_parse_args($options, array(
			'block_markup' => true
		));

		/**
		 * Run an action before rendering the loop block.
		 * 
		 * @param self $this
		 */
		do_action('bunyad_blocks_loop_render', $this);

		$this->_pre_render();
		$this->setup_media_ratio();
		$this->infer_image_sizes();

		/**
		 * Filter block image before.
		 * 
		 * @param string $image Current image.
		 * @param string $id    Block id.
		 */
		$this->props['image'] = apply_filters('bunyad_blocks_loop_image', $this->props['image'], $this->id);

		if (!$this->processed) {
			$this->process();
		}

		// Odd case.
		if (!$this->query) {
			return;
		}

		// Render with or without block markup
		($options['block_markup'] ? $this->render_block_markup() : $this->render_view());

		// Restore post data as views will override it.
		wp_reset_postdata();

		/**
		 * Run an action after rendering the loop block.
		 * 
		 * @param self $this
		 */
		do_action('bunyad_blocks_loop_render_after', $this);
	}

	/**
	 * Checks to perform and settings to do prior to render
	 */
	public function _pre_render() {}

	/**
	 * Render the view file for this block - usually a loop
	 */
	public function render_view()
	{
		$view_id = $this->view_id ? $this->view_id : $this->id;

		Bunyad::core()->partial(
			'blocks/loops/' . $view_id . '/html/' . $view_id,
			[
				'block' => $this,
				'query' => $this->query
			]
		);
	}

	/**
	 * Get block attributes for rendering the block markup.
	 * 
	 * @return array
	 */
	public function get_block_wrap_attribs()
	{
		$classes = [
			'block-wrap', 
			'block-' . $this->id, 
			$this->props['is_sc_call'] ? 'block-sc' : '',

			// Preset column gaps.
			$this->props['column_gap'] ? 'cols-gap-' . $this->props['column_gap'] : '',

			// Dark scheme class if active.
			$this->props['scheme'] === 'dark' ? 's-dark' : '',

			// Margins below class.
			$this->props['space_below'] ? 'mb-' . $this->props['space_below'] : '',

			// Media shadows. Note: It's best done in wrapper instead of loop div for style consistency.
			$this->props['media_style_shadow'] && $this->props['media_style_shadow'] !== 'none' ? 'has-media-shadows' : '',
		];

		$attribs = [
			'class'   => $classes, 
			'data-id' => $this->data['unique_id']
		];

		/**
		 * Add block query data for dynamic pagination or blocks with filters.
		 */
		$ajax_pagination = in_array(
			$this->props['pagination_type'], 
			['load-more', 'numbers-ajax', 'infinite']
		);
		
		if ($this->props['filters'] || ($this->props['pagination'] && $ajax_pagination)) {
			$block_data = [
				'id'    => $this->id,
				'props' => $this->orig_props,
			];

			unset($block_data['props']['section_query_type']);

			// Archive, or other main query will require extra data from the original query
			// for AJAX pagination.
			if (!in_array($this->props['query_type'], ['custom', 'section'])) {

				$term_data  = $this->query->get_queried_object();
				if (is_object($term_data)) {
					$block_data['props'] += [
						'post_type'    => $this->query->get('post_type'),
						'posts'        => $this->query->get('posts_per_page'),
						'sticky_posts' => !$this->query->get('ignore_sticky_posts'),
						'taxonomy'     => !empty($term_data->taxonomy) ? $term_data->taxonomy : '',
						'terms'        => !empty($term_data->term_id) ? $term_data->term_id : '',
					];
				}
			}
			
			$attribs['data-block'] =  json_encode($block_data);
		}

		return $attribs;
	}

	/**
	 * Output common block markup and render the specific view file.
	 * 
	 * Note: Do not call directly, use render() instead.
	 * 
	 * @uses self::render_view()
	 */
	public function render_block_markup()
	{
		?>
		<section <?php 
			Bunyad::markup()->attribs(
				$this->id .'-block', 
				$this->get_block_wrap_attribs()
			); ?>>

			<?php $this->the_heading(); ?>
	
			<div class="block-content">
				<?php $this->render_view(); ?>
			</div>

		</section>
		<?php
	}

	/**
	 * Created unique ID for the block
	 */
	protected function create_unique_id()
	{
		Bunyad::registry()->block_count++;
		$this->data['unique_id'] = Bunyad::registry()->block_count;
	}

	/**
	 * Output block heading markup
	 */
	public function the_heading()
	{
		// Custom heading HTML set progrmmatically (not via prop), use this instead.
		if (!empty($this->data['heading_custom'])) {
			echo $this->data['heading_custom']; // phpcs:ignore WordPress.Security.EscapeOutput Only settable internally programmatically. 
			return;
		}

		// This check is also performed in Heading block. Done here to save resources.
		if (empty($this->data['heading']) || $this->props['heading_type'] === 'none') {
			return;
		}

		Bunyad::blocks()->load(
			'Heading',
			[
				'heading'       => $this->data['heading'],
				'align'         => $this->props['heading_align'],
				'type'          => $this->props['heading_type'],
				'link'          => $this->props['heading_link'] ? $this->props['heading_link'] : $this->data['term_link'],
				'term'          => $this->data['term'],
				'filters'       => $this->data['display_filters'],
				'more'          => $this->props['heading_more'],
				'more_text'     => $this->props['heading_more_text'],
				'more_link'     => $this->props['heading_more_link'] ? $this->props['heading_more_link'] : $this->data['term_link'],
				'accent_colors' => $this->props['heading_colors'],
				'html_tag'      => $this->props['heading_tag'],
			]
		)
		->render();
	}

	/**
	 * Load a loop post class
	 * 
	 * Example: Load the loop class from inc/loop-posts/grid.php if it exists 
	 * or fallback to inc/loop-posts/base.php
	 * 
	 * @uses \Bunyad\Blocks\Helpers::load_post()
	 * 
	 * @param string $id     Loop post id
	 * @param array  $props  Props to set for loop post
	 *
	 * @return \Bunyad\Blocks\LoopPosts\BasePost
	 */
	public function loop_post($id, $props = array()) 
	{
		$this->rendered_posts++;

		$props = array_replace($this->get_props(), $props);
		$props['loop_number'] = $this->rendered_posts;

		// Load post
		$post = Bunyad::blocks()->load_post($id, $props);
		$post->block = $this;

		return $post;
	}

	/**
	 * Get relative width for current block, based on parent column width in 
	 * relation to the whole page.
	 * 
	 * @return float Column width in percent number, example 66
	 */
	public function get_relative_width()
	{
		// Container defined in props, force it
		if (!empty($this->props['container_width'])) {
			return floatval($this->props['container_width']);
		}

		return Bunyad::blocks()->get_relative_width();
	}

	/**
	 * Set columns size based on provided columns.
	 *
	 * @param array $args Configs for columns of devices.
	 * @return void
	 */
	protected function setup_columns($args = []) 
	{
		if (empty($this->props['columns'])) {
			$this->props['columns'] = 1;
		}

		// Add the grid columns class.
		$this->props['class_grid'][] = 'grid-' . $this->props['columns'];

		$col_types = [
			'md' => 'medium', 
			'sm' => 'small', 
			'xs' => 'xsmall'
		];

		/**
		 * Add responsive column classes based on props of type columns_medium etc.
		 * OR, override via args provided.
		 */
		foreach ($col_types as $key => $columns) {

			$cols = null;
			if (!empty($this->props[ 'columns_' . $columns ])) {
				$cols = $this->props[ 'columns_' . $columns ];
			}
			else if (!empty($args[ $columns ])) {
				$cols = $args[ $columns ];
			}

			if ($cols) {
				array_push(
					$this->props['class_grid'], 
					"{$key}:grid-{$cols}"
				);
			}
		}

		 // 1/3 * 12 to get col-4
		 $column = (1 / absint($this->props['columns']) * 12);
		 $this->props['col_class'] = 'col-' . str_replace('.', '-', $column);
	}

	/**
	 * Setup media ratio if provided.
	 */
	public function setup_media_ratio()
	{
		if (empty($this->props['media_ratio'])) {
			return;
		}

		$ratio = $this->props['media_ratio'];
		if ($ratio === 'custom' && !empty($this->props['media_ratio_custom'])) {
			$ratio = $this->props['media_ratio_custom'];
		}

		$this->props['media_ratio'] = $ratio;
	}

	/**
	 * Decide the image to use for this block
	 */
	public function infer_image_sizes()
	{
		// If an image is forced, don't bother setting it
		if (!empty($this->props['image'])) {
			return;
		}

		$this->props['image'] = 'bunyad-thumb';
	}
	

	/**
	 * Render pagination for current block
	 * 
	 * @uses \Bunyad_Core::partial()
	 * @param array $props
	 */
	public function the_pagination($props = [])
	{
		if (!$this->props['pagination'] || !$this->props['pagination_render']) {
			return;
		}

		$props = array_merge(
			[
				'query'            => $this->query,
				'page'             => $this->props['page'],
				'pagination'       => $this->props['pagination'],
				'pagination_type'  => $this->props['pagination_type'],
				'load_more_style'  => $this->props['load_more_style'],
				'pagination_links' => $this->props['pagination_links']
			],
			$props
		);

		// AJAX pagination is not possible in author and search archives, yet.
		if (is_author() || is_search()) {
			$props['pagination_type'] = 'numbers';
		}

		Bunyad::core()->partial('partials/pagination', $props);
	}

}PK03Y6|֫���*smartmag-core/blocks/base/loop-options.php<?php

namespace Bunyad\Blocks\Base;
use \Bunyad;

/**
 * Block options for page builders, widgets and so on.
 */
class LoopOptions extends Options 
{
	/**
	 * @var integer|array Number of supported columns.
	 */
	protected $supported_columns = 6;

	/**
	 * @var array Internal terms cache.
	 */
	private $terms_cache;

	// Max number of categories to be shown.
	public $limit_cats = 500;

	/**
	 * Setup options
	 * 
	 * @return $this
	 */
	public function init()
	{
		$this->get_common_data();
		$this->options = $this->get_shared_options();
		return $this;
	}

	/**
	 * Most common options usually shared by loop blocks
	 */
	public function get_shared_options()
	{
		$options = [];

		/**
		 * General Options
		 */
		$options['sec-general'] = [
			'posts' => [
				'label'     => esc_html__('Number of Posts', 'bunyad-admin'),
				'type'      => 'number',
				'condition' => ['query_type!' => 'main'],
			],

			'pagination' => [
				'label'        => esc_html__('Pagination', 'bunyad-admin'),
				'type'         => 'switcher',
				'default'      => 0,
				'return_value' => '1',
				'condition'   => ['query_type!' => 'related'],
			],

			'pagination_type' => [
				'label'       => esc_html__('Pagination Type', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'numbers-ajax' => esc_html__('Page Numbers AJAX', 'bunyad-admin'),
					'load-more'    => esc_html__('Load More Button', 'bunyad-admin'),
					'numbers'      => esc_html__('Page Numbers', 'bunyad-admin'),
					'infinite'     => esc_html__('Infinite Scroll (For Last Block Only)', 'bunyad-admin'),
				],
				'default'     => 'numbers-ajax',
				'condition'   => ['pagination' => '1'],
			],

			'pagination_links' => [
				'label'        => esc_html__('SEO: Pagination Links', 'bunyad-admin'),
				'desc'         => 'Might be desirable to disable load more pagination links for homepage blocks to prevent indexing.',
				'type'         => 'switcher',
				'default'      => '1',
				'return_value' => '1',
				'condition'   => ['pagination_type' => ['load-more', 'infinite']],
			],

			'scheme' => [
				'label'       => esc_html__('Color Scheme', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					''      => esc_html__('Default', 'bunyad-admin'),
					'dark'  => esc_html__('Contrast (For Dark Background)', 'bunyad-admin'),
				],
				'default'     => '',
			],

			'title_tag' => [
				'label'       => esc_html__('SEO: Titles Tag', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => $this->common['heading_tags'],
			],
			
		];

		/**
		 * Layout options.
		 */

		$options['sec-layout'] = [];

		if ($this->supported_columns) {
			$options['sec-layout'] = [
				'columns'     => [
					'label'       => esc_html__('Columns', 'bunyad-admin'),
					'type'        => 'select',
					'devices'     => true,
					'description' => esc_html__('Note: Make sure the container column/section is large enough for best look.', 'bunyad-admin'),
					'options'     => [$this, '_option_columns'],
				],
			];
		}

		$options['sec-layout'] += [

			'space_below' => [
				'label'       => esc_html__('Add Space Below', 'bunyad-admin'),
				'type'        => 'select',
				'description' => esc_html__('Space to add below the block. Note: Columns in Elementor also add additional space below via "Widgets Space" setting.', 'bunyad-admin'),
				'options'     => [
					''      => esc_html__('Default', 'bunyad-admin'),
					'none'  => esc_html__('None', 'bunyad-admin'),
					'sm'    => esc_html__('Small', 'bunyad-admin'),
					'md'    => esc_html__('Medium', 'bunyad-admin'),
					// 'lg'    => esc_html__('Large', 'bunyad-admin'),
				],
				'default'     => '',
				// 'label_block' => true
			],

			'cat_labels' => [
				'label'        => esc_html__('Category Label Overlay', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					''  => esc_html__('Auto/Global', 'bunyad-admin'),
					'1' => esc_html__('Enabled', 'bunyad-admin'),
					'0' => esc_html__('Disabled', 'bunyad-admin'),
				],
				'default'      => '1',
			],

			'cat_labels_pos' => [
				'label'        => esc_html__('Overlay Position', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'' => esc_html__('Auto/Global', 'bunyad-admin')
				] + $this->common['cat_labels_pos_options'],
				'default'     => '',
				'separator'   => 'after',
				'condition'    => ['cat_labels' => '1'],
			],

			'title_lines' => [
				'label'       => esc_html__('Limit Title to Lines', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => function() {
					return [
						''  => esc_html__('Default / Global', 'bunyad-admin'),
						'0' => 'No Limit',
					] + array_combine(range(1, 5), range(1, 5));
				}
			],

			'excerpts' => [
				'label'        => esc_html__('Show Excerpts', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
			],

			'excerpt_lines' => [
				'label'        => esc_html__('Excerpt Limit Lines', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => function() {
					return [
						''  => esc_html__('Default / Global', 'bunyad-admin'),
						'0' => 'No Limit',
					] + array_combine(range(1, 5), range(1, 5));
				},
				'condition'    => ['excerpts' => '1'],
			],

			'excerpt_length' => [
				'label'          => esc_html__('Excerpt Words', 'bunyad-admin'),
				'type'           => 'number',
				'condition'      => ['excerpts' => '1'],

				// We have to force excerpt length here as blocks default to empty.
				// Empty default is needed in block config to allow global prefill.
				'default'        => 15,
				'default_forced' => true,
			],

			'content_center'  => [
				'label'        => esc_html__('Content Centered', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '0',
			],
			
			'show_media' => [
				'label'        => esc_html__('Show Media/Image', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
				'separator'   => 'before'
			],

			'media_ratio' => [
				'label'        => esc_html__('Image Ratio', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => $this->common['ratio_options'],
				'default'      => '',
				'condition'    => ['show_media' => '1'],
			],

			// media_ratio_custom will be the main value. 
			// media_ratio_custom_mobile, media_ratio_custom_tablet etc. will be for devices.
			'media_ratio_custom' => [
				'label'        => esc_html__('Image Ratio', 'bunyad-admin'),
				'type'         => 'number',
				'input_attrs'  => ['min' => 0.25, 'max' => 4.5, 'step' => .1],
				'devices'      => true,
				'default'      => '',
				'selectors'    => [
					'{{WRAPPER}} .media-ratio' => 'padding-bottom: calc(100% / {{SIZE}});'
				],
				'condition'    => ['show_media' => '1', 'media_ratio' => 'custom'],
			],

			'read_more' => [
				'label'        => esc_html__('Read More', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					'' => esc_html__('Auto/Global', 'bunyad-admin'),
				] + $this->common['read_more_options'],
				'default'      => '',
			],

			'reviews' => [
				'label'        => esc_html__('Reviews', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					'' => esc_html__('Auto/Global', 'bunyad-admin')
				] + $this->common['reviews_options'],
				'default'      => '',
			],

			'show_post_formats' => [
				'label'        => esc_html__('Post Formats Icons', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
			],

			'post_formats_pos' => [
				'label'     => esc_html__('Formats Default Position', 'bunyad-admin'),
				'type'      => 'select',
				'options'   => $this->common['post_format_pos_options'],
				'condition' => ['show_post_formats' => '1']
			],

			// -- Post Meta
			'h-post-meta' => [
				'label'       => esc_html__('Post Meta', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before'
			],

			'meta_items_default' => [
				'label'        => esc_html__('Default/Global Meta Items', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
				'separator'    => 'before'
			],

			'meta_above' => [
				'label'        => esc_html__('Items Above', 'bunyad-admin'),
				'type'         => 'bunyad-selectize',
				'options'      => $this->common['meta_options'],
				'multiple'     => true,
				'label_block'  => true,
				'condition'    => ['meta_items_default!' => '1'],
			],

			'meta_below' => [
				'label'        => esc_html__('Items Below', 'bunyad-admin'),
				'type'         => 'bunyad-selectize',
				'options'      => $this->common['meta_options'],
				'multiple'     => true,
				'label_block'  => true,
				'condition'    => ['meta_items_default!' => '1'],
			],

			'meta_cat_style' => [
				'label'        => esc_html__('Category Style', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					'text'  => esc_html__('Plain Text', 'bunyad-admin'),
					'labels' => esc_html__('Label', 'bunyad-admin'),
				],
				'default'      => 'text',
			],

			'meta_author_img' => [
				'label'        => esc_html__('Author Image', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => 0,
				// 'separator'    => 'after'
			],

			'show_title' => [
				'label'        => esc_html__('Show Post Title', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
			],

			// -- Post Meta
			'h-post-meta-sp' => [
				'label'       => esc_html__('Post Meta: Sponsor', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before'
			],
			'meta_sponsor' => [
				'label'        => esc_html__('Show Sponsors', 'bunyad-admin'),
				'type'         => 'select',
				'default'      => '',
				'options'      => [
					'' => esc_html__('Default/Global', 'bunyad-admin'),
					'1' => esc_html__('Enable & Customize', 'bunyad-admin'),
					'0' => esc_html__('Disabled', 'bunyad-admin'),
				],
				'separator'   => 'before'
			],
			'meta_sponsor_items_default' => [
				'label'        => esc_html__('Default/Global Sponsor Meta', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
				'condition'    => ['meta_sponsor' => '1'],
			],
			'meta_sponsor_above' => [
				'label'        => esc_html__('Items Above', 'bunyad-admin'),
				'type'         => 'bunyad-selectize',
				'options'      => $this->common['meta_options_sp'],
				'multiple'     => true,
				'label_block'  => true,
				'condition'    => ['meta_sponsor_items_default!' => '1', 'meta_sponsor' => '1'],
			],
			'meta_sponsor_below' => [
				'label'        => esc_html__('Items Below', 'bunyad-admin'),
				'type'         => 'bunyad-selectize',
				'options'      => $this->common['meta_options_sp'],
				'multiple'     => true,
				'label_block'  => true,
				'condition'    => ['meta_sponsor_items_default!' => '1', 'meta_sponsor' => '1'],
			],
			'meta_sponsor_logo' => [
				'label'        => esc_html__('Sponsor Logo', 'bunyad-admin'),
				'type'         => 'select',
				'default'      => '',
				'options'      => [
					'' => esc_html__('Default/Global', 'bunyad-admin'),
					'1' => esc_html__('Enabled', 'bunyad-admin'),
					'0' => esc_html__('Disabled', 'bunyad-admin'),
				],
				'condition'    => ['meta_sponsor' => '1'],
			],
			'meta_sponsor_label' => [
				'label'        => esc_html__('Sponsor Custom Label', 'bunyad-admin'),
				'desc'         => 'By default, will use labels set in Customizer > Global Posts settings.',
				'type'         => 'text',
				'default'      => '',
				'condition'    => ['meta_sponsor' => '1'],
			],

			// --

			'h-advanced-1' => [
				'label'       => esc_html__('Advanced', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before'
			],

			'container_width' => [
				'label'       => esc_html__('Container Width', 'bunyad-admin'),
				'type'        => 'select',
				'description' => esc_html__('The block will select image sizing based on specified container width.', 'bunyad-admin'),
				'options'     => [
					'33' => esc_html__('Small: 1 Column or In Sidebar', 'bunyad-admin'),
					'50' => esc_html__('Medium: 50% of Width', 'bunyad-admin'),
					'66' => esc_html__('Large: 66% of Width', 'bunyad-admin'),
					'100' => esc_html__('Full Width', 'bunyad-admin'),
				],
				'label_block' => true,
				'separator'   => 'before'
			],

			'skip_lazy_number' => [
				'label'        => esc_html__('Skip Lazyload on Images', 'bunyad-admin'),
				'type'         => 'number',
				'description'  => esc_html__('Number of posts to skip lazyload on for LCP performance.', 'bunyad-admin'),
				// 'separator'    => 'after',
				// 'condition'    => ['show_media' => '1'], // Not supported for feat-grid
			],

			// 'force_image' => [
			// 	'label'       => esc_html__('Forced Image Size', 'bunyad-admin'),
			// 	'type'        => 'select',
			// 	'description' => esc_html__('Best kept default! Forces a specific physical image to use. Does not effect width or height.', 'bunyad-admin'),
			// 	'options'     => [$this, '_option_images'],
			// 	'label_block' => true,
			// 	// 'separator'   => 'before'
			// ],
		];

		/**
		 * Posts Source / Filters
		 */
		$options['sec-filter'] = [

			'query_type' => [
				'label'       => esc_html__('Query Type', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'custom'  => esc_html__('Custom', 'bunyad-admin'),
					'section' => esc_html__('Section Query (Parent Section)', 'bunyad-admin'),
					'main-custom' => esc_html__('Main Query / Archive', 'bunyad-admin'),
					'main'        => esc_html__('Global Query (for Devs)', 'bunyad-admin'),
					'related'     => esc_html__('Related Posts (for Single Post)', 'bunyad-admin'),
				],
				'default'        => 'custom',
				'default_forced' => true,
			],

			'query_yarpp' => [
				'label'       => esc_html__('Use YARPP Plugin?', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '0',
				'condition' => ['query_type' => 'related'],
			],

			'_n_section_query' => [
				'type'      => 'html',
				'raw'       => esc_html__('Edit the nearest/direct parent section and configure under the Section Query.', 'bunyad-admin'),
				'condition' => ['query_type' => 'section'],
				'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
			],

			'sort_by'  => [
				'label'       => esc_html__('Sort By', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					''              => esc_html__('Published Date', 'bunyad-admin'),
					'modified'      => esc_html__('Modified Date', 'bunyad-admin'),
					'random'        => esc_html__('Random', 'bunyad-admin'),
					'comments'      => esc_html__('Comments Count', 'bunyad-admin'),
					'alphabetical'  => esc_html__('Alphabetical', 'bunyad-admin'),
					'rating'        => esc_html__('Rating', 'bunyad-admin'),
				] + (
					// Not using global setting for now.
					class_exists('\Jetpack') && \Jetpack::is_module_active('stats')
						? ['jetpack_views' => esc_html__('JetPack Plugin Views Count', 'bunyad-admin')]
						: []
				) + (
					class_exists('\Sphere\PostViews\Plugin')
						? [
							'views'       => esc_html__('Post Views: All Time', 'bunyad-admin'),
							'views-7days' => esc_html__('Post Views: 30 Days', 'bunyad-admin'),
							'views-days'  => esc_html__('Post Views: Custom Days', 'bunyad-admin')
						]
						: []
				),
				'condition' => ['query_type' => ['custom', 'main-custom']],
			],

			'sort_days'  => [
				'label'       => esc_html__('Sort Days', 'bunyad-admin'),
				'description' => esc_html__('Number of days to use for the views sort. Max limit is 90 days for Jetpack.', 'bunyad-admin'),
				'type'        => 'number',
				'default'     => 30,
				'condition'   => [
					'sort_by'    => ['jetpack_views', 'views-days'],
					'query_type' => 'custom'
				]
			],

			'sort_order'  => [
				'label'       => esc_html__('Sort Order', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'desc' => esc_html__('Descending / Latest First', 'bunyad-admin'),
					'asc'  => esc_html__('Ascending / Oldest First', 'bunyad-admin'),
				],
				'default'     => 'desc',
				'condition' => ['query_type' => ['custom', 'main-custom']],
			],

			'terms' => [
				'label'       => esc_html__('From Categories', 'bunyad-admin'),
				'type'        => 'select2',
				'options'     => [$this, '_option_categories'],
				'description' => 'Limit posts to selected categories.',
				'multiple'    => true,
				'label_block' => true,
				'separator'   => 'before',
				'condition'   => ['query_type' => 'custom'],
				'editor_callback' => function($option) {
					return $this->maybe_ajax_for_terms($option, 'categories');
				}
			],

			'cat'  => [
				'label'       => esc_html__('Main Category', 'bunyad-admin'),
				'type'        => 'select2',
				'description' => esc_html__('OPTIONAL: Will also be used for heading link, text and color if set.', 'bunyad-admin'),
				'options'     => function() {
					return [
						'' => esc_html__('None', 'bunyad-admin'),
						'__current' => esc_html__('Archive: Current Category', 'bunyad-admin')
					] + $this->_option_categories();
				},
				'condition' => ['query_type' => 'custom'],
				'editor_callback' => function($option) {
					return $this->maybe_ajax_for_terms($option, 'categories');
				}
			],

			'exclude_terms' => [
				'label'       => esc_html__('Exclude Categories', 'bunyad-admin'),
				'type'        => 'select2',
				'options'     => [$this, '_option_categories'],
				'description' => 'Prevents posts from these categories.',
				'multiple'    => true,
				'label_block' => true,
				// 'separator'   => 'before',
				'condition'   => ['query_type' => 'custom'],
				'editor_callback' => function($option) {
					return $this->maybe_ajax_for_terms($option, 'categories');
				}
			],

			'offset' => [
				'label'       => esc_html__('Skip Posts / Offset', 'bunyad-admin'),
				'description' => esc_html__('Skip first X posts.', 'bunyad-admin'),
				'type'        => 'number',
				'condition' => ['query_type' => ['custom', 'main-custom']],
			],
			
			'reviews_only' => [
				'label'       => esc_html__('Review Posts Only', 'bunyad-admin'),
				'description' => '',
				'type'        => 'switcher',
				'return_value' => '1',
				'default'      => '1',
				'condition' => ['query_type' => ['custom', 'main-custom']],
			],

			'tags' => [
				'label'       => esc_html__('From Tags', 'bunyad-admin'),
				'type'        => 'select2',
				// 'options'     => [$this, '_option_tags'],
				'options'     => [],
				'description' => esc_html__('Will limit posts to selected tags.', 'bunyad-admin'),
				'multiple'    => true,
				'label_block' => true,
				'separator'   => 'before',
				'condition'   => ['query_type' => ['custom', 'main-custom']],
				'editor_callback' => function($option) {
					return $this->maybe_ajax_for_terms($option, 'tags');
				}
			],

			// 'author' => [

			// ]

			'post_ids' => [
				'label'       => esc_html__('Specific Post IDs', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Post IDs separated by commas, ex: 25, 34', 'bunyad-admin'),
				'multiple'    => true,
				'label_block' => true,
				'condition' => ['query_type' => 'custom'],
			],

			'post_formats' => [
				'label'       => esc_html__('Specific Post Formats', 'bunyad-admin'),
				'type'        => 'select2',
				'description' => esc_html__('Show posts of specific post formats only. Defaults to standard posts.', 'bunyad-admin'),
				'options'     => [
					'video'   => esc_html__('Video', 'bunyad-admin'),
					'audio'   => esc_html__('Audio', 'bunyad-admin'),
					'gallery' => esc_html__('Gallery', 'bunyad-admin'),
				],
				'multiple'    => true,
				'label_block' => true,
				'condition' => ['query_type' => ['custom', 'main-custom']],
			],

			'h-advanced' => [
				'label'       => esc_html__('Advanced', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before',
				'condition' => ['query_type' => 'custom'],
			],

			'exclude_tags' => [
				'label'       => esc_html__('Exclude Tags', 'bunyad-admin'),
				'type'        => 'select2',
				'options'     => [],
				'description' => esc_html__('Skip posts using these tags.', 'bunyad-admin'),
				'multiple'    => true,
				'label_block' => true,
				'separator'   => 'before',
				'condition'   => ['query_type' => ['custom', 'main-custom']],
				'editor_callback' => function($option) {
					return $this->maybe_ajax_for_terms($option, 'tags');
				}
			],

			'exclude_ids' => [
				'label'       => esc_html__('Exclude Post IDs', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Post IDs separated by commas, ex: 25, 34', 'bunyad-admin'),
				'multiple'    => true,
				'label_block' => true,
				'condition' => ['query_type' => 'custom'],
			],

			'taxonomy' => [
				'label'       => esc_html__('Taxonomy', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('A custom taxonomy limit instead of category or post_tag. This will disable category and tags limits from above.', 'bunyad-admin'),
				'label_block' => true,
				'condition' => ['query_type' => 'custom'],
			],

			'tax_ids' => [
				'label'       => esc_html__('Taxonomy Terms IDs', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('IDs of the taxonomy items to use separated by comma, for example ids of categories under product_cat.', 'bunyad-admin'),
				'label_block' => true,
				'condition'   => [
					'taxonomy!' => '', 
					'query_type' => 'custom'
				]
			],

			'post_type' => [
				'label'       => esc_html__('Post Type', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => function() { 

					return wp_list_pluck(
						get_post_types([
							'public' => true,
						], 'objects'),
						'label'
					);
				},
				'condition' => ['query_type' => 'custom'],
			],

			'query_id' => [
				'label'       => esc_html__('Devs: Query ID', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Optional custom query ID to modify query args using the bunyad_block_query_args filter.', 'bunyad-admin'),
				'separator'   => 'before',
				'label_block' => true,
				'condition'   => ['query_type' => ['custom', 'main-custom']],
			],

			'exclude_current' => [
				'label'       => esc_html__('Exclude Current Post', 'bunyad-admin'),
				'description' => esc_html__('If using on a single post sidebar, this will ignore the post being viewed.', 'bunyad-admin'),
				'return_value' => '1',
				'type'         => 'switcher',
				// 'label_block'  => true,
				'condition'    => ['query_type' => ['custom']],
			],

		];


		/**
		 * Heading Options
		 */
		$options['sec-heading'] = [

			'heading_type' => [
				'label'       => esc_html__('Heading Style', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'none' => esc_html__('Disabled', 'bunyad-admin'),
					''     => esc_html__('Global / Default Style', 'bunyad-admin'),
				] + $this->common['block_headings'],
				'default'     => '',
				'label_block' => true
			],

			'heading_colors' => [
				'label'       => esc_html__('Base Colors', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					''      => esc_html__('Auto', 'bunyad-admin'),
					'force' => esc_html__('Accent / Category', 'bunyad-admin'),
					'none'  => esc_html__('Default', 'bunyad-admin'),
				],
				'condition' => [
					'heading_type!' => ['g', 'e2']
				]
				// 'label_block' => true,
			],

			'heading' => [
				'label'       => esc_html__('Heading Text', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Optional. By default, main category name will be used. Note: Some heading styles can have multi-color headings when used with asterisks, example: World *News*', 'bunyad-admin'),
				'label_block' => true
			],

			'heading_link' => [
				'label'       => esc_html__('Heading Link', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Optional. By default, main category link will be used.', 'bunyad-admin'),
				'label_block' => true
			],

			'heading_more_text' => [
				'label'       => esc_html__('View More', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Add view more text with link.', 'bunyad-admin'),
				'label_block' => true
			],

			'heading_more' => [
				'label'       => esc_html__('View More Style', 'bunyad-admin'),
				'type'        => 'select',
				'description' => '',
				'options'     => [
					'a' => 'Simple Text',
					'b' => 'Round Pill Style',
				],
				'condition'   => ['heading_more_text!' => ''],
			],

			'heading_more_link' => [
				'label'       => esc_html__('View More Link', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Optional. By default, main category link will be used.', 'bunyad-admin'),
				'label_block' => true,
				'condition'   => ['heading_more_text!' => ''],
			],

			'h-filters' => [
				'label'       => esc_html__('Filters', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before'
			],

			'filters' => [
				'label'       => esc_html__('Heading Filters', 'bunyad-admin'),
				'type'        => 'select',
				'description' => esc_html__('Filters when enabled, are displayed as links in the heading on right side.', 'bunyad-admin'),
				'options'     => [
					''         => esc_html__('None', 'bunyad-admin'),
					'category' => esc_html__('Categories', 'bunyad-admin'),
					'tag'      => esc_html__('Tags', 'bunyad-admin'),
				],
				'label_block' => true
			],

			'filters_terms' => [
				'label'       => esc_html__('Categories', 'bunyad-admin'),
				'type'        => 'select2',
				'description' => esc_html__('If no categories are selected, it will default to showing 3 sub-categories.', 'bunyad-admin'),
				'options'     => [$this, '_option_categories'],
				'label_block' => true,
				'multiple'    => true,
				'condition'   => ['filters' => 'category'],
				'editor_callback' => function($option) {
					return $this->maybe_ajax_for_terms($option, 'categories');
				}
			],

			'filters_tags' => [
				'label'       => esc_html__('Tags', 'bunyad-admin'),
				'type'        => 'select2',
				'description' => esc_html__('Filters when enabled, are displayed as links in the heading on right side.', 'bunyad-admin'),
				// 'options'     => [$this, '_option_tags'],
				'label_block' => true,
				'multiple'    => true,
				'condition'   => ['filters' => 'tag'],
				'editor_callback' => function($option) {
					return $this->maybe_ajax_for_terms($option, 'tags');
				}
			],

			'heading_tag' => [
				'label'       => esc_html__('SEO: Heading Tag', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => $this->common['heading_tags'],
			],

			// 'h-bh-styles' => [
			// 	'label'       => esc_html__('Styling', 'bunyad-admin'),
			// 	'type'        => 'heading',
			// 	'separator'   => 'before'
			// ],

		];

		/**
		 * Style - General.
		 */
		$options['sec-style'] = [
			'css_accent_color' => [
				'label'       => esc_html__('Accent / Main Color', 'bunyad-admin'),
				'description' => esc_html__('Used for hovers, heading text (unless changed in Heading Settings) and accent, and so on.', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}},
					{{WRAPPER}} .cat-labels .category' => '--c-main: {{VALUE}};',
					'{{WRAPPER}} .block-head' => '--c-block: {{VALUE}};',

				],
				'default'      => '',
			],
			'css_accent_color_sd' => [
				'label'       => esc_html__('Dark: Accent / Main Color', 'bunyad-admin'),
				'description' => esc_html__('For dark mode.', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark {{WRAPPER}}, {{WRAPPER}} .s-dark' => '--c-main: {{VALUE}};',
					'.s-dark {{WRAPPER}} .block-head, {{WRAPPER}} .s-dark .block-head' => '--c-block: {{VALUE}};',
				],
				'default'      => '',
			],
			
			'column_gap' => [
				'label'        => esc_html__('Column Gap', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					''    => esc_html__('Default', 'bunyad-admin'),
					'sm'  => esc_html__('Small Gap', 'bunyad-admin'),
					'lg'  => esc_html__('Large Gap', 'bunyad-admin'),
					'xlg' => esc_html__('X-Large Gap', 'bunyad-admin'),
				],
				'default'      => '',
				'separator'   => 'before'
			],

			'css_column_gap' => [
				'label'       => esc_html__('Column Gap Custom', 'bunyad-admin'),
				'description' => esc_html__('Vertical spacing between posts.', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'    => [
					'{{WRAPPER}} .loop' => '--grid-gutter: {{SIZE}}{{UNIT}};'
				],
				'default'     => [],
			],
			'css_row_gap' => [
				'label'       => esc_html__('Row Gap', 'bunyad-admin'),
				'type'        => 'slider',
				'description' => esc_html__('Horizontal spacing between posts.', 'bunyad-admin'),
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'    => [
					'{{WRAPPER}} .loop' => '--grid-row-gap: {{SIZE}}{{UNIT}};'
				],
				'default'     => [],
			],
			
			'separators' => [
				'label'        => esc_html__('Add Separators', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '',
				'separator'    => 'before'
			],

			'separators_cols' => [
				'label'        => esc_html__('Add Column Separators', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '',
				'separator'    => 'after'
			],
			
			'css_format_icon_size' => [
				'label'        => esc_html__('Post Format Icon Scale', 'bunyad-admin'),
				'type'         => 'number',
				'input_attrs'  => ['min' => 0.4, 'max' => 3.5, 'step' => .1],
				'devices'      => true,
				'selectors'    => [
					'{{WRAPPER}} .l-post' => '--post-format-scale: {{SIZE}};'
				],
				'default'     => [],
			],

			'css_media_radius' => [
				'label'       => esc_html__('Media/Image Roundness', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .l-post' => '--media-radius: {{SIZE}}px;'
				],
				'default'     => '',
			],

			'media_style_shadow' => [
				'label'        => esc_html__('Add Media Shadow', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					''     => esc_html__('Default / Global', 'bunyad-admin'),
					'1'    => esc_html__('Enabled', 'bunyad-admin'),
					'none' => esc_html__('Disabled', 'bunyad-admin'),
				],
				'default'      => '',
			],
		];

		/**
		 * Style: Content
		 */
		$options['sec-style-content'] = [
			'css_l_post_shadow' => [
				'label'       => esc_html__('Post Box Shadow', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'box-shadow',
				'selector'   => '{{WRAPPER}} .l-post',
				// 'default'     => [],
			],

			'css_l_post_border' => [
				'label'       => esc_html__('Post Box Border', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'bunyad-border',
				'selector'    => '{{WRAPPER}} .l-post',
				'selector_color_dark' => '.s-dark {{WRAPPER}} .l-post, {{WRAPPER}} .s-dark .l-post',
				// 'default'     => [],
			],

			'css_l_post_radius' => [
				'label'       => esc_html__('Post Box Roundness', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .l-post' => 'border-radius: {{VALUE}}px; overflow: hidden;'
				],
				'default'     => '',
			],

			'css_l_post_bg' => [
				'label'       => esc_html__('Post Box Background', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .l-post' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_l_post_bg_sd' => [
				'label'       => esc_html__('Dark: Box Background', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark {{WRAPPER}} .l-post, {{WRAPPER}} .s-dark .l-post' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['css_l_post_bg!' => '']
			],

			'css_l_post_pad' => [
				'label'       => esc_html__('Post Box Paddings', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .l-post' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_content_pad' => [
				'label'       => esc_html__('Content Paddings', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'separator'   => 'before',
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_content_margin' => [
				'label'       => esc_html__('Content Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .content' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_content_border' => [
				'label'       => esc_html__('Content Border', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'bunyad-border',
				'selector'    => '{{WRAPPER}} .content',
				'selector_color_dark' => '.s-dark {{WRAPPER}} .content, {{WRAPPER}} .s-dark .content',
				// 'default'     => [],
			],

			'css_content_shadow' => [
				'label'       => esc_html__('Content Shadow', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'box-shadow',
				'selector'    => '{{WRAPPER}} .content',
				// 'default'     => [],
			],

			'css_content_bg' => [
				'label'       => esc_html__('Content Background', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .content' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_content_bg_sd' => [
				'label'       => esc_html__('Dark: Background', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark {{WRAPPER}} .content, {{WRAPPER}} .s-dark .content' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['css_content_bg!' => '']
			],

			'css_meta_above_margins' => [
				'label'       => esc_html__('Post Meta Above Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'separator'   => 'before',
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .meta-above' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_meta_below_margins' => [
				'label'       => esc_html__('Post Meta Below Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .meta-below' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],
			'css_meta_typography' => [
				'label'       => esc_html__('Post Meta Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'   => '{{WRAPPER}} .post-meta .meta-item, {{WRAPPER}} .post-meta .text-in',
				'default'     => [],
			],
			'css_meta_icons_size' => [
				'label'       => esc_html__('Post Meta Icons Size', 'bunyad-admin'),
				'type'        => 'number',
				'separator'   => 'after',
				'devices'     => true,
				'selectors'   => [
					'{{WRAPPER}} .post-meta' => '--p-meta-icons-s: {{SIZE}}px;'
				],
				'default'     => [],
			],

			'css_excerpt_typo' => [
				'label'       => esc_html__('Excerpts Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .excerpt',
				'default'     => [],
			],

			'css_excerpt_margin' => [
				'label'       => esc_html__('Excerpt Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				// 'size_units'  => ['px'],
				'selectors'   => [
					'{{WRAPPER}} .excerpt' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],

			],

			'css_excerpt_visible' => [
				'label'      => esc_html__('Excerpt Visibility', 'bunyad-admin'),
				'type'       => 'select',
				'options'    => [
					''       => 'Default',
					'block'  => esc_html__('Show', 'bunyad-admin'),
					'none'   => esc_html__('Hide', 'bunyad-admin'),
				],
				'devices'  => true,
				'selectors'    => [
					'{{WRAPPER}} .excerpt' => 'display: {{VALUE}}',
				],
				'condition'    => ['excerpts' => '1'],
			],

			'css_excerpt_lines' => [
				'label'       => esc_html__('Excerpts Lines Per Device', 'bunyad-admin'),
				'type'        => 'number',
				'devices'     => true,
				'selectors'   => [
					'{{WRAPPER}} .excerpt' => '--limit-lines: {{VALUE}};'
				],
				'default'     => [],
				'condition'   => ['excerpt_lines!' => ['', '0']]
			],

		];

		/**
		 * Style: Post Titles.
		 */
		$options['sec-style-titles'] = [
			'css_title_typo' => [
				'label'       => esc_html__('Post Titles Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .post-title',
				'default'     => [],
			],

			'css_title_margin' => [
				'label'       => esc_html__('Titles Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'allowed_dimensions' => ['top', 'bottom'],
				'selectors'   => [
					'{{WRAPPER}} .post-title' => 'margin-top: {{TOP}}{{UNIT}}; margin-bottom: {{BOTTOM}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_title_padding' => [
				'label'       => esc_html__('Titles Paddings', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .post-title' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],
			
			'css_title_color' => [
				'label'       => esc_html__('Titles Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.elementor-element-{{ID}} .post-title' => '--c-headings: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_title_color_sd' => [
				'label'       => esc_html__('Dark: Titles Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark .elementor-element-{{ID}} .post-title,
					.elementor-element-{{ID}} .s-dark .post-title' => '--c-headings: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_title_hov_color' => [
				'label'       => esc_html__('Hover Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.elementor-element-{{ID}} .post-title a:hover' => '--c-a-hover: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_title_hov_color_sd' => [
				'label'       => esc_html__('Dark: Hover Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark .elementor-element-{{ID}} .post-title a:hover,
					.elementor-element-{{ID}} .s-dark .post-title a:hover' => '--c-a-hover: {{VALUE}};'
				],
				'default'     => '',
			],
		];

		/**
		 * Style: Block Heading
		 */
		$options['sec-style-bhead'] = [
			'heading_align' => [
				'label'       => esc_html__('Heading Align', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'left'   => esc_html__('Default / Left', 'bunyad-admin'),
					'center' => esc_html__('Centered (Filters Not Supported)', 'bunyad-admin'),
				],
				'label_block' => true,
			],

			'css_bhead_typo' => [
				'label'       => esc_html__('Heading Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .block-head .heading',
				'default'     => [],
			],

			'css_bhead_space_below' => [
				'label'       => esc_html__('Space Below', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--space-below: {{SIZE}}{{UNIT}};'
				],
				'default'     => [],
			],

			// Note: Only makes sense for elementor, not for customizer.
			'css_bhead_accent' => [
				'label'       => esc_html__('Heading Accent Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--c-main: {{VALUE}}; --c-block: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => [
					'heading_type!' => ['g']
				]
			],
			'css_bhead_accent_sd' => [
				'label'       => esc_html__('Dark: Heading Accent', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head,
					.s-dark {{WRAPPER}} .block-head' => '--c-main: {{VALUE}}; --c-block: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => [
					'heading_type!' => ['g']
				]
			],

			'css_bhead_color' => [
				'label'       => esc_html__('Heading Text Color', 'bunyad-admin'),
				'type'        => 'color',
				// 'description' => esc_html__('Category color or theme main color will be used by default.', 'bunyad-admin'),
				'selectors'   => [
					'{{WRAPPER}} .block-head .heading' => 'color: {{VALUE}};'
				],
				'default'     => '',
			],
			'css_bhead_color_sd' => [
				'label'       => esc_html__('Dark: Heading Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head .heading,
					.s-dark {{WRAPPER}} .block-head .heading' => 'color: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_bhead_line_weight' => [
				'label'       => esc_html__('Accent Line Weight', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--line-weight: {{VALUE}}px;'
				],
				'default'     => '',
				'condition'   => ['heading_type' => $this->common['supports_bhead_line_weight']],
			],

			'css_bhead_line_width' => [
				'label'       => esc_html__('Accent Line Width', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--line-width: {{VALUE}}px;'
				],
				'default'     => '',
				'condition'   => ['heading_type' => $this->common['supports_bhead_line_width']],
			],

			'css_bhead_line_color' => [
				'label'       => esc_html__('Accent Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--c-line: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['heading_type' => $this->common['supports_bhead_line_color']],
			],
			'css_bhead_line_color_sd' => [
				'label'       => esc_html__('Dark: Accent Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head,
					.s-dark {{WRAPPER}} .block-head' => '--c-line: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['heading_type' => $this->common['supports_bhead_line_color']],
			],

			// Only for style c and h.
			'css_bhead_border_weight' => [
				'label'       => esc_html__('Border Line Weight', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--border-weight: {{VALUE}}px;'
				],
				'default'     => '',
				'condition'   => ['heading_type' => $this->common['supports_bhead_border_weight']],
			],

			'css_bhead_border_color' => [
				'label'       => esc_html__('Border Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--c-border: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['heading_type' => $this->common['supports_bhead_border_color']],
			],
			'css_bhead_border_color_sd' => [
				'label'       => esc_html__('Dark: Border Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head,
					.s-dark {{WRAPPER}} .block-head' => '--c-border: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['heading_type' => $this->common['supports_bhead_border_color']],
			],

			'css_bhead_bg' => [
				'label'       => esc_html__('Background Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_bhead_pad' => [
				'label'       => esc_html__('Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'size_units'  => ['%', 'px'],
				'devices'     => true,
				'selectors'   => [
					'{{WRAPPER}} .block-head' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
				'condition'   => ['heading_type!' => ['e']],
			],

			'css_bhead_inner_pad' => [
				'label'       => esc_html__('Inner Padding', 'bunyad-admin'),
				'type'        => 'number',
				'devices'     => true,
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--inner-pad: {{VALUE}}px;'
				],
				'default'     => [],
				'condition'   => ['heading_type' => ['e']],
			],

			'css_bhead_roundness' => [
				'label'       => esc_html__('Roundness', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--box-roundness: {{VALUE}}px;'
				],
				'default'     => [],
				'condition'   => ['heading_type' => $this->common['supports_bhead_roundness']],
			],
			
			'css_bhead_filters_typo' => [
				'label'       => esc_html__('Filters Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .block-head .filters',
				'default'     => [],
			],

			'h-style-view-more' => [
				'label'       => esc_html__('View More Link', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before',
				'condition'   => ['heading_more_text!' => ''],
			],
			'css_bhead_more_typo' => [
				'label'       => esc_html__('More Link Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .block-head .view-link',
				'default'     => [],
				'condition'   => ['heading_more_text!' => ''],
			],
			'css_bhead_more_pad' => [
				'label'       => esc_html__('More Link Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'selector'    => '{{WRAPPER}} .block-head .view-link',
				'selectors'   => [
					'{{WRAPPER}} .block-head .view-link' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'condition'   => ['heading_more_text!' => ''],
			],
		];


		/**
		 * Style: Load More
		 */
		$options['sec-style-pagination'] = [

			'css_pagination_margin' => [
				'label'       => esc_html__('Pagination Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['px'],
				'selectors'   => [
					'{{WRAPPER}} .loop + .main-pagination' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'load_more_style' => [
				'label'       => esc_html__('Load More Style', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					''  => esc_html__('Default / Global', 'bunyad-admin'),
				] + $this->common['load_more_options'],
				'label_block' => true,
				'condition'   => ['pagination_type' => 'load-more']
			],

			'css_load_more_typo' => [
				'label'       => esc_html__('Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .load-button',
				'default'     => [],
				'condition'   => ['pagination_type' => 'load-more']
			],

			'css_load_more_color' => [
				'label'       => esc_html__('Text Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .load-button' => 'color: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['pagination_type' => 'load-more']
			],
			'css_load_more_color_sd' => [
				'label'       => esc_html__('Dark: Text Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark {{WRAPPER}} .load-button,
					{{WRAPPER}} .s-dark .load-button' => 'color: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['pagination_type' => 'load-more']
			],

			'css_load_more_bg' => [
				'label'       => esc_html__('Button Background', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .load-button' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['pagination_type' => 'load-more']
			],
			'css_load_more_bg_sd' => [
				'label'       => esc_html__('Dark: Button Background', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark {{WRAPPER}} .load-button,
					{{WRAPPER}} .s-dark .load-button' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['pagination_type' => 'load-more']
			],

			'css_load_more_bg_sd' => [
				'label'       => esc_html__('Border Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .load-button' => 'border-color: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['pagination_type' => 'load-more']
			],

			'css_load_more_pad' => [
				'label'       => esc_html__('Button Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['px'],
				'selectors'   => [
					'{{WRAPPER}} .load-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
				'condition'   => ['pagination_type' => 'load-more']
			],

			'css_load_more_width' => [
				'label'       => esc_html__('Button Width', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => false,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .load-button' => 'width: {{SIZE}}{{UNIT}}; min-width: 0;'
				],
				'default'     => [],
				'condition'   => ['pagination_type' => 'load-more']
			],

			'css_load_more_bradius' => [
				'label'        => esc_html__('Border Radius', 'bunyad-admin'),
				'type'         => 'number',
				'default'      => '',
				'selectors'   => [
					'{{WRAPPER}} .load-button' => 'border-radius: {{VALUE}}px'
				],
				'condition'   => ['pagination_type' => 'load-more']
			],
		];

		/**
		 * Style: Category labels
		 */
		$options['sec-style-cat-labels'] = [
			'_n_cat_labels' => [
				'type'      => 'html',
				'raw'       => esc_html__('These only apply to category overlay label style, when enabled for this block.', 'bunyad-admin'),
				'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
			],

			'css_cat_labels_typo' => [
				'label'       => esc_html__('Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .cat-labels .category',
			],

			'css_cat_labels_bg' => [
				'label'       => esc_html__('Background Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .cat-labels .category' => 'background-color: {{VALUE}}'
				],
			],

			'css_cat_labels_color' => [
				'label'       => esc_html__('Text Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .cat-labels .category' => 'color: {{VALUE}}'
				],
			],

			'css_cat_labels_border_radius' => [
				'label'       => esc_html__('Border Radius', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .cat-labels .category' => 'border-radius: {{VALUE}}px'
				],
			],

			'css_cat_labels_pad' => [
				'label'       => esc_html__('Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .cat-labels .category' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
			],

			'css_cat_labels_margins' => [
				'label'       => esc_html__('Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .cat-labels .category' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
			],
		];

		return $options;
	}

	public function get_common_data(array $options = [])
	{
		$options['meta_options'] = [
			'cat'       => esc_html__('Category', 'bunyad-admin'),
			'author'    => esc_html__('Author', 'bunyad-admin'),
			'date'      => esc_html__('Date', 'bunyad-admin'),
			'comments'  => esc_html__('Comments', 'bunyad-admin'),
			'read_time' => esc_html__('Read Time', 'bunyad-admin'),
		];

		/**
		 * Carousel fields aren't to be used elsewhere, so defined here. 
		 */
		$options['carousel_fields'] = [
			'carousel' => [
				'label'        => esc_html__('Enable Carousel', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
			],

			'carousel_slides' => [
				'label'        => esc_html__('Custom Slides', 'bunyad-admin'),
				'description'  => esc_html__('Optional. Columns number by default.', 'bunyad-admin'),
				'type'         => 'number',
				'input_attrs'  => ['min' => 1, 'max' => 7],
				'default'      => '',
				'condition'    => ['carousel' => '1']
			],

			'carousel_slides_md' => [
				'label'        => esc_html__('Slides: Tablets', 'bunyad-admin'),
				'description'  => esc_html__('Optional. Auto by default.', 'bunyad-admin'),
				'type'         => 'number',
				'input_attrs'  => ['min' => 1, 'max' => 7],
				'default'      => '',
				'condition'    => ['carousel' => '1']
			],

			'carousel_slides_sm' => [
				'label'        => esc_html__('Slides: Phones', 'bunyad-admin'),
				'description'  => esc_html__('Optional. Auto by default.', 'bunyad-admin'),
				'type'         => 'number',
				'input_attrs'  => ['min' => 1, 'max' => 7],
				'default'      => '',
				'condition'    => ['carousel' => '1']
			],

			'carousel_arrows' => [
				'label'        => esc_html__('Arrows', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					''  => esc_html__('Disabled', 'bunyad-admin'),
					'a' => esc_html__('A: Transparent (Dark BG Only)', 'bunyad-admin'),
					'b' => esc_html__('B: Modern Round', 'bunyad-admin'),
				],
				'default'      => '',
			],

			'carousel_dots' => [
				'label'        => esc_html__('Navigation Dots', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
				'condition'    => ['carousel' => '1']
			],

			'carousel_autoplay' => [
				'label'        => esc_html__('Autoplay', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
				'condition'    => ['carousel' => '1']
			],

			'carousel_play_speed' => [
				'label'        => esc_html__('Autoplay Speed', 'bunyad-admin'),
				'type'         => 'number',
				'input_attrs'  => ['min' => 50],
				'default'      => '',
				'condition'    => ['carousel' => '1']
			],	

			'css_carousel_nav_spacing' => [
				'label'       => esc_html__('Navigation Dots Distance', 'bunyad-admin'),
				'description' => '',
				'type'        => 'number',
				'devices'     => true,
				'selectors'    => [
					'{{WRAPPER}} .common-slider .nav-dots' => 'margin-top: {{SIZE}}px;'
				],
				'default'     => [],
			],
		];

		return parent::get_common_data($options);
	}

	/**
	 * Get option sections
	 */
	public function get_sections()
	{
		return [
			'sec-general' => ['label' => esc_html__('General', 'bunyad-admin')],
			'sec-layout'  => ['label' => esc_html__('Layout', 'bunyad-admin')],
			'sec-filter'  => ['label' => esc_html__('Posts Source', 'bunyad-admin')],
			'sec-heading' => ['label' => esc_html__('Heading', 'bunyad-admin')],
			'sec-style'   => [
				'label' => esc_html__('Style', 'bunyad-admin'),
				'tab'   => 'style'
			],
			'sec-style-titles' => [
				'label' => esc_html__('Style: Post Titles', 'bunyad-admin'),
				'tab'   => 'style'
			],

			'sec-style-content' => [
				'label' => esc_html__('Style: Content & Box', 'bunyad-admin'),
				'tab'   => 'style'
			],

			'sec-style-bhead' => [
				'label' => esc_html__('Style: Block Heading', 'bunyad-admin'),
				'tab'  => 'style',
			],

			'sec-style-pagination' => [
				'label' => esc_html__('Style: Pagination', 'bunyad-admin'),
				'tab'  => 'style',
			],

			'sec-style-cat-labels' => [
				'label' => esc_html__('Style: Category Labels', 'bunyad-admin'),
				'tab'   => 'style'
			],
		];
		
	}

	/**
	 * Generate number of column options based on supported.
	 *
	 * @return array
	 */
	public function _option_columns()
	{
		$column_options = [
			'1'   => esc_html__('1 Column', 'bunyad-admin'),
			'2'   => esc_html__('2 Columns', 'bunyad-admin'),
			'3'   => esc_html__('3 Columns', 'bunyad-admin'),
			'4'   => esc_html__('4 Columns', 'bunyad-admin'),
			'5'   => esc_html__('5 Columns', 'bunyad-admin'),
			'6'   => esc_html__('6 Columns', 'bunyad-admin'),
		];

		if (!is_array($this->supported_columns)) {
			$this->supported_columns = range(1, intval($this->supported_columns));
		}
		
		// Remove unsupported.
		$column_options = array_filter(
			$column_options, 
			function($value) {
				return in_array($value, $this->supported_columns);
			},
			ARRAY_FILTER_USE_KEY
		);

		$options = [
			'' => esc_html__('Auto', 'bunyad-admin'),
		];

		$options += $column_options;

		return $options;
	}

	/**
	 * Get categories for control options
	 */
	public function _option_categories()
	{
		$categories = $this->get_limited_terms('category', $this->limit_cats);
		return $this->_recurse_terms_array(0, $categories);
	}

	/**
	 * Get tags for control options
	 * 
	 * @deprecated 5.1.0
	 */
	public function _option_tags()
	{
		$tags = $this->get_limited_terms('post_tag');
		return $this->_recurse_terms_array(0, $tags);
	}

	/**
	 * Image sizing options for blocks
	 * 
	 * @deprecated 5.1.0
	 */
	public function _option_images()
	{
		global $_wp_additional_image_sizes;

		foreach (get_intermediate_image_sizes() as $_size) {

			// Default sizes
			if (in_array($_size, array('thumbnail', 'medium', 'medium_large', 'large'))) {
				$size = [
					'width'  => get_option("{$_size}_size_w"),
					'height' => get_option("{$_size}_size_h"),
				];
			} 
			else if (isset($_wp_additional_image_sizes[ $_size ])) {
				$size = $_wp_additional_image_sizes[ $_size ];
			}

			$sizes[$_size] =  "{$size['width']}x{$size['height']} - {$_size}";
		}

		$sizes = array_merge(
			[
				'' => esc_html__('Default / Auto', 'bunyad-admin'),
			], 
			$sizes
		);

		return $sizes;
	}

	/**
	 * Get terms (from cache if already called), with a limit applied.
	 * 
	 * @param string $taxonomy
	 * @param integer $limit
	 * @return array
	 */
	protected function get_limited_terms($taxonomy, $limit = 200)
	{
		if (isset($this->terms_cache[$taxonomy])) {
			return $this->terms_cache[$taxonomy];
		}

		$terms = [];
		switch ($taxonomy) {
			case 'post_tag':
				$terms = get_terms('post_tag', [
					'hide_empty' => false,
					'order_by'   => 'count',
					'number'     => $limit
				]);
				break;

			default:
				$terms = get_terms($taxonomy, [
					'hide_empty'    => false,
					'hide_if_empty' => false,
					'hierarchical'  => 1, 
					'order_by'      => 'name',
					'number'        => $limit
				]);
				break;
		}

		$this->terms_cache[$taxonomy] = $terms;
		return $terms;
	}

	/**
	 * Add AJAX config for an option, if the terms exceed a certain number.
	 * 
	 * @param array $option
	 * @param string $type   categories or tags.
	 * @param integer $limit
	 * @return array
	 */
	protected function maybe_ajax_for_terms($option, $type, $limit = null)
	{
		switch ($type) {
			case 'tags':
				$taxonomy = 'post_tag';
				break;

			case 'categories':
				$taxonomy = 'category';

				// Keep same as _option_categories for cache.
				$limit = $limit ? $limit : $this->limit_cats;

				break;
		}

		// If no limit, assume always. Otherwise test if it's equal or exceeds.
		if (!$limit || count($this->get_limited_terms($taxonomy, $limit)) >= $limit) {
			$option = array_replace($option, [
				'type'              => 'bunyad-selectize',
				'options'           => [],
				'selectize_options' => [
					'multiple' => !empty($option['multiple']),
					'sortable' => false,
					'create'   => false,
					'ajax'     => true,
					'preload'  => true,

					// Will preload 50 too.
					'endpoint' => $type . '?per_page=50&orderby=count&order=desc&_fields=id,name&search={query}',

					// To fetch existing saved cats by id.
					'endpoint_saved' => $type . '?_fields=id,name&include={ids}',
				],
			]);
		}

		return $option;
	}

	/**
	 * Create hierarchical terms drop-down via recursion on parent-child relationship
	 * 
	 * @param integer  $parent
	 * @param object   $terms
	 * @param integer  $depth
	 */
	public function _recurse_terms_array($parent, $terms, $depth = 0)
	{	
		$the_terms = array();
			
		$output = array();
		foreach ($terms as $term) {
			
			// add tab to children
			if ($term->parent == $parent) {
				$output[ $term->term_id ] = str_repeat(" &middot; ", $depth) . $term->name;
				$output = array_replace(
					$output, 
					$this->_recurse_terms_array($term->term_id, $terms, $depth+1)
				);
			}
		}
		
		return $output;
	}
}PK03Y�	�8��*smartmag-core/blocks/base/options-data.php<?php
namespace Bunyad\Blocks\Base;

/**
 * Common base data.
 */
class OptionsData implements \ArrayAccess
{

	protected $data = [];

	public function __construct()
	{
		$this->data = [
			'cat_labels_pos_options'       => [],
			'ratio_options'                => [],
			'read_more_options'            => [],
			'meta_options'                 => [],
			'reviews_options'              => [],
			'heading_tags'                 => [],
			'block_headings'               => [],
			'load_more_options'            => [],
			'featured_grid_options'        => [],
			'featured_type_options'        => [],
			'post_format_pos_options'      => [],
			'supports_bhead_line_width'    => [],
			'supports_bhead_line_color'    => [],
			'supports_bhead_border_color'  => [],
			'supports_bhead_line_weight'   => [],
			'supports_bhead_border_weight' => [],
			'supports_bhead_roundness'     => [],
			'post_title_styles'            => [],
		];

		return $this;
	}

	#[\ReturnTypeWillChange]
	public function offsetGet($offset)
	{
		return $this->offsetExists($offset) ? $this->data[$offset] : null;
	}

	public function offsetSet($offset, $value): void
	{
		$this->data[$offset] = $value;
	}

	public function offsetExists($offset): bool
	{
		return isset($this->data[$offset]);
	}

	public function offsetUnset($offset): void
	{
		if ($this->offsetExists($offset)) {
			unset($this->data[$offset]);
		}
	}

	public function append($array)
	{
		$this->data = array_replace($this->data, $array);
		return $this->data;
	}
}
PK03Y�N¿�%smartmag-core/blocks/base/options.php<?php

namespace Bunyad\Blocks\Base;
use Bunyad\Util;

/**
 * Block options for page builders, widgets and so on.
 */
abstract class Options 
{
	public $options = [];

	/**
	 * @var array Map of option_key => section_key
	 */
	private $options_map = [];

	/**
	 * @var array Commonly used options data.
	 */
	protected $common = [];

	/**
	 * Block name to be used for displaying.
	 */
	public $block_name;

	/**
	 * Configuration for Elementor Widget
	 */
	public $elementor_conf = [];

	/**
	 * Class name of the associated loop block
	 */
	public $block_class;

	/**
	 * Init and setup options.
	 */
	abstract public function init();

	/**
	 * Get option sections.
	 * 
	 * @return array
	 */
	abstract public function get_sections();

	/**
	 * Run only when we're in the page builder.
	 *
	 * @return void
	 */
	public function init_editor()
	{
		// Create a reference map and setup option callbacks.
        foreach ($this->options as $section_key => $section) {
            foreach ($section as $key => $option) {
				$this->options_map[$key] = $section_key;

				// Run the callback for the options, usually for in editor.
				$this->options[$section_key][$key] = $this->do_option_callbacks($option);
            }
		}
		
		// Re-position as needed.
		foreach ($this->options as $section_key => $section) {
            foreach ($section as $key => $option) {
                if (isset($option['position'])) {
                    $this->move_option(
                        $key,
                        $option['position']['of'],
                        $option['position']['at']
                    );
                }
            }
		}
	}

	/**
	 * Get the class name of the block these options are for
	 */
	public function get_block_class()
	{
		if (!$this->block_class) {

			$block_class       = explode('\\', get_class($this));
			$this->block_class = str_replace(
				'_Options',
				'',
				end($block_class)
			);

			// Special case: Loops.
			if ($block_class[ count($block_class) - 2 ] === 'Loops') {
				$this->block_class = 'Loops\\' . $this->block_class;
			}
		}

		$class = '\Bunyad\Blocks\\' . $this->block_class;

		// Fallback if doesn't exist.
		if (!class_exists($class)) {
			$class = '\Bunyad\Blocks\Base\\' . (
				strpos($class, 'Loops') !== false ? 'LoopBlock' : 'Block'
			);
		}

		return $class;
	}

	/**
	 * Add defaults from the relevant block to the options
	 */
	protected function _add_defaults($props = [])
	{
		if (!$props) {
			$class = $this->get_block_class();
			$props = $class::get_default_props();
		}

		foreach ($this->options as $section_key => $section) {
			foreach ($section as $key => $option) {

				// This default should be preserved (can't be overwritten).
				if (!empty($option['default_forced'])) {
					continue;
				}

				// Add default from props.
				if (array_key_exists($key, $props)) {

					$new_value = $props[$key];
                    if (isset($option['default'])) {
						$expected_type = gettype($option['default']);

						// Convert boolean and integers to string if string expected as default.
						if ($expected_type === 'string' && in_array(gettype($new_value), ['boolean', 'integer'])) {
							$new_value = (string) $new_value;
						}

						// Set empty value for switcher with falsey defaults. We want them to be always saved.
						// As they may inherit from global by default.
						// if (!$new_value && $option['type'] === 'switcher') {
						// 	$new_value = '';
						// }
                    }

					$this->options[$section_key][$key]['default'] = $new_value;
				}
			}
		}
	}

	/**
	 * Move an item in the options array.
	 *
	 * @uses \Bunyad\Util\array_insert()
	 * @param string $key      The option key to move. 
	 * @param string $target   Target option key to move before/after.
	 * @param string $position To move 'before' or 'after' the target.
	 * @return void
	 */
	public function move_option($key, $target, $position = 'before')
	{
		$section = $this->options_map[$key];
		$section_target = $this->options_map[$target];

		// Remove it first and update section in map.
		$value = $this->options[$section][$key];
		unset($this->options[$section][$key]);
		$this->options_map[$key] = $section_target;

        // Move it now.
        Util\array_insert(
            $this->options[$section_target],
            $target,
            [$key => $value],
            $position
		);
	}

	/**
	 * Get all the options.
	 * 
	 * @param boolean $key_value Whether to return key => value pairs
	 * @return array
	 */
	public function get_all($key_value = false)
	{
		if (!$this->options) {
			$this->init();
		}

		if (!$key_value) {
			return $this->options;
		}

		// Convert to key value pair.
		$options = [];
		foreach ($this->options as $section) {
			foreach ($section as $key => $option) {
				$options[$key] = $option;
			}
		}

		return $options;
	}

	/**
	 * Remove a registered option from the array
	 * 
	 * @param array $keys Array of keys to remove
	 */
	public function remove_options($keys)
	{
		$to_remove = (array) $keys;

		foreach ($this->options as $sec_key => $section) {
			foreach ($section as $key => $option) {
				if (in_array($key, $to_remove)) {
					unset($this->options[$sec_key][$key]);
				}
			}
		}
	}

	/**
	 * Update an existing option array.
	 *
	 * @param string $key
	 * @param array $value
	 * @return void
	 */
	public function change_option($key, $value)
	{
		$to_change = [$key => $value];

		foreach ($this->options as $sec_key => $section) {
			foreach ($section as $key => $option) {
				if (!isset($to_change[$key])) {
					continue;
				}

				if (is_array($to_change[$key])) {
					$this->options[$sec_key][$key] = array_replace(
						$this->options[$sec_key][$key],
						$to_change[$key]
					);
				} else {
					$this->options[$sec_key][$key] = $to_change[$key];
				}
			}
		}
	}

	/**
	 * Do the callbacks for a specified options. 
	 * 
	 * This will ensure it's called via correct scope and protected methods get called.
	 *
	 * @param array $option
	 * @return array
	 */
	public function do_option_callbacks(array $option)
	{
		if (isset($option['editor_callback']) && is_callable($option['editor_callback'])) {
			$option = call_user_func($option['editor_callback'], $option);
			unset($option['editor_callback']);
		}

		if (isset($option['options']) && is_callable($option['options'])) {
			$option['options'] = call_user_func($option['options']);
		}

		return $option;
	}

	public function get_common_data(array $options = [])
	{
		if (!$this->common) {
			$this->common = new OptionsData;

			// Replace common from theme.
			if (is_callable([\Bunyad::core(), 'get_common_data'])) {
				$options = array_replace($options, (array) \Bunyad::core()->get_common_data('options'));
			}
		}

		if (count($options)) {
			$this->common->append($options);
		}

		return $this->common;
	}
}PK03Y˻��99#smartmag-core/blocks/base/query.php<?php

namespace Bunyad\Blocks\Base;
use \WP_Query;

/**
 * Dynamic Blocks Query Class
 */
class Query
{
	protected $block;
	protected $data  = [];
	protected $props = [];
	protected $query_args = [];

	/**
	 * @param Bunyad_Blocks_Base $block
	 */
	public function __construct($props = [], $block = null)
	{
		$this->props = $props;
		$this->block = $block;
	}

	/**
	 * Process props and setup the query
	 * 
	 * @return \WP_Query|null
	 */
	public function setup()
	{
		/**
		 * Applying a heading filter. Set the correct term/cat.
		 */
		if ($this->props['filter']) {
			unset(
				$this->props['cat'],
				$this->props['offset'],
				$this->props['orig_offset']
			);

			$taxonomy = 'category';
			if ($this->props['filters'] === 'tag') {
				$taxonomy = 'post_tag';
			}

			// Only for shortcode yet.
			if ($this->props['filters_tax']) {
				$taxonomy = $this->props['filters_tax'];
			}

			$this->props = array_replace($this->props, [
				'query_type' => 'custom',
				'tax_ids'    => [$this->props['filter']],
				'filters'    => false,
				'taxonomy'   => $taxonomy,
			]);
		}

		/**
		 * Setup and execute the query.
		 */
		if (isset($props['query_args']) && is_array($props['query_args'])) {
			$this->query_args = $props['query_args'];
		}

		if (isset($this->props['cat']) && $this->props['cat'] === '__current') {
			$main = get_queried_object();
			if (is_object($main) && !empty($main->term_id)) {
				$this->props['cat'] = $main->term_id;
			}
		}
		
		$this->query_args = array_replace($this->query_args, [
			'posts_per_page' => (!empty($this->props['posts']) ? intval($this->props['posts']) : 4), 
			'post_status'    => 'publish',
			'order'          => ($this->props['sort_order'] == 'asc' ? 'asc' : 'desc'),
		]);

		$this->setup_query_data();

		// Add a filter
		$query_args  = apply_filters(
			'bunyad_block_query_args', 
			$this->query_args, 
			$this->block, 
			$this->props  // redundant but backward compatibility
		);

		$this->data['query'] = new WP_Query($query_args);
	
		// Disable title if empty
		if (empty($this->data['heading']) && is_object($this->block)) {
			$this->block->props['heading_type'] = 'none';
		}
		
		// Process filters
		$this->process_filters();

		return $this->data;
	}

	/**
	 * Processs and setup the query args and block data.
	 *
	 * @return array
	 */
	public function setup_query_data()
	{
		$props = $this->props;

		/**
		 * Setup internal variables and some legacy aliases.
		 */
		// Main category / taxonomy term object.
		$term      = '';
		$main_term = '';

		$link      = '';
		$title     = $props['heading'];

		/**
		 * Initialize the query args.
		 */
		$query_args = array_replace($this->query_args, [
			'posts_per_page' => !empty($props['posts'])  ? intval($props['posts']) : '',
			'offset'         => !empty($props['offset']) ? $props['offset'] : ''
		]);

		$query_args = array_filter($query_args);
		
		if (isset($props['sticky_posts']) && !$props['sticky_posts']) {
			$query_args['ignore_sticky_posts'] = 1;
		}

		if (!empty($props['skip_posts'])) {
			$offset = !empty($query_args['offset']) ? $query_args['offset'] : '';
			$query_args['offset'] = intval($offset) + intval($props['skip_posts']);
		}
		
		// Add pagination if available.
		if (!empty($props['page'])) {
			$query_args['paged'] = $props['page'];
		}

		/**
		 * Sortng criteria and order.
		 */		
		if (!empty($props['sort_order'])) {
			$query_args['order'] = $props['sort_order'] == 'asc' ? 'asc' : 'desc';
		}

		$sort_by = !empty($props['sort_by']) ? $props['sort_by'] : '';
		switch ($sort_by) {
			case 'modified':
				$query_args['orderby'] = 'modified';
				break;
				
			case 'random':
				$query_args['orderby'] = 'rand';
				break;
	
			case 'comments':
				$query_args['orderby'] = 'comment_count';
				break;
				
			case 'alphabetical':
				$query_args['orderby'] = 'title';
				break;
				
			case 'rating':
				$query_args = array_replace(
					$query_args, 
					[
						'meta_key' => '_bunyad_review_overall', 
						'orderby' => 'meta_value_num'
					]
				);
				break;

			case 'jetpack_views':
				$jetpack_args = $this->get_jetpack_args();
				$query_args   = array_replace($query_args, $jetpack_args);
				break;

			case 'views':
			case 'views-7days':
			case 'views-days':
				$query_args = array_replace($query_args, $this->get_post_views_args());
				break;
		}

		/**
		 * Limit by custom taxonomy?
		 * 
		 * Note: Only makes sense if there are tax_ids provided too as you can't get all 
		 * posts from a taxonomy. That's same as getting all posts, a la posts from all post_tags.
		 * But we have added a fallback since v7.0.1
		 * 
		 * Important: Also used by filters.
		 */
		if (!empty($props['taxonomy'])) {
	
			$_taxonomy = $props['taxonomy'];
			$terms = !empty($props['tax_ids']) ? (array) $props['tax_ids'] : (array) $props['terms'];

			// Backward compat: Add main cat to terms list, if any.
			if (!empty($props['cat'])) {
				array_push($terms, $props['cat']);
			}

			// Get all the terms that belong to this taxonomy if no taxonomy ids specified.
			if (empty($terms)) {
				$_terms = get_terms([
					'taxonomy'   => $_taxonomy, 
					'hide_empty' => false
				]);
				
				if ($_terms) {
					$terms = wp_list_pluck($_terms, 'term_id');
				}
			}

			if (!empty($terms)) {
				$query_args['tax_query'] = [[
					'taxonomy' => $_taxonomy,
					'field'    => 'term_id',
					'terms'    => $terms
				]];

				// Get and configure the main term.
				$term = get_term_by('id', (!empty($props['cat']) ? $props['cat'] : current($terms)), $_taxonomy);
				if (empty($title)) {
					$title = $term->name; 
				}

				$link = get_term_link($term, $_taxonomy);
			}
		}
		else {
			// Terms / cats may have slug strings instead of ids.
			if (!empty($props['terms'])) {
				$terms      = $props['terms'];
				$slug_terms = $this->get_slug_ids($props['terms']);

				if ($slug_terms) {
					$terms = array_merge($props['terms'], $slug_terms);
				}
			}
			else {
				$terms = [];
			}
		
			/**
			 * Got main category/term? Use it for filter, link, and title
			 */
			if (!empty($props['cat'])) {
				
				// Might be an id or a slug
				$term = $category = is_numeric($props['cat']) ? get_category($props['cat']) : get_category_by_slug($props['cat']);
				
				// Category is always the priority main term
				$main_term = $term;
				
				if (!empty($category)) {
					array_push($terms, $category->term_id);
						
					if (empty($title)) {
						$title = $category->cat_name;
					}
				
					if (empty($link)) {
						$link = get_category_link($category);
					}
				}
			}
			
			/**
			 * Filtering by tag(s)?
			 */
			if (!empty($props['tags'])) {

				$tag_ids = $props['tags'];

				// Get ids from slugs, if any.
				$slug_terms = $this->get_slug_ids($props['tags'], 'post_tag');
				if ($slug_terms) {
					$tag_ids = array_merge($tag_ids, $slug_terms);
				}

				if ($tag_ids) {
					$query_args['tag__in'] = $tag_ids;
				}

				// Legacy: Get the first tag for main term, assuming it's a slug.
				$tax_tag = current($props['tags']);
				if (!is_numeric($tax_tag)) {
					$term = get_term_by('slug', $tax_tag, 'post_tag');

					if ($term) {
						// Use the first tag as main term if a category isn't already the main term
						if (!$main_term) {
							$main_term = $term;
						}
						
						if (empty($title)) {
							$title = $term->slug; 
						}
						
						if (empty($link)) {
							$link = get_term_link($term, 'post_tag');
						}
					}
				}
			}
			
			/**
			 * Multiple categories/terms filter
			 */
			if (count($terms)) {
				$query_args['cat'] = join(',', $terms);
				
				// No category as main and no tag either? Pick first category from multi cats.
				if (!$main_term) {
					$main_term = current($terms);
				}
			}
		}

		/**
		 * By specific post IDs?
		 */
		if (!empty($props['post_ids'])) {
			
			$ids = array_map('intval', $props['post_ids']);
			$query_args['post__in'] = $ids;
		}

		/**
		 * Post Formats?
		 */
		if (!empty($props['post_formats'])) {
			
			if (!isset($query_args['tax_query'])) {
				$query_args['tax_query'] = [];
			}

			// Add post format prefix
			$formats = array_map(function($val) {
				return 'post-format-' . trim($val);
			}, $props['post_formats']);
			
			$query_args['tax_query'][] = [
				'taxonomy' => 'post_format',
				'field'    => 'slug',
				'terms'    => (array) $formats,
			];
		}

		/**
		 * Exclude posts IDs.
		 */
		if (!empty($props['exclude_ids'])) {
			$ids = array_map('intval', (array) $props['exclude_ids']);
			$query_args['post__not_in'] = $ids;
		}

		/**
		 * Exclude tags by ids or slugs.
		 */
		if (!empty($props['exclude_tags'])) {

			$tag_ids = $props['exclude_tags'];

			// Get ids from slugs, if any.
			$slug_terms = $this->get_slug_ids($tag_ids, 'post_tag');
			if ($slug_terms) {
				$tag_ids = array_merge($tag_ids, $slug_terms);
			}

			if ($tag_ids) {
				$query_args['tag__not_in'] = $tag_ids;
			}
		}

		/**
		 * Exclude terms (mainly categories) by ids or slugs.
		 */
		if (!empty($props['exclude_terms'])) {
			$exclude_term_ids = $props['exclude_terms'];
			
			// Get ids from slugs, if any.
			$slug_terms = $this->get_slug_ids($exclude_term_ids);
			if ($slug_terms) {
				$tag_ids = array_merge($exclude_term_ids, $slug_terms);
			}

			if ($exclude_term_ids) {
				$taxonomy = $props['taxonomy'] ?: 'category';
				if (!isset($query_args['tax_query'])) {
					$query_args['tax_query'] = [];
				}

				$query_args['tax_query'][] = [
					'taxonomy' => $taxonomy,
					'field'    => 'term_id',
					'terms'    => $exclude_term_ids,
					'operator' => 'NOT IN',
				];
			}
		}
		
		/**
		 * Review Posts Only.
		 */
		if (!empty($props['reviews_only'])) {
			$query_args['meta_key'] = '_bunyad_review_overall';
		}
		
		/**
		 * Custom Post Types?
		 * 
		 * Legacy: Supports multiple post types
		 */
		if (!empty($props['post_type'])) {
			$query_args['post_type'] = array_map('trim', explode(',', $props['post_type']));
		}

		/**
		 * Enable post views additions for Sphere Post Views.
		 */
		if (!empty($this->props['post_views'])) {
			$query_args['views_query'] = $query_args['views_query'] ?? [];
		}

		// Setup accessible variables
		$this->data = array_replace($this->data, [
			'term_link'       => $link,
			'heading'         => $title,
			'query_args'      => $query_args,
			'term'    	      => $main_term,
			'display_filters' => [],
		]);

		$this->query_args = $query_args;
		return $query_args;
	}

	/**
	 * Get term IDs given term slugs of a taxonomy.
	 * 
	 * Note: Numeric slugs will be ignored.
	 * 
	 * @param array $slugs
	 * @param string $taxonomy
	 * @return array
	 */
	protected function get_slug_ids(array $slugs, $taxonomy = 'category')
	{
		$terms      = [];
		$slug_terms = [];

		// Ignore numeric slugs.
		foreach ((array) $slugs as $term) {
			if (!is_numeric($term)) {
				array_push($slug_terms, $term);
			}
		}
		
		// If we have slug terms, get their ids and add.
		if ($slug_terms) {
			$results = get_terms($taxonomy, [
				'slug'         => $slug_terms, 
				'hide_empty'   => false, 
				'hierarchical' => false
			]);

			if ($results) {
				$terms = wp_list_pluck($results, 'term_id');
			}
		}

		return $terms;
	}

	/**
	 * Get Sphere Post Views sort arguments to add to the query.
	 *
	 * @return array
	 */
	public function get_post_views_args()
	{
		// Fallback to comments if plugin not active.
		if (!class_exists('\Sphere\PostViews\Plugin')) {
			return [
				'orderby' => 'comment_count'
			];
		}

		$sort = $this->props['sort_by'];
		$query_args = [
			'orderby' => 'post_views'
		];

		if ($sort !== 'views') {
			switch ($sort) {
				case 'views-7days':
					$days = 7;
					break;

				default:
					$days = $this->props['sort_days'] <= 0 ? 30 : $this->props['sort_days'];
					break;
			}

			$query_args['views_query'] = [
				'range'         => true,
				'time_unit'     => 'day',
				'time_quantity' => $days,
				'add_totals'    => false,
			];
		}

		return $query_args;
	}

	/**
	 * Get query args to fetch posts based on Jetpack Views Counters sort.
	 * 
	 * @uses \stats_get_csv()
	 * @return array Query args to add.
	 */
	public function get_jetpack_args()
	{
		if (!function_exists('\stats_get_csv')) {
			return [];
		}

		/**
		 * Get posts by views from Jetpack stat module (wordpress.com stats)
		 */
		$post_views = \stats_get_csv('postviews', [
			'days'  => absint($this->props['sort_days']),
			'limit' => 100
		]);

		$post_ids   = array_filter(wp_list_pluck((array) $post_views, 'post_id'));
		$query_args = [];

		// No posts found to be sorted by views.
		if (!$post_ids || !count($post_ids)) {

			// Fallback to comment count.
			$query_args['orderby'] = 'comment_count';
		}
		else {
		
			// Use specific posts to get if available.
			$query_args += [
				'offset'   => 0,
				'post__in' => $post_ids, 
				'orderby'  => 'post__in'
			];
		}

		return $query_args;
	}

	/**
	 * Process block filters to be used later in the heading.
	 */
	public function process_filters()
	{
		$props = $this->props;

		if (empty($props['filters']) || !is_object($this->block)) {
			return;
		}

		$display_filters = array();

		/**
		 * Process display filters - supports ids or slugs
		 */
		
		$filters_terms = $props['filters_terms'];
		if (!empty($props['filters_tags'])) {
			$filters_terms = $props['filters_tags'];
		}
		
		// Which taxonomy? Default to category
		$tax = 'category';

		if ($props['filters'] == 'tag') {
			$tax = 'post_tag';	
		}
		// Not implemented in Elementor yet. Shortcode only.
		else if ($props['filters'] == 'taxonomy' && !empty($props['filters_tax'])) {
			$tax = $props['filters_tax'];
		}
		
		// Auto-select 3 sub-cats for category if terms are missing
		if ($tax == 'category' && empty($filters_terms) && is_object($this->data['term'])) {

			$filters_terms = wp_list_pluck(
				get_categories(array(
					'child_of' => $this->data['term']->term_id, 
					'number'   => 3, 
					'hierarchical' => false
				)),
				'term_id'
			);
		}
		
		// Still no filter terms? 
		if (empty($filters_terms)) {
			return;
		}
		
		foreach ($filters_terms as $id) {
			
			// Supports slugs
			if (!is_numeric($id)) {
				$term = get_term_by('slug', $id, $tax);
			}
			else {
				$term = get_term($id);
			}
			
			if (!is_object($term)) {
				continue;
			}
			
			$link = get_term_link($term);
			$display_filters[] = '<li><a href="'. esc_url($link)  .'" data-id="' . esc_attr($term->term_id) . '">'. esc_html($term->name) .'</a></li>';
		}

		return ($this->data['display_filters'] = $display_filters);
	}

	public function get_data()
	{
		return $this->data;
	}
}PK03Y��h80smartmag-core/blocks/breadcrumbs/breadcrumbs.php<?php

namespace Bunyad\Blocks;

use \Bunyad;
use Bunyad\Blocks\Base\Block;

/**
 * Breadcrumbs block.
 */
class Breadcrumbs extends Block
{
	public $id = 'breadcrumbs';

	/**
	 * @inheritdoc
	 */
	public static function get_default_props() 
	{
		$props = [
			'classes'       => '',
			'inner_classes' => '',
			'style'         => 'b',
			'width'         => 'full',
			'disable_at'    => [],
			'enabled'       => true,
			
			// @deprecated v9.2, use renderer instead.
			'use_yoast'     => true,

			// Empty is auto. Options: rankmath, sphere, yoast.
			'renderer'      => '',

			// Add context like Category: etc.
			'add_context'   => 1, 

			// Add You Are At: label.
			'add_label'     => false,
			'label_text'    => '',

			'show_current_single' => true,
		];

		// Setup from global options.
        if (Bunyad::options()) {

			// Set if enabled.
			$props = array_replace($props, [
				'enabled'    => Bunyad::options()->breadcrumbs_enable,
				'add_label'  => Bunyad::options()->breadcrumbs_add_label,
				'renderer'   => Bunyad::options()->breadcrumbs_renderer,
				'label_text' => Bunyad::options()->get_or(
					'breadcrumbs_label_text',
					esc_html_x('You are at:', 'breadcrumbs', 'bunyad')
				),
				'style'       => Bunyad::options()->breadcrumbs_style,
				'add_context' => Bunyad::options()->breadcrumbs_add_context,
				'show_current_single' => Bunyad::options()->breadcrumbs_current_single,
			]);

			// Only valid for style b.
			if ($props['style'] === 'b') {
				$props['width'] = Bunyad::options()->breadcrumbs_width;
			}

			// Find disabled locations from theme settings.
			// Note: Homepage is disabled by default by the Sphere breadcrumbs.
			$location_keys = [
				'single', 
				'page', 
				'search', 
				'archive'
			];

			$disable_at = [];
			foreach ($location_keys as $key) {
				if (!Bunyad::options()->get('breadcrumbs_' . $key)) {
					$disable_at[] = $key;
				}
			}

			$props['disable_at'] = $disable_at;
        }

		return $props;
	}

	/**
	 * Render the breadcrumbs.
	 * 
	 * @return void
	 */
	public function render()
	{
		// Check if Yoast or RankMath SEO's Breadcrumbs are enabled or chosen as renderer.
		$is_yoast    = $this->is_yoast();
		$is_rankmath = $this->is_rankmath();

		// Neither theme nor Yoast's Breadcrumbs enabled.
		if (!$is_yoast && !$is_rankmath && !$this->props['enabled']) {
			return;
		}

		// Sphere Core Class is required.
		if (!class_exists('\Sphere\Core\Plugin', false)) {
			return;
		}

		$wrap_classes = array_filter(array_merge(
			[
				'breadcrumbs',
				$this->props['width'] !== 'full' ? 'ts-contain' : 'is-full-width',
				'breadcrumbs-' . $this->props['style'],
			],
			(array) $this->props['classes']
		));

		$inner_classes = array_merge(['inner ts-contain'], (array) $this->props['inner_classes']);

		$before = sprintf(
			'<nav class="%1$s" id="breadcrumb"><div class="%2$s">',
			esc_attr(join(' ', $wrap_classes)),
			esc_attr(join(' ', $inner_classes))
		);

        if ($this->props['add_label']) {
            $before .= '<span class="label">' . esc_html($this->props['label_text']) .'</span>';
		}
		
		$after   = '</div></nav>';

		// Output using RankMath breadcrumbs.
		if ($is_rankmath) {
			return \rank_math_the_breadcrumbs([
				'wrap_before' => $before,
				'wrap_after'  => $after,
			]);
		}

		// Output Yoast Breadcrumbs.
		if ($is_yoast) {
			return \yoast_breadcrumb($before, $after);
		}

		/** @var \Sphere\Core\Breadcrumbs\Module $breadcrumbs */
		$breadcrumbs = \Sphere\Core\Plugin::get('breadcrumbs');
		if (!$breadcrumbs) {
			return;
		}

		$labels = [
			'home'     => esc_html_x('Home', 'breadcrumbs', 'bunyad'),
			'search'   => esc_html_x('Search Results for "%s"', 'breadcrumbs', 'bunyad'),
			'404'      => esc_html_x('Error 404', 'breadcrumbs', 'bunyad'),
			'paged'    => esc_html_x(' (Page %d)', 'breadcrumbs', 'bunyad'),
			'category' => '%s',
			'tax'      => '%s',
			'tag'      => '%s',
			'author'   => '%s',
		];

		if ($this->props['add_context']) {
			$labels = array_replace($labels, [
				'category' => esc_html_x('Category: "%s"', 'breadcrumbs', 'bunyad'),
				'tax'      => esc_html_x('Archive for "%s"', 'breadcrumbs', 'bunyad'),
				'tag'      => esc_html_x('Posts Tagged "%s"', 'breadcrumbs', 'bunyad'),
				'author'   => esc_html_x('Author: %s', 'breadcrumbs', 'bunyad'),
			]);
		}

		$breadcrumbs->render([
			'primary_cat_callback' => [Bunyad::blocks(), 'get_primary_cat'],
			
			// Spaces added left and right to be same as Yoast.
			'delimiter'     => '<span class="delim">&raquo;</span>',

			'before'        => $before,
			'after'         => $after,
			'disable_at'    => $this->props['disable_at'],
			'labels'        => $labels,
			
			'show_current_single' => $this->props['show_current_single'],
		]);
	}

	/**
	 * Check if RankMath Breadcrumb enabled.
	 * 
	 * @return boolean
	 */
	public function is_rankmath()
	{
		if ($this->props['renderer'] === 'sphere') {
			return false;
		}

		if ($this->props['renderer'] === 'rankmath') {
			return function_exists('rank_math_the_breadcrumbs');
		}

		if (class_exists('\RankMath\Helper', false) && is_callable(['\RankMath\Helper', 'is_breadcrumbs_enabled'])) {
			if (function_exists('rank_math_the_breadcrumbs')) {
				return \RankMath\Helper::is_breadcrumbs_enabled();
			}
		}

		return false;
	}

	/**
	 * Check if Yoast Breadcrumb enabled.
	 * 
	 * @return boolean
	 */
	public function is_yoast()
	{
		if ($this->props['renderer'] === 'sphere') {
			return false;
		}
		
		if (!$this->props['use_yoast']) {
			return false;
		}

		if ($this->props['renderer'] === 'yoast') {
			return function_exists('yoast_breadcrumb');
		}

		$is_yoast = false;
		if (class_exists('\WPSEO_Options') && function_exists('yoast_breadcrumb')) {
			if (is_callable(['WPSEO_Options', 'get']) && \WPSEO_Options::get('breadcrumbs-enable', false)) {
				$is_yoast = true;
			}
		}

		return $is_yoast;
	}
}PK03YD�,�P
P
,smartmag-core/blocks/breadcrumbs/options.php<?php
namespace Bunyad\Blocks;

/**
 * Ads block options
 */
class Breadcrumbs_Options extends Base\Options
{
	public $block_id = 'Breadcrumbs';

	public function init($type = '') 
	{
		// Block name to be used by page builders
		$this->block_name = esc_html__('Breadcrumbs', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon eicon-progress-tracker',
			'categories' => ['smart-mag-blocks'],
		];

		/**
		 * General Options.
		 */
		$options['sec-general'] = [			
			'style' => [
				'label'       => esc_html__('Breadcrumbs Style', 'bunyad-admin'),
				'type'        => 'select',
				'options' => [
					'a' => esc_html__('A: Simple', 'bunyad-admin'),
					'b' => esc_html__('B: With Background', 'bunyad-admin'),
				],
				'label_block' => true,
				'default'     => 'a',
			],

			'width' => [
				'label'       => esc_html__('Breadcrumbs Width', 'bunyad-admin'),
				'type'        => 'select',
				'options' => [
					'full' => esc_html__('Full Width', 'bunyad-admin'),
					'wrap' => esc_html__('Site Width', 'bunyad-admin'),
				],
				'label_block' => true,
				'condition'   => ['style' => 'b'],
				'default'     => 'full',
			],

			'add_label' => [
				'label'       => esc_html__('Add Label?', 'bunyad-admin'),
				'type'        => 'switcher',
				'return_value' => '1',
				'default'      => '1',
			],

			'renderer' => [
				'label'       => esc_html__('Breadcrumbs Renderer', 'bunyad-admin'),
				'type'        => 'select',
				'default'      => '',
				'options' => [
					''         => esc_html__('Auto', 'bunyad-admin'),
					'sphere'   => esc_html__('Theme Breadcrumbs', 'bunyad-admin'),
					'rankmath' => esc_html__('RankMath Plugin', 'bunyad-admin'),
					'yoast'    => esc_html__('Yoast', 'bunyad-admin'),
				],
			],

			'label_text' => [
				'label'       => esc_html__('Label Text', 'bunyad-admin'),
				'type'        => 'text',
				'condition'   => ['add_label' => '1'],
				'default'     => '',
			],

			'disable_at' => [
				'label' => '',
				'type'  => 'hidden',
				'default' => []	
			]
		];

		/**
		 * Style options.
		 */
		$options['sec-style'] = [
			'css_margins' => [
				'label'       => esc_html__('Margins', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .breadcrumbs' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_paddings' => [
				'label'       => esc_html__('Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .breadcrumbs' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_typography' => [
				'label'       => esc_html__('Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .breadcrumbs',
				'default'     => [],
			],
		];

		$this->options = $options;
		$this->_add_defaults();
	}

	public function get_sections()
	{
		return [
			'sec-general' => [
				'label' => esc_html__('General', 'bunyad-admin')
			],
			'sec-style'   => [
				'label' => esc_html__('Style', 'bunyad-admin'),
				'tab'   => 'style'
			],
		];
	}
}PK03Y��Y�qq$smartmag-core/blocks/codes/codes.php<?php

namespace Bunyad\Blocks;

use \Bunyad;
use Bunyad\Blocks\Base\Block;

/**
 * Ads and Custom Code block.
 */
class Codes extends Block
{
	public $id = 'codes';

	/**
	 * @inheritdoc
	 */
	public static function get_default_props() 
	{
		$props = [
			'label'    => '',
			'code'     => '',
			'code_amp' => '',
		];

		return $props;
	}

	/**
	 * Render all of the post meta HTML.
	 * 
	 * @return void
	 */
	public function render() 
	{	
		$label = '';
		if ($this->props['label']) {
			$label = sprintf('<div class="label">%s</div>', esc_html($this->props['label']));
		}

		$wrap = sprintf(
			'<div class="a-wrap">%1$s %2$s</div>',
			$label,
			// This code is saved by valid priveleged users.
			Bunyad::amp()->active() ? $this->props['code_amp'] : $this->props['code']
		);

		$wrap = str_replace('<img', '<img loading="lazy"', $wrap);
		echo do_shortcode($wrap);
	}
}PK03Y��&smartmag-core/blocks/codes/options.php<?php
namespace Bunyad\Blocks;

/**
 * Ads block options
 */
class Codes_Options extends Base\Options
{
	public $block_id = 'Codes';

	public function init($type = '') 
	{
		// Block name to be used by page builders
		$this->block_name = esc_html__('Ads / Codes', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon eicon-code',
			'categories' => ['smart-mag-blocks'],
		];

		/**
		 * General Options.
		 */
		$options['sec-general'] = [			
			'code' => [
				'name'    => 'code',
				'label'   => esc_html__('Ad / HTML Code', 'bunyad-admin'),
				'type'    => 'textarea',
				'label_block' => true,
				'sanitize_callback' => false,
			],

			'code_amp' => [
				'name'    => 'code_amp',
				'label'   => esc_html__('AMP Code', 'bunyad-admin'),
				'description' => 'Only used if its an AMP enabled page and its an AMP visitor.',
				'type'    => 'textarea',
				'label_block' => true,
				'sanitize_callback' => false,
			],

			'label' => [
				'name'    => 'label',
				'label'   => esc_html__('Label (Optional)', 'bunyad-admin'),
				'type'    => 'text',
				'default' => '',
			],

		];

		$this->options = $options;
		$this->_add_defaults();

		/**
		 * Widget only options.
		 */
		if ($type === 'widget') {
			$this->options['sec-general'] += [
				'widget_title' => [
					'name'     => 'widget_title',
					'label'    => esc_html__('Widget Title (Optional)', 'bunyad-admin'),
					// 'description' => esc_html__('Not recommended except for minimal style.', 'bunyad-admin'),
					'type'     => 'text',
					'position' => [
						'of' => 'code',
						'at' => 'before'
					]
				]
			];
		}
	}

	public function get_sections()
	{
		return [
			'sec-general' => [
				'label' => esc_html__('General', 'bunyad-admin')
			],
		];
	}
}PK03Y6�9��(�(&smartmag-core/blocks/header/header.php<?php

namespace Bunyad\Blocks;

use Bunyad;
use Bunyad\Blocks\Base\Block;

/**
 * Site Header block.
 */
class Header extends Block
{
	public $id = 'header';

	/**
	 * @inheritdoc
	 */
	public static function get_default_props() 
	{
		$props = [
			// Can be 'mobile'.
			'type'       => '',

			'style'      => '',

			'width'      => 'full-wrap',
			'width_top'  => '',
			'width_mid'  => '',
			'width_bot'  => '',

			// Both sticky values accept a string.
			'sticky'       => '',
			'sticky_type'  => '',
			'sticky_full'  => '',

			'scheme_top'   => 'dark',
			'scheme_mid'   => 'dark',
			'scheme_bot'   => 'dark',

			'items_top_left'   => [],
			'items_top_center' => [],
			'items_top_right'  => [],

			'items_mid_left'   => [],
			'items_mid_center' => [],
			'items_mid_right'  => [],

			'items_bot_left'   => [],
			'items_bot_center' => [],
			'items_bot_right'  => [],

			'is_scroller_top'  => 0,
			'is_scroller_bot'  => 0,

			// Off-canvas menu props.
			'offcanvas_scheme'         => '',
			'offcanvas_mobile_widgets' => '',
			'offcanvas_desktop_menu'   => '',
			'offcanvas_social'         => [],

			// Button Components.
			'button_link'    => '#',
			'button_style'   => 'alt',
			'button_text'    => 'Button',
			'button_target'  => '',

			'button2_link'   => '#',
			'button2_style'  => 'a',
			'button2_text'   => 'Button',
			'button2_target' => '',

			'button3_link'   => '#',
			'button3_style'  => 'alt',
			'button3_text'   => 'Button',
			'button3_target' => '',

			'date_format'   => '',
			'text'          => '',
			'text2'         => '',
			'text3'         => '',
			'text4'         => '',

			// Navigation options.
			'nav_hov_style'   => 'a',

			// Nav small / secodnary nav.
			'nav_small_menu'  => '',

			// Mobile nav.
			'nav_scroll_menu'  => '',
			'nav_scroll_hov_style' => 'a',

			// Social options.
			'social_style'    => 'a',
			'social_services' => [],

			// Search
			'search_type'   => 'icon',

			// News Ticker
			'ticker_posts'   => 8,
			'ticker_heading' => '',
			'ticker_tags'    => '',
			'ticker_delay'   => 8,

			// Auth link.
			'auth_icon'      => true,
			'auth_text'      => '',
			'auth_logout'    => true,

			// Hamburger
			'hamburger_style' => 'a',

		];

		return $props;
	}

	public function init()
	{
        if (!Bunyad::options()) {
			return;
        }

		if ($this->props['type'] !== 'mobile') {

			// All except these for main header.
			$keys = array_diff(
				array_keys($this->props),
				[
					'style',
					'type',
					'nav_scroll_menu',
					'nav_scroll_hov_style',
					// 'text4',
					// 'date_format',
					// 'nav_hov_style',
				]
			);

			$prefix = 'header_';
		}
		else {

			// Only these keys, prefixed for mobile. 
			$keys = array_intersect(
				array_keys($this->props),
				[
					'width',
					'width_top',
					'width_mid',
					'width_bot',
					'scheme_top',
					'scheme_mid',
					'scheme_bot',
					'items_top_left',
					'items_top_center',
					'items_top_right',
					'items_mid_left',
					'items_mid_center',
					'items_mid_right',
					'items_bot_left',
					'items_bot_center',
					'items_bot_right',
					'is_scroller_bot',
					'is_scroller_top',
					'nav_scroll_menu',
					'nav_scroll_hov_style',
					// 'date_format',
					'social_style',
					'social_services',
					'sticky',
					'sticky_type'
				]
			);

			$prefix = 'header_mob_';

			// Only search icon supported in mobile header.
			$this->props['search_type'] = 'icon';

			/**
			 * These elements don't have separate mobile settings.
			 */
			$main_keys = [
				'text',
				'button3_link',
				'button3_style',
				'button3_text',
				'button3_target',
			];

			foreach ($main_keys as $option) {
				$this->props[$option] = Bunyad::options()->get('header_' . $option);
			}
		}

		foreach ($keys as $option) {
			$value = Bunyad::options()->get($prefix . $option);

			if (is_array($this->props[$option])) {
				$value = (array) $value;
			}

			$this->props[$option] = $value;
		}
	}

	/**
	 * Render the block heading.
	 * 
	 * @return void
	 */
	public function render()
	{
		// Off-canvas menu should only be included once for main header.
		if ($this->props['type'] !== 'mobile') {
			Bunyad::core()->partial(
				'partials/header/off-canvas-menu',
				[
					'block'          => $this,
					'scheme'         => $this->props['offcanvas_scheme'],
					'mobile_widgets' => $this->props['offcanvas_mobile_widgets'],
					'desktop_menu'   => $this->props['offcanvas_desktop_menu'],
					'social'         => $this->props['offcanvas_social'],
				]
			);
		}
		
		$partial = 'partials/header/header';
		// if (strpos($this->props['style'], 'smart') !== false) {
		// 	$partial .= '-smart';
		// }

		$this->props['style'] = str_replace('smart-', '', $this->props['style']);

		Bunyad::core()->partial(
			$partial,
			[
				'block' => $this
			]
		);
	}

	public function render_item($item)
	{
		$props = [
			'block' => $this
		];

		$partial = $item;

		/**
		 * Props for the relevant partial.
		 */
		switch ($item) {
			case 'button':
			case 'button2':
			case 'button3':
				$partial = 'button';
				$props += [
					'link'   => $this->props[$item . '_link'],
					'target' => $this->props[$item . '_target'],
					'style'  => $this->props[$item . '_style'],
					'text'   => $this->props[$item . '_text'],
					'class'  => $item === 'button' ? 'ts-button1' : 'ts-' . $item
				];
				break;

			case 'nav-small':
				$partial = 'nav-menu';
				$props += [
					'menu'     =>  $this->props['nav_small_menu'],
					'style'    => 'small',
					'location' => ''
				];
				break;

			case 'nav-scroll':
				$partial = 'nav-menu';
				$props += [
					'menu'     =>  $this->props['nav_scroll_menu'],
					'style'    => 'scroll',
					// Fallback to smartmag-mobile if no menu selected.
					'location' => $this->props['nav_scroll_menu'] ? '' : 'smartmag-mobile',
					// No sub-menus.
					'depth'    => 1,
					'hover_style' => $this->props['nav_scroll_hov_style'],
				];
				break;

			case 'nav-menu':
				$props += [
					'hover_style' => $this->props['nav_hov_style'],
				];
				break;

			case 'social-icons':
				$props += [
					'style'    => $this->props['social_style'],
					'services' => $this->props['social_services'],
				];
				break;

			case 'text':
			case 'text2':
			case 'text3':
			case 'text4':
				$partial = 'text';
				$props += [
					'text'  => $this->props[$item],
					'class' => 'h-' . $item,
				];
				break;

			case 'ticker':
				$props += [
					'posts'   => $this->props['ticker_posts'],
					'heading' => $this->props['ticker_heading'],
					'tags'    => $this->props['ticker_tags'],
					'delay'   => $this->props['ticker_delay'],
				];
				break;

			case 'search':
				$props += [
					'type' => $this->props['search_type']
				];
				break;

			case 'logo':
				$props += [
					'type' => $this->props['type']
				];
				break;

			case 'auth':
				$props += [
					'icon'   => $this->props['auth_icon'],
					'text'   => $this->props['auth_text'],
					'logout' => $this->props['auth_logout'],
				];
				break;

			case 'hamburger':
				$props += [
					'style' => $this->props['hamburger_style']
				];
				break;

			case 'date':
				$props += [
					'date_format' => $this->props['date_format']
				];
				break;
		}

		$partial = 'partials/header/' . sanitize_file_name($partial);
		Bunyad::core()->partial($partial, $props);
	}

	/**
	 * Get data for the rows and their items to render.
	 * 
	 * @return array
	 */
	public function get_rows_data()
	{
		$base = [
			'width' => $this->props['width'],
		];

		$data = [];
		foreach (['top', 'mid', 'bot'] as $row) {

			// Skip if all columns empty for this row.
			if (!$this->props["items_{$row}_left"] 
				&& !$this->props["items_{$row}_center"] 
				&& !$this->props["items_{$row}_right"]
			) {
				continue;
			}

			$data[$row] = $base + [
				'left'   => $this->props["items_{$row}_left"],
				'center' => $this->props["items_{$row}_center"],
				'right'  => $this->props["items_{$row}_right"],
			];

			if (!empty($this->props['is_scroller_' . $row])) {
				$data[$row]['is_scroller'] = !empty($this->props['is_scroller_' . $row]);
			}

			if (!empty($this->props['width_' . $row])) {
				$data[$row]['width'] = $this->props['width_' . $row];
			}
		}

		return $data;
	}

	/**
	 * View Helper: Output mobile logo.
	 */
	public function the_mobile_logo()
	{
		if (!Bunyad::options()->mobile_logo_2x) {
			return;
		}

		// Attachment id is saved in the option.
		$id   = Bunyad::options()->mobile_logo_2x;
		$logo = wp_get_attachment_image_src($id, 'full');
		
		if (!$logo) {
			return;
		}

		// Dark logo: Render first for CSS reasons.
		$dark_id = Bunyad::options()->mobile_logo_2x_sd;
		if ($dark_id) {
			$this->render_mobile_logo(
				wp_get_attachment_image_src($dark_id, 'full'),
				[
					'class' => 'logo-mobile logo-image logo-image-dark'
				]
			);
		}

		$this->render_mobile_logo($logo);
	}

	protected function render_mobile_logo($logo, $options = [])
	{
		$options = array_replace([
			'class' => 'logo-mobile logo-image'
		], $options);

		// Have the logo attachment - use half sizes for attributes since it's in 2x size
		if (is_array($logo)) {
			$url = $logo[0]; 
			$width  = round($logo[1] / 2);
			$height = round($logo[2] / 2);
		}
		else { 
			return;
		}

		$attribs = Bunyad::markup()->attribs('mobile-logo', [
			'class'  => $options['class'],
			'src'    => $url,
			'width'  => $width,
			'height' => $height,
			'alt'    => get_bloginfo('name', 'display')
		], ['echo' => false]);

		printf('<img %s/>', $attribs);
	}

	/**
	 * View Helper: Output main logo.
	 */
	public function the_logo($type = '')
	{
		$class = '';

		if ($type === 'dark') {
			$logo    = Bunyad::options()->image_logo_sd;
			$logo_2x = Bunyad::options()->image_logo_2x_sd;
			$class   = 'logo-image logo-image-dark';
		}
		else {
			$logo    = Bunyad::options()->image_logo;
			$logo_2x = Bunyad::options()->image_logo_2x;
			$class   = 'logo-image';
		}

		if (!$logo) {
			return;
		}

		$attrs = [
			'src'    => $logo,
			'class'  => $class,
			'alt'    => get_bloginfo('name', 'display'),
			'srcset' => [
				$logo     => '', 
				$logo_2x  => '2x'
			]
		];

		$logo_data = null;
		if (Bunyad::theme()) {
			$logo_data = Bunyad::theme()->get_logo_data($logo);
			$attrs += $logo_data;
		}

		$attribs = Bunyad::markup()->attribs(
			'image-logo' . ($type ? '-' . $type : ''),
			$attrs,
			['echo' => false]
		);

		printf('<img %s/>', $attribs);
	}
}PK03Y�]�ʆ�(smartmag-core/blocks/heading/heading.php<?php

namespace Bunyad\Blocks;

use Bunyad;
use Bunyad\Blocks\Base\Block;

/**
 * Heading block to use for block headings, widget headings, and so on.
 */
class Heading extends Block
{
	public $id = 'heading';

	/**
	 * @inheritdoc
	 */
	public static function get_default_props() 
	{
		$props = [
			'heading'   => '',
			'type'      => '',
			'link'      => '',
			'html_tag'  => 'h4',
			'align'     => 'left',
			'more'      => '',
			'more_text' => '',
			'more_link' => '',

			// Use accent colors.
			'accent_colors' => '',

			// Term object expected.
			'term'    => null,

			// Array of filter items with links.
			'filters' => [],
		];

		return $props;
	}

	/**
	 * Get classes for a particular style.
	 *
	 * @param string $style
	 * @param array $props
	 * @return array
	 */
	public static function get_classes($style, $props = [])
	{
		$map = [
			'a'   => 'block-head-a block-head-a1',
			'a2'  => 'block-head-a block-head-a2',
			'e'   => 'block-head-e block-head-e1',
			'e2'  => 'block-head-e block-head-e2',
			'e3'  => 'block-head-e block-head-e3',
			'c2'  => 'block-head-c block-head-c2',
		];

		$classes = ['block-head', 'block-head-ac'];
		if (isset($map[$style])) {
			$classes[] = $map[$style];
		}
		else {
			$classes[] = 'block-head-' . $style;
		}

		if (!empty($props['align'])) {
			$classes[] = 'is-' . $props['align'];
		}

		return $classes;
	}

	public function map_global_props($props)
	{
		// Add in heading type from global if not specified.
		if (empty($props['type'])) {
			$props['type'] = Bunyad::options()->block_head_style;
		}

		$option_key = $props['type'];
		// Special case: bhead_align_ and other options will be in a1 and e1.
		if (in_array($option_key, ['a', 'e'])) {
			$option_key .= '1';
		}

		$props = array_replace([
			'align' => Bunyad::options()->get('bhead_align_' . $option_key),
		], $props);

		return $props;
	}

	/**
	 * Render the block heading.
	 * 
	 * @return void
	 */
	public function render()
	{
		// No heading processed? It's important the process() run first
		if (empty($this->props['heading'])) {
			return;
		}
		
		// Heading disabled?
		if ($this->props['type'] == 'none') {
			return;
		}

		// Convert special asterisks to multi-color.
		$heading = $this->convert_text($this->props['heading']);
	
		// Set heading with link if possible
		if (!empty($this->props['link'])) {
			$heading = sprintf(
				'<a href="%1$s">%2$s</a>',
				esc_url($this->props['link']),
				$heading
			);
		}
		
		ob_start();
		?>
					
			<?php
			/**
			 * Heading types: empty/default, block-filter or block
			 */
			if (!$this->props['type'] || !in_array($this->props['type'], ['page'])):
					
					$classes   = $this->get_classes($this->props['type'], $this->props);
					$accent_colors = $this->props['accent_colors'] === 'force';
					
					// Unless disabled, add category id for accent colors.
					if ($this->props['accent_colors'] !== 'none' && is_object($this->props['term'])) { 
						$classes[]     = 'term-color-' . $this->props['term']->term_id;
						$accent_colors = true;
					}

					// Accent colors enabled: Remove the alt color class.
					if ($accent_colors) {
						$classes = array_diff($classes, ['block-head-ac']);
					}

					$view_more_classes = ['view-link'];
					if ($this->props['more']) {
						$view_more_classes[] = 'view-link-' . $this->props['more'];
					}

			?>
				
				<div <?php Bunyad::markup()->attribs('block-heading-wrap', ['class' => $classes]); ?>>

					<?php
						printf(
							'<%1$s class="heading">%2$s</%1$s>',
							esc_html($this->props['html_tag']),
							wp_kses_post($heading)
						);
					?>
					<?php echo $this->get_the_filters(); // phpcs:ignore WordPress.Security.EscapeOutput -- Safe output from method. ?>

					<?php if ($this->props['more_text']): ?>
						<a href="<?php echo esc_url($this->props['more_link']); ?>" class="<?php echo esc_attr(join(' ', $view_more_classes)); ?>">
							<?php 
							echo $this->convert_text(
								esc_html($this->props['more_text'])
							);
							?>
						</a>
					<?php endif; ?>
				</div>
				
			<?php 
			/**
			 * Legacy Heading type: Page
			 */
			else:
			?>

				<h2 class="block-head main-heading prominent"><?php echo wp_kses_post($heading); ?></h2>

			<?php endif; ?>

		<?php

		echo apply_filters('bunyad_blocks_heading', ob_get_clean());
	}

	/**
	 * Get the filters output
	 */
	public function get_the_filters()
	{
		$display_filters = $this->props['filters'];
		$filters = '';

		if ($display_filters) {

			ob_start();
			?>
			
			<ul class="subcats filters">
				<li><a href="#" data-id="0" class="active"><?php esc_html_e('All', 'bunyad'); ?></a></li>
				<?php echo join("\n", $display_filters); ?>
			</ul>
			
			<?php
			$filters = ob_get_clean();
		}

		return apply_filters('bunyad_blocks_heading_filters', $filters);
	}

	/**
	 * Auto-convert some text to icons and so on.
	 *
	 * @param string $text
	 * @return string
	 */
	public function convert_text($text)
	{
		// Convert > to an icon.
		$text = preg_replace('/(?<=\s)(>|&gt;)(?=\s|$)/', '<i class="arrow tsi tsi-angle-right"></i>', $text);

		// Add color for asterisks.
		$text = preg_replace('/(\*|_)(.*?)\1/', '<span class="color">\2</span>', $text);

		return $text;
	}
}PK03Y(�f��&�&(smartmag-core/blocks/heading/options.php<?php
namespace Bunyad\Blocks;

/**
 * Heading block options.
 */
class Heading_Options extends Base\Options
{
	public $block_id = 'Heading';
	protected $common = [];

	public function init() 
	{
		$this->get_common_data();

		// Block name to be used by page builders
		$this->block_name = esc_html__('Block Heading', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-heading',
			'categories' => ['smart-mag-blocks'],
		];

		/**
		 * General Options.
		 */
		$options['sec-general'] = [
			'type' => [
				'label'       => esc_html__('Heading Style', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					''  => esc_html__('Global / Default Style', 'bunyad-admin'),
				] + $this->common['block_headings'],
				'default'     => '',
				'label_block' => true
			],

			'accent_colors' => [
				'label'       => esc_html__('Base Colors', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					''      => esc_html__('Auto', 'bunyad-admin'),
					'force' => esc_html__('Accent / Category', 'bunyad-admin'),
					'none'  => esc_html__('Default', 'bunyad-admin'),
				],
				'condition' => [
					'type!' => ['g', 'e2']
				]
				// 'label_block' => true,
			],

			'heading' => [
				'label'       => esc_html__('Heading Text', 'bunyad-admin'),
				'type'        => 'text',
				// 'description' => esc_html__('Optional. By default, main category name will be used. Note: Some heading styles can have multi-color headings when used with asterisks, example: World *News*', 'bunyad-admin'),
				'label_block' => true,
				'dynamic' => [
					'active' => true,
				],
			],

			'link' => [
				'label'       => esc_html__('Heading Link', 'bunyad-admin'),
				'type'        => 'text',
				'label_block' => true
			],

			'more_text' => [
				'label'       => esc_html__('View More', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Add view more text with link.', 'bunyad-admin'),
				'label_block' => true
			],

			'more' => [
				'label'       => esc_html__('View More Style', 'bunyad-admin'),
				'type'        => 'select',
				'description' => '',
				'options'     => [
					'a' => 'Simple Text',
					'b' => 'Round Pill Style',
				],
				'condition'   => ['more_text!' => ''],
			],

			'more_link' => [
				'label'       => esc_html__('View More Link', 'bunyad-admin'),
				'type'        => 'text',
				'description' => esc_html__('Optional. By default, main category link will be used.', 'bunyad-admin'),
				'label_block' => true
			],

			'html_tag' => [
				'label'       => esc_html__('SEO: Heading Tag', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => ['h1' => 'H1'] + $this->common['heading_tags'],
			],
		];

		/**
		 * Style options.
		 */
		$options['sec-style'] = [
			'align' => [
				'label'       => esc_html__('Heading Align', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'left'   => esc_html__('Default / Left', 'bunyad-admin'),
					'center' => esc_html__('Centered', 'bunyad-admin'),
				],
				'label_block' => true,
			],

			'css_bhead_accent' => [
				'label'       => esc_html__('Heading Accent Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--c-main: {{VALUE}}; --c-block: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => [
					'heading_type!' => ['g']
				]
			],
			'css_bhead_accent_sd' => [
				'label'       => esc_html__('Dark: Heading Accent', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head,
					.s-dark {{WRAPPER}} .block-head' => '--c-main: {{VALUE}}; --c-block: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => [
					'heading_type!' => ['g']
				]
			],

			'css_bhead_typo' => [
				'label'       => esc_html__('Heading Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .block-head .heading',
				'default'     => [],
			],

			'css_bhead_space_below' => [
				'label'       => esc_html__('Space Below', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--space-below: {{SIZE}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_bhead_color' => [
				'label'       => esc_html__('Heading Text Color', 'bunyad-admin'),
				'type'        => 'color',
				// 'description' => esc_html__('Category color or theme main color will be used by default.', 'bunyad-admin'),
				'selectors'   => [
					'{{WRAPPER}} .block-head .heading' => 'color: {{VALUE}};'
				],
				'default'     => '',
			],
			'css_bhead_color_sd' => [
				'label'       => esc_html__('Dark: Heading Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head .heading,
					.s-dark {{WRAPPER}} .block-head .heading' => 'color: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_bhead_line_weight' => [
				'label'       => esc_html__('Accent Line Weight', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--line-weight: {{VALUE}}px;'
				],
				'default'     => '',
				'condition'   => ['type' => $this->common['supports_bhead_line_weight']],
			],

			'css_bhead_line_width' => [
				'label'       => esc_html__('Accent Line Width', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--line-width: {{VALUE}}px;'
				],
				'default'     => '',
				'condition'   => ['type' => $this->common['supports_bhead_line_width']],
			],

			'css_bhead_line_color' => [
				'label'       => esc_html__('Accent Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--c-line: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['type' => $this->common['supports_bhead_line_color']],
			],
			'css_bhead_line_color_sd' => [
				'label'       => esc_html__('Dark: Accent Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head,
					.s-dark {{WRAPPER}} .block-head' => '--c-line: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['type' => $this->common['supports_bhead_line_color']],
			],

			// Only for style c.
			'css_bhead_border_weight' => [
				'label'       => esc_html__('Border Weight', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--border-weight: {{VALUE}}px;'
				],
				'default'     => '',
				'condition'   => ['heading_type' => 'c'],
			],

			'css_bhead_border_color' => [
				'label'       => esc_html__('Border Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--c-border: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['type' => $this->common['supports_bhead_border_color']],
			],
			'css_bhead_border_color_sd' => [
				'label'       => esc_html__('Dark: Border Line Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .s-dark .block-head,
					.s-dark {{WRAPPER}} .block-head' => '--c-border: {{VALUE}};'
				],
				'default'     => '',
				'condition'   => ['type' => $this->common['supports_bhead_border_color']],
			],

			'css_bhead_bg' => [
				'label'       => esc_html__('Background Color', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .block-head' => 'background-color: {{VALUE}};'
				],
				'default'     => '',
			],

			'css_bhead_pad' => [
				'label'       => esc_html__('Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'size_units'  => ['%', 'px'],
				'devices'     => true,
				'selectors'   => [
					'{{WRAPPER}} .block-head' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
				'condition'   => ['type!' => ['e']],
			],

			'css_bhead_inner_pad' => [
				'label'       => esc_html__('Inner Padding', 'bunyad-admin'),
				'type'        => 'number',
				'devices'     => true,
				'selectors'   => [
					'{{WRAPPER}} .block-head' => '--inner-pad: {{VALUE}}px;'
				],
				'default'     => [],
				'condition'   => ['type' => ['e']],
			],

			'h-style-view-more' => [
				'label'       => esc_html__('View More Link', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before',
				'condition'   => ['more_text!' => ''],
			],
			'css_view_more_typo' => [
				'label'       => esc_html__('More Link Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .block-head .view-link',
				'default'     => [],
				'condition'   => ['more_text!' => ''],
			],
			'css_view_more_pad' => [
				'label'       => esc_html__('More Link Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'selector'    => '{{WRAPPER}} .block-head .view-link',
				'selectors'   => [
					'{{WRAPPER}} .block-head .view-link' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'condition'   => ['more_text!' => ''],
			],

		];

		$this->options = $options;
		$this->_add_defaults();
	}

	public function get_sections()
	{
		return [
			'sec-general' => [
				'label' => esc_html__('General', 'bunyad-admin')
			],
			'sec-style'   => [
				'label' => esc_html__('Style', 'bunyad-admin'),
				'tab'   => 'style'
			],
		];
	}

	public function get_common_data(array $options = [])
	{
		$options = array_replace([
			'block_headings' => [],
			'heading_tags'   => [],
		], $options);


		return parent::get_common_data($options);
	}
}PK03Y����9�9-smartmag-core/blocks/loop-posts/base-post.php<?php

namespace Bunyad\Blocks\LoopPosts;
use Bunyad;

/**
 * Base Loop Post Class - should be extended for other posts
 */
class BasePost
{
	/**
	 * @var array Props/options for the post.
	 */
	public $props = [];

	/**
	 * @var string Identifier of the loop post.
	 */
	public $id  = '';

	/**
	 * Specific partial/view id for this post. If not specified, {$id} is used instead
	 * for the view file id.
	 * 
	 * @var string 
	 */
	public $view_id = '';

	/**
	 * @var string Used internally to keep track of caller block
	 */
	public $block;

	public function __construct($props = [])
	{
		$this->props = array_merge(
			$this->get_default_props(), 
			$this->map_props($props)
		);

		// Media ratio should go in image props.
		if (!empty($this->props['media_ratio'])) {
			$this->props['image_props'] += [
				'ratio' => $this->props['media_ratio']
			];
		}
	}

	/**
	 * Default props. No reason for it to be static here as, unlike bocks, 
	 * we won't need just the props alone.
	 * 
	 * Many of the props may be set by the block, but the blocks can call a 
	 * post directly. Hence, have to be set here too.
	 * 
	 * @return array
	 */
	public function get_default_props()
	{
		$props = [
			
			'show_content'       => true,
			'show_excerpt'       => true,
			'show_cat_label'     => true,
			'show_media'         => true,
			'show_title'         => true,

			// Post format icons overlays.
			'show_post_formats'  => true,
			'post_formats_pos'   => 'center',
			
			// Read more style expected.
			'read_more'          => 'none',
			'read_more_class'    => '',
			
			// Reviews style and location.
			'reviews'            => 'bars',
			
			'class_excerpt'      => '',
			'class_wrap'         => '',
			'class_wrap_add'     => [],
			
			'title_tag'          => 'h2',
			'title_class'        => 'post-title',
			'title_lines'        => '',
			
			'cat_labels_pos'     => '',
			'excerpt_length'     => 15,
			'excerpt_lines'      => '',
			'excerpt_class'      => 'excerpt',
			'meta_items_default' => true,
			'meta_id'            => 'loop',
			'meta_type'          => 'a',
			'meta_props'         => [],

			'meta_sponsor'       => true,
			'meta_sponsor_label' => '',
			'meta_sponsor_logo'  => true,
			'meta_sponsor_info'  => '',
			'meta_sponsor_above' => [],
			'meta_sponsor_below' => [],
			
			// Can be 'below' or empty for default.
			'media_location'     => '',
			'media_embed'        => false,
			'image'              => 'post-thumbnail',
			'image_props'        => [],
			
			// Alternate styles may be used.
			'style'              => '',
			
			// Center content.
			'content_center'     => false,
			
			// Add a wrapper to content.
			'content_wrap'       => false,

			// Internal counter when in a loop.
			'loop_number'        => 0,
			'skip_lazy_number'   => 0,
		];

		return $props;
	}

	/**
	 * Set a single property - sets on $this->props[] array
	 * 
	 * @return $this
	 */
	public function set($key, $value) 
	{
		$this->props[$key] = $value;
		return $this;
	}

	/**
	 * Get all props
	 * 
	 * @see self::get_default_props()
	 * @return array
	 */
	public function get_props()
	{
		return $this->props;
	}

	/**
	 * Convert block properties / aliases to recognized props.
	 */
	public function map_props($props)
	{
		$map = [
			'excerpts'     => 'show_excerpt',
			'excerpts_len' => 'excerpt_length', // Legacy
			'cat_labels'   => 'show_cat_label',
		];

		foreach ($props as $key => $value) {

			if (array_key_exists($key, $map)) {
				$props[ $map[$key] ] = $value;
				unset($props[$key]);
			}
		}

		// Don't override these if empty. Essentially falling back to default if empty.
		$non_empty_overrides = [
			'image', 
			'post_formats_pos'
		];

		foreach ($non_empty_overrides as $key) {
			if (isset($props[$key]) && !$props[$key]) {
				unset($props[$key]);
			}
		}
		
		return $props;
	}

	/**
	 * Render the partial view for this loop
	 * 
	 * @uses Bunyad_Core::partial()
	 */
	public function render()
	{
		$this->_pre_render();
		
		/**
		 * Run an action before rendering the post.
		 * 
		 * @param self $this
		 */
		do_action('bunyad_blocks_post_render', $this);

		// Set view if an ID is present.
		$view_id = ($this->view_id ? $this->view_id : $this->id);

		// Local variables to make available to the partial.
		extract([
			'post_obj' => $this
		]);

		/**
		 * Get our template partial.
		 * 
		 * Preferred file, usually: blocks/loop-posts/html/{$view_id}-post.php
		 * Default/Fallback: blocks/loop-posts/html/post.php
		 * 
		 * Note: Not using Bunyad::core()->partial() as that would result in post-grid.php
		 * for example, which is not consistent with rest of our naming.
		 */
		include locate_template([
			'blocks/loop-posts/html/' . $view_id . '-post.php',
			'blocks/loop-posts/html/post.php',
		]);
	}

	/**
	 * Checks and settings to do prior to render.
	 */
	public function _pre_render()
	{
		$this->props['class_wrap_add'] = (array) $this->props['class_wrap_add'];

		// Add style variation class to wrapper classes.
		if ($this->props['style']) {
			array_push(
				$this->props['class_wrap_add'],
				$this->id . '-' . $this->props['style'] . '-post'
			);
		}

		// Media position for some blocks.
		if (!empty($this->props['media_pos'])) {
			$this->props['class_wrap_add'][] = 'm-pos-' . $this->props['media_pos'];
		}

		// Vertically centered content.
		if ($this->props['content_center']) {
			$this->props['class_wrap_add'][] = 'l-post-center';
		}

		// Add block class to wrapper - don't add it class_wrap is manually defined.
		if (!$this->props['class_wrap'] && $this->id) {

			// Example: grid-post
			$this->props['class_wrap'] = [$this->id . '-post'];
		}

		// Add in the wrapper classes now.
		$this->props['class_wrap'] = array_merge((array) $this->props['class_wrap'], (array) $this->props['class_wrap_add']);

		/**
		 * Title classes.
		 */
		// Class title defaults to post-title.
		if (!$this->props['title_class']) {
			$this->props['title_class'] = join(' ', array('post-title', $this->props['class_title_add']));
		}

		// Add lines limit to post-title class.
		if ($this->props['title_lines']) {
			$this->props['title_class'] .= ' limit-lines l-lines-' . intval($this->props['title_lines']);
		}

		if (!$this->props['title_tag']) {
			$this->props['title_tag'] = 'h2';
		}

		// Excerpt
		// Add excerpt lines limit.
		if ($this->props['excerpt_lines']) {
			$this->props['excerpt_class'] .= ' limit-lines l-lines-' . intval($this->props['excerpt_lines']);
		}

		/**
		 * Read More classes.
		 */
		if ($this->props['read_more'] === 'none') {
			$this->props['read_more'] = '';
		}

		if ($this->props['read_more'] && !$this->props['read_more_class']) {
			$read_classes = [
				'read-more-link',

				// read-more-btn, read-more-basic etc.
				'read-more-' . $this->props['read_more'],
			];

			// Error? Legacy?
			if (!is_string($this->props['read_more'])) {
				$this->props['read_more'] = 'btn';
			}

			if ($this->props['read_more'] == 'btn') {
				$read_classes[] = 'ts-button ts-button-alt';
			}

			if ($this->props['read_more'] == 'btn-b') {
				$read_classes[] = 'ts-button read-more-btn';
			}

			$this->props['read_more_class'] = join(' ', $read_classes);
		}

		// Check if we have to skip lazyload on this post's media.
		if ($this->props['skip_lazy_number']) {
			$skip = intval($this->props['skip_lazy_number']);
			if ($this->props['loop_number'] <= $skip) {
				$this->props['image_props']['no_lazy'] = true; 
			}
		}

		// This comes after processing is done on title_class and so on.
		$this->add_meta_props();
	}

	protected function add_meta_props()
	{

		// Add defaults to meta_props.
		$this->props['meta_props'] += [
			'show_title'     => $this->props['show_title'],
			'type'           => $this->props['meta_id'],
			'title_tag'      => $this->props['title_tag'],
			'title_class'    => $this->props['title_class'],
			'cat_style'      => $this->props['meta_cat_style'],
			'author_img'     => $this->props['meta_author_img'],
			'review'         => false,
			'sponsor'        => $this->props['meta_sponsor'],
			'sponsor_label'  => $this->props['meta_sponsor_label'],
			'sponsor_logo'   => $this->props['meta_sponsor_logo'],
			'sponsor_above'  => $this->props['meta_sponsor_above'],
			'sponsor_below'  => $this->props['meta_sponsor_below'],
			'sponsor_info'   => $this->props['meta_sponsor_info'],
		];

		// echo $this->props['meta_props']['sponsor'];

		// Set items if not default. Can set meta_props directly to bypass this.
		// if (!$this->props['meta_items_default']) {

		if (isset($this->props['meta_above']) && isset($this->props['meta_below'])) {
			$this->props['meta_props'] = array_replace($this->props['meta_props'], [
				'items_above' => $this->props['meta_above'],
				'items_below' => $this->props['meta_below'],
			]);
		}

		// Add stars handler if reviews enabled.
		if ($this->props['reviews'] === 'stars') {
			$this->props['meta_props']['review'] = true;

			if (!in_array('review_stars', $this->props['meta_props']['items_below'])) {
				array_unshift(
					$this->props['meta_props']['items_below'],
					'review_stars'
				);
			}
		}
	}

	/**
	 * Whether to embed media for this post.
	 *
	 * @return bool|string
	 */
	public function should_embed_media()
	{
		if (!$this->props['media_embed']) {
			return false;
		}

		if (get_post_format() === 'gallery' && !Bunyad::amp()->active()) {
			return 'gallery';
		}

		// Audio/Video code.
		if (Bunyad::posts()->meta('featured_video')) {
			return 'code';
		}
	}

	/**
	 * Output media embed.
	 *
	 * @return void
	 */
	public function embed_media()
	{
		$embed = $this->should_embed_media();
		if (!$embed) {
			return; 
		}
		
		if ($embed === 'gallery') {
			get_template_part('partials/gallery-format');
		}
		
		/**
		 * Audio / video code.
		 */
		if ($embed === 'code') {

			$allowed_tags = wp_kses_allowed_html('post');
			$allowed_tags['iframe'] = [
				'align'        => true,
				'width'        => true,
				'height'       => true,
				'frameborder'  => true,
				'name'         => true,
				'src'          => true,
				'id'           => true,
				'class'        => true,
				'style'        => true,
				'scrolling'    => true,
			];

			$embed_code = wp_kses(
				Bunyad::posts()->meta('featured_video'),
				$allowed_tags
			);

			// Will use Bunyad_Theme_SmartMag::featured_media_auto_embed() to auto-embed.
			printf(
				'<div class="featured-vid media-embed">%1$s</div>',
				apply_filters('bunyad_featured_video', $embed_code)
			);
		}
	}

	/**
	 * Output the post format icon.
	 */
	public function the_post_format_icon()
	{
		if (!$this->props['show_post_formats']) {
			return;
		}

		// Have to fallback to center if there's a review enabled at top right.
		if ($this->props['post_formats_pos'] === 'top-right' && $this->has_review_overlay()) {
			$this->props['post_formats_pos'] = 'center';
		}

		// If category overlay at same location, center it.
		if ($this->props['post_formats_pos'] === $this->props['cat_labels_pos']) {
			$this->props['post_formats_pos'] = 'center';
		}

		switch (get_post_format()) {
			
			case 'image':
			case 'gallery':
				$icon = 'tsi-picture-o';
				break;

			case 'video';
				$icon = 'tsi-play';
				break;
				
			case 'audio':
				$icon = 'tsi-music';
				break;
				
			default:
				return;
		}

		$classes = [
			'format-overlay c-overlay',
			'format-' . get_post_format(),
			'p-' . $this->props['post_formats_pos'],
		];

		printf(
			'<span class="%1$s"><i class="%2$s"></i></span>',
			join(' ', $classes),
			'tsi ' . esc_attr($icon)
		);
	}

	/**
	 * Check if the post has a review overlay.
	 */
	public function has_review_overlay()
	{
		// Enabled if review exists and prop isn't set to stars, none or empty.
		return (
			Bunyad::posts()->meta('reviews')
			&& !in_array($this->props['reviews'], ['none', 'stars', ''])
		);
	}

	/**
	 * Output the review overlay if reviews enabled.
	 * 
	 * @uses \Bunyad::posts()
	 * @uses \Bunyad::reviews()
	 */
	public function the_review_overlay()
	{
		if (!$this->has_review_overlay() || !Bunyad::reviews()) {
			return;
		}

		$output = '';

		switch ($this->props['reviews']) {
			case 'bars':
				$output = sprintf(
					'<div class="review review-number c-overlay">
						<span class="progress"></span><span>%1$s</span>
					</div>',
					esc_html(Bunyad::posts()->meta('review_overall'))
				);
				break;

			case 'radial':
				
				$type    = Bunyad::posts()->meta('review_type');
				$rating  = Bunyad::posts()->meta('review_overall');
				$percent = Bunyad::reviews()->decimal_to_percent($rating);

				// Star ratings should be shown in percent.
				if ($type === 'stars') {
					$type = 'percent';
				}	

				// Counter label for percent ratings.
				if ($type === 'percent') {
					$rating = $percent;
				}

				$counter = sprintf(
					'<span class="counter %1$s">%2$s</span>',
					esc_attr($type),
					$rating // Safe above
				);

				$output = sprintf(
					'<div class="review review-radial c-overlay">%1$s %2$s</div>',
					$this->review_progress_svg($percent),
					$counter
				);

				break;
		}

		echo $output; // phpcs:ignore WordPress.Security.EscapeOutput -- Safe output from above.

	}

	/**
	 * Generate an SVG for the radial progress bar for review.
	 * 
	 * Maths from: https://codepen.io/xgad/post/svg-radial-progress-meters
	 */
	public function review_progress_svg($percent, array $options = [])
	{
		// Radius is half of desired height/width.
		$options = array_replace([
			'radius' => 22,
			'stroke' => 3
		], $options);

		extract($options, EXTR_SKIP);

		// Calculations for radius and dash-offset.
		$norm_radius    = $radius - $stroke / 2;
		$circumference  = $norm_radius * 2 * pi();

		// Only for 2nd circle.
		$dash_offset   = (1 - $percent / 100) * $circumference;

		/**
		 * Create a circle.
		 */
		$create_circle = function($class, $offset = 0) use (
			$circumference, $stroke, $norm_radius, $radius
		) {
			
			$dash_offset = '';
			if ($offset) {
				$dash_offset = 'style="stroke-dashoffset:' . floatval($offset) . '"';
			}

			return sprintf(
				'<circle fill="transparent" stroke-dasharray="%1$s %1$s" %2$s stroke-width="%3$s"'
				. ' r="%4$s" cx="%5$s" cy="%5$s" class="%6$s" />',
				esc_attr($circumference),
				$dash_offset,
				esc_attr($stroke),
				esc_attr($norm_radius),
				esc_attr($radius),
				esc_attr($class)
			);
		};		

		$output = sprintf(
			'<svg class="progress-radial" height="%1$s" width="%1$s">%2$s %3$s</svg>',
			esc_attr($radius * 2),
			$create_circle('circle'),
			$create_circle('progress', $dash_offset)
		);

		return $output;
	}

	/**
	 * Magic method for print / echo
	 */
	public function __toString() 
	{
		ob_start();
		$this->render();
		
		return ob_get_clean();
	}
}PK03Y	^H��2smartmag-core/blocks/loop-posts/feat-grid-post.php<?php

namespace Bunyad\Blocks\LoopPosts;

/**
 * Grid Loop Post Class
 */
class FeatGridPost extends BasePost
{
	public $id = 'feat-grid';

	/**
	 * Default props for this post
	 * 
	 * @return array
	 */
	public function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'show_excerpts' => false,
			'class_wrap'    => ['grid-overlay overlay-post grid-overlay-a'],
			'meta_props'    => [
				'add_class' => 'meta-contrast',
				'is_overlay' => true,
			],
			'title_style'   => '',
			'content_wrap'  => true,
		]);
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		// Unsupported post format positions.
		if (in_array($this->props['post_formats_pos'], ['bot-left', 'bot-right'])) {
			$this->props['post_formats_pos'] = 'top-right';
		}

		// Post title style.
		// class_wrap is an array for feat grids.
		if ($this->props['title_style'] === 'bg') {
			$this->props['class_wrap'][] = 'l-post-title-bg';
		}

		parent::_pre_render();
	}
}PK03Y/,��__-smartmag-core/blocks/loop-posts/grid-post.php<?php

namespace Bunyad\Blocks\LoopPosts;

/**
 * Grid Loop Post Class
 */
class GridPost extends BasePost
{
	public $id = 'grid';

	/**
	 * Default props for this post
	 * 
	 * @return array
	 */
	public function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'image'  => 'bunyad-grid',
		]);
	}
}PK03YTԋ�-smartmag-core/blocks/loop-posts/list-post.php<?php

namespace Bunyad\Blocks\LoopPosts;

/**
 * Overlay Loop Post Class
 */
class ListPost extends BasePost
{
	public $id = 'list';

	public function _pre_render()
	{
		$this->props['class_wrap_add'] = (array) $this->props['class_wrap_add'];

		// Vertically centered content.
		if ($this->props['content_vcenter']) {
			$this->props['class_wrap_add'][] = 'list-post-v-center';
		}

		if ($this->props['media_vpos']) {
			array_push(
				$this->props['class_wrap_add'],
				'l-post-media-v-' . $this->props['media_vpos']
			);
		}

		// Grid style on small devices.
		if (!empty($this->props['grid_on_sm'])) {
			$this->props['class_wrap_add'][] = 'grid-on-sm';
		}
		else {
			$this->props['class_wrap_add'][] = 'list-post-on-sm';
		}

		parent::_pre_render();
	}
}PK03Y\�]9��0smartmag-core/blocks/loop-posts/overlay-post.php<?php

namespace Bunyad\Blocks\LoopPosts;

/**
 * Overlay Loop Post Class
 */
class OverlayPost extends BasePost
{
	public $id = 'overlay';
	
	/**
	 * Default props for this post
	 * 
	 * @return array
	 */
	public function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'show_excerpts' => false,
			'class_wrap'    => ['grid-overlay overlay-post grid-overlay-a'],
			'meta_props'    => [
				'add_class'  => 'meta-contrast',
				'is_overlay' => true,
			],
			'title_style'   => '',
			'content_wrap'  => true,
		]);
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		// Unsupported post format positions.
		if (in_array($this->props['post_formats_pos'], ['bot-left', 'bot-right'])) {
			$this->props['post_formats_pos'] = 'top-right';
		}

		// Post title style.
		if ($this->props['title_style'] === 'bg') {
			$this->props['class_wrap'][] = ' l-post-title-bg';
		}

		parent::_pre_render();
	}
}PK03Y�4L���.smartmag-core/blocks/loop-posts/small-post.php<?php

namespace Bunyad\Blocks\LoopPosts;

/**
 * Small Loop Post Class
 */
class SmallPost extends BasePost
{
	public $id = 'small';

	/**
	 * Default props for this post
	 * 
	 * @return array
	 */
	public function get_default_props()
	{
		$props = parent::get_default_props();

		return array_merge($props, [
			'meta_props' => [
				'align' => 'left',
			],
			'image' => 'bunyad-thumb',
		]);
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		parent::_pre_render();

		// Disable media and media for style b.
		if ($this->props['style'] == 'b') {
			$this->props['show_media'] = false;
		}

		// Only center position for small posts.
		if ($this->props['show_post_formats']) {
			$this->props['post_formats_pos'] = 'center';
		}
	}
}PK03Y���9�92smartmag-core/blocks/loops/feat-grid/feat-grid.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\LoopBlock;

/**
 * News Focus Block
 */
class FeatGrid extends LoopBlock
{
	public $id = 'feat-grid';

	// protected $item_configs;
	protected $max_slides = 25;

	/**
	 * @var array Base configuration for sm, md, lg items.
	 */
	protected $base_configs = [];

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'grid_width'       => 'container',
			'grid_type'        => 'grid-a',
			'has_ratio'        => true,
			'has_slider'       => false,
			'overlay_style'    => 'a',
			'title_style'      => '',
		
			// Show meta on hover.
			'meta_on_hover'      => false,
			'meta_items_default' => true,
			'content_position'   => 'bottom',
			// 'content_position' => 'center',

			// @todo Not yet implemented. Only supports 'labels' for now.
			'meta_cat_style'   => 'labels',
			'hover_effect'     => 'hover-zoom',
			'cat_labels'       => false,
			
			'slides'           => 1,
			'per_slide'        => 5,
			'slide_scroll'     => 1,
			'slide_scroll_md'  => 1,

			// Different position for post formats than default.
			'post_formats_pos'  => 'top-right',
		]);
	}

	public function map_global_props($props)
	{
		$global = [
			// Don't use these from default globals.
			'cat_labels'       => false,
			'cat_labels_pos'   => 'top-left',

			// @todo Not yet implemented. Only supports 'labels' for now.
			'meta_cat_style'   => Bunyad::options()->feat_grids_meta_cat_style,
		];

		// If we have global meta items enabled, add in global options.
		// Note: The global of featured grids is different from other globals.
		if (!isset($props['meta_items_default']) || $props['meta_items_default']) {
			$global += [
				'meta_above'     => Bunyad::options()->feat_grids_meta_above,
				'meta_below'     => Bunyad::options()->feat_grids_meta_below,
			];

			// Stops from getting overriden in map_global_props below.
			$props['meta_items_default'] = false;
		}

		$props = array_replace($global, $props);
		$props = parent::map_global_props($props);

		return $props;
	}

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();
		
		// Extra internal props.
		$this->props += [
			'equal_items'       => false,
			'item_configs'      => [],
			'grid_wrap_classes' => '',
		];

		// Defaults attribs for slides wrapper.
		$this->props['slide_attrs'] = [
			'class'         => ['slides'],
			'data-parallax' => 0,
		];

		// Set base configs for sm, lg, md etc.
		$this->set_base_configs();
	}

	public function _pre_render()
	{
		// Processing query before. None of the props below are query related.
		$this->process();

		// Setup configs for each item and the slider.
		$this->set_item_configs();
		$this->set_slider_configs();

		// Set wrapper and slider classes etc.
		$this->set_classes();

		// Enqueue slick slider.
		if ($this->props['has_slider'] && wp_script_is('smartmag-slick', 'registered')) {
			wp_enqueue_script('smartmag-slick');
		}
	}

	/**
	 * Get main configuration for the item types main, small, and medium.
	 *
	 * @return array
	 */
	protected function set_base_configs()
	{
		$configs = [
			'meta_props' => [
				// Should be set by BasePost based on meta_items_default.
				// 'items_above' => $this->props['meta_above'],
				// 'items_below' => $this->props['meta_below'],
				'title_class' => 'post-title',
				'title_tag'   => !empty($this->props['title_tag']) ? $this->props['title_tag'] : 'h3',
				'add_class'   => 'meta-contrast',
				'cat_style'   => isset($this->props['meta_cat_style']) ? $this->props['meta_cat_style'] : null,
				'text_labels' => [],
				'is_overlay'  => true,
				
				// Auto-alignment - no post-meta alignment classes.
				'align'       => ''
			],
			'image_data' => [
				// Size for small and medium is half width of viewport in mobiles.
				'attr' => ['sizes' => '(max-width: 768px) 50vw, %1$dpx'],
				// 'bg_image'    => true,
				'ratio_class' => false,

				// To filter out images in responsive srcset that are too small of a height.
				// For small images, we never want the thumbnail size (150px or 300x2xx), generally.
				'srcset_filter' =>  [
					'min_height' => 220,
				],
			],
		
			// Default to small.
			'class' => 'item-small',
			'image' => 'bunyad-feat-grid-sm',

			// Can be null or ['full' => 100, 'wrap' => 200]
			'width' => null,
		];

		// Configuration for items based on chosen grid.
		$main = [
			'class' => 'item-large item-main',
			'image' => 'bunyad-feat-grid-lg',
			'image_data' => array_replace($configs['image_data'], [
				// To filter out images in responsive srcset that are too small of a height.
				// Most of the time, a minimum height of 500 will be desired.
				'srcset_filter' =>  [
					'min_height' => 500,
				],

				// Large / main is fine with default WP sizes.
				'attr' => []
			])
		];

		$medium = [
			'class' => 'item-medium',
			'image' => 'bunyad-feat-grid-lg',
			'image_data' => array_replace($configs['image_data'], [
				'srcset_filter' =>  [
					'min_height' => 500,
				]
			])
		];

		// Uses defaults.
		// $small = array_replace($configs, [
		// 	'image_data' => array_replace($configs['image_data'], [
		// 	])
		// ]);
		$small = $configs;

		$this->base_configs = compact('configs', 'main', 'small', 'medium');
	}

	/**
	 * Configure props for items at specific positions, based on featured grid type.
	 */
	public function set_item_configs()
	{

		// Configuration for items at specific positions.
		$item_configs = [
			1 => $this->base_configs['main'],
		];

		$equal_items = false;
		$props       = $this->props;

		switch ($props['grid_type']) {

			case 'grid-a':
				$this->props['per_slide']       = 5;
				$this->props['slide_scroll']    = 1;
				$this->props['slide_scroll_md'] = 1;
		
				// Without slide, 1 slide is max.
				$this->max_slides = !$props['has_slider'] ? 1 : $this->max_slides;
				break;
		
			case 'grid-b':
				$this->props['per_slide']       = 3;
				$this->props['slide_scroll']    = 1;
				$this->props['slide_scroll_md'] = 1;
		
				// Without slide, 1 slide is max.
				$this->max_slides = !$props['has_slider'] ? 1 : $this->max_slides;
		
				// Medium class (title etc.) but small image.
				$item_medium = array_replace(
					$this->base_configs['medium'],
					[
						'class' => 'item-medium',
						'width' => ['wrap' => 400, 'full' => 550]
					]
				);

				$item_configs = [
					1 => array_replace(
						$this->base_configs['main'], 
						[
							'image' => 'bunyad-feat-grid-lg-vw',
							'width' => ['wrap' => 810, 'full' => 1200]
						]
					),
					2 => $item_medium,
					3 => $item_medium,
				];
		
				// Default to no hover effects unless specified.
				if (!isset($this->props['hover_effect'])) {
					$props['hover_effect'] = null;
				}
		
				break;
		
			case 'grid-c':
				$this->props['per_slide']       = 3;
				$this->props['slide_scroll']    = 1;
				$this->props['slide_scroll_md'] = 1;
				
				// Without slide, 1 slide is max.
				$this->max_slides = !$props['has_slider'] ? 1 : $this->max_slides;
		
				// Medium class (title etc.) but small image.
				$item_medium = array_replace(
					$this->base_configs['medium'],
					[
						'class' => 'item-medium',
						// srcset_filter ensures 500px height too via medium's image_data.
						'width' => ['wrap' => 350, 'full' => 585]
					]
				);

				$item_configs = [
					1 => $this->base_configs['main'],
					2 => $item_medium,
					3 => $item_medium,
				];
		
				break;


			case 'grid-d':
				$this->props['per_slide']       = 4;
				$this->props['slide_scroll']    = 1;
				$this->props['slide_scroll_md'] = 1;
		
				// Without slide, 1 slide is max.
				$this->max_slides = !$props['has_slider'] ? 1 : $this->max_slides;

				// Remove responsive size attr as medium stays full-width in mobile for this.
				$medium = $this->base_configs['medium'];
				unset($medium['image_data']['attr']['sizes']);
				
				// Small is default so will auto-fill.
				$item_configs = [
					1 => $this->base_configs['main'],
					2 => $medium
				];

				break;
		
			case 'grid-eq1':
				$this->props['per_slide']       = 1;
				$this->props['slide_scroll']    = 1;
				$this->props['slide_scroll_md'] = 1;
				$equal_items = true;
		
				$image_data = $this->base_configs['main']['image_data'];
				if ($this->props['grid_width'] === 'viewport') {
					$image_data['attr'] = ['sizes' => '(max-width: 1920px) 100vw, 1920px'];
				}

				$item_configs = array_fill(1, $this->query->post_count, array_replace(
					$this->base_configs['main'], 
					[
						'class' => 'item-main item-large',
						'image_data' => $image_data
					]
				));
				
				break;
		
			case 'grid-eq2':
				$this->props['per_slide']       = 1;
				$this->props['slide_scroll']    = 2;
				$this->props['slide_scroll_md'] = 2;
				$equal_items = true;
		
				$item_configs = array_fill(1, $this->query->post_count, array_replace(
					$this->base_configs['main'], 
					['class' => 'item-main item-large']
				));
				
				break;
		
			case 'grid-eq3':
				$this->props['per_slide']       = 1;
				$this->props['slide_scroll']    = 3;
				$this->props['slide_scroll_md'] = 2;
				$equal_items = true;
		
				$_conf = array_replace(
					$this->base_configs['main'],
					['class' => 'item-main item-medium']
				);
		
				$_conf['width'] = ['wrap' => 400, 'full' => 700];
				$item_configs = array_fill(1, $this->query->post_count, $_conf);
				
				break;

			case 'grid-eq4':
				$this->props['per_slide']       = 1;
				$this->props['slide_scroll']    = 4;
				$this->props['slide_scroll_md'] = 2;
				$equal_items = true;
		
				$_conf = array_replace(
					$this->base_configs['main'],
					['class' => 'item-main item-small']
				);
		
				$_conf['width'] = ['wrap' => 400, 'full' => 550];
				$item_configs = array_fill(1, $this->query->post_count, $_conf);
				
				break;
		
			case 'grid-eq5':
				$this->props['per_slide']       = 1;
				$this->props['slide_scroll']    = 5;
				$this->props['slide_scroll_md'] = 2;
				$equal_items = true;
		
				$_conf = array_replace(
					$this->base_configs['main'],
					['class' => 'item-main item-small']
				);
		
				// 550 because 450 or less may get a height too less.
				$_conf['width'] = ['wrap' => 350, 'full' => 500];
				$item_configs = array_fill(1, $this->query->post_count, $_conf);
				
				break;
		
			default:
				break;

		}

		// Set the props.
		$this->props['equal_items']  = $equal_items;
		$this->props['item_configs'] = $item_configs;
	}

	/**
	 * Setup slider props.
	 */
	public function set_slider_configs()
	{
		$slides = 1;

		if ($this->query->post_count) {
			$slides = ceil($this->query->post_count / max(1, intval($this->props['per_slide'])));
			$slides = min($slides, $this->max_slides);
		}

		$this->props['slides'] = $slides;
		
		// When number of slides are greater than 1, activate the slider.
		if ($this->props['has_slider']) {
			$slide_attrs = array_replace($this->props['slide_attrs'], [
				'data-slider'    => 'feat-grid',
				// 'data-autoplay'  => Bunyad::options()->slider_autoplay,
				// 'data-speed'     => Bunyad::options()->slider_delay,
		
				// Can't have fade animation for carousel-esque sliders.
				// 'data-animation' => Bunyad::options()->slider_animation,
				'data-scroll-num' => $this->props['slide_scroll']
			]);
		
			if (isset($this->props['slide_scroll_md'])) {
				$slide_attrs['data-scroll-num-md'] = $this->props['slide_scroll_md'];
			}

			$this->props['slide_attrs'] = $slide_attrs;
		}
	}

	/**
	 * Set relevant classes for wrappers/containers and posts.
	 */
	public function set_classes()
	{
		$feat_class  = 'feat-' . $this->props['grid_type'];
		$classes = [
			'feat-grid', 
			$feat_class,
		];
		
		// Static or slider.
		$slide_type = $this->props['has_slider'] ? 'slider' : 'static';
		$classes[]  = $slide_type;
		
		if ($slide_type === 'slider') {
			$classes = array_merge($classes, [
				'common-slider',
				'arrow-hover',
			]);
		}
		
		if ($this->props['grid_width'] === 'viewport') {
			$classes[] = 'feat-grid-full';
			$classes[] = $feat_class . '-full';
		}
		else {
			// Add wrapper to slides wrapper if not viewport width.
			// $this->props['slide_attrs']['class'][] = 'wrap';
		}
		
		// Ratio or height based.
		if ($this->props['has_ratio']) {
			$classes[] = 'feat-grid-ratio';
		}
		else {
			$classes[] = 'feat-grid-height';
		}
		
		// A grid with items of equal dimensions.
		if ($this->props['equal_items']) {
			$classes[] = 'feat-grid-equals';
		}

		$this->props['grid_wrap_classes'] = $classes;
	}

	/**
	 * Compute and get extra props for rendering the final post.
	 *
	 * @param integer $index  Position/number of the post.
	 * @return array
	 */
	public function get_post_props($index)
	{	
		/**
		 * Override default configs with item configs at this specific position.
		 */
		$config = $this->base_configs['configs'];
		if (isset($this->props['item_configs'][$index])) {

			$data = (array) $this->props['item_configs'][$index];

			// Don't override meta_props fully, but merge.
			if (isset($data['meta_props'])) {
				$data['meta_props'] = array_replace($config, $data['meta_props']);
			}

			$config = array_replace($config, $data);
		}

		// Viewport width gets different image name.
		if ($this->props['grid_width'] == 'viewport' && substr($config['image'], -3) !== '-vw') {
			$config['image'] .= '-vw';
		}

		// Width is manually specified to ensure right responsive width is set.
		if (!empty($config['width'])) {
			$config['image_data']['width'] = 
				(
					$this->props['grid_width'] !== 'viewport' 
						? $config['width']['wrap']
						: $config['width']['full']
				);
		}

		// Item classes.
		$item_class = [
			'item', 
			$config['class'], 
			'item-' . $index
		];

		$pos_map = [
			'top'        => 'pos-top',
			'top-center' => 'pos-center pos-top',
			'bot-center' => 'pos-center pos-bot',
			'center'     => 'pos-center pos-v-center',
			'bottom'     => 'pos-bot',
		];

		if (array_key_exists($this->props['content_position'], $pos_map)) {
			$item_class[] = $pos_map[ $this->props['content_position'] ];
		}

		// Classes for overlay wrapper.
		$overlay_class = [
			'grid-overlay', 
			'grid-overlay-' . $this->props['overlay_style']
		];

		if ($this->props['meta_below'] && $this->props['meta_on_hover']) {
			$overlay_class[] = 'meta-hide';
		}

		if ($this->props['hover_effect']) {
			$overlay_class[] = $this->props['hover_effect'];
		}

		return [
			'item_wrap_class' => $item_class,
			'class_wrap'      => $overlay_class,
			'meta_props'      => $config['meta_props'],
			'image'           => $config['image'],
			'image_props'     => $config['image_data'],
			'excerpts'        => false
		];
	}

}PK03YPҏԸ+�+0smartmag-core/blocks/loops/feat-grid/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * Featured Grid Options
 */
class FeatGrid_Options extends LoopOptions
{
	public $block_id = 'FeatGrid';

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();

		// Block name to be used by page builders
		$this->block_name = esc_html__('Featured Area Grids', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-feat-grid',
			'categories' => ['smart-mag-blocks'],
		];

		$this->options['sec-general'] += [
			'grid_type' => [
				'label'       => esc_html__('Style', 'bunyad-admin'),
				'description' => '',
				'type'        => 'select',
				'options'     => $this->common['featured_type_options'],
				'default'     => 'container',
			],

			'grid_width' => [
				'label'       => esc_html__('Grid Width', 'bunyad-admin'),
				'description' => esc_html__('Note: If setting to full width, make sure the container section is also set to full width.', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'container' => esc_html__('Container / Boxed', 'bunyad-admin'),
					'viewport'  => esc_html__('Full Browser Width', 'bunyad-admin'),
				],
				'default'     => 'container',
			],

			'has_slider' => [
				'label'       => esc_html__('Enable Slider', 'bunyad-admin'),
				'description' => esc_html__('Uses a static grid by default. Enabling a slider changes mobile view as well. Note: Make sure to increase number of posts.', 'bunyad-admin'),
				'type'        => 'switcher',
				'default'     => '1',
			],
		];

		// Custom media ratio for featured grids.
		$this->options['sec-layout'] += [
			'title_style' => [
				'label'       => esc_html__('Titles Style', 'bunyad-admin'),
				'type'        => 'select',
				'default'     => '',
				'options'     =>[
					'' => esc_html__('Auto/Global', 'bunyad-admin')
				] + $this->common['post_title_styles'],
				'position'     => [
					'at' => 'before',
					'of' => 'cat_labels'
				]
			],

			'has_ratio' => [
				'label'        => esc_html__('Use Aspect Ratio', 'bunyad-admin'),
				'description' => esc_html__('Keep an aspect ratio for main item(s) over devices. Disable to use a fixed height instead.', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
				'position'     => [
					'at' => 'after',
					'of' => 'cat_labels'
				]
			],
			'css_media_ratio' => [
				'label'        => esc_html__('Image Ratio', 'bunyad-admin'),
				'type'         => 'number',
				'input_attrs'  => ['min' => 0.25, 'max' => 4.5, 'step' => .1],
				'default'      => '',
				'selectors'    => [
					'{{WRAPPER}} .feat-grid' => '--main-ratio: {{SIZE}};'
				],
				'position'     => [
					'at' => 'after',
					'of' => 'has_ratio'
				],
				'condition' => ['has_ratio' => '1'],
			],

			'css_media_height_eq' => [
				'label'        => esc_html__('Grid Height', 'bunyad-admin'),
				'type'         => 'slider',
				'range'        => [
					'px' => ['min' => 100, 'max' => 1500, 'step' => 1]
				],
				'devices'      => true,
				'size_units'   => ['px'],
				'selectors'    => [
					'{{WRAPPER}} .feat-grid' => '--main-height: {{SIZE}}px;',
					'{{WRAPPER}} .feat-grid-equals .item' => 'max-height: initial;'
				],
				'position'     => [
					'at' => 'after',
					'of' => 'has_ratio'
				],
				'condition' => [
					'has_ratio!' => '1',
					'grid_type!' => ['grid-a', 'grid-b', 'grid-c', 'grid-d']
				],
			],

			'css_media_height' => [
				'label'        => esc_html__('Grid Height', 'bunyad-admin'),
				'type'         => 'slider',
				'range'        => [
					'px' => ['min' => 100, 'max' => 1500, 'step' => 1]
				],
				'devices'      => false,
				'size_units'   => ['px'],
				'selectors'    => [
					'{{WRAPPER}} .feat-grid' => '--main-height: {{SIZE}}px;',
				],
				'position'     => [
					'at' => 'after',
					'of' => 'has_ratio'
				],
				'condition' => [
					'has_ratio!' => '1',
					'grid_type' => ['grid-a', 'grid-b', 'grid-c', 'grid-d']
				],
			],
		];

		$this->options['sec-style'] += [


			'overlay_style' => [
				'label'       => esc_html__('Overlay Style', 'bunyad-admin'),
				'description' => '',
				'type'        => 'select',
				'options'     => [
					'a' => esc_html__('Style A - Bottom Shade', 'bunyad-admin'),
					'b' => esc_html__('Style B - Full Overlay', 'bunyad-admin'),
				],
				'default'     => 'a',
			],

			'content_position' => [
				'label'       => esc_html__('Overlay Content Position', 'bunyad-admin'),
				'description' => '',
				'type'        => 'select',
				'options'     => [
					'bottom'     => esc_html__('Bottom Left', 'bunyad-admin'),
					'bot-center' => esc_html__('Bottom Centered', 'bunyad-admin'),
					'center'     => esc_html__('Centered', 'bunyad-admin'),
					'top-center' => esc_html__('Top Centered', 'bunyad-admin'),
					'top'        => esc_html__('Top Left', 'bunyad-admin'),
				],
				'default'     => 'bottom',
			],

			'meta_on_hover' => [
				'label'        => esc_html__('Meta On Hover', 'bunyad-admin'),
				'description' => esc_html__('Show bottom meta on hover only.', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '1',
			],

			'hover_effect' => [
				'label'       => esc_html__('Hover Effect', 'bunyad-admin'),
				'description' => '',
				'type'        => 'select',
				'options' => [
					''           => esc_html__('None', 'bunyad-admin'),
					'hover-zoom' => esc_html__('Zoom Image', 'bunyad-admin'),
				],
				'default'     => '',
			],

			'css_grid_gap' => [
				'label'       => esc_html__('Gap / Spacing', 'bunyad-admin'),
				'description' => esc_html__('Spacing between posts.', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'size_units'  => ['px'],
				'selectors'    => [
					'{{WRAPPER}} .feat-grid' => '--grid-gap: {{SIZE}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_overlay_pad_lg' => [
				'label'       => esc_html__('Overlay Pad (Large Items)', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .item-large .content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
				'separator'   => 'before',
			],

			'css_overlay_pad_md' => [
				'label'       => esc_html__('Overlay Pad (Medium Items)', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .item-medium .content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_overlay_pad_sm' => [
				'label'       => esc_html__('Overlay Pad (Small Items)', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .item-small .content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],
		];

		$this->options['sec-style-titles'] = [

			'css_title_size_sm' => [
				'label'       => esc_html__('Small Title Size', 'bunyad-admin'),
				'desc'        => esc_html__('Used for small slices of the grid.', 'bunyad-admin'),
				'type'        => 'number',
				'input_attrs' => ['max' => 100, 'min' => 9],
				'selectors'   => [
					'{{WRAPPER}} .feat-grid' => '--feat-grid-title-s: {{VALUE}}px;',
				],
				'default'     => '',
			],

			'css_title_size_md' => [
				'label'       => esc_html__('Medium Title Size', 'bunyad-admin'),
				'desc'        => esc_html__('Used for small slices of the grid.', 'bunyad-admin'),
				'type'        => 'number',
				'input_attrs' => ['max' => 100, 'min' => 9],
				'selectors'   => [
					'{{WRAPPER}} .feat-grid' => '--feat-grid-title-m: {{VALUE}}px;',
				],
				'default'     => '',
			],

			'css_title_size_lg' => [
				'label'       => esc_html__('Large Title Size', 'bunyad-admin'),
				'desc'        => esc_html__('Used for small slices of the grid.', 'bunyad-admin'),
				'type'        => 'number',
				'input_attrs' => ['max' => 100, 'min' => 9],
				'selectors'   => [
					'{{WRAPPER}} .feat-grid' => '--feat-grid-title-l: {{VALUE}}px;',
				],
				'default'     => '',
			],

			'h-style-titles-advanced' => [
				'label'       => esc_html__('Advanced', 'bunyad-admin'),
				'type'        => 'heading',
				'separator'   => 'before'
			],

			'css_title_typo_sm' => [
				'label'       => esc_html__('Titles Typpography: Small', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .feat-grid .item-small .post-title',
				'default'     => [],
			],

			'css_title_typo_md' => [
				'label'       => esc_html__('Titles Typpography: Medium', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .feat-grid .item-medium .post-title',
				'default'     => [],
			],

			'css_title_typo_lg' => [
				'label'       => esc_html__('Titles Typpography: Large', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .feat-grid .item-large .post-title',
				'default'     => [],
			],

			'css_title_max_width' => [
				'label'       => esc_html__('Max Title Width', 'bunyad-admin'),
				'desc'        => esc_html__('Used for small slices of the grid.', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'range'        => [
					'px' => ['min' => 100, 'max' => 1500, 'step' => 1],
					'%' =>  ['min' => 10, 'max' => 100, 'step' => 1]
				],
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .feat-grid .post-title' => 'max-width: {{SIZE}}{{UNIT}};',
				],
				'default'     => [],
			],
		];

		$this->remove_options([
			'pagination',
			'scheme',
			'container_width', 
			'columns', 
			'media_ratio', 
			'media_ratio_custom',
			// 'cat_labels',
			// 'cat_labels_pos',
			'show_media',
			'separators',
			'separators_cols',
			'title_lines',
			'excerpts',
			'excerpt_lines',
			'excerpt_length',
			'read_more',
			'content_center',

			'column_gap',
			'css_title_typo',
			'css_excerpt_typo',
			'css_excerpt_lines',
		]);

		// Remove spacings. We have custom gaps for featured grids.
		$this->remove_options([
			'css_column_gap',
			'css_row_gap'
		]);

		// Only two options from content/box styling.
		if (isset($this->options['sec-style-content'])) {
			$this->options['sec-style-content'] = array_filter(
				$this->options['sec-style-content'],
				function($key) {
					return in_array($key, ['css_meta_above_margins', 'css_meta_below_margins']);
				},
				ARRAY_FILTER_USE_KEY
			);
		}
		
		$this->_add_defaults();

	}

	// public function get_sections()
	// {
	// 	$sections = parent::get_sections();
	// 	$sections += [
	// 		'sec-style-titles' => [
	// 			'label' => esc_html__('Post Titles', 'bunyad-admin'),
	// 			'tab'   => 'style'
	// 		]
	// 	];

	// 	return $sections;
	// }
}PK03Y�Kc���4smartmag-core/blocks/loops/focus-grid/focus-grid.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\LoopBlock;

/**
 * News Focus Block
 */
class FocusGrid extends LoopBlock
{
	public $id = 'focus-grid';

	public function init()
	{
		parent::init();
		$this->props += [
			'small_cols' => 2
		];
	}

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_merge($props, [
			'posts'      => 5,
			'highlights' => 1,
			'column_gap' => 'sm',
		]);
	}

	public function get_block_wrap_attribs()
	{
		$attribs = parent::get_block_wrap_attribs();
		$attribs['data-is-mixed'] = 1;

		return $attribs;
	}

	public function _pre_render()
	{
		// Default to 3 columns.
		if (!$this->props['columns']) {
			$this->props['columns'] = 3;
		}

		$total_columns = $this->props['columns'];

		// For Main Grid Post: This affects the main grid only.
		$this->props['columns'] = 1;
		$this->setup_columns([
			'medium'  => 1,
			'xsmall'  => 1
		]);

		$this->props['small_cols'] = max(1, $total_columns - 1);
	}

	/**
	 * @inheritDoc
	 */
	public function infer_image_sizes() 
	{
		$this->props['image'] = 'bunyad-grid';
	}
}PK03Y�}����1smartmag-core/blocks/loops/focus-grid/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * Grid Block Options
 */
class FocusGrid_Options extends LoopOptions
{
	public $block_id = 'FocusGrid';
	protected $supported_columns = [3, 4];

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();

		// Block name to be used by page builders
		$this->block_name = esc_html__('Focus Grid Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-focus-grid',
			'categories' => ['smart-mag-blocks'],
		];

		$this->options['sec-style-titles'] += [
			'css_title_typo_sm' => [
				'label'       => esc_html__('Small Titles Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .loop-grid-sm .post-title',
				'default'     => [],
				'position'     => [
					'at' => 'after',
					'of' => 'css_title_typo'
				]
			],
		];

		// Remove devices.
		unset($this->options['sec-layout']['columns']['devices']);

		// Remove spacings.
		$this->remove_options([
			'separators',
			'separators_cols',
			'css_column_gap',
			'css_row_gap',
		]);
		
		$this->_add_defaults();
	}
}PK03YE��cc(smartmag-core/blocks/loops/grid/grid.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\LoopBlock;
use Bunyad\Blocks\Base\CarouselTrait;

use function Bunyad\Util\filter_empty_strings;

/**
 * Grid Block
 */
class Grid extends LoopBlock
{
	use CarouselTrait;
	
	public $id = 'grid';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, self::get_carousel_props(), [
			'columns'        => 2,
			'grid_style'     => '',
			'large_style'    => '',
			'media_location' => '',
			'media_embed'    => '',
			'numbers'        => '',
		]);
	}

	public function map_global_props($props)
	{
		$global = [
			'media_ratio'        => Bunyad::options()->loop_grid_media_ratio,
			'media_ratio_custom' => Bunyad::options()->loop_grid_media_ratio_custom,
			'read_more'          => Bunyad::options()->loop_grid_read_more,
			'content_center'     => Bunyad::options()->loop_grid_content_center,
		];

		// Only set this default for listings/internal calls.
		if (empty($props['is_sc_call'])) {
			$global += [
				'excerpts'       => Bunyad::options()->loop_grid_excerpts,
				'excerpt_length' => Bunyad::options()->loop_grid_excerpt_length,
				'style'          => Bunyad::options()->loop_grid_style,
			];
		}
		
		// Extras that are only added if not empty (assumed global otherwise).
		$global_extras = filter_empty_strings([
			'cat_labels'     => Bunyad::options()->loop_grid_cat_labels,
			'cat_labels_pos' => Bunyad::options()->loop_grid_cat_labels_pos,
		]);

		$props = array_replace($global, $global_extras, $props);
		$props = parent::map_global_props($props);
		
		return $props;
	}

	public function init()
	{
		parent::init();

		$this->props['style'] = $this->props['style'] ? $this->props['style'] : 'base';
		$this->props['class'] = array_merge($this->props['class'], [
			'loop loop-grid', 
			"loop-grid-{$this->props['style']}",
			$this->props['separators_cols'] ? 'loop-sep-col' : '',
		]);
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		parent::_pre_render();

		if ($this->props['numbers']) {

			$type = $this->props['numbers'];

			// 'before title' doesn't work with limit applied due to overflow hidden.
			if ($type === 'a' && $this->props['title_lines']) {
				$type = 'b';
			}

			$this->props['class'][] = 'has-nums has-nums-' . $type;
		}

		// @compat Legacy blocks
		if (Bunyad::registry()->loop_grid) {
			$this->set('columns', Bunyad::registry()->loop_grid);
		}
		
		/**
		 * Setup columns and rows
		 */
		$width = $this->get_relative_width();

		// Columns set to auto, auto-detect.
		if (!$this->props['columns']) {
			$this->props['columns'] = 1;

			if ($width < 60) {
				$this->props['columns'] = 2;
			}
			else if ($width > 70) {
				$this->props['columns'] = 3;
			}
		}

		// Defaults and columns setup.
		$this->setup_columns([

			// 1 or 2. Max 2 on medium by default.
			'medium' => min(2, $this->props['columns']),

			// Only add xs if small columns aren't manually set.
			'xsmall' => !$this->props['columns_small'] ? 1 : '',
		]);

		// Set row gap.
		switch ($this->props['columns']) {

			case 3:
			case 4:
				// If have sidebar, fallback to smaller gap, unless defined.
				if ($width < 67 && !$this->props['column_gap']) {
					$this->props['column_gap'] = 'sm';
				}
				break;			
		}

		$this->setup_carousel();

		/**
		 * Finally, setup wrapper attributes if not already done.
		 */
		$this->props['wrap_attrs'] += [
			'class' => array_merge(
				$this->props['class'], 
				$this->props['class_grid']
			)
		];
	}

	/**
	 * @inheritDoc
	 */
	public function infer_image_sizes() 
	{
		$column_width = $this->get_relative_width() / $this->props['columns'];
		$image = 'bunyad-grid';

		if ($column_width > 40) {
			// Scale by dividing original width of bunyad-grid (31%).
			$this->props['image_props']['scale'] = $column_width / 31;
		}

		$this->props['image'] = $image;
	}

}PK03Y(<�n��+smartmag-core/blocks/loops/grid/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * Grid Block Options
 */
class Grid_Options extends LoopOptions
{
	public $block_id = 'Grid';

	/**
	 * @inheritDoc
	 */
	public function init($type = '')
	{
		parent::init();

		// Block name to be used by page builders
		$this->block_name = esc_html__('Grid Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-grid',
			'categories' => ['smart-mag-blocks'],
		];

		// // Setup and extend options
		// $this->options = array_replace_recursive($this->options, [
			
		// ]);

		$this->options['sec-general']['style'] = [
			'label'       => esc_html__('Style', 'bunyad-admin'),
			'type'        => 'select',
			'options'     => [
				''        => esc_html__('Normal', 'bunyad-admin'),
				'sm'      => esc_html__('Small', 'bunyad-admin'),
				'stylish' => esc_html__('Stylish', 'bunyad-admin'),
				'card'    => esc_html__('Cards', 'bunyad-admin'),
				'lg'      => esc_html__('Large Post', 'bunyad-admin'),
			],
			'default'     => '',
		];

		// Large style, if style is specified.
		$this->options['sec-general']['large_style'] = [
			'label'       => esc_html__('Large Style', 'bunyad-admin'),
			'type'        => 'select',
			'options'     => [
				''    => esc_html__('Normal', 'bunyad-admin'),
				'legacy'  => esc_html__('Legacy (Not Recommended)', 'bunyad-admin'),
			],
			'default'     => '',
			'condition'   => ['style' => 'lg']
		];

		$this->options['sec-layout']['media_location'] = [
			'label'       => esc_html__('Media Location', 'bunyad-admin'),
			'type'        => 'select',
			'options'     => [
				''       => esc_html__('Default (Above)', 'bunyad-admin'),
				'below'  => esc_html__('Below Title', 'bunyad-admin'),
			],
			'position'    => [
				'at' => 'after',
				'of' => 'show_media'
			],
			'default'     => '',
			'condition'   => ['show_media' => '1'],
		];

		$this->options['sec-layout']['media_embed'] = [
			'label'       => esc_html__('Media Embeds', 'bunyad-admin'),
			'description' => 'Embed the video, gallery etc. (by post format) - instead of image. Not recommended as it can affect speed.',
			'type'         => 'switcher',
			'return_value' => '1',
			'default'      => '1',
			'position'    => [
				'at' => 'after',
				'of' => 'media_ratio_custom'
			],
			'condition'   => ['show_media' => '1'],
		];

		$this->options['sec-layout']['show_content'] = [
			'label'        => esc_html__('Show Content', 'bunyad-admin'),
			'description'  => 'Disabling this will hide all content except the media image.',
			'type'         => 'switcher',
			'return_value' => '1',
			'default'      => '1',
			'separator'    => 'before',
			'position'     => [
				'at' => 'after',
				'of' => 'post_formats_pos',
			]
		];

		// Numbers
		$this->options['sec-layout']['numbers'] = [
			'label'       => esc_html__('Add Numbers', 'bunyad-admin'),
			'description' => 'Add 1, 2, 3. etc. numbers for posts.',
			'type'         => 'select',
			'options'      => [
				''   => esc_html__('Disabled', 'bunyad-admin'),
				'a'  => esc_html__('Simple A: Before Title (Centered)', 'bunyad-admin'),
				'b'  => esc_html__('Simple B: Before Content', 'bunyad-admin'),
				'c'  => esc_html__('Circled', 'bunyad-admin'),
			],
			'default'     => '',
			'position'    => [
				'at' => 'after',
				'of' => 'media_embed'
			],
		];

		// Carousel options.
		$this->options['sec-carousel'] = $this->common['carousel_fields'];


		// Content box options.
		$this->options['sec-style-content']['css_media_below_margin'] = [
			'label'       => esc_html__('Image Margin Below', 'bunyad-admin'),
			'type'        => 'number',
			'separator'   => 'before',
			'devices'     => true,
			'selectors'   => [
				'{{WRAPPER}} .media' => 'margin-bottom: {{SIZE}}px;'
			],
			'default'     => [],
		];

		$this->remove_options([
			'separators'
		]);

		/**
		 * Widget only options.
		 */
		if ($type === 'widget') {

			// Force default to 1 column instead of 2.
			$col_option = &$this->options['sec-layout']['columns'];
			$col_option = array_replace(
				$col_option,
				[
					'default' => 1,
					'default_forced' => true
				]
			);
		}

		$this->_add_defaults();
	}

	public function get_sections()
	{
		$sections = parent::get_sections();
		\Bunyad\Util\array_insert($sections, 'sec-layout', [
			'sec-carousel' => ['label' => esc_html__('Carousel', 'bunyad-admin')],
		], 'after');

		return $sections;
	}
}PK03YR�`4smartmag-core/blocks/loops/highlights/highlights.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\LoopBlock;

/**
 * Highlights Block
 */
class Highlights extends LoopBlock
{
	public $id = 'highlights';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'small_style' => 'a'
		]);
	}

	public function get_block_wrap_attribs()
	{
		$attribs = parent::get_block_wrap_attribs();
		$attribs['data-is-mixed'] = 1;

		return $attribs;
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		// Auto-detect columns.
		if (!$this->props['columns']) {
			$this->props['columns'] = $this->get_relative_width() >= 66 ? 2 : 1;
		}
	}

	/**
	 * @inheritDoc
	 */
	public function infer_image_sizes()
	{
	}
}PK03Y��331smartmag-core/blocks/loops/highlights/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * Grid Small Block Options
 */
class Highlights_Options extends LoopOptions
{
	public $block_id = 'Highlights';
	protected $supported_columns = 2;

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();

		// Block name to be used by page builders
		$this->block_name = esc_html__('Highlights Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-highlights',
			'categories' => ['smart-mag-blocks'],

		];

		// No pagination for this block
		// $this->remove_options(['pagination', 'pagination_type']);
		
		// Remove spacings.
		$this->remove_options([
			'css_column_gap',
			'css_row_gap'
		]);

		$this->options['sec-layout'] = [
			'small_style' => [
				'label'       => esc_html__('Small Style', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'a'  => esc_html__('Style A: With Thumbs', 'bunyad-admin'),
					'b'  => esc_html__('Style B: Arrows / No Thumbs', 'bunyad-admin'),
				],
				'default'     => 'a',
			]
		] + $this->options['sec-layout'];

		$this->options['sec-style-titles'] += [
			'css_title_typo_sm' => [
				'label'       => esc_html__('Small Titles Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .small-post .post-title',
				'default'     => [],
				'position'     => [
					'at' => 'after',
					'of' => 'css_title_typo'
				]
			],
		];

		$this->_add_defaults();
	}
}PK03Y�W���*smartmag-core/blocks/loops/large/large.php<?php

namespace Bunyad\Blocks\Loops;
use \Bunyad;

use function Bunyad\Util\filter_empty_strings;

/**
 * Large Block - an extension of Grid block, with small config changes.
 */
class Large extends Grid
{
	public $id = 'large';

	// Uses view from Grid bock.
	public $view_id = 'grid';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'columns'        => 1,
			'style'          => 'lg',
			'media_embed'    => true,
		]);
	}

	public function map_global_props($props)
	{
		$global = [
			'media_ratio'        => Bunyad::options()->loop_large_media_ratio,
			'media_ratio_custom' => Bunyad::options()->loop_large_media_ratio_custom,
			'excerpts'           => Bunyad::options()->loop_large_excerpts,
			'excerpt_length'     => Bunyad::options()->loop_large_excerpt_length,
			'read_more'          => Bunyad::options()->loop_large_read_more,
		];

		// Extras that are only added if not empty (assumed global otherwise).
		$global_extras = filter_empty_strings([
			'cat_labels'     => Bunyad::options()->loop_large_cat_labels,
			'cat_labels_pos' => Bunyad::options()->loop_large_cat_labels_pos,
		]);

		$props = array_replace($global, $global_extras, $props);
		$props = parent::map_global_props($props);

		return $props;
	}
	
	/**
	 * @inheritDoc
	 */
	public function infer_image_sizes() 
	{
		$column_width = $this->get_relative_width();
		$image = 'bunyad-main';

		if ($column_width > 66) {
			$image = 'bunyad-main-full';
			// Scale by dividing original width of bunyad-main-featured (66%).
			// $this->props['image_props']['scale'] = $column_width / 66;
		}

		$this->props['image'] = $image;
	}

}PK03Y�-8(��,smartmag-core/blocks/loops/large/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * Large Block Options
 */
class Large_Options extends Grid_Options
{
	public $block_id = 'Large';

	/**
	 * @inheritDoc
	 */
	public function init($type = '')
	{
		parent::init($type);

		// Block name to be used by page builders
		$this->block_name = esc_html__('Large Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-large',
			'categories' => ['smart-mag-blocks'],

		];

		// // Setup and extend options
		// $this->options = array_replace_recursive($this->options, [
			
		// ]);		
		$this->_add_defaults();
	}
}PK03YXm����4smartmag-core/blocks/loops/news-focus/news-focus.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\LoopBlock;

/**
 * News Focus Block
 */
class NewsFocus extends LoopBlock
{
	public $id = 'news-focus';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_merge($props, array(
			'posts'       => 5,
			'highlights'  => 1,
			'small_style' => 'a',
		));
	}

	public function init()
	{
		parent::init();

		$this->props += [
			'class_contain'  => [
				'grid cols-not-eq loops-mixed'
			]
		];
	}

	public function get_block_wrap_attribs()
	{
		$attribs = parent::get_block_wrap_attribs();
		$attribs['data-is-mixed'] = 1;

		return $attribs;
	}

	public function _pre_render()
	{
		/**
		 * Setup columns and rows
		 */
		$width = $this->get_relative_width();

		// Columns set to auto, auto-detect.
		if (!$this->props['columns']) {
			$this->props['columns'] = 2;

			if ($width < 60) {
				$this->props['columns'] = 2;
			}
			else if ($width > 70) {
				$this->props['columns'] = 3;
			}
		}

		$total_columns = $this->props['columns'];

		// Set row gap.
		switch ($total_columns) {

			case 4:
				// $this->props['class_contain'][] = 'grid-5-7';
				array_push(
					$this->props['class_contain'], 'grid-4-8', 'sm:grid-1'
				);
				break;			

			default:
				array_push(
					$this->props['class_contain'], 'grid-2', 'md:grid-2', 'sm:grid-1'
				);
				break;

		}

		// For Main Grid Post: This affects the main grid only.
		$this->props['columns'] = 1;
		$this->setup_columns([
			'medium'  => 1,
			'xsmall'  => 1
		]);

		// Since news-focus always use 1 column grid, but in reality it's 2 columns, adjust.
		if ($this->props['container_width']) {
			$this->props['container_width'] *= 0.5;
		}

		// Determine small columns.
		$this->props['small_cols'] = max(1, $total_columns - 1);

	}

	public function infer_image_sizes()
	{
		// $this->props['image'] = 'bunyad-grid';
	}
}PK03Y��պ�1smartmag-core/blocks/loops/news-focus/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * Grid Small Block Options
 */
class NewsFocus_Options extends LoopOptions
{
	public $block_id = 'NewsFocus';
	protected $supported_columns = [2, 3, 4];

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();

		// Block name to be used by page builders
		$this->block_name = esc_html__('News Focus Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-news-focus',
			'categories' => ['smart-mag-blocks'],

		];

		$this->options['sec-layout'] = [
			'small_style' => [
				'label'       => esc_html__('Small Style', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'a'  => esc_html__('Style A: With Thumbs', 'bunyad-admin'),
					'b'  => esc_html__('Style B: Arrows / No Thumbs', 'bunyad-admin'),
				],
				'default'     => 'a',
			],
			'highlights' => [
				'label'       => esc_html__('Big Posts', 'bunyad-admin'),
				'type'        => 'number',
				'default'     => 1,
			]
		] + $this->options['sec-layout'];

		$this->options['sec-style-titles'] += [
			'css_title_typo_sm' => [
				'label'       => esc_html__('Small Titles Typography', 'bunyad-admin'),
				'type'        => 'group',
				'group_type'  => 'typography',
				'selector'    => '{{WRAPPER}} .small-post .post-title',
				'default'     => [],
				'position'     => [
					'at' => 'after',
					'of' => 'css_title_typo'
				]
			],
		];
		
		// Remove devices.
		unset($this->options['sec-layout']['columns']['devices']);

		// Remove spacings.
		$this->remove_options([
			'css_column_gap',
			'css_row_gap'
		]);

		$this->_add_defaults();
	}
}PK03Y?ޝ	�	.smartmag-core/blocks/loops/overlay/options.php<?php
namespace Bunyad\Blocks\Loops;

/**
 * Grid Small Block Options
 */
class Overlay_Options extends Grid_Options
{
	public $block_id = 'Overlay';

	/**
	 * @inheritDoc
	 */
	public function init($type = '')
	{
		parent::init($type);

		// Block name to be used by page builders
		$this->block_name = esc_html__('Overlay Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-overlay',
			'categories' => ['smart-mag-blocks'],
		];

		$this->options['sec-layout'] += [
			'title_style' => [
				'label'       => esc_html__('Titles Style', 'bunyad-admin'),
				'type'        => 'select',
				'default'     => '',
				'options'     =>[
					'' => esc_html__('Auto/Global', 'bunyad-admin')
				] + $this->common['post_title_styles'],
				'position'     => [
					'at' => 'after',
					'of' => 'title_lines'
				]
			],
		];

		$this->options['sec-style'] += [
			'css_overlay_padding' => [
				'label'       => esc_html__('Overlay Paddings', 'bunyad-admin'),
				'type'        => 'dimensions',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .grid-overlay .content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_media_height' => [
				'label'        => esc_html__('Forced Media Height', 'bunyad-admin'),
				'description'  => 'Not Recommended: By default media will change its height based on chosen aspect ratio.',
				'type'         => 'slider',
				'range'        => [
					'px' => ['min' => 100, 'max' => 1500, 'step' => 1]
				],
				'devices'      => true,
				'size_units'   => ['px'],
				'selectors'    => [
					'{{WRAPPER}} .media' => 'height: {{SIZE}}px;',
				],
			],
		];

		$options = &$this->options['sec-layout']['cat_labels_pos']['options'];
		$options = array_intersect_key($options, array_flip(['', 'top-left', 'top-right']));

		$this->options['sec-layout']['show_media']['type'] = 'hidden';

		$this->remove_options([
			'scheme', 
			'read_more',
			'excerpts',
			'numbers',
			
			'content_center',
			// Inherited from Grid, but not applicable.
			'media_location',
			'style',
			'large_style',
			'media_embed',

			'css_l_post_bg',
			'css_l_post_bg_sd',
			'css_l_post_pad',
			'css_content_border',
			'css_content_shadow',
			'css_content_bg',
			'css_content_bg_sd',
		]);
		
		$this->_add_defaults();
	}
}PK03Y�~�(	(	.smartmag-core/blocks/loops/overlay/overlay.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\CarouselTrait;

use function Bunyad\Util\filter_empty_strings;

/**
 * Overlay grid Block
 */
class Overlay extends Grid
{
	use CarouselTrait;

	public $id = 'overlay';
	public $prefix = 'loop_overlay';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'excerpts'   => false,
			'meta_cat_style' => 'labels',
			'title_style'    => '',
		]);
	}

	public function map_global_props($props)
	{
		$global = [
			'media_ratio'        => Bunyad::options()->loop_overlay_media_ratio,
			'media_ratio_custom' => Bunyad::options()->loop_overlay_media_ratio_custom,
			// 'content_center'     => Bunyad::options()->loop_grid_content_center,
			'title_style'        => Bunyad::options()->loop_overlay_title_style,
			'excerpts'           => false,
			// 'excerpt_length'  => Bunyad::options()->loop_overlay_excerpt_length,
			'read_more'          => '',
			'column_gap'         => 'sm',
			'meta_cat_style'     => 'labels',
		];

		// Extras that are only added if not empty (assumed global otherwise).
		$global_extras = filter_empty_strings([
			'cat_labels'     => Bunyad::options()->loop_overlay_cat_labels,
			'cat_labels_pos' => Bunyad::options()->loop_overlay_cat_labels_pos,
		]);

		$props = array_replace($global, $global_extras, $props);
		$props = parent::map_global_props($props);

		return $props;
	}

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();

		// Will be added on wrap_attrs by parent in pre_render.
		$this->props['class'] = ['loop loop-overlay'];
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		parent::_pre_render();

		// Only top-left and top-right supported.
		if ($this->props['cat_labels']) {
			if (!in_array($this->props['cat_labels_pos'], ['top-left', 'top-right'])) {
				$this->props['cat_labels_pos'] = 'top-left';
			}
		}
	}

	/**
	 * @inheritDoc
	 */
	public function infer_image_sizes() 
	{
		$column_width = $this->get_relative_width() / $this->props['columns'];
		$image = 'bunyad-overlay';

		if ($column_width > 40) {
			// Scale by dividing original width of bunyad-overlay (31%).
			$this->props['image_props']['scale'] = $column_width / 31;
		}

		$this->props['image'] = $image;
	}
}PK03Y���Y}}1smartmag-core/blocks/loops/posts-list/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * Grid Small Block Options
 */
class PostsList_Options extends LoopOptions
{
	public $block_id = 'PostsList';
	protected $supported_columns = 2;

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();

		// Block name to be used by page builders
		$this->block_name = esc_html__('List Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-list',
			'categories' => ['smart-mag-blocks'],
		];
		
		$this->options['sec-general']['style'] = [
			'label'       => esc_html__('Style', 'bunyad-admin'),
			'type'        => 'select',
			'options'     => [
				''        => esc_html__('Normal', 'bunyad-admin'),
				'card'    => esc_html__('Cards', 'bunyad-admin'),
			],
			'default'     => '',
		];

		// Add to beginning of sec-layout.
		$this->options['sec-layout'] = [
			// 'style' => [
			// 	'label'       => esc_html__('Style', 'bunyad-admin'),
			// 	'type'        => 'select',
			// 	'options'     => [
			// 		''    => esc_html__('Normal', 'bunyad-admin'),
			// 		'sm'  => esc_html__('Small', 'bunyad-admin'),
			// 	],
			// 	'default'     => '',
			// ],

			'content_vcenter'  => [
				'label'        => esc_html__('Vertical Centered', 'bunyad-admin'),
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '0',
				'position'     => ['at' => 'before', 'of' => 'show_media'],
			],

			'grid_on_sm'  => [
				'label'        => esc_html__('Grid Style on Phones', 'bunyad-admin'),
				'description'  => 'Show in a grid, instead of list style, on mobile devices.',
				'type'         => 'switcher',
				'return_value' => '1',
				'default'      => '0',
				'position'     => ['at' => 'before', 'of' => 'show_media'],
			],

			'media_pos'  => [
				'label'       => esc_html__('Image Position', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'left'    => esc_html__('Left', 'bunyad-admin'),
					'right'   => esc_html__('Right', 'bunyad-admin'),
				],
				'default'     => '',
				'position'    => ['at' => 'before', 'of' => 'show_media'],
				'condition'   => ['show_media' => '1']
			],
			
			'media_vpos'  => [
				'label'       => esc_html__('Image Vertical Position', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					''         => esc_html__('Default', 'bunyad-admin'),
					'center'   => esc_html__('Center', 'bunyad-admin'),
				],
				'default'     => '',
				'position'    => ['at' => 'before', 'of' => 'show_media'],
				'condition'   => ['show_media' => '1']
			],

			'media_width' => [
				'label'       => esc_html__('Image Width %', 'bunyad-admin'),
				'type'        => 'number',
				// 'devices'     => true,
				'input_attrs' => ['min' => 1, 'max' => 85],
				'default'     => '',
				'position'    => ['at' => 'after', 'of' => 'show_media'],
				'condition'   => ['show_media' => '1'],
				'selectors'   => [
					'{{WRAPPER}} .list-post' => '--list-p-media-width: {{SIZE}}%; --list-p-media-max-width: 85%;'
				],
			],

			'css_media_max_width' => [
				'label'       => esc_html__('Max Width', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'default'     => [],
				'position'    => ['at' => 'after', 'of' => 'media_width'],
				'condition'   => ['media_width!' => ''],
				'size_units'  => ['%', 'px'],
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 900,
					],
				],
				'selectors'   => [
					// Higher specificity needed than customizer one.
					'{{WRAPPER}} .media' => '--list-p-media-max-width: {{SIZE}}{{UNIT}};'
				],
			],

		] + $this->options['sec-layout'];

		$this->options['sec-style'] += [
			'css_media_margin' => [
				'label'        => esc_html__('Media Margin/Gap', 'bunyad-admin'),
				'type'         => 'slider',
				'devices'      => true,
				'default'      => [],
				'size_units'   => ['%', 'px'],
				'selectors'    => [
					'{{WRAPPER}} .list-post' => '--list-p-media-margin: {{SIZE}}{{UNIT}};'
				],
				'condition'    => ['show_media' => '1'],
			],
		];

		$this->remove_options([
			'content_center',
		]);
		
		$this->_add_defaults();
	}
}PK03Y&�.��4smartmag-core/blocks/loops/posts-list/posts-list.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad;
use Bunyad\Blocks\Base\LoopBlock;
use function Bunyad\Util\filter_empty_strings;

/**
 * Posts List Block
 */
class PostsList extends LoopBlock
{
	public $id = 'posts-list';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_merge($props, [
			'media_pos'   => 'left',
			'media_vpos'  => '',
			'grid_on_sm'  => false,
			'separators'  => true,
			'content_vcenter' => false,
		]);
	}

	public function map_global_props($props)
	{
		$global = [
			'media_ratio'        => Bunyad::options()->loop_list_media_ratio,
			'media_ratio_custom' => Bunyad::options()->loop_list_media_ratio_custom,
			'media_width'        => Bunyad::options()->loop_list_media_width,
			'read_more'          => Bunyad::options()->loop_list_read_more,
		];

		// Only add these globals for listings.
		if (empty($props['is_sc_call'])) {
			$global += [
				'excerpts'       => Bunyad::options()->loop_list_excerpts,
				'excerpt_length' => Bunyad::options()->loop_list_excerpt_length,
				'read_more'      => Bunyad::options()->loop_list_read_more,
				'separators'     => Bunyad::options()->loop_list_separators,
				'grid_on_sm'     => Bunyad::options()->loop_list_grid_on_sm,
				'style'          => Bunyad::options()->loop_list_style,
			];
		}

		// Extras that are only added if not empty (assumed global otherwise).
		$global_extras = filter_empty_strings([
			'cat_labels'     => Bunyad::options()->loop_list_cat_labels,
			'cat_labels_pos' => Bunyad::options()->loop_list_cat_labels_pos,
		]);

		$props = array_replace($global, $global_extras, $props);
		$props = parent::map_global_props($props);

		return $props;
	}

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		/**
		 * Setup columns and rows
		 */
		// Columns set to auto, auto-detect.
		if (!$this->props['columns']) {
			$this->props['columns'] = 1;
		}

		$this->setup_columns([
			// For 2 col variation, use 2 on medium too.
			'medium' => $this->props['columns'] > 1 ? 2 : 1,
			'small'  => 1,
		]);

		/**
		 * Finally, setup wrapper attributes if not already done.
		 */
		$this->props['wrap_attrs'] += [
			'class' => array_merge(
				[
					'loop loop-list', 
					$this->props['separators'] ? 'loop-sep loop-list-sep' : '',
					$this->props['separators_cols'] ? 'loop-sep-col' : '',
					$this->props['style'] ? "loop-list-{$this->props['style']}" : '',
				],
				$this->props['class'],
				$this->props['class_grid']
			)
		];

		// Infinite load - backward compat?
		if (Bunyad::options()->pagination_type == 'infinite') {
			$this->props['wrap_attrs']['data-infinite'] = Bunyad::markup()->unique_id('listing-'); 
		}
	}

	/**
	 * @inheritDoc
	 */
	public function infer_image_sizes() 
	{
		// If an image is forced, don't bother setting it
		if ($this->props['image']) {
			// return;
		}		

		$image        = 'bunyad-list';
		$column_width = $this->get_relative_width() / $this->props['columns'];
		$scale        = 1;

		// Use a large image if within wide container. So for full width, 375px image will have 
		// sizes attr set to 375px * (100/66)
		if ($column_width > 66) {
			$scale = $column_width / 66;
		}

		if (!empty($this->props['media_width'])) {

			// 38% is original expected width.
			$media_scale = intval($this->props['media_width']) / 38;

			// There may be column scale as well. Add that on top of it.
			// Example for full-width column:
			//  (58% / 38%) * ((375px * 100%/66%))
			$scale = $media_scale * $scale;
		}

		if ($scale !== 1) {
			$this->props['image_props']['scale'] = $scale;
		}

		$this->props['image'] = $image;
	}

}PK03Y;Z�L772smartmag-core/blocks/loops/posts-small/options.php<?php

namespace Bunyad\Blocks\Loops;

use Bunyad\Blocks\Base\LoopOptions;

/**
 * ListSmall Block Options
 */
class PostsSmall_Options extends LoopOptions
{
	public $block_id = 'PostsSmall';

	/**
	 * @inheritDoc
	 */
	public function init()
	{
		parent::init();

		// Block name to be used by page builders
		$this->block_name = esc_html__('Small List Block', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-small',
			'categories' => ['smart-mag-blocks'],
		];

		$this->options['sec-general']['style'] = [
			'label'       => esc_html__('Style', 'bunyad-admin'),
			'type'        => 'select',
			'options'     => [
				'a'  => esc_html__('Style A: With Thumbs', 'bunyad-admin'),
				'b'  => esc_html__('Style B: Arrows / No Thumbs', 'bunyad-admin'),
			],
			'default'     => 'a',
			'position'    => ['at' => 'before', 'of' => 'h-advanced-1']
		];

		// Add to beginning of sec-layout.
		$this->options['sec-layout'] = [

			'media_pos'  => [
				'label'       => esc_html__('Image Position', 'bunyad-admin'),
				'type'        => 'select',
				'options'     => [
					'left'    => esc_html__('Left', 'bunyad-admin'),
					'right'   => esc_html__('Right', 'bunyad-admin'),
				],
				'default'     => '',
				'position'    => ['at' => 'after', 'of' => 'show_media'],
				'condition'   => ['show_media' => '1']
			],

			'media_width' => [
				'label'       => esc_html__('Image Width %', 'bunyad-admin'),
				'type'        => 'number',
				// 'devices'     => true,
				'input_attrs' => ['min' => 1, 'max' => 85],
				'default'     => '',
				'position'    => ['at' => 'after', 'of' => 'show_media'],
				'condition'   => ['show_media' => '1'],
				'selectors'   => [
					'{{WRAPPER}} .media' => 'width: {{SIZE}}%; max-width: 85%;'
				],
			],

			'css_media_width' => [
				'label'       => esc_html__('Max Width', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'default'     => [],
				'position'    => ['at' => 'after', 'of' => 'media_width'],
				'condition'   => ['media_width!' => ''],
				'size_units'  => ['%', 'px'],
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 300,
					],
				],
				'selectors'   => [
					'{{WRAPPER}} .media' => 'max-width: {{SIZE}}{{UNIT}};'
				],
			],

		] + $this->options['sec-layout'];

		// Carousel options.
		$this->options['sec-carousel'] = $this->common['carousel_fields'];
		
		$this->remove_options([
			'read_more',
			'excerpts',
			'content_center',

			// Only center supported.
			'post_formats_pos',
		]);
		
		$this->_add_defaults();
	}

	public function get_sections()
	{
		$sections = parent::get_sections();
		\Bunyad\Util\array_insert($sections, 'sec-layout', [
			'sec-carousel' => ['label' => esc_html__('Carousel', 'bunyad-admin')],
		], 'after');

		return $sections;
	}
}PK03Y�>Ay��6smartmag-core/blocks/loops/posts-small/posts-small.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\LoopBlock;
use Bunyad\Blocks\Base\CarouselTrait;

/**
 * Small list Block
 */
class PostsSmall extends LoopBlock
{
	use CarouselTrait;

	public $id = 'posts-small';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, self::get_carousel_props(), [
			'cat_labels'  => false,
			'media_pos'   => 'left',
			'separators'  => true,
			'title_tag'   => 'h4',
			'show_post_formats' => false
		]);
	}

	public function map_global_props($props)
	{	
		$global = [
			'media_ratio'           => Bunyad::options()->loop_small_media_ratio,
			'media_ratio_custom'    => Bunyad::options()->loop_small_media_ratio_custom,
			'media_width'           => Bunyad::options()->loop_small_media_width,
			'reviews'               => Bunyad::options()->loop_small_reviews,
			'excerpts'              => false,
			'excerpt_length'        => 0,
			'read_more'             => '',

			// Setting here or parent method will set it to global.
			'cat_labels'     => false,
		];

		// Only add default global meta if specifically enabled. Otherwise empty meta
		// won't be possible (call props get stripped being default).
		$props['meta_items_default'] = $props['meta_items_default'] ?? true;
		if ($props['meta_items_default']) {
			$global += [
				'meta_above'  => Bunyad::options()->loop_small_meta_above,
				'meta_below'  => Bunyad::options()->loop_small_meta_below,
			];
		}

		// Only set this default for listings/internal calls.
		if (empty($props['is_sc_call'])) {
			$global += [
				'separators'        => Bunyad::options()->loop_small_separators,
				'show_post_formats' => Bunyad::options()->loop_small_post_formats,
			];
		}

		$props = array_replace($global, $props);
		$props = parent::map_global_props($props);

		return $props;
	}

	/**
	 * @inheritDoc
	 */
	public function _pre_render()
	{
		/**
		 * Setup columns and rows
		 */
		// Columns set to auto, auto-detect.
		if (!$this->props['columns']) {
			$this->props['columns'] = 1;
		}

		// Unless specified, deduct column count by 1 for responsive. Max 3 cols for 
		// medium and 2 for small.
		$cols = $this->props['columns'] > 1 ? $this->props['columns'] - 1 : 1;
		$this->setup_columns([
			'medium' => min($cols, 3),
			'small'  => min($cols, 2),

			// Set only if small isn't manually set by user.
			'xsmall' => !$this->props['columns_small'] ? 1 : ''
		]);

		$this->setup_carousel();

		// Separators aren't needed with carousel.
		if ($this->props['carousel']) {
			$this->props['separators'] = false;
		}

		/**
		 * Finally, setup wrapper attributes if not already done.
		 */
		$this->props['wrap_attrs'] += [
			'class' => array_merge(
				[
					'loop loop-small', 
					'loop-small-' . $this->props['style'],
					$this->props['separators'] ? 'loop-sep loop-small-sep' : '',
					$this->props['separators_cols'] ? 'loop-sep-col' : '',
				],
				$this->props['class'],
				$this->props['class_grid']
			)
		];
	}

	public function infer_image_sizes()
	{
		if (!empty($this->props['media_width'])) {
			// 28% is original expected width.
			$this->props['image_props']['scale'] = intval($this->props['media_width']) / 28;
		}
	}

}PK03Y@F^��0smartmag-core/blocks/loops/timeline/timeline.php<?php

namespace Bunyad\Blocks\Loops;

use \Bunyad;
use Bunyad\Blocks\Base\LoopBlock;

/**
 * Small list Block
 */
class Timeline extends LoopBlock
{
	public $id = 'timeline';

	/**
	 * Extend base props
	 */
	public static function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			// 'cat_labels'  => false,
			// 'media_pos'   => 'left',
			// 'separators'  => true,
			// 'title_tag'   => 'h4',
			// 'show_post_formats' => false
		]);
	}
}PK03Y_��vv.smartmag-core/blocks/newsletter/newsletter.php<?php

namespace Bunyad\Blocks;

use \Bunyad;
use Bunyad\Blocks\Base\Block;

/**
 * Newsletter / subscribe form block.
 */
class Newsletter extends Block
{
	public $id = 'newsletter';

	/**
	 * @inheritdoc
	 */
	public static function get_default_props() 
	{
		$props = [
			'headline'     => 'Subscribe to Updates',
			'style'        => 'b',

			// 'sm' or 'lg' container to adjust text sizes.
			'container'    => 'sm',
			'scheme'       => 'light',

			'image_type'   => 'none',
			'image'        => '',
			'image_2x'     => '',

			// 'inline' or 'full'
			'fields_style' => 'full',

			// Alignment.
			'align'        => 'center',

			// Service provider. Defaults to global.
			'service'     => '',
			'custom_form' => '',
			
			// Empty, 'mail-bg', 'mail-top', 'mail'
			'icon'        => '',
			'message'     => 'Get the latest creative news from FooBar about art, design and business.',
			'submit_text' => 'Subscribe',
			'submit_url'  => '',
			'disclaimer'  => 'By signing up, you agree to the our terms and our <a href="#">Privacy Policy</a> agreement.',
			'checkbox'    => 1,
		];

		return $props;
	}

	public function map_global_props($props)
	{
		// Add defaults from options.
		$props = array_replace([
			
		], $props);

		// Force globals for these if no service is selected.
		if (empty($props['service'])) {
			$props = array_replace($props, [
				'service'     => Bunyad::options()->newsletter_service,
				'submit_url'  => Bunyad::options()->newsletter_submit_url,
				'custom_form' => Bunyad::options()->newsletter_custom_form,
			]);
		}
		
		return $props;
	}

	public function init()
	{
		// Internal.
		$this->props += [
			'classes'  => '',
			'image_id' => '',
		];

		if (!$this->props['image_type']) {
			$this->props['image_type'] = 'none';
		}

		// Most likely from elementor if it's an array.
		if (is_array($this->props['image'])) {
			$this->props['image'] = $this->props['image']['url'];
		}

		if (is_array($this->props['image_2x'])) {
			$this->props['image_2x'] = $this->props['image_2x']['url'];
		}

		// Mailchimp URL fix.
		if ($this->props['service'] === 'mailchimp') {
			// Pasted whole form in submit URL? Capture the URL.
			if (preg_match('/action=\"([^\"]+)\"/', $this->props['submit_url'], $match)) {
				$this->props['submit_url'] = $match[1];
			}
		}
	}

	/**
	 * Print the image / media markup.
	 */
	public function the_image()
	{
		$image_url = $this->props['image'];

		if ($this->props['image_type'] === 'none' || !$image_url) {
			return;
		}

		$image_id  = attachment_url_to_postid($image_url);
		$srcset    = [$image_url => ''];
		if (!empty($this->props['image_2x'])) {
			$srcset[$this->props['image_2x']] = '2x';
		}

		$attrs = [
			'src'    => $image_url,
			'alt'    => $this->props['heading'],
			'srcset' => $srcset
		];

		$image_attrs = wp_get_attachment_image_src($image_id, 'full');
		if ($image_attrs) {
			$attrs += [
				'width'  => $image_attrs[1],
				'height' => $image_attrs[2],
			];
		}

		printf(
			'<div class="%1$s"><img %2$s /></div>',
			esc_attr('media media-' . $this->props['image_type']),
			Bunyad::markup()->attribs('block-newsletter', $attrs, ['echo' => false])
		);
	}

	/**
	 * Display custom form if not mailchimp.
	 */
	public function the_custom_form()
	{
		if ($this->props['service'] !== 'custom') {
			return;
		}

		printf(
			'<div class="fields %1$s">%2$s</div>', 
			$this->props['fields_style'] !== 'none' ? 'fields-style fields-full' : '',
			do_shortcode($this->props['custom_form'])
		);
	}

	/**
	 * Render all of the post meta HTML.
	 * 
	 * @return void
	 */
	public function render() 
	{
		if (class_exists('\SmartMag_Core') && empty(\SmartMag_Core::instance()->theme_supports['blocks'])) {
			return;
		}

		// Setup classes.
		$this->props['classes'] = [
			'spc-newsletter',
			'spc-newsletter-' . $this->props['style'],
			'spc-newsletter-' . $this->props['align'],
			'spc-newsletter-' . $this->props['container'],
			$this->props['icon'] === 'mail-top' ? 'has-top-icon' : ''
		];

		$this->props['classes'] = join(' ', array_filter($this->props['classes']));

		// Render view.
		Bunyad::core()->partial(
			'blocks/newsletter/html/newsletter',
			[
				'block' => $this,
			]
		);
	}
}PK03Y�8�&+&++smartmag-core/blocks/newsletter/options.php<?php

namespace Bunyad\Blocks;

/**
 * Newsletter block options
 */
class Newsletter_Options extends Base\Options
{
	public $block_id = 'Newsletter';

	public function init($type = '') 
	{
		// Block name to be used by page builders
		$this->block_name = esc_html__('Newsletter Form', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon ts-ele-icon-newsletter',
			'categories' => ['smart-mag-blocks'],
		];

		/**
		 * General Options.
		 */
		$options['sec-general'] = [
			'headline' => [
				'name'    => 'headline',
				'label'   => esc_html__('Headline / CTA', 'bunyad-admin'),
				'type'    => 'text',
				'default' => ''
			],
			
			'service' => [
				'name'    => 'service',
				'label'   => esc_html__('Subscribe Service', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					''          => esc_html__('Settings From Customizer', 'bunyad-admin'),
					'mailchimp' => esc_html__('MailChimp', 'bunyad-admin'),
					'custom'    => esc_html__('Others (HTML / Shortcode)', 'bunyad-admin'),
				],
				'label_block' => true,
			],

			'custom_form' => [
				'name'    => 'custom_form',
				'label'   => esc_html__('Form HTML / Shortcode', 'bunyad-admin'),
				'type'    => 'textarea',
				'label_block' => true,
				'default' => '',
				'condition' => ['service' => 'custom'],
				'sanitize_callback' => false
			],

			'message' => [
				'name'    => 'message',
				'label'   => esc_html__('Message', 'bunyad-admin'),
				'type'    => 'richtext',
				'label_block' => true,
				'default' => ''
			],

			'submit_text' => [
				'name'    => 'submit_text',
				'label'   => esc_html__('Button Text', 'bunyad-admin'),
				'type'    => 'text',
				'label_block' => true,
				'default' => 'Subscribe'
			],

			'submit_url' => [
				'name'    => 'submit_url',
				'label'   => esc_html__('MailChimp Submit URL', 'bunyad-admin'),
				'type'    => 'text',
				'condition' => ['service' => 'mailchimp']
			],

			'disclaimer' => [
				'name'    => 'disclaimer',
				'label'   => esc_html__('Disclaimer', 'bunyad-admin'),
				'type'    => 'textarea',
				'label_block' => true,
			],

			'checkbox' => [
				'name'    => 'checkbox',
				'label'   => esc_html__('Disclaimer Checkbox', 'bunyad-admin'),
				'type'    => 'switcher',
				'return_value' => '1',
				'default'      => '1',
			],

			'image_type' => [
				'name'    => 'image_type',
				'label'   => esc_html__('Image At Top', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					'none'   => esc_html__('None', 'bunyad-admin'),
					'full'   => esc_html__('Full Width', 'bunyad-admin'),
					'normal' => esc_html__('Normal Image', 'bunyad-admin'),
				]
			],

			'image' => [
				'name'        => 'image',
				'label'       => esc_html__('Image', 'bunyad-admin'),
				'type'        => 'media',
				'condition'   => ['image_type!' => 'none'],
				'default'     => [],

				// String is expected by block. Elementor does array.
				'default_forced' => true,
			],

			'image_2x' => [
				'name'        => 'image_2x',
				'label'       => esc_html__('Image Retina/2x', 'bunyad-admin'),
				'type'        => 'media',
				'condition'   => ['image_type!' => 'none'],
				'default'     => [],
				'default_forced' => true,
			],
		];

		/**
		 * Style options.
		 */
		$options['sec-style'] = [

			'style' => [
				'name'    => 'style',
				'label'   => esc_html__('Base Style', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					'a' => esc_html__('A: Minimal', 'bunyad-admin'),
					'b' => esc_html__('B: Modern', 'bunyad-admin'),
					'c' => esc_html__('C: Classic', 'bunyad-admin'),
				],
				// 'label_block' => true,
			],

			'scheme' => [
				'name'    => 'scheme',
				'label'   => esc_html__('Color Scheme', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					'light' => esc_html__('Default / Light', 'bunyad-admin'),
					'dark'  => esc_html__('Dark / Contrast', 'bunyad-admin'),
				]
			],

			'fields_style' => [
				'name'    => 'fields_style',
				'label'   => esc_html__('Fields Style', 'bunyad-admin'),
				'description' => esc_html__('When using a Custom form provided by shortcode or HTML, No Style might be the preferred option.', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					'full'   => esc_html__('One Per Row', 'bunyad-admin'),
					'inline' => esc_html__('Inline (Not for Custom)', 'bunyad-admin'),
					'none'   => esc_html__('No Extra Style', 'bunyad-admin')
				]
			],

			'container' => [
				'name'    => 'container',
				'label'   => esc_html__('Size / Spacing', 'bunyad-admin'),
				'description' => esc_html__('These presets will not apply if typography or spacing settings were modified via Customizer.', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					'lg' => esc_html__('Large', 'bunyad-admin'),
					'sm' => esc_html__('Small', 'bunyad-admin'),
					'xs' => esc_html__('X-Small', 'bunyad-admin'),
				]
			],

			'align' => [
				'name'    => 'align',
				'label'   => esc_html__('Alignment', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					'center' => esc_html__('Centered', 'bunyad-admin'),
					'left'   => esc_html__('Left', 'bunyad-admin'),
				]
			],

			'icon' => [
				'name'    => 'icon',
				'label'   => esc_html__('Icon Above', 'bunyad-admin'),
				'type'    => 'select',
				'options' => [
					''         => esc_html__('None', 'bunyad-admin'),
					'mail-bg'  => esc_html__('Faded Icon Background', 'bunyad-admin'),
					'mail-top' => esc_html__('Rounded Top Icon', 'bunyad-admin'),
					'mail'     => esc_html__('Simple Icon', 'bunyad-admin'),
				]
			],

			'css_max_width' => [
				'name'        => 'css_max_width',
				'label'       => esc_html__('Content Max Width', 'bunyad-admin'),
				'type'        => 'number',
				'input_attrs' => ['min' => 200, 'max' => 1500],
				'selectors'         => [
					'.spc-newsletter' => '--max-width: {{VALUE}}px',
				],
				'separator'   => 'before',
				'default'     => ''
			],

			'css_padding' => [
				'label'       => esc_html__('Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'size_units'  => ['px'],
				'devices'     => true,
				'selectors'   => [
					'{{WRAPPER}} .spc-newsletter > .inner' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],

			'css_bradius' => [
				'label'       => esc_html__('Box Roundness', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .spc-newsletter' => '--box-roundness: {{VALUE}}px;'
				],
				'default'     => [],
			],
		];

		$options['sec-style-color-typo'] = [
			'css_heading_typo' => [
				'name'       => 'css_heading_typo',
				'label'      => esc_html__('Heading Typography', 'bunyad-admin'),
				'type'       => 'group',
				'group_type' => 'typography',
				'devices'    => true,
				'selector'   => '{{WRAPPER}} .heading',
				'default'    => [],
			],

			'css_heading_color' => [
				'name'       => 'css_heading_color',
				'label'      => esc_html__('Heading Color', 'bunyad-admin'),
				'type'       => 'color',
				'selectors'  => [
					'{{WRAPPER}} .heading' => 'color: {{VALUE}}'
				],
				'default'    => ''
			],
			'css_heading_color_sd' => [
				'name'       => 'css_heading_color_sd',
				'label'      => esc_html__('Dark: Heading Color', 'bunyad-admin'),
				'type'       => 'color',
				'selectors'  => [
					'.s-dark {{WRAPPER}} .heading,
					{{WRAPPER}} .s-dark .heading' => 'color: {{VALUE}}'
				],
				'default'    => ''
			],

			'css_message_typo' => [
				'name'       => 'css_message_typo',
				'label'      => esc_html__('Message Typography', 'bunyad-admin'),
				'type'       => 'group',
				'group_type' => 'typography',
				'devices'    => true,
				'selector'   => '{{WRAPPER}} .message',
				'default'    => [],
			],

			'css_disclaimer_typo' => [
				'name'       => 'css_disclaimer_typo',
				'label'      => esc_html__('Disclaimer Typography', 'bunyad-admin'),
				'type'       => 'group',
				'group_type' => 'typography',
				'devices'    => true,
				'selector'   => '{{WRAPPER}} .disclaimer',
				'default'    => [],
			],

			'css_button_bg' => [
				'name'       => 'css_button_bg',
				'label'      => esc_html__('Button Background', 'bunyad-admin'),
				'type'       => 'color',
				'selectors'  => [
					'{{WRAPPER}} input[type=submit],
					{{WRAPPER}} input[type=submit]' => 'background: {{VALUE}}'
				],
				'default'    => ''
			],
		];

		$options['sec-style-bg'] = [

			'css_bg_color' => [
				'name'       => 'css_bg_color',
				'label'      => esc_html__('Background Color', 'bunyad-admin'),
				'type'       => 'color',
				'selectors'  => [
					'{{WRAPPER}} .spc-newsletter' => 'background-color: {{VALUE}}'
				],
				'default'    => ''
			],
			'css_bg_color_sd' => [
				'name'       => 'css_bg_color_sd',
				'label'      => esc_html__('Dark: Background Color', 'bunyad-admin'),
				'type'       => 'color',
				'selectors'  => [
					'{{WRAPPER}} .spc-newsletter' => 'background-color: {{VALUE}}'
				],
				'default'    => ''
			],

			'css_background_grad' => [
				'name'       => 'css_background',
				'label'      => esc_html__('Background', 'bunyad-admin'),
				'type'       => 'group',
				'group_type' => 'background',
				'selector'   => '{{WRAPPER}} .spc-newsletter',
				'types'      => ['gradient'],
				'default'    => [],
			],

			'css_bg_image' => [
				'name'       => 'css_bg_image',
				'label'      => esc_html__('Background Image', 'bunyad-admin'),
				'type'       => 'media',
				'selectors'  => [
					'{{WRAPPER}} .bg-wrap' => 'background-image: url("{{URL}}");'
				],
				'default'    => [],
			],

			'css_bg_opacity' => [
				'name'        => 'css_bg_opacity',
				'label'       => esc_html__('BG Opacity', 'bunyad-admin'),
				'type'        => 'number',
				'input_attrs' => ['min' => 0, 'max' => 1, 'step' => 0.1],
				'selectors'   => [
					'{{WRAPPER}} .bg-wrap' => 'opacity: {{VALUE}}',
				],
				'default'     => ''
			],
		];

		$this->options = $options;
		$this->_add_defaults();

		/**
		 * Widget only options.
		 */
		if ($type === 'widget') {
			$this->options['sec-general'] += [
				'widget_title' => [
					'name'     => 'widget_title',
					'label'    => esc_html__('Widget Title (Optional)', 'bunyad-admin'),
					'description' => esc_html__('Not recommended except for minimal style.', 'bunyad-admin'),
					'type'     => 'text',
					'position' => [
						'of' => 'headline',
						'at' => 'before'
					]
				]
			];
		}
	}

	public function get_sections()
	{
		return [
			'sec-general' => [
				'label' => esc_html__('General', 'bunyad-admin')
			],
			'sec-style'   => [
				'label' => esc_html__('Style', 'bunyad-admin'),
				'tab'   => 'style'
			],
			'sec-style-color-typo' => [
				'label' => esc_html__('Colors & Typography', 'bunyad-admin'),
				'tab'   => 'style'
			],
			'sec-style-bg'   => [
				'label' => esc_html__('Background', 'bunyad-admin'),
				'tab'   => 'style'
			],
		];
	}
}PK03Y����U�U,smartmag-core/blocks/post-meta/post-meta.php<?php

namespace Bunyad\Blocks;

use \Bunyad;
use Bunyad\Blocks\Base\Block;
use Sphere\PostViews\Plugin as PostViews;

/**
 * Render and generate post meta for posts in listings, single etc.
 */
class PostMeta extends Block
{
	public $id = 'post-meta';

	public function init()
	{
		// Process props after all's setup.
		$this->props = $this->process_props($this->props);
	}

	/**
	 * @inheritdoc
	 */
	public static function get_default_props() 
	{
		$props = [
			'type'          => '',
			'items_above'   => [], //['cat', 'date'],
			'items_below'   => ['author', 'date', 'comments'],
			'title'         => true,
			
			'show_title'  => true,
			'title_class' => 'post-title',
			'title_tag'   => 'h2',
			'is_single'   => false,
			'after_title' => '',
			
			// Show text labels like "In", "By"
			'text_labels' => ['by'],
			'icons'       => 'some',
			'cat_style'   => '',

			// Whether this post meta is in an overlay.
			'is_overlay'  => false,

			// Author image/avatar.
			'author_img'  => false,
			'avatar_size' => 21,

			'min_comments' => 0,
			'min_views'    => 0,

			'all_cats'    => false,
			'style'       => 'a',

			// Alignment defaults to inherit from parents.
			'align'       => '',
			'add_class'   => '',

			'date_link'   => false,
			'cat_labels'  => false,

			// Whether or not review stars are supported. 
			'review'      => false,

			// Whether to show overlay cat labels as inline - useful when can't overlay.
			// 'cat_labels_inline'  => false,

			// Category labels remain legacy.
			// 'cat_labels_overlay' => Bunyad::options()->meta_cat_labels,

			'modified_date'      => false,
			'wrapper'            => null,

			// Ranks for post views.
			'views_ranks'     => [],
			'views_readable'  => false,

			// Not used yet.
			'divider'       => false,

			// Add extra HTML on right side of bottom post meta. Can be a callback.
			'below_right_html' => '',

			// Sponsors feature
			'sponsor'       => true,
			'sponsor_label' => '',
			'sponsor_logo'  => true,
			'sponsor_above' => [],
			'sponsor_below' => ['sponsor', 'date'],
			'sponsor_info'  => '',
		];

		return $props;
	}

	/**
	 * Add in global defaults for the props.
	 * 
	 * Note: This block is never called with is_sc_call so no provided props are removed.
	 *
	 * @param array $original_props
	 * @return array
	 */
	public function map_global_props($original_props)
	{
		// Add defaults from options.
		$props = array_replace([
			'items_above'    => Bunyad::options()->post_meta_above,
			'items_below'    => Bunyad::options()->post_meta_below,
			// 'style'         => Bunyad::options()->post_meta_style,
			// 'align'         => Bunyad::options()->post_meta_align,
			'text_labels'    => (array) Bunyad::options()->post_meta_labels,
			'all_cats'       => Bunyad::options()->post_meta_all_cats,
			'modified_date'  => Bunyad::options()->post_meta_modified_date,
			'author_image'   => Bunyad::options()->post_meta_author_img,
			'min_comments'   => (int) Bunyad::options()->post_meta_min_comments,
			'min_views'      => (int) Bunyad::options()->post_meta_min_views,
			'views_readable' => Bunyad::options()->post_meta_views_readable,

			// Sponsored posts.
			'sponsor'        => Bunyad::options()->post_meta_sponsor,
			'sponsor_logo'   => Bunyad::options()->post_meta_sponsor_logo,
			'sponsor_above'  => Bunyad::options()->post_meta_sponsor_above,
			'sponsor_below'  => Bunyad::options()->post_meta_sponsor_below,
			'sponsor_label'  => Bunyad::options()->post_meta_sponsor_label ?? 'Sponsor: {sponsor}',
		], $original_props);

		// Add in the Post View ranks, if defined.
		if (!isset($props['views_ranks']) && Bunyad::options()->post_meta_views_ranks) {
			$props['views_ranks'] = array_filter([
				'hot'   => Bunyad::options()->post_meta_views_ranks_hot,
				'trend' => Bunyad::options()->post_meta_views_ranks_trend,
				'viral' => Bunyad::options()->post_meta_views_ranks_viral,
			]);
		}

		$prefixes = [
			'single' => 'post_meta_single',
		];

		$type = isset($props['type']) ? $props['type'] : '';

		// A known type and isn't set to use global options.
		if (isset($prefixes[$type]) && !Bunyad::options()->get($prefixes[$type] . '_global')) {
			
			$key = $prefixes[$type];

			$local_opts = [
				'items_above'    => Bunyad::options()->get($key . '_above'),
				'items_below'    => Bunyad::options()->get($key . '_below'),
				'style'          => Bunyad::options()->get($key . '_style'),
				'all_cats'       => Bunyad::options()->get($key . '_all_cats'),
				'sponsor'        => Bunyad::options()->get($key . '_sponsor'),
				'sponsor_logo'   => Bunyad::options()->get($key . '_sponsor_logo'),
				'sponsor_above'  => Bunyad::options()->get($key . '_sponsor_above'),
				'sponsor_below'  => Bunyad::options()->get($key . '_sponsor_below'),
				'sponsor_label'  => Bunyad::options()->get($key . '_sponsor_label'),
				'sponsor_info'  => Bunyad::options()->get($key . '_sponsor_info'),
			];

			// We need to replace our current props, but original props still need to have 
			// highest priority, so add them back too.
			$props = array_replace(
				$props, 
				$this->filter_defaults($local_opts),
				$original_props
			);
		}
		
		return $props;
	}

	/**
	 * Process props after they're all setup.
	 * 
	 * By this point, default and unrecognized props have been removed.
	 * 
	 * @param array $props
	 * @return array
	 */
	public function process_props($props)
	{
		$props['items_sep'] = '';  // ' <span class="meta-sep"></span> '

		// // If inline cat labels are forced and there are no items above.
		// // This stays consistent with the legacy post-meta-c behavior.
		// if ($props['cat_labels_inline'] && $props['cat_labels_overlay'] && empty($props['items_above'])) {
		// 	$props['items_above'] = ['cat'];
		// 	$props['cat_style']   = 'labels';
		// }

		// Have sponsored data?
		if ($props['sponsor'] && Bunyad::posts() && Bunyad::posts()->meta('sponsor_name')) {
			$props['items_above'] = $props['sponsor_above'] ?? [];
			$props['items_below'] = $props['sponsor_below'] ?? [];

		}

		// Remove forcefully disabled items.
		if (Bunyad::options()->post_meta_disabled) {
			$props['items_above'] = array_diff($props['items_above'], (array) Bunyad::options()->post_meta_disabled);
			$props['items_below'] = array_diff($props['items_below'], (array) Bunyad::options()->post_meta_disabled);
		}

		return $props;
	}

	/**
	 * Remove default and null values from array.
	 */
	protected function filter_defaults($options) 
	{
		// Remove default/null values.
		foreach ($options as $key => $opt) {
			if ($opt === null || $opt === 'default') {
				unset($options[$key]);
			}
		}

		return $options;
	}

	/**
	 * Render all of the post meta HTML.
	 * 
	 * @return void
	 */
	public function render() 
	{
		$style = str_replace('style-', '', $this->props['style']);
		$class = array_merge(
			[
				'post-meta',
				'post-meta-' . $style,
				($this->props['align'] ? 'post-meta-' . $this->props['align'] : null),
				($this->props['divider'] ? 'post-meta-divider' : null)
			],
			(array) $this->props['add_class']
		);

		do_action('bunyad_post_meta_before', $this);

		// Meta above title.
		$output = $this->render_meta('above');
		
		// Post title and tag.
		if ($this->props['show_title']) {
			
			$tag = $this->props['title_tag'];

			if ($this->props['is_single']) {
				$tag   = 'h1';
				$title = get_the_title();
			}
			else {
				$title = sprintf(
					'<a href="%1$s">%2$s</a>',
					esc_url(get_the_permalink()),
					get_the_title()
				);
			}

			$output .= sprintf(
				'<%1$s class="is-title %2$s">%3$s</%1$s>',
				esc_attr($tag),
				esc_attr($this->props['title_class']),
				$title // Safe above.
			);
		}

		// Add after title markup.
		$output .= $this->props['after_title'];
		
		// Meta items below title.
		$items_below = $this->render_meta('below');
		$output     .= $items_below;

		// Add a class to denote items below exist.
		if ($items_below) {
			$class[] = 'has-below';
		}
		
		// Default wrapper.
		$wrapper = $this->props['wrapper'];
		if ($wrapper === null) {
			$wrapper = '<div %1$s>%2$s</div>';
		}

		$output = sprintf(
			$wrapper,
			Bunyad::markup()->attribs(
				'post-meta-wrap', 
				['class' => $class],
				['echo' => false]
			),
			$output
		);

		echo apply_filters(
			'bunyad_post_meta',
			$output, // phpcs:ignore WordPress.Security.EscapeOutput Safe Output from above.
			$this->props
		);

		do_action('bunyad_post_meta_after', $this);
	}

	/**
	 * Render post meta items for specific location.
	 *
	 * @param string $location
	 * @return string
	 */
	public function render_meta($location = 'above')
	{	
		// Configs based on above or below.
		$location = $location === 'above' ? 'above' : 'below';
		$items    = $this->props['items_' . $location];
		$classes  = [
			'post-meta-items', 
			'meta-' . $location
		];

		$args = array_replace([
			'cat_style'     => '',
			'all_cats'      => false,
			'text_labels'   => [],
			'modified_date' => false,
			'author_img'    => false,
		], $this->props);


		if ($args['author_img'] && in_array('author', $items)) {
			$classes[] = 'has-author-img';
		}

		if (
			$this->props['sponsor_logo'] && 
			in_array('sponsor', $items) && 
			Bunyad::posts()->meta('sponsor_logo')
		) {
			$classes[] = 'has-sponsor-logo';
		}

		// It doesn't make sense to have two of same items in same line.
		$items = array_unique($items);

		// We'll process the array in reverse to add relevant icon classes.
		$items = array_reverse($items, false);

		$rendered = [];
		foreach ($items as $key => $item) {
			$item_args = $args;

			if ($key !== 0) {
				$prev_item = end($rendered);
				if (strpos($prev_item, 'has-icon') !== false) {
					$item_args['classes'] = ['has-next-icon'];
				}
			}

			$output = $this->get_meta_item($item, $item_args);
			if ($output) {
				$rendered[] = $output;
			}
		}
		
		// Remove empty and restore order.
		$rendered = array_reverse(array_filter($rendered));

		if (empty($rendered)) {
			return '';
		}

		$the_items = join(
			// Spaces for backward compatibility.
			$this->props['items_sep'],
			$rendered
		);

		// Render the post meta wrapper and items.
		$output = sprintf(
			'<div class="%1$s">%2$s</div>',
			esc_attr(join(' ', (array) $classes)),
			$the_items
		);

		$right_html = $this->props[$location . '_right_html'] ?? '';
		if ($right_html) {

			if (!is_string($right_html) && is_callable($right_html)) {
				$right_html = \Bunyad\Util\get_as_string($right_html);
			}

			$output = sprintf(
				'<div class="meta-below-has-right">%1$s %2$s</div>',
				$output,
				$right_html
			);
		}

		return $output;
	}

	/**
	 * Get a post a meta item's HTML.
	 *
	 * @param string $item 
	 * @param array  $args
	 * 
	 * @return string Rendered HTML.
	 */
	public function get_meta_item($item, $args = []) 
	{
		$args = array_replace([
			'cat_style'   => '',
			'author_img'  => false,
			'avatar_size' => 32,
			'all_cats'    => false,
			'text_labels' => [],
			'modified_date' => false,
			'classes'       => [],
		], $args);

		$output = '';

		/**
		 * Determine the item to render and generate output.
		 */
		switch ($item) {

			// Meta item: Category/s
			case 'cat':

				$cat_class = 'post-cat';
				if (!empty($args['cat_style'])) {

					// Map of cat styles and the relevant classes.
					$cat_styles = [
						'text'   => 'post-cat',
						'labels' => 'cat-labels',
					];

					$cat_class = $cat_styles[ $args['cat_style'] ];
				}

				// Add "In" if text labels enabled.
				$text = '';
				if (in_array('in', $args['text_labels'])) {
					$text   = sprintf(
						'<span class="text-in">%s</span>',
						esc_html__('In', 'bunyad')
					);
				}

				$classes = $args['classes'];
				$classes[] = $cat_class;

				$output = sprintf(
					'<span class="meta-item %1$s">
						%2$s
						%3$s
					</span>
					',
					esc_attr(join(' ', $classes)),
					$text,
					$this->get_categories($args['all_cats'])
				);

				break;

			// Meta item: Comments Count & Link
			case 'comments':
				if ($args['min_comments'] && get_comments_number() < (int) $args['min_comments']) {
					break;
				}

				$classes = array_merge($args['classes'], ['meta-item comments']);

				// Icons enabled.
				if ($args['icons']) {
					$labels = in_array('comments', $args['text_labels']);

					// Label text can be forced.
					$numbers = $labels ? get_comments_number_text() : get_comments_number();
					$output  = sprintf(
						'<span class="%1$s has-icon"><a href="%2$s">%3$s</a></span>',
						esc_attr(join(' ', $classes)),
						esc_url(get_comments_link()),
						
						// $numbers escaped by WP core functions. Plugins may add markup.
						'<i class="tsi tsi-comment-o"></i>' . $numbers
					);
				}
				else {
					$output = sprintf(
						'<span class="%1$s"><a href="%2$s">%3$s</a></span>',
						esc_attr(join(' ', $classes)),
						esc_url(get_comments_link()),

						// Need not be escaped and stay consistent with core. Plugins may add markup.
						get_comments_number_text()
					);
				}

				break;

			// Meta item: Date
			case 'date':
			case 'updated':
				$modified      = ($args['modified_date'] || $item === 'updated');
				$publish_time  = get_post_time('U');
				$modified_time = get_post_modified_time('U');

				// For scheduled posts and so on, modified time maybe lower. Use normal date.
				if ($modified_time <= $publish_time) {
					$modified = false;
				}

				// For 'updated' item, skip if the modified date is same or 60s close to the published date.
				if ($item === 'updated' && $modified_time <= ($publish_time + 60)) {
					return false;
				}

				$date_w3c = $modified ? get_the_modified_date(DATE_W3C) : get_the_date(DATE_W3C);
				$date     = $modified ? get_the_modified_date() : get_the_date();

				$time = sprintf(
					'<time class="post-date" datetime="%1$s">%2$s</time>',
					esc_attr($date_w3c),
					esc_html($date)
				);

				// Updated will always have label.
				if ($item === 'updated') {
					$time = sprintf(
						'<span class="updated-on">%1$s</span>%2$s',
						esc_html__('Updated:', 'bunyad'),
						$time
					);
				}

				if (!$args['is_single']) {
					$title  = get_the_title();
					$markup = '<span class="date-link">%2$s</span>';
					if (!$title) {
						$markup = '<a href="%1$s" class="date-link">%2$s</a>';
					}

					$time = sprintf(
						$markup,
						esc_url(get_the_permalink()),
						$time
					);
				}

				$classes = $args['classes'];
				array_push($classes, $modified ? 'date-modified' : 'date');

				$output = sprintf(
					'<span class="meta-item %1$s">%2$s</span>',
					esc_attr(join(' ', $classes)),
					$time
				);

				break;				

			// Meta item: Author
			case 'author':

				// Add "By" if labels enabled. 
				$label = '';
				if (in_array('by', $args['text_labels'])) {
					$text = '%s' . esc_html_x('By', 'Post Meta', 'bunyad') . '%s';

					// Compat: For translations older than v7.1. See if a translation exists.
					$old_string    = '%1$sBy%2$s';
					$old_translate = call_user_func('esc_html_x', $old_string, 'Post Meta', 'bunyad');
					if ($old_string !== $old_translate) {
						$text = $old_translate;
					}

					$label = sprintf($text, '<span class="by">', '</span> ');
				}

				$classes = $args['classes'];
				$classes[] = 'meta-item post-author';
				
				// Add author avatar image if enabled.
				$author_img = '';
				if ($args['author_img']) {
					$author_img = get_avatar(get_the_author_meta('ID'), $args['avatar_size'], '', get_the_author_meta('display_name'));
					$classes[] = 'has-img';
				}
			
				$author_link = $author_img . $label . get_the_author_posts_link();

				$output = sprintf(
					'<span class="%1$s">%2$s</span>',
					esc_attr(join(' ', $classes)),
					$author_link
				);

				break;

			case 'sponsor':
				if (!Bunyad::posts()) {
					return;
				}

				$classes   = $args['classes'];
				$classes[] = 'meta-item sponsor-info';
				
				// Add logo if enabled and available.
				$sponsor_format = '<a href="%1$s" target="_blank" rel="noopener nofollow" class="%2$s">%3$s</a>';
				if (!Bunyad::posts()->meta('sponsor_url')) {
					$sponsor_format = '<span data-h="%1$s" class="%2$s">%3$s</span>';
				}

				if ($this->props['sponsor_logo'] && Bunyad::posts()->meta('sponsor_logo')) {
					
					$create_logo = static function($image, $alt = '', $dark = false) {
						$logo_image = $image ? wp_get_attachment_image_src($image, 'full') : null;
						if (!$logo_image) {
							return '';
						}

						return sprintf(
							'<img class="%1$s" src="%2$s" width="%3$s" height="%4$s" alt="%5$s" />',
							'sp-logo-img' . ($dark ? ' sp-logo-img-dark' : ''),
							esc_url($logo_image[0]),
							intval($logo_image[1]),
							intval($logo_image[2]),
							esc_attr($alt)
						);
					};

					$name  = Bunyad::posts()->meta('sponsor_name');
					$logos = $create_logo(Bunyad::posts()->meta('sponsor_logo'), $name);
					$logos = $create_logo(Bunyad::posts()->meta('sponsor_logo_sd'), $name, true) . $logos;

					$sponsor = sprintf(
						$sponsor_format,
						esc_url(Bunyad::posts()->meta('sponsor_url')),
						'name sp-logo',
						$logos
					);

				} else {
					// Text only
					$sponsor = sprintf(
						$sponsor_format,
						esc_url(Bunyad::posts()->meta('sponsor_url')),
						'name sp-text',
						esc_html(Bunyad::posts()->meta('sponsor_name'))
					);
				}

				$info = Bunyad::posts()->meta('sponsor_info') ?: $this->props['sponsor_info'];
				if ($info) {
					$info = sprintf(
						'<span class="ts-tooltip ts-tooltip-top ts-tooltip-top-left " aria-label="%1$s"><i class="tsi tsi-info"></i></span>',
						str_replace('{sponsor}', Bunyad::posts()->meta('sponsor_name'), $info)
					);
				}
			
				$output = sprintf(
					'<span class="%1$s">%2$s%3$s</span>',
					esc_attr(join(' ', $classes)),
					$info,
					str_replace('{sponsor}', $sponsor, $this->props['sponsor_label'])
				);

				break;

			// Meta Item: Estimated Read Time
			case 'read_time':

				$minutes = $this->get_read_time();
				$text    = sprintf(
					esc_html(_n('%d Min Read', '%d Mins Read', $minutes, 'bunyad')),
					$minutes
				);

				$icon      = '';
				$classes   = $args['classes'];
				$classes[] = 'meta-item read-time';

				if ($args['icons']) {
					$classes[] = 'has-icon';
					$icon      = '<i class="tsi tsi-clock"></i>';
				}

				$output = sprintf(
					'<span class="%1$s">%2$s</span>',
					esc_attr(join(' ', $classes)),
					$icon . $text
				);

				break;

			// Review stars if enabled.
			case 'review_stars':
				if (!$this->props['review'] || !Bunyad::reviews() || !Bunyad::posts()->meta('reviews')) {
					return;
				}

				$review_value  = Bunyad::posts()->meta('review_overall');
				$output = sprintf(
					'<span class="meta-item star-rating">
						<span class="main-stars"><span style="width: %1$s;">
							<strong class="rating">%2$s</strong></span>
						</span>
					</span>',
					intval(Bunyad::reviews()->decimal_to_percent($review_value)) . '%',
					$review_value
				);

				break;

			// Post Views.
			case 'views':
				if (!class_exists('\Sphere\PostViews\Plugin')) {
					return;
				}

				$post    = get_post();
				$classes = array_merge($args['classes'], ['meta-item post-views']);

				// Get from plugin api if not already available.
				$post_views = $post->post_views ?? PostViews::api()->get_views($post->ID);

				if ($post_views < $args['min_views']) {
					return;
				}

				// Icons enabled.
				if ($args['icons']) {
					$classes[] = 'has-icon';
					$icon = 'tsi-bar-chart-2';
				}

				// Check if a rank is enabled and applies.
				$rank = $this->get_views_rank($post_views);
				if ($rank) {
					$classes[] = 'rank-' . $rank;
					$icon      = 'tsi-hot';
				}

				$views_count = intval($post_views);
				$post_views  = number_format_i18n($views_count);
				if ($args['views_readable'] || $views_count >= 10**5) {
					$post_views = Bunyad\Util\readable_number($views_count);
				}

				if (in_array('views', $args['text_labels'])) {
					$post_views = sprintf(
						'%s <span>%s</span>',
						$post_views,
						esc_html_x('Views', 'Post Meta', 'bunyad')
					);
				}

				$output = sprintf(
					'<span title="%1$s" class="%2$s">%3$s%4$s</span>',
					esc_attr(sprintf(
						esc_html_x('%s Article Views', 'Post Meta', 'bunyad'),
						$views_count
					)),
					esc_attr(join(' ', $classes)),
					($args['icons'] ? '<i class="tsi '. $icon .'"></i>' : ''),
					$post_views  // Manual creation above, escaped.
				);

				break;
		}

		return apply_filters('bunyad_post_meta_item', $output);
	}

	/**
	 * Helper to get a rank for post views, if enabled.
	 * 
	 * @param int $views
	 * @return bool|string
	 */
	public function get_views_rank($views)
	{
		if (!$this->props['views_ranks']) {
			return false;
		}

		$ranks = array_reverse($this->props['views_ranks']);
		foreach ($ranks as $rank => $min_views) {
			if ($views >= $min_views) {
				return $rank;
			}
		}

		return false;
	}

	/**
	 * Reading time calculator for a post content.
	 * 
	 * @param  string $content  Post Content
	 * @return integer
	 */
	public function get_read_time($content = '')
	{
		if (!$content) {
			$content = get_post_field('post_content');
		}

		$wpm = apply_filters('bunyad_reading_time_wpm', 200);

		// Strip HTML and count words for reading time. Built-in function not safe when 
		// incorrect locale: str_word_count(wp_strip_all_tags($content))
		// Therefore, using a regex instead to split.
		$content    = wp_strip_all_tags($content);
		$word_count = count(preg_split('/&nbsp;+|\s+/', $content));
		$minutes    = ceil($word_count / $wpm);

		return $minutes;
	}

	/**
	 * Categories for meta.
	 * 
	 * @param boolean|null $all  Display primary/one category or all categories.
	 * @return string Rendered HTML.
	 */
	public function get_categories($all = null, $post_id = false)
	{
		$options = [];
		if ($this->props['is_overlay']) {
			$options['focusable'] = false;
		}

		return Bunyad::blocks()->get_categories($all, $post_id, $options);
	}
}PK03Y����-smartmag-core/blocks/social-icons/options.php<?php

namespace Bunyad\Blocks;

/**
 * Newsletter block options
 */
class SocialIcons_Options extends Base\Options
{
	public $block_id = 'SocialIcons';

	public function init($type = '') 
	{
		// Block name to be used by page builders
		$this->block_name = esc_html__('SmartMag Social Icons', 'bunyad-admin');

		$this->elementor_conf = [
			'title'      => $this->block_name,
			'icon'       => 'ts-ele-icon eicon-social-icons',
			'categories' => ['smart-mag-blocks'],
		];

		// Currently doesn't make sense without theme data.
		if (!class_exists('\Bunyad') || !is_callable([\Bunyad::core(), 'get_common_data'])) {
			return false;
		}

		$_common = \Bunyad::core()->get_common_data('options');

		/**
		 * General Options.
		 */
		$options['sec-general'] = [
			'style' => [
				'name'    => 'style',
				'label'   => esc_html__('Preset Style', 'bunyad-admin'),
				'type'    => 'select',
				'label_block' => true,
				'options' => [
					'a' => esc_html__('Base Icons', 'bunyad-admin'),
					'b' => esc_html__('Rounded Monochrome', 'bunyad-admin'),
					'c' => esc_html__('Squares with Background Color', 'bunyad-admin'),
				],
				'default' => 'a'
			],

			'brand_colors' => [
				'name'         => 'brand_colors',
				'label'        => esc_html__('Use Brand Colors', 'bunyad-admin'),
				'type'         => 'select',
				'options'      => [
					''       => esc_html__('Disabled', 'bunyad-admin'),
					'color'  => esc_html__('As Icons Color', 'bunyad-admin'),
					'bg'     => esc_html__('As Background Color', 'bunyad-admin'),
				],
				'condition' => ['style!' => 'c']
			],

			'services' => [
				'name'     => 'services',
				'label'    => esc_html__('Social Services', 'bunyad-admin'),
				'description' => 'URL will be used from global settings in Appearance > Customize > Social Profiles.',
				'type'     => 'bunyad-selectize',
				'multiple' => true,
				'options'  => $_common['social_services'],
				'label_block' => true,
			],
		];

		/**
		 * Style options.
		 */
		$options['sec-style'] = [
			'css_align' => [
				'label'   => esc_html__('Alignment', 'bunyad-admin'),
				'type'    => 'choose',
				'options' => [
					'left'    => [
						'title' => esc_html__('Left', 'bunyad-admin'),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => esc_html__('Center', 'bunyad-admin'),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => esc_html__('Right', 'bunyad-admin'),
						'icon' => 'eicon-text-align-right',
					],
				],
				'selectors_dictionary' => [
					'left'  => 'flex-start',
					'right' => 'flex-end',
				],
				'selectors' => [
					'{{WRAPPER}} .spc-social' => 'justify-content: {{VALUE}}',
				],
				'devices'   => true,
				// Intentional: 'selectors_dictionary' requires this to be a string or it will cause FATAL error.
				'default'   => '',
			],

			'css_icon_size' => [
				'label'       => esc_html__('Icon Size', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .spc-social' => '--spc-social-fs: {{SIZE}}{{UNIT}}',
				],
				'default'     => [],
			],

			'css_spacing' => [
				'label'       => esc_html__('Spacing / Gap', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .spc-social' => '--spc-social-space: {{SIZE}}{{UNIT}}',
				],
				'default'     => [],
			],

			'css_radius' => [
				'label'       => esc_html__('Roundness / Radius', 'bunyad-admin'),
				'type'        => 'number',
				'selectors'   => [
					'{{WRAPPER}} .service' => 'border-radius: {{VALUE}}px;'
				],
				'default'     => '',
			],

			'css_box_size' => [
				'label'       => esc_html__('Box Size', 'bunyad-admin'),
				'type'        => 'slider',
				'devices'     => true,
				'size_units'  => ['%', 'px'],
				'selectors'   => [
					'{{WRAPPER}} .spc-social' => '--spc-social-size: {{SIZE}}{{UNIT}}',
				],
				'default'     => [],
				'condition'   => ['style' => ['b', 'c']]
			],

			'css_colors' => [
				'label'       => esc_html__('Custom Colors', 'bunyad-admin'),
				'type'        => 'color',
				'separator'   => 'before',
				'selectors'   => [
					'{{WRAPPER}} .spc-social' => '--c-spc-social: {{VALUE}}',
				],
				'default'     => '',
			],
			'css_colors_sd' => [
				'label'       => esc_html__('Dark: Custom Colors', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark {{WRAPPER}} .spc-social' => '--c-spc-social: {{VALUE}}',
				],
				'default'     => '',
				'condition'   => ['css_colors!' => '']
			],

			'css_hov_colors' => [
				'label'       => esc_html__('Hover Colors', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .service:hover' => '--c-spc-social: {{VALUE}}',
				],
				'default'     => '',
			],

			'css_bg' => [
				'label'       => esc_html__('Custom Background', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'{{WRAPPER}} .service' => '--c-spcs-bg: {{VALUE}}',
				],
				'default'     => '',
			],
			'css_bg_sd' => [
				'label'       => esc_html__('Dark: Custom BG', 'bunyad-admin'),
				'type'        => 'color',
				'selectors'   => [
					'.s-dark {{WRAPPER}} .service' => '--c-spcs-bg: {{VALUE}}',
				],
				'default'     => '',
				'condition'   => ['css_bg!' => '']
			],

			'css_padding' => [
				'label'       => esc_html__('Padding', 'bunyad-admin'),
				'type'        => 'dimensions',
				'size_units'  => ['px'],
				'devices'     => true,
				'separator'   => 'before',
				'selectors'   => [
					'{{WRAPPER}} .service' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
				],
				'default'     => [],
			],
		];

		$this->options = $options;
		$this->_add_defaults();

		/**
		 * Widget only options.
		 */
		if ($type === 'widget') {
			$this->options['sec-general'] += [
				'widget_title' => [
					'name'     => 'widget_title',
					'label'    => esc_html__('Widget Title (Optional)', 'bunyad-admin'),
					'description' => esc_html__('Not recommended except for minimal style.', 'bunyad-admin'),
					'type'     => 'text',
					'position' => [
						'of' => 'headline',
						'at' => 'before'
					]
				]
			];
		}
	}

	public function get_sections()
	{
		return [
			'sec-general' => [
				'label' => esc_html__('General', 'bunyad-admin')
			],
			'sec-style'   => [
				'label' => esc_html__('Style', 'bunyad-admin'),
				'tab'   => 'style'
			],
		];
	}
}PK03Y,"!���2smartmag-core/blocks/social-icons/social-icons.php<?php

namespace Bunyad\Blocks;

use \Bunyad;
use Bunyad\Blocks\Base\Block;

/**
 * Common Social Icons Block.
 */
class SocialIcons extends Block
{
	public $id = 'social-icons';

	/**
	 * @inheritdoc
	 */
	public static function get_default_props() 
	{
		$props = [
			'style'    => 'a',
			'services' => [
				'facebook',
				'twitter',
			],
			'links' => [],
			'class' => '',
			'links_class' => 'service',
			'brand_colors' => false,
			
			// Custom labels
			'show_labels'   => false,
			'labels_format' => '',

			// 'svg_og' or empty.
			'icons_type'  => '',
		];

		return $props;
	}

	public function map_global_props($props) 
	{
		return array_replace([

			// Global social profile links.
			'links' => Bunyad::options()->social_profiles,
		], $props);
	}

	/**
	 * Render the social icons.
	 * 
	 * @return void
	 */
	public function render()
	{
		// At least one service has to be enabled.
		if (empty($this->props['services'])) {
			return;
		}

		$services_data = Bunyad::get('social')->get_services();
		$links         = $this->props['links'];

		$classes = [
			'spc-social-block',
			'spc-social spc-social-' . $this->props['style'],
			$this->props['class']
		];

		// Have background colors for this style.
		if ($this->props['style'] === 'c') {
			$this->props['brand_colors'] = 'bg';
		}

		// Add brand colors in bg or as icon color.
		switch($this->props['brand_colors']) {
			case 'color':
				$classes[] = 'spc-social-colors spc-social-colored';
				break;

			case 'bg':
				$classes[] = 'spc-social-colors spc-social-bg';
				break;
		}

		$label_class = $this->props['show_labels'] ? 's-label' : 'visuallyhidden';

		?>

		<div class="<?php echo esc_attr(join(' ', $classes)); ?>">
		
			<?php
			foreach ($this->props['services'] as $key):
				if (!isset($services_data[$key])) {
					continue;
				}
			
				$service = $services_data[$key];
				$url     = !empty($links[$key]) ? $links[$key] : '#';

				$link_class = [
					// link for backward compatibility.
					'link',
					$this->props['links_class'],
					's-' . $key
				];

				// Label text format.
				$label_text = sprintf(
					$this->props['labels_format'] ?: '%s',
					$service['label']
				);
			?>

				<a href="<?php echo esc_url($url); ?>" class="<?php echo esc_attr(join(' ', $link_class)); ?>" target="_blank" rel="nofollow noopener">
					<?php echo $this->get_icon($service); // sanitized icon ?>
					<span class="<?php echo esc_attr($label_class); ?>"><?php 
						echo esc_html($label_text); 
					?></span>
				</a>
									
			<?php endforeach; ?>

		</div>

		<?php
	}

	/**
	 * Returns pre-sanitized icon.
	 *
	 * @param array $service
	 * @return string
	 */
	public function get_icon($service)
	{
		if ($this->props['icons_type'] === 'svg_og' && isset($service['icon_svg_og'])) {
			return Bunyad::icons()->get_svg($service['icon_svg_og']);
		}
		else if (isset($service['icon'])) {
			return sprintf('<i class="icon %s"></i>', $service['icon']);
		}

		return '';
	}
}PK03Y�N0jkk"smartmag-core/css/admin/common.css/**
 * Common CSS for Core admin.
 */
.cf:before, .cf:after { content: " "; display: table; }
.cf:after { clear: both; }

/**
 * Metaboxes CSS
 */
.bunyad-meta { 
	margin: 5px 0 15px 0; 
}

.bunyad-meta-editor {
	/* margin: 0 auto; */
	max-width: 1050px;
	padding: 20px 0;
	box-shadow: 0 0 25px rgba(0, 0, 0, .05);
	border-radius: 5px;
	border: 1px solid #efefef;
}

.bunyad-meta .option { 
	display: flex;
	overflow: hidden;
	padding: 18px 25px;
	border-bottom: 1px solid #eee;
}

@media (max-width: 1024px) {
	.bunyad-meta .option { 
		flex-direction: column;
		gap: 15px;
	}
}

.bunyad-meta .option:hover {
	background: #f9f9f9; 
}

.bunyad-meta .option:last-child { 
	border-bottom: 0; 
}

.bunyad-meta .label {
	flex: 0 0 auto;
	width: max(230px, 20%);
	max-width: 30%;
	display: block;
	font-weight: 600;
}
@media (max-width: 1024px) {
	.bunyad-meta .label {
		width: 100%;
		max-width: 100%;
	}
}

.bunyad-meta .field {
	padding-left: 10px;
	display: block;
	box-sizing: border-box;
}

@media (min-width: 1024px) {
	.bunyad-meta .field {
		max-width: calc(100% - 230px);
	}
}

.bunyad-meta :where(.field) > p {
	margin-top: 0;
}

.bunyad-meta input:where([type=number], [type=text], [type=url], [type=email]),
.bunyad-meta select {
	padding: 2px 11px;
	line-height: 26px;
	min-height: initial;
	max-width: 100%;
}

.bunyad-meta input:where(:not([size])):where([type=number], [type=text], [type=url], [type=email]) {
	width: 350px;
	max-width: 100%;
}

.bunyad-meta select {
	width: 350px;
}

.bunyad-meta .description {
	margin-top: 8px;
	font-size: .93em;
}

.bunyad-meta .field textarea {
	max-width: 100%;
	margin: 3px 0;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bunyad-meta .radio-option label {
	line-height: 19px;
}

.bunyad-meta .radio-option label span { 
	margin-left: 5px; 
}

/* form elements */
.bunyad-meta .color-picker-element { 
	display: none; 
	position: absolute; 
	background-color: #fcfcfc; 
	border-radius: 5px;
	-webkit-box-shadow: 0px 1px 4px 0 rgba(0,0,0, 0.2);
	box-shadow: 0px 1px 4px 0 rgba(0,0,0, 0.2);
	z-index: 1;
}

.mce_bunyad_shortcodesList {
	font-size: 14px;	
}

.bunyad-meta .image-upload {
	display: none;
	max-width: 350px;
	margin-top: 15px;
}

.bunyad-meta .image-upload.visible {
	display: block;
}

.bunyad-meta .image-upload img {
	max-width: 100%;
}

.bunyad-meta .remove-image {
	margin-left: 5px;
}

.bunyad-meta .remove-image, 
.bunyad-meta .image-type {
	display: none !important;
}

.bunyad-meta .remove-image.visible, 
.bunyad-meta .image-type.visible {
	display: inline-block !important;
}

.bunyad-group-fields:has(div) {
	background: rgba(0, 0, 0, .02);
	border: 1px solid #efefef;
	border-radius: 4px;
	width: 580px;
	max-width: 100%;
}
.bunyad-group-fields.ui-sortable {
	cursor: grab;
}

.bunyad-group-item {
	padding: 11px 15px;
	border-bottom: 1px solid #efefef;
	display: flex;
	align-items: center;
}

.bunyad-group-item:last-child {
	border: 0;
}

.bunyad-group-item .group-label {
	margin-right: 6px;
	font-weight: 600;
}

@media (max-width: 500px) {
	.bunyad-group-item.criterion {
		flex-direction: column;
    	align-items: flex-start;
    	gap: 15px;
	}
}

.bunyad-group-fields .delete {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
	margin-left: -5px;
	padding: 5px;
	color: #a00;
	font-size: 18px;
}

.bunyad-group-fields label {
	display: inline-flex;
	align-items: center;
	max-width: calc(100% - 15px);
}
.bunyad-group-fields label input {
	margin-left: 6px;
	margin-right: 6px;
}

/* Default Form Table Extras */

.bunyad-meta .input[type="number"] {
	width: 75px;
	padding-right: 0;
}

/* Extras for Review */
.bunyad-review .input-rating {
	width: 250px;
	margin-left: 7px;
	margin-right: 14px;
}

.bunyad-review .option-sep {
	border-top: 5px solid #fafafa;
}

.bunyad-review .is-schema-option {
	padding-left: 30px;
	border-left: 5px solid #eee;
}

/**
 * Widgets
 */
 
.bunyad-note {
	font-size: 12px;
	margin-top: 20px;
}

.bunyad-cta-group {
	border: 1px solid #e5e5e5;
	padding-bottom: 10px;
	margin-top: 20px;
	background: #fafafa;
	padding: 10px 15px;
	cursor: move;
}

.bunyad-cta-group p:first-child {
	margin-top: 0;
}

/**
 * Blocks Widgets
 */ 
.bunyad-widget-option {
	margin: 20px 0;
}

.bunyad-widget-option .label {
	font-weight: 500;
	padding-bottom: 6px;
	line-height: 1.5;
	display: block;
}

@media (max-width: 1400px) {
	.bunyad-widget-option .label {
		font-size: 13px;
	}
}

.bunyad-widget-option input[type="checkbox"] {
	margin-top: 0;
}

.bunyad-widget-desc,
.bunyad-widget-option .small-desc {
	margin-top: 0;
	padding-top: 8px;
	font-size: 12px;
	font-style: normal;
	color: #72777c;
}

.bunyad-widget-option .small-desc {
	margin: 0;
	padding-bottom: 5px;
}

.bunyad-widget-option textarea {
	width: 100%;
	min-height: 75px;
}

.bunyad-widget-option-inline {
	display: grid;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 8px;
	align-items: center;
}

.bunyad-widget-option-inline .label {
	padding-bottom: 2px;
}

.bunyad-widget-option-inline .small-desc {
	order: 3;
	grid-column: span 2;
	margin-top: 6px;
}

.bunyad-widget-tab {
	background: #fdfdfd;
	padding: 0 15px;
	margin: 20px 0;
	border: 1px solid #efefef;
}

.bunyad-widget-tab:first-child {
	margin-top: 25px;
}

.bunyad-widget-tab:last-child {
	margin-bottom: 25px;
}

.bunyad-widget-tab .heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 -15px;
	padding: 0 15px;
	background: #f8f8f8;
	border-top: 1px solid #f0f0f0;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
	font-size: 11px;
	font-weight: 600;
	line-height: 40px;
}

.bunyad-widget-tab .heading > span {
	order: -1;
	font-size: 13px;
}


PK03Y��006smartmag-core/css/admin/images/classic-large-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:0229F84F0FC011E78A74A4A4D06EEE42" xmpMM:InstanceID="xmp.iid:0229F84E0FC011E78A74A4A4D06EEE42" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:fe522799-a296-de42-936d-a460c55a422d" stRef:documentID="adobe:docid:photoshop:cbb2bc08-0fb7-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��BIDATx��ܱ
�@��ð�ō��̀k9�S�&.����+�%D;��r���rI)���<�5u5��ÏA�}��0��,˲}�[��@Dӷ���<{�yM�@ �@ �@ ��4}9��K�����Ue�\�g�1�����0��@��Ū؝U� �@ �@ �@ ��*��hĚ��5qĜ��9��3�� �?וR��݊����n_܋p���)��|e�IEND�B`�PK03Y�wtt8smartmag-core/css/admin/images/featured-slider-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c138 79.159824, 2016/09/14-01:09:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:F80B885BEAA111E8AEA2868E70C9A4E4" xmpMM:InstanceID="xmp.iid:F80B885AEAA111E8AEA2868E70C9A4E4" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0e55178b-c186-554f-ad93-8846ddcac5cc" stRef:documentID="adobe:docid:photoshop:38f8c469-ea9e-11e8-9f80-faec0667f198"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Ƣ�
�IDATx��]Kl����y?���ZJ�F�)A @�[��ذ�;X�a����X���]�t7]�MHl��p	����6
)-�E�#�'��8��w�39��؞f���4��3g�|����h4�:�[?1��;b{�ǃ�Y`�O���9r���C����$�qWxL&�	�`0�&�	�`0�&�	��{�+y���2�����5�	�`0<���T���3ݺ}�������۱�	P�q�&���)���4���cy�?9I���2���㯾J�c�2�;>Ng�������W@���~8p�}�Z��B����'chp�>��S�%���/������G�|B���s&@�����"����p��ec��7ߔa"T��DVX�@���M@{[}��R���I�s≄�����B����&|�
0���__|��~fvVju���5@-l�p8l��b����ڰ�C`ZA��*�&���@��u����{���Y@�bϣ����t+B(�p���kZA�i�]�ߟw|xd��G�r���i���2�?=:j�"no_���g�bW�+���hhh�t}���ѣ��8v��	���������M��y�m1��pA�~�F�f@<��y	
�ht
;���ksV䪃y9����.`0�&�	�`0�&�	�`0<��.U�(��\�@�?��=ܹ�ڟ��f��ܡ�ŋ��k����5e<(�����,a��7i)�&޼?��Յ���[�k7�ԼoE�>/�FA��]���>�:D�.�$֌	H\�,m�&�{���N�[Y�ĥK�p�\�m�[\?��t��J���W�[ulj�������~��5j����wvRcK��_�{א����<����{���x�@OO�6�@���L�w	���>ѮɥFW	���%?��sW�l�U�V���3��W_��7сv&e+�@�ׅTb`���}ے�6N�g�y�����t�Uo2��!aV���gf6$�EMc&��p�n�BW5��%��l�A��/�N�&'3��+����ҳ��+⯿����\ۖ�����1�y;Ʉ7��Bf���#�H_C>� �Z�b�@e���}��K�R�!Y�Z���z�Z�-��k�V��Y�a�`e.l��[�:��
6K��z�`��x\3�ӊ��kCC2���$�}��v���3�@��9�Jܜ��:'�ut��E��c�ƍ|B\�N>a*TG`jhe6� ��H���
U������s\���|��~!ѫ9��45EMO>�/�Z�xזg���
N��֭���K�lR�N [Ws��i����.x��z1e4����d�R⾆�QD=7<��,Z��f*xU�ר���o~�-��A@զT�0�T����ӲS�\[���VRF���|*8��MIa�Vs��x��m2�%� �M@@����'��_��@�SOUg h+N�!Ub0��J���o3u�C�seG���c��ۥ	�g,z��:��[ʽ<�<q%l`�?��aפ��(h�5�G�}��$$+�k׺#(��ʽ{2V�ȑNe��%ŠA:1@>�`w戀Ԭ�άf�2Z�Q6�5|\Gi�%�s�6[�v��}e�݊cڥi�S\�޷
U��/�����48!���(�	�vM��5��0�6�gg�`0^1��'~��X�D�UR���I�+���+:O?��|2�>8h�Ta�Na���]��_�U><ҽ�O<�Z�G����+^XI��g��/[�+5����@�$6�,/��(%��=U��j,��
����?lz&����q�|�����˽jM�/�e2�~Vt�ݢQ���c*U
��ˬ�B$��]��Z�Rk�fT+!��� ��X�o#/�ڗ2㥕Z�"@����;E�А1���ٳ�&&l��v�Pj��^���Għ��i��t�N�D�e���2;�����x�)�j@t��Fz�Z�����aF@��
�A�L�'e`��+�cM �5����A΁D����ŋyN�?�EFK�,T+�����y��;}ZjŖÇ+B��M�9��;�<�s���e2f%H`8a6�(����9�jK�~o�h�F"�*|�<�����H�g 
?Q]�q����,��h��]6hNb��m=�SlH���,���Z�'T{$7=T�>v�Bڵ�Z��7�Bj�hԵ�����
U�)��$A���Y�"�Gh�&��d�(������W*��U@i D��!���;#�0i�,�
GK�m7�d�Lf@�T0�4�?l46���W�[m��ECZq�sQ���O�6�AB����֧C�)�)�D�P��vE���m�D4��؅xVsd.$W��k�	��o����b1��GA2�s��#��]��`�p��x;5)���snه�7�˱�R��A�4�D
(�mQ,"I�o�Qs�|�
�hZ!�M�Bl%2Y�&R$"�q
��Ѷ瞣���彗򹕭ƔN�V;�ު��Z@�������p.����eE߁��9V��g��!��L��J�L6e'��`0L��`0L��`0eB��V�W��O�.4�{���P����Ѯ�݇IEND�B`�PK03Yc�=ANN/smartmag-core/css/admin/images/grid-3-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:1069B7810FC011E7AD97B7668CC09229" xmpMM:InstanceID="xmp.iid:1069B7800FC011E7AD97B7668CC09229" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:18937fc0-191b-ac49-864f-6e8b6b71bf87" stRef:documentID="adobe:docid:photoshop:0939b954-0fbf-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>&�i�`IDATx���͍�P�Q0���2(�%5`[�@'�*�&�<�K]��='!q3�
|�y�)SJۢ(�õ)��8\���+?�}u�u]�%��}?F�r+b�@ �@ ����C箛e�uӘg�<6@ �@ �`�ʔ�%�Xn�����^���m)�<����n�_;/��o8��g�� >t�F����@ �@@ �@,�7��
!�|;8�<��w�6��c��`��` �@ ��"�9�8\�����Y�����E8��j���Z�xn��IEND�B`�PK03YŒ��LL-smartmag-core/css/admin/images/grid-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:1F41BB5B0FC011E798B4A4CCAC49647D" xmpMM:InstanceID="xmp.iid:1F41BB5A0FC011E798B4A4CCAC49647D" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2ad2c92f-9ad2-124a-8359-a50a2934257c" stRef:documentID="adobe:docid:photoshop:d900f4e7-0fbe-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>ns�0^IDATx���
�0�Q$��1�#3�Z�&0���%,F��B�^B������=��x)��W]��9\]��gky�}�y�MӸ%���A�V�M@ �@ @���_��(�{n�C��@ �@ �@�UԗBc�y����=�g�ݷ3����'��N'��T�����k@� �M`NY_�	�@ �@ �`+'��x=&iO�^_�	@�����������@ �@ ����}�9\u��a��L�����-\�S��<���qIEND�B`�PK03Yu2(~~3smartmag-core/css/admin/images/highlights-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<viTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:2DC766720FC011E78FAFAEDAD1C7D920" xmpMM:InstanceID="xmp.iid:2DC766710FC011E78FAFAEDAD1C7D920" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:cdabf8fc-d52f-d543-8cdc-6d4f9530908e" stRef:documentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx���	�0��*��1:�Gg�ku7i����A�i�//���Eb\t]����ƦB$N�h�~X�gޮ��kS���o,MEl@@Dc�z��p(��n�^	� L@@@@@@@@́�A�;fJ#Z�@��~�t1�nE�V���T��@���&� ��zH=�@�w����S6��k���h�J	`��^	 �g�51�O^�J	`M�@�}M�S�s�@X�����಑�!�x��e�+$�}�� ��y�|���������<��@ ��p�l$@p@@�]�i��n��G��؏/�E8��h�b�g��fp�IEND�B`�PK03Y�D$yJJ3smartmag-core/css/admin/images/large-grid-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:3AF4F7CC0FC011E7BC6BEBF29BFA9E70" xmpMM:InstanceID="xmp.iid:3AF4F7CB0FC011E7BC6BEBF29BFA9E70" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:067e729c-de40-0a4b-a0e8-ee90f3de73a6" stRef:documentID="adobe:docid:photoshop:766e564e-0fb8-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>]1
\IDATx�����@�a#���eXF��`ڲ;�*��4�1$G�Sf�}{[џ��,3�y�oUU��j+"Y�5�^~X�;�����#	dY�O�G��@ �8�&�/M�7�\��@ �@ �@ �@pH�͡97Eb�{|ϫ
/�9�&�	�|L��L�� ��)�_r��_����@ �@ �@p�#b
��sO�\��6��v?&��m��]�0��0�͵   �@�}���uvH�mܷ<�p���1����IEND�B`�PK03Y�?��cc3smartmag-core/css/admin/images/large-list-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:4A36D1160FC011E7B83FB98B58898D62" xmpMM:InstanceID="xmp.iid:4A36D1150FC011E7B83FB98B58898D62" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:15240b57-8968-814f-a24a-28cf0a177024" stRef:documentID="adobe:docid:photoshop:00c7e29f-0fb9-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�4{uIDATx���
�@EёЂʠ�ԀmQ�@�p0�w�'��&��3��y�`/˲�J)S]A&�:���e_�-~��$�~$hLEn@@�h#��5�V�r	� � � � � � � �"�ǡ�?��@t|�U���w4J	��|H�:��:�� WGqīb�8J��"9�m��a@��mh	@�H	���:@Τ�@�@��Y�@	K��B%��[@$
�(�tS t���#$��@�9�FH@`8g�@@�e�VG�{R���0�x�1�ݎ8�J�$IEND�B`�PK03YH6U�kk-smartmag-core/css/admin/images/list-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:55F68DD40FC011E79215A84456EB649B" xmpMM:InstanceID="xmp.iid:55F68DD30FC011E79215A84456EB649B" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:515105fa-dbec-6545-8e44-8dc7fc3ef5fb" stRef:documentID="adobe:docid:photoshop:8d808ec9-0fbe-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>2�*[}IDATx����
�PDQ4��eP��֠mQ�@��� K2�&/�O����q�4M�/�m�ļ���ˏe}����H������G���@�i/?�5����3��|�/�b���M(0�:����d��:F@)v��@X]
ebG@%.�������a��2M�#��z�@ ,�.�2�#��B��X�t�L�0@���a��P�]=@ �@�B��P�K�`�d,��:@�y���t�L�0@��(� �&���i�r1��\
p_?xq<�s{0y�K�i�IEND�B`�PK03Y��QUU9smartmag-core/css/admin/images/mixed-large-grid-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:65DA6E460FC011E785C7F420E655E8DC" xmpMM:InstanceID="xmp.iid:65DA6E450FC011E785C7F420E655E8DC" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:8a167a58-6d7c-1c42-9c13-ff647bd61a08" stRef:documentID="adobe:docid:photoshop:be1368c9-0fbd-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>:w��gIDATx�����@�a$��2(�#5`[�@'P���&�\��%${c�/�fX�8���藣.�d^��t��Z�y_�n~�4.I �4="(]�� � �*�_�6!.��mM�@ �@ �_�ͦ��6K��)=_W�{���o�>� ���=�z=|�/�{��@ �@���gr~�� ն�ͧ{�� ���u[�	`XX`XX ��L�G� �@ �@ >�?����ő&�'�/�4@��O�r�Q��ys]'�y�����]���5p5\�IEND�B`�PK03Y����YY9smartmag-core/css/admin/images/mixed-large-list-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:7331B1970FC011E793A59A6CB0F645F4" xmpMM:InstanceID="xmp.iid:7331B1960FC011E793A59A6CB0F645F4" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:f815e9d4-3d97-4341-85f6-78d0b784acc0" stRef:documentID="adobe:docid:photoshop:934739ef-0fbc-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��4kkIDATx�����@@Q4��2(�%5`[�@'P���&�.�33񝓐��\#H8,�rn�fJ[�ɖ�����}����@�u}Fp�+b� ����>�!v�iL�@ �@ �?W͏Bk���	�	���aſW�C�&�	�a
�p
(*׳��n���N���:&@��^�0L�0����7iL@�S�����������̽LkkLkk����M���&@ �@ �@��y.����w�D��l �Ȼ���E�Ƈ�>.��E8״��5|CXIEND�B`�PK03Y]�bb;smartmag-core/css/admin/images/mixed-overlay-grid-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:81FB9C4B0FC011E79425FBA267F96BD3" xmpMM:InstanceID="xmp.iid:81FB9C4A0FC011E79425FBA267F96BD3" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:a0ccc3cb-3b91-ae43-91c2-9257f89cd897" stRef:documentID="adobe:docid:photoshop:51442c59-0fba-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��ǺtIDATx�����@�a$��2(ã5h[�`'P���&�=	̐�}	��0�2˲s��TUU���"�)���k��}�]׹$����v)b���)�<o��x>� � �f���*{�e���ѱ	�@ �"�yX�˒&@Xlc���Zk�>�	�@ �`
^)�&�'�g����9��MbO��ߌ����~
DX�f�p �@��n��[8&�o�	�@ @�s�	��Y�-�@ �@�</�r~���n�&�'���M��|
0���jLQ���?����qy	0ϙ@NzY�IEND�B`�PK03Y�F�__;smartmag-core/css/admin/images/mixed-overlay-list-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:8DB935950FC011E78C44EB44B559A2F2" xmpMM:InstanceID="xmp.iid:8DB935940FC011E78C44EB44B559A2F2" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:b01a4f40-5eea-6147-a27e-864993e4c6c9" stRef:documentID="adobe:docid:photoshop:e88971a2-0fbb-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���qIDATx�����P@Q$��2(å5h[�@'P���&|�@��9'!�K��}P�
�p���R��"�[�N����t�/���w]g�$2��+�ڮ�M@ �i���Gߧ����@ ��h��£\P�,�ئ,��M�@ ~"̕�h�4@X.`�ۻ�& �)`m�M�]��2L"�3MLk��@�^�Ic Ҟ|�@�=�ͽL���������@k��Ic �H���` �@�˳������y&@ ���f�	�@�t����.�3i�r�&�y�þH�Z��S���8�T�xMIEND�B`�PK03Y���}��2smartmag-core/css/admin/images/news-grid-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:A2CDFA8A0FC011E78B1FC8EC628C4F9C" xmpMM:InstanceID="xmp.iid:A2CDFA890FC011E78B1FC8EC628C4F9C" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:13611d5c-96a5-974c-9400-357e59255a91" stRef:documentID="adobe:docid:photoshop:93f80ab6-0fb6-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>3�{�IDATx����m�@���B��2r��5�ɺ
E;
Gď�ٰ󞄔K,�|LF�8���gJi7<։H��c���5>�����)	���NEl@ �@ �@�a5��}S'�c�)�s�8�	�@ �i�����^{�c��s����$��T��&&�J�A����L�R;�#���60�&&���Ͼ�K����`x���W@ �P��vLjN�9�i�O"��d �E���Ȯ������>�	ykvM &��̫�g������|6;�����@ �@ ��
�U���n�r'���s�axl�|�aRM�	IEND�B`�PK03Y��OjEE5smartmag-core/css/admin/images/overlay-grid-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:ACF46A210FC011E78F3CFE9B35A6DFC3" xmpMM:InstanceID="xmp.iid:ACF46A200FC011E78F3CFE9B35A6DFC3" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:c2dcaf48-d1d8-5f4d-be5b-642cea37d98f" stRef:documentID="adobe:docid:photoshop:38ed4447-0fba-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�k!�WIDATx���	�0��*]�C���A�r�n�L!
.a"^D1M��5�?-��i��]��1t�䜎���oV���q�C.ICb���.E� �@ �@���K��:��@���L�@ ��Z^r�Y�;�&�	P'�� �@ �+�4�-] ���/�>�z��1��� �@ �@ >�a3^�	��'@���yCU��`��d�5���3�g��L�@ ��ky7𜎡�^8E]�8��EsN���x6/ԭ��IEND�B`�PK03Y�n�hh5smartmag-core/css/admin/images/overlay-list-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:BB015ECE0FC011E79428A6702E97064F" xmpMM:InstanceID="xmp.iid:BB015ECD0FC011E79428A6702E97064F" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:615f9f0a-690b-7749-b28e-2be97dfbc699" stRef:documentID="adobe:docid:photoshop:92af5a5e-0fb9-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���zIDATx�����@���Ђˠ�ԀmQ��@�p0�x�bf��}	��vυ��8���Ґ�c"�9���k��C�m�:%�L��`�T�& �@ �^S��/W ;t�	�@ �@�^��?���O[�i���] �@ �wU�呮	�@�PJ�׺|�0����ʔ�jU�	`��K�L�&�	`���v����0�v�[@q�՛ .�^
5ao5y)� ydp
L;@��c�v;&� �1L;��P�g�&@ ����_�s>�kyO��n�8/?8�\��?�78�IEND�B`�PK03Yee9��6smartmag-core/css/admin/images/post-listings-block.png�PNG


IHDR�dN�8_tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c111 79.158325, 2015/09/10-01:10:20        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:d816e210-d8f5-2647-ab1b-35c7c233e6c8" xmpMM:DocumentID="xmp.did:E6F3B5760FDA11E7978AFEEDD0977E33" xmpMM:InstanceID="xmp.iid:E6F3B5750FDA11E7978AFEEDD0977E33" xmp:CreatorTool="Adobe Photoshop CC 2015 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0a00c4e4-3ad1-1f41-b0bc-91c63e475b86" stRef:documentID="adobe:docid:photoshop:9403411e-0fd7-11e7-8b10-824a75eacafd"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�4 ��IDATx��\kOM�ҖK)y���1^��������_h����)QQ1* *�r��\���v��mK��m��9Ʉe����s��33ϳ�h4z[qO�݂�Fe�[C�{����6�����$Boo�"A
��� H� H� H� H� H� �=�����"-�^X_O H� H� H� H� H� H� J�@�2��;h&�}G�
@�N0��
@�Y�<��ܹ3�53/_����Eݞ=�~���ީ�D�ɓ�O?{&��۷��?�����q���u����WE��IϾy#V���:���3/^d��U}CG�f�/T/
�-��[޺�vt�ȕ+�W�Օ���,�?|�{���HLO��̌�z�^�z�Ŀ~U��,������Ie���/ Y��S��X�ƻ�lk[�!�j	������5����V;>4$ܺaZ[EMmmƹ`{{u�4*�$���H��ۆ(��QQ�,k��6܀��/�lL�E�kd���4:��U�N`bj*Mih�D������V&&2���C�Ө0�fsL:9���
'�
�3���R�'>�:_�o_Qύ*�U��ب�� ����uu�X�b��V-r!t�Dѿ��	8\
�gڑ�?��y�Y��!K?~��(5L'�
���f����@9];v(邡ax�}һ����"�z3�T�)W�"�+�pK����	4���i:wN<C"���q-���ڕ&�Ȉ��E=�=�p��3H�Z�r�W�@��}�s8�N�����Ne|`��+��L���y끙� L�+�\�Ši!'P��s-Lc"��Q:E��0�{�"���G�\6F�L>~l;�YƗ
�eW'ql"NOg˝���0B��e�ߟ�WW_c.��B[Ӆ�'І�	`=]υ��u����!@Ιs�j��80���g��:��CN#8���8{����z���ht|W��`�+��^	@�V��rK�(� ��J���r#X�*��VI���ľ|ˣ�j3	k��'?�Yc����mmjoa�z�Ź��`�����1��#7o��ׯE�ϟ�{�]�������CC���]�/_��O�Ίx�H�`3{u{��Б#��t� ��ڸ���
<����h̿��0g������9���	1'Ib�H('	1~�~YC�]�����:��"�\]G�}�?Q1�>�����x�qT��$2j>}�w+�>v,�j�}!���q��}}olp�>���3>0��{��o�4R�}\��i�U���XFt�С#qk��2'�N�42�z����j[�Hm�t����7�cuJb#@Dg,�g�3�=��|1�@���x��	DPJJ�R��J��ҝHd|f�d2�6�<�w����SO��CH���
P�:�yӒ���:i��:��J�0����K'�.�B�k��)�J��N�N�]]b�r,�qCAX*�[�
'nx�� S�I�Π�f�C�8m�\>@�b�ɩ)��钔3��il�BL`8�|�(#.�����ӓ&��������3��r>��;w���ҭ�`9�U+�Z��̧�#�|?�[���}�*���c��;A&><\�(ߪR�գ�H)E����^�ϛ%ݺ���g]W!`(�=㾹��rAb�+@ɡ�J�b&�*�3�[��F���B���zƭRk�g�0���'}�U2gb)B��^�
&f��_�fN�녡͆�oK'NY�[�ALo=��h����ñm��aHeFuw��]?[�m��&t^�B=�������
�A���=�>A��6�P�� ����4T*}�	@p(?��WO H� H� H� H� H��R0�U���x���������O�@-Ru�`X�IEND�B`�PK03Y�����smartmag-core/inc/bunyad.php<?php
/**
 * Bunyad framework factory extension.
 * 
 * This aids in better code completion for most IDEs.
 * Most methods here are simply a wrapper for Bunyad_Base::get() method.
 * 
 * @see Bunyad_Base
 * @see Bunyad_Base::get()
 * 
 * @method static Bunyad_Theme_Archives     archives($fresh, ...$args)
 * @method static Bunyad_Theme_Authenticate authenticate($fresh, ...$args)
 * @method static Bunyad_Theme_Media        media($fresh, ...$args)  Media Helpers.
 * @method static \Bunyad\Blocks\Helpers    blocks($fresh, ...$args)
 * @method static Bunyad_Theme_Amp          amp($fresh, ...$args)  AMP class.
 * @method static Bunyad_Theme_Lazyload     lazyload($fresh, ...$args)  Lazyload class.
 * @method static \SmartMag\Reviews\Module  reviews($fresh, ...$args) Reviews Module.
 */
class Bunyad extends Bunyad_Base {

	/**
	 * Main Theme Object
	 *
	 * @return Bunyad_Theme_SmartMag
	 */
	public static function theme() {
		return self::get('theme');
	}
}PK03Y��٤�smartmag-core/inc/editor.php<?php
/**
 * Features and modifications for the TinyMCE editor in the backend.
 */
class SmartMag_Classic_Editor
{
	public function __construct() 
	{
		// Only to be used for logged in users
		if (!current_user_can('edit_pages') && !current_user_can('edit_posts')) {
			return;
		}
		
		// Hook at after_setup_theme for add_theme_support()
		add_action('after_setup_theme', array($this, 'setup'));

		/**
		 * Classic editor
		 */
		// Special class to target
		add_filter('tiny_mce_before_init', array($this, 'editor_class'), 1);
		
		add_filter('mce_buttons', array($this, 'editor_button'));
		add_filter('mce_external_plugins', array($this, 'editor_plugin_init'));
		
		// TinyMCE Plugin fetchted via ajax
		add_action('wp_ajax_bunyad_editor_plugin', array($this, 'editor_plugin_js'));
	}
	
	/**
	 * Callback: Add shortcode list button to tinymce.
	 * 
	 * @param array $buttons
	 */
	public function editor_button($buttons)
	{
		array_push($buttons, 'separator', 'bunyad_formats');
		return $buttons;
	}
	
	/**
	 * Callback: Register tinyMCE custom plugin.
	 * 
	 * @param array $plugins
	 */
	public function editor_plugin_init($plugins)
	{
		$plugins['bunyad_formats'] = admin_url('admin-ajax.php') . '?action=bunyad_editor_plugin';
		return $plugins;
	}
	
	/**
	 * Filter callback: Add a class to TinyMCE editor for our custom editor styling
	 * 
	 * @param array $settings
	 */
	public function editor_class($settings)
	{
		$settings['body_class'] = 'post-content entry-content';
		
		return $settings;
	}
	
	/**
	 * AJAX Callback - Outputs TinyMCE editor plugin 
	 */
	public function editor_plugin_js()  
	{	
		
		// Add menu items to show
		$items = [	
			'smartmag_quote_modern' => [
				'text'   => esc_html__('Quote - Modern', 'bunyad-admin'),
				'block'   => 'blockquote',
				'classes' => 'modern-quote full',
				'wrapper' => true,
			],
			
			'smartmag_cite' => [
				'text'  => esc_html__('Citation (for quote)', 'bunyad-admin'),
				'inline' => 'cite',
			],
			
			'smartmag_quote_left' => [
				'text'   => esc_html__('Quote Left - Modern', 'bunyad-admin'),
				'block'   => 'aside',
				'classes' => 'modern-quote pull alignleft',
				'wrapper' => true,
			],
			
			'smartmag_quote_right' => [
				'text'   => esc_html__('Quote Right - Modern', 'bunyad-admin'),
				'block'   => 'aside',
				'classes' => 'modern-quote pull alignright',
				'wrapper' => true,
			],
		];
		
		$button_label = esc_html__('More Styles', 'bunyad-admin');
		
		// Check auth
		if (!is_user_logged_in() OR !current_user_can('edit_posts')) {
			wp_die('You do not have the right type of authorization. You must be logged in and be able to edit pages and posts.');
		}
		
		header('Content-type: application/x-javascript');
		
		?>
		
		(function($) {
		
			tinymce.PluginManager.add('bunyad_formats', function(editor, url) {
			
					var list = [],
					    items = <?php echo json_encode($items); ?>;
					    					    
					/**
					 * Prepare items for rendering
					 */
					$.each(items, function(id, item) {

						var format = $.extend({}, item);
					
						item.onClick = function() {
							editor.execCommand('mceToggleFormat', false, id);
						};
						
						item.onPostRender = function() {
					    
						    var self = this, setup = function() {
								editor.formatter.formatChanged(id, function(state) {
									self.active(state);
								});
							};

							editor.formatter ? setup() : editor.on('init', setup);
						};

						
						editor.on('init', function() {
							editor.formatter.register(id, format);
						});
						
						list.push(item);
					});
					
					editor.addButton('bunyad_formats', {
						type: 'menubutton',
						text: '<?php echo esc_js($button_label); ?>', 
						icon: false,
						menu: list
					});
			});
			
		})(jQuery);
			
		<?php
		
		wp_die();
		
	}

}

// init and make available in Bunyad::get('smartmag_classic_editor')
Bunyad::register('smartmag_classic_editor', array(
	'class' => 'SmartMag_Classic_Editor',
	'init' => true
));PK03Y8K�@@smartmag-core/inc/optimize.php<?php
/**
 * Performance optimizations and relevant plugins compatibility.
 */
class SmartMag_Optimize
{
	private $_defer_fonts = [];
	protected $record_media = false;
	protected $recorded_media = [];
	protected $has_swiper = false;

	public function __construct()
	{
		// Hooking at wp as we need is_amp_endpoint() available to disable for amp
		add_action('wp', [$this, 'init']);
	}

	public function init()
	{
		// AMP? Stop.
		if (function_exists('amp_is_request') && amp_is_request()) {
			return;
		}

		if (defined('AUTOPTIMIZE_PLUGIN_DIR')) {
			$this->autoptimize_plugin();
		}

		// Fix jetpack devicepx script to be deferred.
		add_filter('script_loader_tag', [$this, 'jetpack_defer'], 10, 2);

		if (Bunyad::options()->perf_lazy_oembed) {
			if (
				!class_exists('\Sphere\Debloat\Plugin') ||
				false === strpos(\Sphere\Debloat\Plugin::options()->delay_js_includes, 'twitter.com')
			) {
				add_filter('embed_oembed_html', [$this, 'lazy_oembed']);
			}
		}

		/**
		 * Other optimizations that may be injected into content.
		 */
		// We want this later than debloat.
		add_action('template_redirect', function() {
			ob_start([$this, 'process_buffer']);
		});

		$this->preload_featured();
		$this->lazy_mega_menu_images();

		// Elementor assets to be removed if enabled.
		add_action('elementor/frontend/after_enqueue_styles', [$this, 'remove_elementor_assets'], 999);
		add_action('elementor/frontend/after_enqueue_scripts', [$this, 'remove_elementor_assets'], 999);

		// Disable lazyload on first image.
		add_action('bunyad_header_after', [$this, 'skip_lazy_load']);

		// Detect elementor widgets needing swiper.
		if (Bunyad::options()->perf_elementor_swiper) {			
			add_action('elementor/frontend/before_render', function($element) {
				if (is_callable([$element, 'get_style_depends'])) {
					$depends = $element->get_style_depends();
					if (in_array('e-swiper', $depends)) {
						$this->has_swiper = true;
					}
				}
			});
		}
	}

	/**
	 * Disable lazyload for the first block post image for LCP.
	 */
	public function skip_lazy_load()
	{
		if (!Bunyad::options()->lazyload_skip_number) {
			return;
		}

		// Not for single posts. Mainly for archives and where blocks are involved.
		if (!(is_archive() || is_front_page() || is_home())) {
			return;
		}

		$set_no_lazy = function($args) use (&$set_no_lazy) {
			static $counter = 0;
			$counter++;

			$skip = absint(Bunyad::options()->lazyload_skip_number);
			if ($counter > $skip) {
				remove_filter('bunyad_media_image_options', $set_no_lazy, 9);
				return $args;
			}
			
			$args['no_lazy'] = true;
			return $args;
		};

		add_filter('bunyad_media_image_options', $set_no_lazy, 9);
	}

	/**
	 * Mega menu should always be lazy loaded, so change context.
	 * 
	 * Note: Only required if bgsrc images are disabled.
	 */
	public function lazy_mega_menu_images()
	{
		if (!Bunyad::options()->perf_disable_bg_images) {
			return;
		}

		$add_mega_context = function($context) {
			return 'bunyad_mega_menu';
		};

		add_action('bunyad_mega_menu_render_before', function() use ($add_mega_context) {
			add_filter('wp_get_attachment_image_context', $add_mega_context, 99);
		});

		add_action('bunyad_mega_menu_render_after', function() use ($add_mega_context) {
			remove_filter('wp_get_attachment_image_context', $add_mega_context, 99);
		});
	}

	/**
	 * Record featured grid or featured images and add as preload.
	 */
	public function preload_featured()
	{
		if (!Bunyad::options()->perf_preload_featured) {
			return;
		}

		$begin_record = function() {
			add_filter('bunyad_media_image_html', [$this, '_record_media'], 10, 4);
			$this->record_media = true;
		};

		$end_record = function() {
			if ($this->record_media) {
				remove_filter('bunyad_media_image_html', [$this, '_record_media'], 10, 4);
				$this->record_media = false;
			}
		};

		// Only for home, category etc.
		if (!is_single()) {
			add_action('bunyad_blocks_loop_render', function($block) use ($begin_record) {
				if ($block->id !== 'feat-grid' || $this->recorded_media) {
					$this->record_media = false;
					return;
				}

				$begin_record();
			});

			add_action('bunyad_blocks_loop_render_after', $end_record);
		}	

		// Single page only.
		if (is_single() && has_post_thumbnail()) {
			add_action('bunyad_post_featured_before', $begin_record);
			add_action('bunyad_post_featured_after', $end_record);
		}
	}

	public function _record_media($html, $args, $size, $img_attribs = []) 
	{
		$post = get_post();
		if ($post && !empty($args['width'])) {
			$this->recorded_media[] = [
				'id'   => $post->ID,
				'args' => $args,
				'size' => $size,
				'img_attribs' => $img_attribs,
				'html' => $html
			];
		}

		return $html;
	}

	/**
	 * Process the content to add our optimizations.
	 */
	public function process_buffer($content)
	{
		/**
		 * Add TS icons to preload.
		 */
		if (wp_style_is('smartmag-icons', 'enqueued')) {
			$preload_icon = $this->preload_tag(
				get_template_directory_uri() . '/css/icons/fonts/ts-icons.woff2?v3.1',
				'font',
				false,
				[
					'type' => 'font/woff2',
					'crossorigin' => 'anonymous'
				]
			);

			$content = $this->inject_to_head($preload_icon, $content, true);
		}

		/**
		 * Swiper CSS should be removed unless needed (Elementor always adds it).
		 * Requires: Debloat.
		 */
		if (
			Bunyad::options()->perf_elementor_swiper 
			&& wp_style_is('swiper', 'enqueued') 
			&& did_action('elementor/loaded')
		) {
			$has_swiper = (
				$this->has_swiper
				|| strpos($content, 'background_slideshow_gallery') !== false
			);

			if (!$has_swiper) {
				add_filter('debloat/remove_css_begin', function($remove_css) {
					if (!property_exists($remove_css, 'used_markup')) {
						return;
					}

					// Check if we have swiper.
					$used = $remove_css->used_markup;
					if (!empty($used['classes']['swiper'])) {
						return;
					}

					// Remove Swiper CSS if not used.
					$html = $remove_css->html;
					$html = preg_replace(
						'#<link[^>]*(swiper-css|e-swiper-css)[^>]*/>#', '', $html
					);

					$remove_css->html = $html;
				});
			}
		}

		// Rest of optimizations are related to preload featured.
		if (!Bunyad::options()->perf_preload_featured) {
			return $content;
		}

		/**
		 * Inject media preload, if available.
		 */
		if ($this->recorded_media) {
			if (is_single()) {
				$media = $this->recorded_media[0];
			}
			else {

				// Returns largest or first (if all equals).
				$media = array_reduce($this->recorded_media, function($prev, $item) {
					if (!$prev) {
						$prev = $item;
					}

					if ($prev['args']['width'] < $item['args']['width']) {
						return $item;
					}

					return $prev;
				});
			}

			if (!empty($media['img_attribs']['src'])) {
				$preload = $this->get_media_preload($media);
				$content = $this->inject_to_head($preload, $content, true);

				// Add class for first image.
				if (Bunyad::options()->perf_first_img_class) {
					$html = str_replace('class="', 'class="ts-first-image ', $media['html']);
					$content = str_replace($media['html'], $html, $content);
				}
			}
		}

		return $content;
	}

	/**
	 * Get preload tag based on a media array.
	 * 
	 * @param array $media {
	 *    @type array $img_attribs
	 * }
	 */
	protected function get_media_preload($media) 
	{
		$srcset = $media['img_attribs']['src'];
		if (!empty($media['img_attribs']['srcset'])) {
			$srcset = $media['img_attribs']['srcset'];
		}

		return $this->preload_tag(null, 'image', false, [
			'imagesrcset'   => $srcset,
			'imagesizes'    => $media['img_attribs']['sizes'],
			// 'fetchpriority' => 'high'
		]);
	}

	/**
	 * Inject content into head tag of the buffer.
	 */
	protected function inject_to_head($inject, $buffer, $early = false)
	{
		$tag = $early ? '</title>' : '</head>';
		return str_replace($tag, ($early ? $tag . $inject : $inject . $tag), $buffer);
	}

	/**
	 * Convert oembed to lazy, currently for twitter.
	 */
	public function lazy_oembed($html)
	{
		if (strpos($html, 'platform.twitter.com/widgets.js') === false) {
			return $html;
		}

		$html = preg_replace('/(<script[^>]*)src=/', '\\1data-type="lazy" data-src=', $html);
		return $html;
	}

	/**
	 * Autoptimize plugin "defer" mode requires several changes to how things work
	 */
	public function autoptimize_plugin()
	{
		$css_optimize = get_option('autoptimize_css');
		$css_defer    = get_option('autoptimize_css_defer');
		
		// CSS defer enabled, override the default polyfill.
		if ($css_optimize && $css_defer) {
			add_filter('autoptimize_css_preload_polyfill', [$this, 'get_loadcss_polyfill']);
		}

		// Just the CSS optimize
		if ($css_optimize) {
			add_action('wp_enqueue_scripts', [$this, 'dequeue_fonts'], 11);
			add_action('wp_head', [$this, 'defer_fonts']);
			
			// CSS defer, when enabled, will add the polyfill on its own.
			// Note: This polyfill is still required for Firefox.
			if (!$css_defer) {
				add_action('wp_footer', [$this, 'loadcss_polyfill'], 999);
			}

			// Add preload for VC styles.
			add_action('wp_print_styles', function() {

				// VC
				global $wp_styles;
				
				if (
					!is_object($wp_styles) 
					|| !property_exists($wp_styles, 'registered') 
					|| !array_key_exists('js_composer_front', $wp_styles->registered)
				) {
					return;
				}
	
				if (!is_object($wp_styles->registered['js_composer_front'])) {
					return;
				}
	
				$source = $wp_styles->registered['js_composer_front']->src;
				wp_deregister_style('js_composer_front');
	
				echo $this->preload_tag($source);
	
			}, 999);
		}

		// Jetpack bug: https://github.com/Automattic/jetpack/issues/14281
		// remove_action('wp_enqueue_scripts', 'jetpack_woocommerce_lazy_images_compat', 11);

		// Lazysizes should be run earlier.
		add_filter('autoptimize_filter_js_exclude', function($exclude) {
			return $exclude . ',lazyload.js';
		});

		add_filter('autoptimize_filter_js_consider_minified', function($minified) {
			$minified = is_array($minified) ? $minified : [];
			return array_merge($minified, ['lazyload.js']);
		});

		// Remove wp-content/uploads as elementor uses it.
		add_filter('autoptimize_filter_css_exclude', function($excludes) {
			$excludes = is_string($excludes) ? $excludes : '';
			$excludes = preg_replace('#wp-content/uploads/?\s*(,|$)#', '', $excludes);
			return $excludes;
		});

		// Preload some JS early on.
		add_action('wp_head', [$this, 'autoptimize_preload_js'], 2);
	}
	
	/**
	 * Remove google font queue in the header
	 */
	public function dequeue_fonts()
	{
		$prefix = Bunyad::options()->get_config('theme_prefix');

		// Google fonts as default
		if (wp_style_is($prefix . '-fonts', 'enqueued')) {
			
			// Set flag
			$this->_defer_fonts[] = 'google';
			
			// Dequeue it for now
			wp_dequeue_style($prefix . '-fonts');
		}

		// TypeKit active?
		if (wp_style_is($prefix . '-typekit', 'enqueued')) {
			$this->_defer_fonts[] = 'typekit';

			// Dequeue it
			wp_dequeue_style($prefix . '-typekit');
		}
	}

	/**
	 * Preload some critical JS, at minimum.
	 */
	public function autoptimize_preload_js()
	{
		if (wp_script_is('smartmag-lazyload', 'enqueued')) {
			$script = wp_scripts()->query('smartmag-lazyload');
			echo $this->preload_tag($script->src . '?ver=' . $script->ver, 'script', false);
		}
	}
	
	/**
	 * Add preload for fonts.
	 */
	public function defer_fonts()
	{
		$theme_obj = Bunyad::get('theme');
		if (in_array('google', $this->_defer_fonts) && method_exists($theme_obj, 'get_fonts_enqueue')) {
				
			echo $this->preload_tag($theme_obj->get_fonts_enqueue());
		}

		//
		// To use Preload tag instead for TypeKit:
		// 	    echo $this->preload_tag('https://use.typekit.net/'. Bunyad::options()->typekit_id .'.css');
		//

		if (in_array('typekit', $this->_defer_fonts)) {
			?>
			<script>
			  (function(d) {
			    var config = {
			      kitId: '<?php echo esc_js(Bunyad::options()->typekit_id); ?>',
			      scriptTimeout: 3000,
			      async: true
			    },
			    h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,"")+" wf-inactive";},config.scriptTimeout),tk=d.createElement("script"),f=false,s=d.getElementsByTagName("script")[0],a;h.className+=" wf-loading";tk.src='https://use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!="complete"&&a!="loaded")return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
			  })(document);
			</script>
			<?php

		}
	}

	/**
	 * Output the preload tag
	 * 
	 * @param string $url   The script/style url
	 * @param string $type  style or script
	 * @param string $apply Whether to apply the style immediately
	 * @param array  $attrs Extra attributes
	 */
	public function preload_tag($url = '', $type = 'style', $apply = true, $attrs = [])
	{
		if ($type !== 'style' && $apply) {
			$apply = false;
		}

		$the_attrs = ['as' => $type];

		// href has to be omitted in some cases like for imagesrcset, so old browsers can ignore it.
		if (!empty($url)) {
			$the_attrs['href'] = esc_url($url);
		}

		if ($apply && $type === 'style') {
			$the_attrs['onload'] = "this.onload=null;this.rel='stylesheet'";
		}

		if ($type === 'style') {
			$the_attrs['media']  = 'all';
		}

		// Everything above can be overridden.
		$the_attrs = array_replace($the_attrs, $attrs);

		return sprintf(
			'<link rel="preload" %s />',
			Bunyad::markup()->attribs('preload-tag', $the_attrs, ['echo' => false])
		);
	}

	/**
	 * Quick CSS / JS minify that doesn't do much at all 
	 */
	public function _quick_minify($text)
	{
		return str_replace(["\r", "\n", "\t"], '', $text);
	}
	
	/**
	 * Fix Jetpack not using deferred JS for devicepx 
	 */
	public function jetpack_defer($tag, $handle)
	{		
		if ($handle == 'devicepx') {
			$tag = str_replace('src=', 'defer src=', $tag);
		}
		
		return $tag;
	}

	/**
	 * Add loadCSS polyfill 
	 */
	public function get_loadcss_polyfill($existing = '')
	{
		// First few lines modified to hook into DOMContentLoaded
		$preloadPolyfill = '
		<script data-cfasync=\'false\'>
		var t = window;
		document.addEventListener("DOMContentLoaded", 
			function(){
				t.loadCSS||(t.loadCSS=function(){});var e=loadCSS.relpreload={};if(e.support=function(){var e;try{e=t.document.createElement("link").relList.supports("preload")}catch(t){e=!1}return function(){return e}}(),e.bindMediaToggle=function(t){function e(){t.media=a}var a=t.media||"all";t.addEventListener?t.addEventListener("load",e):t.attachEvent&&t.attachEvent("onload",e),setTimeout(function(){t.rel="stylesheet",t.media="only x"}),setTimeout(e,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getElementsByTagName("link"),n=0;n<a.length;n++){var o=a[n];"preload"!==o.rel||"style"!==o.getAttribute("as")||o.getAttribute("data-loadcss")||(o.setAttribute("data-loadcss",!0),e.bindMediaToggle(o))}},!e.support()){e.poly();var a=t.setInterval(e.poly,500);t.addEventListener?t.addEventListener("load",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent("onload",function(){e.poly(),t.clearInterval(a)})}"undefined"!=typeof exports?exports.loadCSS=loadCSS:t.loadCSS=loadCSS
			}
		);
		</script>';

		return $preloadPolyfill;
	}

	/**
	 * Load CSS polyfill in footer
	 */
	public function loadcss_polyfill($content) {
		echo $this->get_loadcss_polyfill();
	}

	/**
	 * Remove disabled Elementor assets.
	 */
	public function remove_elementor_assets()
	{
		// Elementor is necessary.
		if (!did_action('elementor/loaded')) {
			return;
		}

		$assets = (array) Bunyad::options()->perf_disable_elementor_assets;
		if (!$assets) {
			return;
		}

		$is_editor = did_action('elementor/preview/init');
		foreach ($assets as $asset) {

			if ($asset === 'animations') {
				wp_dequeue_style('elementor-animations');
				!$is_editor || wp_dequeue_script('elementor-waypoints');
				continue;
			}

			// Don't remove JS, and certain CSS in editor or there can be errors.
			if ($is_editor) {
				continue;
			}

			// Won't be removed when logged in, as elementor-common is added which needs it.
			if ($asset === 'icons') {
				wp_dequeue_style('elementor-icons');
				continue;
			}

			wp_dequeue_script('elementor-' . str_replace('-js', '', $asset));
		}
	}
}

// init and make available in Bunyad::get('smartmag_optimize')
Bunyad::register('smartmag_optimize', [
	'class' => 'SmartMag_Optimize',
	'init'  => true
]);PK03Y��

 smartmag-core/inc/shortcodes.php<?php
/**
 * Setup shortcodes and blocks
 */
class SmartMag_Shortcodes
{
	public $blocks = array();
	
	/**
	 * Add a special kind of shortcode that's handled by an included php file
	 * 
	 * @param array|string $shortcodes
	 */
	public function add($shortcodes)
	{
		$shortcodes   = (array) $shortcodes;
		$this->blocks = array_merge($this->blocks, $shortcodes);
		
		foreach ($shortcodes as $tag => $shortcode) {
			add_shortcode($tag, array($this, '_render'));
		}
		
		return $this;
	}
	
	/**
	 * Callback: Render a shortcode.
	 */
	public function _render($atts, $content = '', $tag = '')
	{
		$block = $this->blocks[$tag];

		if (!$block) { 
			return;
		}

		$block_attribs = [];
		if (isset($block['attribs'])) {
			$block_attribs += (array) $block['attribs'];
		}

		// Alias for another block. Merge attribs.
		if (isset($block['alias'])) {
			if (isset($block['map_attribs'])) {
				foreach ($block['map_attribs'] as $from => $to)	{
					if (!isset($atts[$from])) {
						continue;
					}

					$atts[$to] = $atts[$from];
				}
			}

			$block = $this->blocks[ $block['alias'] ];
		}

		$atts = shortcode_atts($block_attribs, $atts);
		$atts['block_file'] = $block['render'];
		
		// save the current block in registry
		if (class_exists('Bunyad_Registry')) {
			Bunyad::registry()
				->set('block', $block)
				->set('block_atts', $atts);
		}
		
		// Block file
		$block_file = '';
		if (is_string($block['render'])) {
			$block_file = $block['render'];
		}

		ob_start();

		// File render or callback render.
		if ($block['render'] === 'block') {
			$this->render_block($atts, $block);
		}
		else if ($block_file && file_exists($block_file)) {
			include apply_filters('bunyad_shortcode_file', $block_file, $block);
		}
		else if (is_callable($block['render'])) {
			echo call_user_func_array($block['render'], [$atts, $block]);
		}

		return ob_get_clean();
	}

	/**
	 * Render a known block.
	 *
	 * @param array $atts
	 * @param array $data
	 * @return void
	 */
	public function render_block($atts, $data = [])
	{
		$atts['is_sc_call'] = true;

		if (!isset($atts['query_type'])) {
			$atts['query_type'] = 'custom';
		}

		$props = call_user_func(
			'Bunyad\Blocks\\' . $data['block_class'] . '::get_default_props'
		);
		$props = array_replace($props, $atts);

		/** @var \Bunyad\Blocks\Base\LoopBlock $block */
		$block = Bunyad::blocks()->load(
			$data['block_class'],
			$atts
		);

		$block->render();
	}
}

// init and make available in Bunyad::get('shortcodes')
Bunyad::register('shortcodes', array(
	'class' => 'SmartMag_Shortcodes',
	'init' => true
));PK03Y=a��$�$"smartmag-core/inc/social-share.php<?php
/**
 * Social sharing buttons
 */
class SmartMag_SocialShare
{
	/**
	 * Get an array of sharing services with links
	 */
	public function share_services($post_id = '') 
	{
		if (empty($post_id)) {
			$post_id = get_the_ID();
		}
		
		// Post and media URL
		$url   = rawurlencode(get_permalink($post_id));
		$media = rawurlencode(
			wp_get_attachment_url(get_post_thumbnail_id($post_id))
		);

		$the_title = get_post_field('post_title', $post_id, 'raw');
		$title     = rawurlencode($the_title);
		
		// Social Services
		$services = [
			'facebook' => [
				'label'      => esc_html__('Facebook', 'bunyad'),
				'label_full' => esc_html__('Share on Facebook', 'bunyad'), 
				'icon'       => 'tsi tsi-facebook',
				'url'        => 'https://www.facebook.com/sharer.php?u=' . $url,
			],
				
			'twitter' => [
				'label'      => esc_html__('Twitter', 'bunyad'), 
				'label_full' => esc_html__('Share on X (Twitter)', 'bunyad'), 
				'icon'       => 'tsi tsi-twitter',
				'url'        => 'https://twitter.com/intent/tweet?url=' . $url . '&text=' . $title,
			],

			'pinterest' => [
				'label'      => esc_html__('Pinterest', 'bunyad'), 
				'label_full' => esc_html__('Share on Pinterest', 'bunyad'), 
				'icon'       => 'tsi tsi-pinterest',
				'url'        => 'https://pinterest.com/pin/create/button/?url='. $url . '&media=' . $media . '&description=' . $title,
				'key'        => 'sf_instagram_id',
			],
			
			'linkedin' => [
				'label'      => esc_html__('LinkedIn', 'bunyad'), 
				'label_full' => esc_html__('Share on LinkedIn', 'bunyad'), 
				'icon'       => 'tsi tsi-linkedin',
				'url'        => 'https://www.linkedin.com/shareArticle?mini=true&url=' . $url,
			],
				
			'tumblr' => [
				'label'      => esc_html__('Tumblr', 'bunyad'), 
				'label_full' => esc_html__('Share on Tumblr', 'bunyad'), 
				'icon'       => 'tsi tsi-tumblr',
				'url'        => 'https://www.tumblr.com/share/link?url=' . $url . '&name=' . $title,
			],

			'vk'     => [
				'label'      => esc_html__('VKontakte', 'bunyad'),
				'label_full' => esc_html__('Share on VKontakte', 'bunyad'), 
				'icon'       => 'tsi tsi-vk',
				'url'        => 'https://vk.com/share.php?url='. $url .'&title=' . $title,
			],
				
			'email'  => [
				'label'      => esc_html__('Email', 'bunyad'),
				'label_full' => esc_html__('Share via Email', 'bunyad'), 
				'icon'       => 'tsi tsi-envelope-o',
				'url'        => 'mailto:?subject='. $title .'&body=' . $url,
			],

			'whatsapp' => [
				'label'      => esc_html__('WhatsApp', 'bunyad'),
				'label_full' => esc_html__('Share on WhatsApp', 'bunyad'), 
				'icon'       => 'tsi tsi-whatsapp',

				// rawurlencode to preserve space properly
				'url'   => 'https://wa.me/?text='. $title . rawurlencode(' ') . $url,
			],

			'reddit' => [
				'label'      => esc_html__('Reddit', 'bunyad'),
				'label_full' => esc_html__('Share on Reddit', 'bunyad'), 
				'icon'       => 'tsi tsi-reddit-alien',
				'url'        => 'https://www.reddit.com/submit?url=' . $url . '&title='. $title,
			],

			'telegram' => [
				'label'      => esc_html__('Telegram', 'bunyad'),
				'label_full' => esc_html__('Share on Telegram', 'bunyad'), 
				'icon'       => 'tsi tsi-telegram',
				'url'        => 'https://t.me/share/url?url=' . $url . '&title='. $title,
			],

			'link' => [
				'label'      => esc_html__('Copy Link', 'bunyad'),
				'label_full' => esc_html__('Copy Link', 'bunyad'), 
				'icon'       => 'tsi tsi-link',
				'url'        => '#',
			],
		];
		
		return apply_filters('bunyad_social_share_services', $services);
	}

	/**
	 * Services for social follow widget.
	 */
	public function follow_services($process = true)
	{
		/**
		 * Setup an array of services and their associate URL, label and icon
		 */
		$services = [
			'facebook' => [
				'label' => esc_html__('Facebook', 'bunyad'),
				'text'  => Bunyad::options()->sf_facebook_label,
				'icon'  => 'facebook',
				'url'   => 'https://facebook.com/%',
				'key'   => 'sf_facebook_id',
			],
				
			'twitter' => [
				'label' => esc_html__('X (Twitter)', 'bunyad'), 
				'text'  => Bunyad::options()->sf_twitter_label,
				'icon'  => 'twitter',
				'url'   => 'https://twitter.com/%',
				'key'   => 'sf_twitter_id',
			],

			'pinterest' => [
				'label' => esc_html__('Pinterest', 'bunyad'), 
				'text'  => Bunyad::options()->sf_pinterest_label,
				'icon'  => 'pinterest-p',
				'url'   => 'https://pinterest.com/%',
				'key'   => 'sf_pinterest_id',
			],
				
			'instagram' => [
				'label' => esc_html__('Instagram', 'bunyad'), 
				'text'  => Bunyad::options()->sf_instagram_label,
				'icon'  => 'instagram',
				'url'   => 'https://instagram.com/%',
				'key'   => 'sf_instagram_id',
			],
			
			'youtube' => [
				'label' => esc_html__('YouTube', 'bunyad'), 
				'text'  => Bunyad::options()->sf_youtube_label,
				'icon'  => 'youtube-play',
				'url'   => '%',
				'key'   => 'sf_youtube_url',
			],
				
			'vimeo' => [
				'label' => esc_html__('Vimeo', 'bunyad'), 
				'text'  => Bunyad::options()->sf_vimeo_label,
				'icon'  => 'vimeo',
				'url'   => '%',
				'key'   => 'sf_vimeo_url',
			],

			'linkedin' => [
				'label' => esc_html__('LinkedIn', 'bunyad'), 
				'text'  => Bunyad::options()->sf_linkedin_label,
				'icon'  => 'linkedin',
				'url'   => '%',
				'key'   => 'sf_linkedin_url',
			],

			'soundcloud' => [
				'label' => esc_html__('Soundcloud', 'bunyad'), 
				'text'  => Bunyad::options()->sf_soundcloud_label,
				'icon'  => 'soundcloud',
				'url'   => 'https://soundcloud.com/%',
				'key'   => 'sf_soundcloud_id',
			],

			'twitch' => [
				'label' => esc_html__('Twitch', 'bunyad'), 
				'text'  => Bunyad::options()->sf_twitch_label,
				'icon'  => 'twitch',
				'url'   => 'https://twitch.tv/%',
				'key'   => 'sf_twitch_id',
			],

			'reddit' => [
				'label' => esc_html__('Reddit', 'bunyad'), 
				'text'  => Bunyad::options()->sf_reddit_label,
				'icon'  => 'reddit-alien',
				'url'   => '%',
				'key'   => 'sf_reddit_url',
			],

			'tiktok' => [
				'label' => esc_html__('TikTok', 'bunyad'), 
				'text'  => Bunyad::options()->sf_tiktok_label,
				'icon'  => 'tiktok',
				'url'   => 'https://www.tiktok.com/@%',
				'key'   => 'sf_tiktok_id',
			],

			'telegram' => [
				'label' => esc_html__('Telegram', 'bunyad'), 
				'text'  => Bunyad::options()->sf_telegram_label,
				'icon'  => 'telegram',
				'url'   => 'https://t.me/%',
				'key'   => 'sf_telegram_id',
			],

			'whatsapp' => [
				'label' => esc_html__('WhatsApp', 'bunyad'), 
				'text'  => Bunyad::options()->sf_whatsapp_label,
				'icon'  => 'whatsapp',
				'url'   => 'https://wa.me/%',
				'key'   => 'sf_whatsapp_id',
			],

			'tumblr' => [
				'label' => esc_html__('Tumblr', 'bunyad'), 
				'text'  => Bunyad::options()->sf_tumblr_label,
				'icon'  => 'tumblr',
				'url'   => '%',
				'key'   => 'sf_tumblr_id',
			],
			
			'mastodon' => [
				'label' => esc_html__('Mastodon', 'bunyad'), 
				'text'  => Bunyad::options()->sf_mastodon_label,
				'icon'  => 'mastodon',
				'url'   => '%',
				'key'   => 'sf_mastodon_url',
			],
			
			'threads' => [
				'label' => esc_html__('Threads', 'bunyad'), 
				'text'  => Bunyad::options()->sf_threads_label,
				'icon'  => 'threads',
				'url'   => '%',
				'key'   => 'sf_threads_url',
			],
			
			'spotify' => [
				'label' => esc_html__('Spotify', 'bunyad'), 
				'text'  => Bunyad::options()->sf_spotify_label,
				'icon'  => 'spotify',
				'url'   => '%',
				'key'   => 'sf_spotify_url',
			],

			// 'google-news' => [
			// 	'label' => esc_html__('Google News', 'bunyad'),
			// 	'text'  => Bunyad::options()->sf_google_news_label,
			// 	'icon_svg' => 'google-news',
			// 	'url'   => '%',
			// 	'key'   => 'sf_google_news_url',
			// ],

			// 'flipboard' => [
			// 	'label' => esc_html__('Flipboard', 'bunyad'),
			// 	'text'  => Bunyad::options()->sf_flipboard_label,
			// 	'icon_svg' => 'flipboard',
			// 	'url'   => '%',
			// 	'key'   => 'sf_flipboard_url',
			// ],	
		];
		
		$services = apply_filters('bunyad_social_follow_services', $services);
		
		if ($process) {
			$services = $this->_replace_urls($services);
		}
		
		return $services;
	}
	
	/**
	 * Perform URL replacements for social follow.
	 * Currently only used by the widget.
	 * 
	 * @param  array  $services
	 * @return array
	 */
	public function _replace_urls($services) 
	{
		foreach ($services as $id => $service) {
		
			if (!isset($service['key'])) {
				continue;
			}
			
			// Get the URL or username from settings.
			if ($the_url = Bunyad::options()->get($service['key'])) {
				$services[$id]['url'] = str_replace('%', $the_url, $service['url']);
			}
			else {
				// Try to fallback to social profile URLs.
				$profiles = Bunyad::options()->get('social_profiles');
				$services[$id]['url'] = !empty($profiles[$id]) ? $profiles[$id] : '';
			}
		}
			
		return $services;
	}

	/**
	 * Render social sharing.
	 */
	public function render($type = '', $props = [])
	{
		$file = sanitize_file_name($type) . '.php';
		$template_path = locate_template('partials/social-share/' . $file) ?: SmartMag_Core::instance()->path . 'social-share/views/' . $file;

		// @since 1.3.8 with theme v9.0.1
		include apply_filters(
			'bunyad_social_share_template',
			$template_path,
			$type
		);
	}
}

// init and make available in Bunyad::get('smartmag_social')
Bunyad::register('smartmag_social', array(
	'class' => 'SmartMag_SocialShare',
	'init' => true
));PK03Y��IN�`�`4smartmag-core/inc/convert-v5/bunyad-to-elementor.php<?php
namespace SmartMag\ConvertV5;
use \Bunyad;

/**
 * Convert Bunyad Page builder pages to Elementor.
 */
class BunyadToElementor
{
	protected $post;
	protected $elementor_data = [];
	protected $current_section;
	protected $parent_sections = [];
	protected $current_column;
	protected $parent_columns = [];

	/**
	 * @param WP_Post $post
	 */
	public function __construct($post)
	{
		$this->post = $post;
	}

	public function convert()
	{
		$data = get_post_meta($this->post->ID, 'panels_data', true);

		// Debug:
		// $data = 'a:3:{s:7:"widgets";a:13:{i:0;a:20:{s:12:"no_container";s:1:"1";s:5:"posts";s:0:"";s:7:"sort_by";s:0:"";s:10:"sort_order";s:4:"desc";s:7:"columns";s:1:"2";s:12:"heading_type";s:4:"auto";s:5:"cat_1";s:1:"0";s:5:"tag_1";s:0:"";s:9:"heading_1";s:0:"";s:8:"offset_1";s:1:"0";s:5:"cat_2";s:1:"0";s:5:"tag_2";s:0:"";s:9:"heading_2";s:0:"";s:8:"offset_2";s:1:"0";s:5:"cat_3";s:1:"0";s:5:"tag_3";s:0:"";s:9:"heading_3";s:0:"";s:8:"offset_3";s:1:"0";s:9:"post_type";s:0:"";s:4:"info";a:4:{s:5:"class";s:29:"Bunyad_PageBuilder_Highlights";s:2:"id";s:1:"1";s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";}}i:1;a:13:{s:12:"no_container";s:1:"1";s:5:"posts";s:0:"";s:7:"sort_by";s:0:"";s:10:"sort_order";s:4:"desc";s:10:"highlights";s:1:"1";s:3:"cat";s:1:"0";s:7:"tax_tag";s:0:"";s:8:"sub_tags";s:0:"";s:7:"heading";s:0:"";s:12:"heading_type";s:5:"block";s:6:"offset";s:1:"0";s:9:"post_type";s:0:"";s:4:"info";a:4:{s:5:"class";s:28:"Bunyad_PageBuilder_NewsFocus";s:2:"id";s:1:"2";s:4:"grid";s:1:"1";s:4:"cell";s:1:"0";}}i:2;a:13:{s:12:"no_container";s:1:"1";s:5:"posts";s:0:"";s:7:"sort_by";s:0:"";s:10:"sort_order";s:4:"desc";s:10:"highlights";s:1:"1";s:3:"cat";s:1:"0";s:7:"tax_tag";s:0:"";s:8:"sub_tags";s:0:"";s:7:"heading";s:0:"";s:12:"heading_type";s:5:"block";s:6:"offset";s:1:"0";s:9:"post_type";s:0:"";s:4:"info";a:4:{s:5:"class";s:28:"Bunyad_PageBuilder_NewsFocus";s:2:"id";s:1:"3";s:4:"grid";s:1:"2";s:4:"cell";s:1:"0";}}i:3;a:3:{s:12:"no_container";s:1:"1";s:4:"type";s:4:"line";s:4:"info";a:4:{s:5:"class";s:24:"Bunyad_PbBasic_Separator";s:2:"id";s:1:"4";s:4:"grid";s:1:"3";s:4:"cell";s:1:"0";}}i:4;a:20:{s:12:"no_container";s:1:"1";s:5:"posts";s:0:"";s:7:"sort_by";s:0:"";s:10:"sort_order";s:4:"desc";s:7:"columns";s:1:"3";s:12:"heading_type";s:4:"auto";s:5:"cat_1";s:1:"0";s:5:"tag_1";s:0:"";s:9:"heading_1";s:0:"";s:8:"offset_1";s:1:"0";s:5:"cat_2";s:1:"0";s:5:"tag_2";s:0:"";s:9:"heading_2";s:0:"";s:8:"offset_2";s:1:"0";s:5:"cat_3";s:1:"0";s:5:"tag_3";s:0:"";s:9:"heading_3";s:0:"";s:8:"offset_3";s:1:"0";s:9:"post_type";s:0:"";s:4:"info";a:4:{s:5:"class";s:29:"Bunyad_PageBuilder_Highlights";s:2:"id";s:1:"5";s:4:"grid";s:1:"4";s:4:"cell";s:1:"0";}}i:5;a:8:{s:12:"no_container";s:1:"1";s:5:"title";s:13:"Recent Videos";s:6:"number";s:2:"10";s:6:"format";s:5:"video";s:3:"cat";s:1:"0";s:7:"tax_tag";s:0:"";s:9:"post_type";s:0:"";s:4:"info";a:4:{s:5:"class";s:32:"Bunyad_PageBuilder_LatestGallery";s:2:"id";s:1:"6";s:4:"grid";s:1:"5";s:4:"cell";s:1:"0";}}i:6;a:4:{s:5:"title";s:7:"Reviews";s:6:"number";i:5;s:5:"order";s:4:"date";s:4:"info";a:4:{s:5:"class";s:27:"Bunyad_LatestReviews_Widget";s:2:"id";s:1:"7";s:4:"grid";s:1:"6";s:4:"cell";s:1:"0";}}i:7;a:3:{s:5:"title";s:0:"";s:4:"code";s:105:"<img src="http://theme-sphere.com/smart-mag/wp-content/uploads/2014/01/ad-block.png" alt="Leaderboard" />";s:4:"info";a:4:{s:5:"class";s:17:"Bunyad_Ads_Widget";s:2:"id";s:1:"8";s:4:"grid";s:1:"6";s:4:"cell";s:1:"0";}}i:8;a:5:{s:5:"title";s:11:"Small Posts";s:8:"category";s:1:"0";s:9:"limit_tag";s:0:"";s:6:"number";s:1:"5";s:4:"info";a:4:{s:5:"class";s:25:"Bunyad_LatestPosts_Widget";s:2:"id";s:1:"9";s:4:"grid";s:1:"6";s:4:"cell";s:1:"0";}}i:9;a:5:{s:5:"title";s:13:"Flickr Photos";s:7:"user_id";s:12:"71865026@N00";s:8:"show_num";i:12;s:4:"tags";s:0:"";s:4:"info";a:4:{s:5:"class";s:20:"Bunyad_Flickr_Widget";s:2:"id";s:2:"10";s:4:"grid";s:1:"7";s:4:"cell";s:1:"0";}}i:10;a:4:{s:5:"title";s:7:"Testing";s:4:"text";s:12:"Random Text.";s:6:"filter";b:0;s:4:"info";a:4:{s:5:"class";s:14:"WP_Widget_Text";s:2:"id";s:2:"11";s:4:"grid";s:1:"7";s:4:"cell";s:1:"1";}}i:11;a:2:{s:4:"text";s:60:"<p><strong>Rich Text Stuff</strong></p><p>Something more</p>";s:4:"info";a:4:{s:5:"class";s:23:"Bunyad_PbBasic_RichText";s:2:"id";s:2:"12";s:4:"grid";s:1:"7";s:4:"cell";s:1:"2";}}i:12;a:17:{s:12:"no_container";s:1:"1";s:5:"posts";s:1:"4";s:7:"sort_by";s:0:"";s:10:"sort_order";s:4:"desc";s:4:"type";s:12:"tall-overlay";s:3:"cat";s:1:"0";s:7:"heading";s:0:"";s:12:"heading_type";s:4:"page";s:10:"cat_labels";s:1:"1";s:10:"pagination";s:1:"0";s:15:"pagination_type";s:0:"";s:4:"tags";s:0:"";s:7:"filters";s:0:"";s:13:"filters_terms";s:0:"";s:6:"offset";s:1:"0";s:9:"post_type";s:0:"";s:4:"info";a:4:{s:5:"class";s:23:"Bunyad_PageBuilder_Blog";s:2:"id";s:2:"13";s:4:"grid";s:1:"8";s:4:"cell";s:1:"0";}}}s:5:"grids";a:9:{i:0;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}i:1;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}i:2;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}i:3;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}i:4;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}i:5;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}i:6;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}i:7;a:2:{s:5:"cells";s:1:"3";s:5:"style";s:0:"";}i:8;a:2:{s:5:"cells";s:1:"1";s:5:"style";s:0:"";}}s:10:"grid_cells";a:11:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}i:1;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"1";}i:2;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"2";}i:3;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"3";}i:4;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"4";}i:5;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"5";}i:6;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"6";}i:7;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"7";}i:8;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"7";}i:9;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"7";}i:10;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"8";}}}';
		// $data = unserialize($data);
		
		if (!$data || empty($data['grids'])) {
			return;
		}

		$this->process_panels_data($data);

		// var_export($this->elementor_data);

		// Slashed as stripslashes happen on update post meta.
		$json = wp_slash(wp_json_encode($this->elementor_data));

		update_post_meta($this->post->ID, '_elementor_data', $json);
		update_post_meta($this->post->ID, '_elementor_version', '3.1.0');

		// To match \Elementor\DB::set_is_elementor_page().
		update_post_meta($this->post->ID, '_elementor_edit_mode', 'builder');

		// Update page template too or wp_update_post will reset it to default for missing templates.
		$page_template = get_page_template_slug($this->post->ID);
		if ($page_template === 'page-blocks.php') {
			$page_template = 'page-templates/blocks.php';
		}

		// To update last modified date/time and the template.
		wp_update_post([
			'ID' => $this->post->ID,
			'page_template' => $page_template
		]);

		// Delete elementor CSS that can sometimes become stuck on a version update.
		if (class_exists('\Elementor\Core\Files\CSS\Post')) {
			$css = new \Elementor\Core\Files\CSS\Post($this->post->ID);
			if (is_callable([$css, 'delete'])) {
				$css->delete();
			}
		}
	}

	/**
	 * From SO builder.
	 *
	 * @param array $panels_data
	 * @return void
	 */
	public function process_panels_data($panels_data)
	{
		// Create the skeleton of the grids
		$grids = [];
		foreach ($panels_data['grids'] as $gi => $grid) {
			$gi = intval($gi);
			$grids[$gi] = [];
			for ($i = 0; $i < $grid['cells']; $i++) {
				$grids[$gi][$i] = [];
			}
		}

		if (!empty($panels_data['widgets'])) {
			foreach ($panels_data['widgets'] as $widget) {
				$grids[ intval($widget['info']['grid']) ][ intval($widget['info']['cell']) ][] = $widget;
			}
		}

		$weights = [];
		foreach ($panels_data['grid_cells'] as $cell) {
			$weights[$cell['grid']][] = $cell['weight']; 
		}

		$this->start_section();
		$this->start_column();
		foreach ($grids as $gi => $cells) {

			// Start inner section only if more than 1 cell.
			$is_inner = count($cells) > 1;
			$is_inner && $this->start_section();

			foreach ($cells as $ci => $widgets) {
				if (empty($widgets)) {
					continue;
				}

				$weight = (float) $weights[$gi][$ci];

				if ($weight <= 1) {
					$weight *= 100;
				}

				$is_inner && $this->start_column($weight);

				foreach ($widgets as $pi => $widget_info) {
					$this->process_widget($widget_info);
				}

				$is_inner && $this->end_column();
			}

			$is_inner && $this->end_section();
		}
		$this->end_column();
		$this->end_section();
	}

	/**
	 * Process an SO widget and convert to elementor.
	 */
	protected function process_widget($widget)
	{
		$type = $widget['info']['class'];
		$data = $widget;
		
		unset(
			$data['no_container'],
			$data['info']
		);

		// Convert common known settings.
		$data = $this->convert_settings($data);

		$data['heading_colors'] = 'force';
		if (isset($data['heading_type'])) {
			$data['heading_type'] = $this->map_heading($data['heading_type']);
		}

		switch ($type) {
			case 'Bunyad_PageBuilder_NewsFocus':
				$this->process_news_focus($data);
				break;

			case 'Bunyad_PageBuilder_FocusGrid':
				$this->process_focus_grid($data);
				break;
			
			case 'Bunyad_PageBuilder_Highlights':
				$this->process_highlights($data);
				break;

			case 'Bunyad_PageBuilder_Highlights_B':
				$this->process_highlights_b($data);
				break;
			
			case 'Bunyad_PageBuilder_Blog':
				$this->process_blog($data);
				break;

			case 'Bunyad_Ads_Widget':
				$this->process_ads_widget($data);
				break;

			case 'WP_Widget_Text':
				$this->process_text_widget($data);
				break;

			case 'Bunyad_PbBasic_RichText':
				$this->process_rich_text_widget($data);
				break;

			case 'Bunyad_Flickr_Widget':
				$this->process_flickr_widget($data);
				break;

			case 'Bunyad_PbBasic_Separator':
				$this->process_separator($data);
				break;

			case 'Bunyad_PageBuilder_LatestGallery':
				$this->process_latest_gallery($data);
				break;

			case 'Bunyad_LatestReviews_Widget':
				$this->process_reviews_widget($data);
				break;

			case 'Bunyad_LatestPosts_Widget':
				$this->process_latest_posts_widget($data);
				break;

			default:
				// echo "Unknown: {$type}\n";
				break;
		}
	}

	/**
	 * Process highlights block - the multi-col one.
	 */
	public function process_highlights($settings)
	{
		$columns = (int) $settings['columns'];
		if (!$columns) {
			$columns = 2;
		}

		$layout = Bunyad::posts()->meta('layout_style', $this->post->ID);

		// Fix heading
		if (empty($settings['heading_type']) || $settings['heading_type'] === 'auto') {
			$settings['heading_type'] = $this->map_heading(
				$columns === 3 && $layout !== 'full' ? 'block' : 'none'
			);
		}

		// 3 Column settings.
		if ($columns === 3 && $layout !== 'full') {
			$settings['small_style'] = 'b';
			$settings['excerpts']    = 0;
			$settings['cat_labels']  = '0';
		}
		else {
			$settings['cat_labels']  = '1';
		}

		$this->start_section($columns === 3 ? 30 : 20);

		foreach (range(1, $columns) as $column) {

			$element = array_replace($settings, [
				'cat'     => !empty($settings["cat_{$column}"]) ? $settings["cat_{$column}"] : '',
				'tags'    => !empty($settings["tag_{$column}"]) ? $settings["tag_{$column}"] : '',
				'heading' => !empty($settings["heading_{$column}"]) ? $settings["heading_{$column}"] : '',
				'offset'  => !empty($settings["offset_{$column}"]) ? $settings["offset_{$column}"] : '',
			]);

			unset(
				$element['columns'],
				$element['cat_1'],$element['cat_2'], $element['cat_3'], 
				$element['tag_1'], $element['tag_2'], $element['tag_3'],
				$element['heading_1'], $element['heading_2'], $element['heading_3'],
				$element['offset_1'], $element['offset_2'], $element['offset_3']
			);

			$this->start_column(100 / $columns);

			$element = $this->convert_settings($element);
			$this->add_element([
				'widgetType' => 'smartmag-highlights',
				'settings'   => array_replace($element, [
					'container_width' => 66,
					'columns'         => 1,
					'separators'      => 1,
					'excerpt_length'  => Bunyad::options()->get_or('excerpt_length_highlights', 20)
				])
			]);

			$this->end_column();
		}

		$this->end_section();
	}

	public function process_news_focus($settings)
	{
		$this->add_element([
			'widgetType' => 'smartmag-newsfocus',
			'settings'   => array_replace($settings, [
				'container_width' => 66,
				'separators'      => 1,
				'excerpt_length'  => Bunyad::options()->get_or('excerpt_length_news_focus', 20),
				'cat_labels'      => '0',
				'filters'         => empty($settings['filters']) ? 'category' : $settings['filters'],
			])
		]);
	}

	public function process_focus_grid($settings)
	{
		$this->add_element([
			'widgetType' => 'smartmag-focusgrid',
			'settings'   => array_replace($settings, [
				'container_width'    => 66,
				'excerpt_length'     => Bunyad::options()->get_or('excerpt_length_focus_grid', 30),
				'cat_labels'         => '0',
				'media_ratio'        => 'custom',
				'media_ratio_custom' => '1.59',
				'filters'            => empty($settings['filters']) ? 'category' : $settings['filters'],
			])
		]);
	}

	public function process_highlights_b($settings)
	{
		$this->add_element([
			'widgetType' => 'smartmag-highlights',
			'settings'   => array_replace($settings, [
				'container_width' => 66,
				'columns'         => 2,
				'excerpt_length'  => Bunyad::options()->get_or('excerpt_length_highlights', 20),
				'cat_labels'      => '0',
			])
		]);
	}

	/**
	 * Convert old [blog] to relevant block.
	 */
	public function process_blog($settings)
	{

		$type = $settings['type'];
		unset($settings['type']);

		$settings = array_replace($settings, [
			'container_width' => 66,
			'columns'         => 2,
			'excerpt_length'  => Bunyad::options()->loop_grid_excerpt_length,

		]);

		$widget_type = '';
		if (!$type) {
			$type = Bunyad::options()->get('default_cat_template', 'category_loop');
		}

		switch ($type) {
			case 'modern':
			case 'modern-3':
				$widget_type = 'smartmag-grid';
				$columns     = abs((int) str_replace('modern', '', $type));
				$settings['columns'] = $columns ? $columns : 2;
				break;
			
			case 'grid-overlay':
			case 'grid-overlay-3':
				$widget_type = 'smartmag-overlay';
				$columns     = abs((int) str_replace('grid-overlay', '', $type));
				$settings['columns'] = $columns ? $columns : 2;
				break;

			case 'tall-overlay':

				$columns = 3;
				if (Bunyad::posts()->meta('layout_style', $this->post->ID) === 'full') {
					$columns = 4;
				}

				$widget_type = 'smartmag-overlay';
				$settings    = array_replace($settings, [
					'media_ratio' => '3-4',
					'columns'     => $columns,
					'meta_items_default' => false,
					'meta_above'  => [],
					'meta_below'  => ['date'],
					'css_column_gap' => [
						'unit' => 'px',
						'size' => 2,
					]
				]);
				break;

			case 'alt':
				$widget_type = 'smartmag-postslist';
				$settings    = array_replace($settings, [
					'excerpt_length'  => Bunyad::options()->loop_list_excerpt_length,
					'separators'      => 1,
					'columns'         => 1,
				]);
				break;

			case 'classic':
				$widget_type = 'smartmag-large';
				$settings    = array_replace($settings, [
					'excerpt_length'  => Bunyad::options()->loop_large_excerpt_length,
					'style'           => 'lg',
					'large_style'     => 'legacy',
					'columns'         => 1,
				]);
				break;

			case 'timeline':
				$widget_type = 'smartmag-postssmall';
				$settings    = array_replace($settings, [
					'columns' => 1,
					'style'   => 'b'
				]);
				break;
		}

		$this->add_element([
			'widgetType' => $widget_type,
			'settings'   => $settings
		]);
	}

	public function process_ads_widget($settings)
	{
		// Convert common known settings.
		$settings = $this->convert_settings($settings, [
			'title' => 'label'
		]);

		$this->add_element([
			'widgetType' => 'smartmag-codes',
			'settings'   => array_replace($settings, [
				'_margin' => [
					'unit' => 'px',
					'top'  => 0,
					'right' => 0,
					'bottom' => 42,
					'left'   => 0,
					'isLinked' => false
				]
			])
		]);
	}

	/**
	 * Convert old [latest_gallery] which had two version: 3 col carousel, or 1 col slider.
	 */
	public function process_latest_gallery($settings)
	{
		// 'title' has been mapped to 'heading' at this point.
		if (isset($settings['heading'])) {
			$settings['heading_type'] = $this->map_heading('block');
		}

		$type = empty($settings['type']) ? 'carousel' : 'slider';

		$this->add_element([
			'widgetType' => 'smartmag-grid',
			'settings'   => array_replace($settings, [
				'container_width'    => 66,
				'columns'            => $type === 'slider' ? 1 : 3,
				'cat_labels'         => '0',
				'style'              => 'sm',
				'show_content'       => $type === 'slider' ? false : true,
				'excerpts'           => false,
				'meta_items_default' => false,
				'carousel'           => true,
				'show_post_formats'  => false,
				'carousel_slides'    => $type === 'slider' ? 1 : 3,
				'carousel_dots'      => false,
				'meta_below'         => [],
				'meta_above'         => [],
				'media_ratio'        => $type === 'carousel' ? 'custom' : '',
				'media_ratio_custom' => $type === 'carousel' ? '1.52' : ''
			])
		]);
	}

	public function process_text_widget($settings)
	{
		$this->add_element([
			'widgetType' => 'wp-widget-text',
			'settings'   => [
				'wp' => [
					'title'  => !empty($settings['heading']) ? $settings['heading'] : '',
					'text'   => $settings['text'],
					'filter' => isset($settings['filter']) ? $settings['filter'] : '',
				],
				'_margin' => [
					'unit' => 'px',
					'top'  => 0,
					'right' => 0,
					'bottom' => 42,
					'left'   => 0,
					'isLinked' => false
				]
			]
		]);
	}

	public function process_rich_text_widget($settings)
	{
		// Never really supported headings.
		// if (!empty($settings['title'])) {
		// 	$this->add_element([
		// 		'widgetType' => 'smartmag-heading',
		// 		'settings' => [
		// 			'heading' => $settings['title'],
		// 			'type'    => 'b',
		// 		]
		// 	]);
		// }

		$this->add_element([
			'widgetType' => 'text-editor',
			'settings'   => [
				'editor' => $settings['text'],
				'_margin' => [
					'unit' => 'px',
					'top'  => 0,
					'right' => 0,
					'bottom' => 42,
					'left'   => 0,
					'isLinked' => false
				]
			]
		]);
	}

	public function process_flickr_widget($settings)
	{
		$this->add_element([
			'widgetType' => 'wp-widget-bunyad_flickr_widget',
			'settings'   => [
				// Add empty title if missing.
				'wp' => $settings + [
					'title' => ''
				],
				'_margin' => [
					'unit' => 'px',
					'top'  => 0,
					'right' => 0,
					'bottom' => 42,
					'left'   => 0,
					'isLinked' => false
				]
			]
		]);
	}

	public function process_reviews_widget($settings)
	{
		$this->add_element([
			'widgetType' => 'wp-widget-bunyad-latest-reviews-widget',
			'settings'   => [
				// Add defaults if missing.
				'wp' => $settings + [
					'title'  => '',
					'number' => 5,
					'order'  => ''
				],
				'_margin' => [
					'unit' => 'px',
					'top'  => 0,
					'right' => 0,
					'bottom' => 42,
					'left'   => 0,
					'isLinked' => false
				]
			]
		]);
	}

	public function process_latest_posts_widget($settings)
	{
		$this->add_element([
			'widgetType' => 'wp-widget-bunyad-latest-posts-widget',
			'settings'   => [
				// Add empty title if missing.
				'wp' => $settings + [
					'title' => ''
				],
				'_margin' => [
					'unit' => 'px',
					'top'  => 0,
					'right' => 0,
					'bottom' => 42,
					'left'   => 0,
					'isLinked' => false
				]
			]
		]);
	}

	public function process_separator($settings) 
	{
		$new_settings = [
			'color' => Bunyad::options()->predefined_style === 'classic' ? '#d9d9d9' : '#e8e8e8',
			'gap'   => ['unit' => 'px', 'size' => 0],
			'_padding' => [
				'unit'   => 'px',
				'top'    => 0,
				'right'  => 0,
				'bottom' => 42,
				'left'   => 0,
				'isLinked' => false,
			]
		];

		if ($settings['type'] === 'space') {
			// Elementor transparency.
			$new_settings['color'] = '#FFFFFF00';
		}

		$this->add_element([
			'widgetType' => 'divider',
			'settings'   => $new_settings
		]);
	}

	protected function convert_settings($settings, $map = [])
	{
		$map = array_replace([
			'tax_tag' => 'tags',
			'cats'    => 'terms',
			'number'  => 'posts',
			'format'  => 'post_formats',
			'title'   => 'heading'
		], $map);

		$new = [];
		foreach ($settings as $key => $value) {
			if (isset($map[$key])) {
				$new[ $map[$key] ] = $value;
				continue;
			}

			$new[$key] = $value;
		}

		// Empty pagination should be numbers ajax now.
		if (!empty($settings['pagination'])) {
			if (empty($settings['pagination_type'])) {
				$new['pagination_type'] = 'numbers-ajax';
			}
		}
		
		// Empty is the old default, but incompatible with new.
		if (empty($new['posts'])) {
			unset($new['posts']);
		}

		// Fix post_formats.
		if (isset($new['post_formats']) && $new['post_formats'] === 'all') {
			unset($new['post_formats']);
		}

		// Fix 'cat' field.
		if (isset($new['cat'])) {
			if (!$new['cat'] || $new['cat'] === 'all') {
				unset($new['cat']);
			}
		}

		/**
		 * Legacy filters conversion.
		 */
		if (!empty($settings['sub_cats'])) {
			$new += [
				'filters'       => 'category',
				'filters_terms' => $settings['sub_cats'],
			];

			unset($new['sub_cats']);
		}

		if (!empty($settings['sub_tags'])) {
			$new += [
				'filters'      => 'tag',
				'filters_tags' => $settings['sub_tags'],
			];

			unset($new['sub_tags']);
		}

		return $new;
	}

	protected function map_heading($old)
	{
		$default = Bunyad::options()->predefined_style === 'classic' ? 'a2' : 'a';
		$map = [
			'block'        => $default,
			'block-filter' => $default,
			'default'      => '',
			'block-alt'    => 'd',
			'page'         => 'i',
			'none'         => 'none',
		];

		return isset($map[$old]) ? $map[$old] : '';
	}

	protected function start_section($structure = 10)
	{
		$section = [
			'id'       => $this->generate_random_string(),
			'elType'   => 'section',
			'settings' => [
				'gutter'    => 'default',
				'gap'       => 'no',
				'structure' => (string) $structure
			],
			'isInner'  => false,
			'elements' => []
		];

		// Add a sub-section.
		if ($this->current_section) {
			if (!$this->current_column) {
				$this->start_column();
			}

			$this->parent_sections[] = $this->current_section['id'];
			$section['isInner']    =  true;

			// Add to current column.
			$index = count($this->current_column['elements']) + 1;
			$this->current_column['elements'][$index] = $section;
			$this->current_section = &$this->current_column['elements'][$index];
		}
		else {
			// Add to main data.
			$index = count($this->elementor_data) + 1;
			$this->elementor_data[$index] = $section;
			$this->current_section = &$this->elementor_data[$index];
		}
	}

	protected function &find_by_id($id, &$_data = null, $depth = 1) {

		if (!$_data) {
			$_data = &$this->elementor_data;
		}

		$found = null;
		foreach ($_data as $key => $data) {
			if ($data['id'] === $id) {
				$found = &$_data[$key];
			}

			if (!$found && $data['elements']) {
				$found = &$this->find_by_id($id, $_data[$key]['elements'], $depth+1);
				if ($found) {
					break;
				}
			}
		}

		if ($found) {
			return $found;
		}

		return false;
	}

	protected function end_section()
	{
		// Get parent after closing an inner section.
		if ($this->current_section['isInner']) {

			$parent = array_pop($this->parent_sections);
			$this->current_section = &$this->find_by_id(
				$parent
			);

		}
		else {
			$this->parent_sections = [];
			$this->parent_columns  = [];
			unset($this->current_section);
		}
	}

	protected function start_column($size = 100)
	{
		$new_column = [
			'id'       => $this->generate_random_string(),
			'elType'   => 'column',
			'settings' => [
				'_column_size'          => round($size),
				'space_between_widgets' => 0
			],
			'isInner'  => false,
			'elements' => []
		];

		if ($this->current_column) {
			$this->parent_columns[] = $this->current_column['id'];
			$new_column['isInner'] = true;
		}

		$index = count($this->current_section['elements']) + 1;
		$this->current_section['elements'][$index] = $new_column;
		$this->current_column = &$this->current_section['elements'][$index];
	}

	protected function end_column()
	{
		// Nested end_column() has probably been called recently. Fallback to parent column.
		if ($this->parent_columns) {
			$this->current_column = &$this->find_by_id(
				array_pop($this->parent_columns)
			);
		}
		else {
			unset($this->current_column);
		}
	}

	protected function add_element($element)
	{
		$this->current_column['elements'][] = 
			 array_replace([
				'id'     => $this->generate_random_string(),
				'elType' => 'widget'
			], $element);
	}

	protected function generate_random_string()
	{
		return dechex(rand());
	}
}PK03Y�G5�vv+smartmag-core/inc/convert-v5/convert-v5.php<?php
namespace SmartMag\ConvertV5;

use \SmartMag_Core;
use \Bunyad;
use \Bunyad_Theme_Admin_Migrations_500Update;

/**
 * Convert from an older version to v5.0.
 */
class ConvertV5 
{
	public function __construct()
	{

		if (!Bunyad::get('theme')) {
			return;
		}

		add_action('admin_menu', [$this, 'menu'], 10);
		add_action('admin_init', [$this, 'init']);
	}

	public function init()
	{
		// All the AJAX actions.
		add_action('wp_ajax_smartmag_convert_v5_builder', [$this, 'convert_builder']);
		add_action('wp_ajax_smartmag_convert_v5_profiles', [$this, 'convert_profiles']);
		add_action('wp_ajax_smartmag_convert_v5_terms_meta', [$this, 'convert_terms_meta']);
		add_action('wp_ajax_smartmag_convert_v5_cleanup', [$this, 'convert_cleanup']);
	}

	/**
	 * Register admin views.
	 */
	public function menu()
	{
		add_submenu_page(
			'sphere-dash', 
			'Convert to v5', 
			'Convert to v5', 
			'manage_options', 
			'sphere-dash-convert-v5',
			[$this, 'admin_page']
		);
	}

	public function admin_page()
	{
		wp_register_script(
			'smartmag-convert-v5', 
			SmartMag_Core::instance()->path_url .'/inc/convert-v5/js/convert-v5.js',
			['jquery']
		);

		wp_localize_script('smartmag-convert-v5', 'SmartMag_Convert', [
			'ajaxUrl' => admin_url( 'admin-ajax.php' ),
		]);

		wp_enqueue_script('smartmag-convert-v5');

		$missing_plugins = [];
		if (!class_exists('SmartMag_Core')) {
			$missing_plugins[] = 'SmartMag Core';
		}
		
		if (!did_action('elementor/loaded')) {
			$missing_plugins[] = 'Elementor Page Builder';
		}
		
		if (!class_exists('\Sphere\Core\Plugin')) {
			$missing_plugins[] = 'Sphere Core';
		}

		if (!is_plugin_active('regenerate-thumbnails/regenerate-thumbnails.php')) {
			$missing_plugins[] = 'Regenerate Thumbnails';
		}

		include __DIR__ . '/views/admin-page.php';
	}

	public function set_env_configs()
	{
		// We want real errors only or AJAX request can fail.
		@error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
		@ini_set('display_errors', '0');
		@ini_set('memory_limit', '350M');
	}

	public function verify_nonce()
	{
		if (!wp_verify_nonce($_POST['nonce'] , 'smartmag_convert_v5')) {
			wp_send_json_error('Nonce missing');
		}
	}

	/**
	 * Convert SO builder to Elementor.
	 */
	public function convert_builder()
	{
		$this->set_env_configs();
		if ($this->verify_nonce()) {
			return;
		}

		$posts = get_posts([
			'posts_per_page' => -1,
			'post_type'      => 'page',
			'post_status'    => 'publish',
			'meta_query'     => [
				[
					'key'     => 'panels_data',
					'value'   => ['', 'a:0:{}'],
					'compare' => 'NOT IN'
				],
			]
		]);

		foreach ($posts as $post) {

			// if ($post->ID !== 2502) continue;
			$convert = new BunyadToElementor($post);
			$convert->convert();
		}

		wp_send_json_success();
	}

	/**
	 * Extra meta for profiles have bunyad_ prefix now.
	 */
	public function convert_profiles()
	{
		$this->set_env_configs();
		if ($this->verify_nonce()) {
			return;
		}

		$users = get_users();
		$fields = [
			'facebook', 'twitter', 'tumblr', 'instagram', 
			'pinterest', 'bloglovin', 'dribble', 'linkedin'
		];

		foreach ($users as $user) {
			foreach ($fields as $field) {
				$meta = get_user_meta($user->ID, $field, true);
				if (!$meta) {	
					continue;
				}

				delete_user_meta($user->ID, $field);
				update_user_meta($user->ID, 'bunyad_' . $field, $meta);
			}
		}

		wp_send_json_success();
	}

	/**
	 * Convert old terms meta, saved in options, before terms meta was a thing.
	 */
	public function convert_terms_meta()
	{
		$this->set_env_configs();
		if ($this->verify_nonce()) {
			return;
		}

		$cat_meta = Bunyad::options()->get_all('cat_meta_');
		foreach ($cat_meta as $key => $meta) {
			$id   = (int) str_replace('cat_meta_', '', $key);
			$meta = $this->map_term_meta($meta);

			foreach ($meta as $meta_key => $meta_value) {
				update_term_meta($id, '_bunyad_' . $meta_key, $meta_value);
			}
		}

		wp_send_json_success();
	}

	/**
	 * Map term meta options to the new values.
	 *
	 * @param array $meta
	 * @return array
	 */
	protected function map_term_meta($meta)
	{
		// Fix pagination.
		if (!empty($meta['pagination_type'])) {
			$meta['pagination_type'] = $meta['pagination_type'] === 'normal' ? 'numbers' : $meta['pagination_type'];
		}

		if (empty($meta['slider'])) {
			$meta['slider'] = 'none';
		}

		if (empty($meta['slider_type'])) {
			$meta['slider_type'] = 'classic';
		}	

		// Update meta template based on the conversion for old 'default_cat_template' option.
		if (!empty($meta['template'])) {
			$meta['template'] = Bunyad_Theme_Admin_Migrations_500Update::get_loop_template($meta['template']);
		}

		// Set correct slider_type and numbers.
		switch ($meta['slider_type']) {
			case 'grid':
				$meta['slider_type'] = 'grid-a';
				$meta['slider_number'] = 5;
				break;

			case 'grid-b':
				$meta['slider_type'] = 'grid-d';
				$meta['slider_number'] = 4;
				break;
			
			case 'classic':
				$meta['slider_number'] = 5; // +3 added
				break;
		}

		return $meta;
	}

	public function convert_cleanup()
	{
		// All done. Remove the flag.
		delete_option('smartmag_convert_from_v3');

		// Flush css caches for cat meta.
		Bunyad::get('custom_css')->flush_cache();

		wp_send_json_success();
	}

}PK03Yg�2!��-smartmag-core/inc/convert-v5/js/convert-v5.jsjQuery(function($) {

	const queue = ['builder', 'profiles', 'terms_meta', 'cleanup'];
	let nonce;
	let isProcessing = false;

	function init() {
		$('.smartmag-convert-begin').on('click', function() {	
			nonce = $(this).data('nonce');
			$(this).remove();

			beginConversion();

			return false;
		});

		window.addEventListener('beforeunload', function (e) {
			if (!isProcessing) {
				return;
			}
			e.preventDefault();

			// Chrome requires returnValue to be set
			e.returnValue = '';
		});
	}

	function beginConversion() {
		if (!nonce) {
			return;
		}
	
		convertNext();
	}

	function convertNext() {

		const item  = queue.shift();

		// All done if nothing left.
		if (!item) {
			$('.ts-migrations-done').show();

			isProcessing = false;
			return;
		}

		isProcessing = true;

		const progress = $(`.ts-migrations .convert-${ item.replace('_', '-') } .progress`);
		progress.removeClass('pending').addClass('processing').html('<span class="spinner is-active"></span> Processing');

		const failed = () => {
			progress.addClass('error').text('Failed');
			isProcessing = false;
		};

		$.post(
			SmartMag_Convert.ajaxUrl, 
			{
				nonce: nonce,
				action: 'smartmag_convert_v5_' + item
			}, 
			function(data) {
				if (data && data.success) {
					progress.addClass('success').text('Completed');
					convertNext();
					return;
				}

				failed();
			}
		)
		.fail(failed);
	}

	init();

});PK03YOv 	 	1smartmag-core/inc/convert-v5/views/admin-page.php<div class="ts-migrations wrap">
	<h1>Convert to SmartMag v5.0</h1>
	<p>SmartMag v5.0 is a major release and requires conversion of some old content to new format.</p>
	<hr />

	<?php if ($missing_plugins): ?>

		<div class="error">
			<h3>REQUIRED PLUGINS</strong></h3>
			<p>There are a few plugins required to be installed and updated before the conversion can begin. Please install/update the following plugins from SmartMag > Install Plugins:</p>
			<p><strong><?php echo esc_html(join(', ', $missing_plugins)); ?></strong>.</p>
		</div>

	<?php else: ?>
			
		<p><strong>The following have to be converted:</strong></p>

		<table class="ts-migration-table widefat striped" style="max-width: 600px">
			<tr class="item convert-builder">
				<td>Bunyad Page Builder Pages</td>
				<td class="progress pending">Pending...</td>
			</tr>	

			<tr class="item convert-profiles">
				<td>User Profile Fields</td>
				<td class="progress pending">Pending...</td>
			</tr>

			<tr class="item convert-terms-meta">
				<td>Categories Options</td>
				<td class="progress pending">Pending...</td>
			</tr>	

			<tr class="item convert-cleanup">
				<td>Cleanup</td>
				<td class="progress pending">Pending...</td>
			</tr>	
		</table>

		<p>
			<button class="smartmag-convert-begin button button-primary button-hero" 
				data-nonce="<?php echo wp_create_nonce('smartmag_convert_v5'); ?>">Begin conversion</button>
		</p>

		<div class="ts-migrations-done">
			<h2>&raquo; Just One More Step: Regenerate Thumbnails...</h2>
			<p>
				Image sizes have changed, so please go to <a href="<?php echo admin_url('tools.php?page=regenerate-thumbnails'); ?>">Tools > Regenerate Thumbnails</a> 
				and click Regenerate Thumbnails for all button.
			</p>
			<p>If you have thousands of images, you may instead click the button "Regenerate Thumbnails for the x Featured Images Only".</p>
		</div>

	<?php endif; ?>
	
</div>

<style>
	.ts-migrations .notice {
		display: none !important;
	}

	.ts-migration-table .progress {
		font-size: 12px;
		display: flex;
    	align-items: center;
    	justify-content: left;
	}

	.ts-migration-table .progress.pending {
		opacity: .7;
	}

	.ts-migration-table .error {
		color: red;
	}

	.ts-migration-table .success {
		color: green;
	}

	.ts-migrations-done {
		display: none;
		margin-top: 10px;
	}
</style>PK03Yc�T��+smartmag-core/inc/elementor/base-widget.php<?php

namespace Bunyad\Elementor;

use Elementor\Controls_Manager;
use Bunyad;

/**
 * The base widget for all Elementor Widgets.
 */
abstract class BaseWidget extends \Elementor\Widget_Base 
{
	/**
	 * Options object
	 */
	public $options;
	public $block_class;

	/**
	 * @inheritDoc
	 */
	public function __construct($data = [], $args = null)
	{
		// The name of this class is supposed to match: \Bunyad\Blocks\Loops\Grid_Elementor
		// which will be converted \Bunyad\Blocks\Loops\Grid
		$this->block_class = str_replace('_Elementor', '', get_class($this));

		parent::__construct($data, $args);
	}

	/**
	 * Get the options class for this widget.
	 */
	public function get_options($init_editor = false) 
	{
		if (!$this->options) {

			$class = $this->block_class . '_Options';

			$this->options = new $class;
			$this->options->init();
		}

		if ($init_editor) {
			$this->options->init_editor();
		}
		
		return $this->options;
	}

	public function get_name()
	{
		$name = explode('\\', $this->block_class);
		return 'smartmag-' . str_replace('\\', '_', strtolower(end($name)));
	}

	public function get_title()
	{
		return $this->get_block_config('title');
	}

	public function get_icon() 
	{
		return $this->get_block_config('icon');
	}

	public function get_categories()
	{
		return $this->get_block_config('categories');
	}

	/**
	 * Get elementor configs from the block options object.
	 */
	public function get_block_config($key)
	{
		return $this->get_options()->elementor_conf[ $key ];
	}

	/**
	 * Render Widget HTML
	 */
	protected function render()
	{
		if (class_exists('\SmartMag_Core') && empty(\SmartMag_Core::instance()->theme_supports['blocks'])) {
			return;
		}

		$settings = $this->_process_settings();

		// DEBUG the difference between two:
		// print_r($this->get_data('settings'));
		// print_r($settings);

		/** @var \Bunyad\Blocks\Base\Block $block */
		$block = Bunyad::blocks()->load(
			str_replace('Bunyad\Blocks\\', '', $this->block_class),
			$settings
		);

		$block->render();
	}

	/**
	 * Process and return settings for block.
	 *
	 * @return array
	 */
	protected function _process_settings()
	{
		// Elementor mostly only really saves the changed props (except few strays).
		// Available via $this->get_data('settings')
		// In editor mode, $this->get_data('settings') gets all settings, but on frontend
		// only the changed data. So we're using get_settings_for_display() instead.

		$settings = array_replace(
			$this->get_settings_for_display(),
			[
				'is_sc_call' => true
			]
		);

		/** 
		 * Convert responsive values to local recognized.
		 * 
		 * Example: column_mobile to column_small.
		 */
		$map = [
			'desktop' => 'main', 
			'tablet'  => 'medium',
			'mobile'  => 'small'
		];

        foreach ($settings as $key => $value) {

			$suffix = substr(strrchr($key, '_'), 1);
			if ($suffix && isset($map[$suffix])) { 
				$to = preg_replace('/'. $suffix .'$/', $map[$suffix], $key);
				$settings[$to] = $value;
			}
		}

		return $settings;
	}

	/**
	 * Register the controls for this elementor widget.
	 * 
	 * Called on both front and backend.
	 */
	protected function register_controls()
	{
		$options = $this->get_options(self::is_elementor());

		if (!is_object($options)) {
			return;
		}

		// Get the sections array
		$section_data = $options->get_sections();

		static::do_register_controls($this, $options, $section_data);
	}

	/**
	 * Register the controls on the provided element/widget.
	 *
	 * @param \Elementor\Controls_Stack $element
	 * @param \Bunyad\Blocks\Base\LoopOptions $options_obj
	 * @param array $section_data
	 * @return void
	 */
	public static function do_register_controls($element, $options_obj, $section_data = [])
	{
		$options = $options_obj->get_all();
		/**
		 * Go through the sections and options
		 */
		foreach ($options as $section_key => $section_opts) {

			$element->start_controls_section($section_key, $section_data[$section_key]);

			foreach ($section_opts as $option_key => $option) {

				// If options are a callback, that means the processing is done only when in 
				// elementor edit mode.
				// if (static::is_elementor()) {
				// 	$option = $options_obj->do_option_callbacks($option);
				// }

				$options = static::_map_control($option);

				if ($options['type'] === 'group') {
					$element->add_group_control(
						$options['group_type'], 
						['name' => $option_key] + $options
					);
				}
				else if (isset($options['devices'])) {
					if (!is_array($options['devices'])) {
						unset($options['devices']);
					}

					$element->add_responsive_control($option_key, $options);
				}
				else {
					$element->add_control($option_key, $options);
				}
			}

			$element->end_controls_section();
		}
	}

	/**
	 * Convert the option to an elementor compatible control array.
	 */
	protected static function _map_control($option)
	{
		// Group type.
		if ($option['type'] === 'group') {
			switch ($option['group_type']) {
				case 'typography':
					$option['group_type'] = \Elementor\Group_Control_Typography::get_type();
					break;

				case 'background':
					$option['group_type'] = \Elementor\Group_Control_Background::get_type();
					break;

				case 'box-shadow':
					$option['group_type'] = \Elementor\Group_Control_Box_Shadow::get_type();
					break;

				case 'bunyad-border':
					$option['group_type'] = Controls\Groups\Border::get_type();
					break;
			}
		}

		// Know types map with elementor
		$types = [
			'text'     => Controls_Manager::TEXT,
			'textarea' => Controls_Manager::TEXTAREA,
			'richtext' => Controls_Manager::WYSIWYG,
			'number'   => Controls_Manager::NUMBER,
			'select'   => Controls_Manager::SELECT,
			'choose'   => Controls_Manager::CHOOSE,
			'switcher' => Controls_Manager::SWITCHER,
			'slider'   => Controls_Manager::SLIDER,
			'color'    => Controls_Manager::COLOR,
			'icon'     => Controls_Manager::ICON,
			'media'    => Controls_Manager::MEDIA,
			'html'     => Controls_Manager::RAW_HTML,
			'heading'  => Controls_Manager::HEADING,
			'hidden'   => Controls_Manager::HIDDEN,
			'dimensions' => Controls_Manager::DIMENSIONS,
		];

		$mapped = $option;

		if (array_key_exists($option['type'], $types)) {
			$mapped = array_replace($option, [
				'type' => $types[ $option['type'] ]
			]);
		}

		if (isset($option['input_attrs'])) {
			$mapped += (array) $option['input_attrs'];
		}

		// For color control, description is missing in Elementor.
		if ($mapped['type'] === 'color' && isset($mapped['description'])) {
			$mapped['label'] .= sprintf(
				'<p class="elementor-control-field-description" style="max-width: 160px;">%s</p>',
				$mapped['description']
			);
			unset($mapped['description']);
		}

		// Add devices.
		// Removed in v9.2. Not changing it means all default elementor breakpoints will be added instead.
		// if (isset($option['devices']) && !is_array($option['devices'])) {
		// 	$mapped['devices'] = ['desktop', 'tablet', 'mobile'];
		// }

		// Keys not needed
		unset($mapped['section']);

		// Remove callables if not already removed.
		unset($mapped['editor_callback']);
		if (isset($mapped['options']) && is_callable($mapped['options'])) {
			$mapped['options'] = [];
		}

		return $mapped;
	}

	/**
	 * Create an array with sections as keys.
	 * 
	 * @deprecated No longer used
	 */
	protected function _map_sections($options)
	{
		$new = [];

		foreach ($options as $key => $data) {
			if (empty($data['section'])) {
				$data['section'] = 'general';
			}

			if (empty($new[$data['section']])) {
				$new[$data['section']] = [];
			}

			$new[$data['section']][$key] = $data;
		}

		return $new;
	}

	/**
	 * Check if we are in the Elementor editor.
	 * 
	 * @return bool True if in Elementor Edit Mode
	 */
	public static function is_elementor()
	{
		if (!class_exists('\Elementor\Plugin', false)) {
			return false;
		}
		
		// Elmentor may use AJAX to get widget configs etc.
		if (isset($_REQUEST['action']) && $_REQUEST['action'] === 'elementor_ajax') {
			return true;
		}
		
		if (\Elementor\Plugin::$instance->editor->is_edit_mode()) {
			return true;
		}

		return false;
	}
}PK03Yl7p0smartmag-core/inc/elementor/classmap-widgets.php<?php

/**
 * Generate a list of widgets classes concat in one file to prevent generation of 
 * unnecessary elementor.php files.
 */

// Loop blocks.
namespace Bunyad\Blocks\Loops {
	use Bunyad\Elementor\LoopWidget;

	class Grid_Elementor extends LoopWidget {}
	class Large_Elementor extends LoopWidget {}
	class Overlay_Elementor extends LoopWidget {}
	class FeatGrid_Elementor extends LoopWidget {}
	class FocusGrid_Elementor extends LoopWidget {}
	class NewsFocus_Elementor extends LoopWidget {}
	class Highlights_Elementor extends LoopWidget {}
	class PostsList_Elementor extends LoopWidget {}
	class PostsSmall_Elementor extends LoopWidget {}
	class PostsGallery_Elementor extends LoopWidget {}
}

namespace Bunyad\Blocks {
	use Bunyad\Elementor\BaseWidget;
	
	// Other blocks.
	class Newsletter_Elementor extends BaseWidget {}
	class Heading_Elementor extends BaseWidget {}
	class Codes_Elementor extends BaseWidget {}
	class Breadcrumbs_Elementor extends BaseWidget {}
	class SocialIcons_Elementor extends BaseWidget {}
}PK03Y��?0smartmag-core/inc/elementor/extend-container.php<?php

namespace Bunyad\Elementor;

/**
 * Extra containers.
 */
class ExtendContainer extends ExtendSection
{
	protected $type = 'container';

	public function __construct()
	{
		// Add section query section after layout section.
		add_action('elementor/element/container/section_layout_container/after_section_end', [$this, 'add_query_controls'], 10, 2);

		// Add extra sections after specific existing sections.
		add_action('elementor/element/after_section_end', [$this, 'add_options_sections'], 10, 2);

		// Add extra controls for the section element, in several sections.
		add_action('elementor/element/before_section_end', [$this, 'add_options_controls'], 10, 2);

		// Add render attributes for gutter.
		// add_action('elementor/frontend/section/before_render', [$this, 'section_gutter_attr']);

		// Modify JS template for section
		// add_action('elementor/section/print_template', [$this, 'section_modify_template']);


		// Add some more controls to the beginning.
		add_action('elementor/element/container/section_layout_container/after_section_start', function($section) {
			$section->add_control(
				'ts_spacing',
				[
					'label'       => esc_html__('Match Theme Spacing', 'bunyad-admin'),
					'type'        => \Elementor\Controls_Manager::SWITCHER,
					'description' => esc_html__('Applies theme paddings and widths based on device. Only for top-level containers.', 'bunyad-admin'),
					//'separator'   => 'before',
					'default'      => '',
					'prefix_class' => '',
					'return_value' => 'ts-el-con',
					'condition'    => ['content_width' => 'boxed']
				]
			);
		});
	}

	public function add_controls($section) {

		// $section->add_control(
		// 	'ts_sticky_col',
		// 	[
		// 		'label'       => esc_html__('Sticky Column', 'bunyad-admin'),
		// 		'type'        => \Elementor\Controls_Manager::SWITCHER,
		// 		'description' => esc_html__('Makes sticky using browser native sticky.', 'bunyad-admin'),
		// 		//'separator'   => 'before',
		// 		'default'      => '',
		// 		// 'prefix_class' => '',
		// 		// 'return_value' => 'ts-sticky-col',
		// 	]
		// );
		$section->add_control(
			'ts_sticky_col',
			[
				'label'       => esc_html__('Sticky Column', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SELECT,
				'description' => esc_html__('Makes column sticky while scrolling. Native sticky is faster on slower laptops, but smart sticky has better UX.', 'bunyad-admin'),
				'separator'   => 'after',
				'options'     => [
					'' => esc_html__('Disabled', 'bunyad-admin'),
					'ts-sticky-native' => esc_html__('Native Sticky', 'bunyad-admin'),
					'ts-sticky-col'    => esc_html__('Smart Sticky', 'bunyad-admin'),
				],
				'default'      => '',
				'prefix_class' => '',
			]
		);

		$section->add_control(
			'is_sidebar',
			[
				'label'       => esc_html__('Is Sidebar?', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Check if this column is a sidebar.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'main-sidebar',
				'condition'    => ['is_main' => '']
			]
		);

		$section->add_control(
			'sidebar_sticky',
			[
				'label'       => esc_html__('Sticky Sidebar', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Check if this column is a sidebar.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'main-sidebar ts-sticky-col',
				'condition'    => ['is_sidebar!' => '', 'ts_sticky_col' => '']
			]
		);

		$section->add_control(
			'is_main',
			[
				'label'       => esc_html__('Is Main Column', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Check if this column is adjacent to a sidebar.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'main-content',
				'condition'    => ['is_sidebar' => '']
			]
		);

		$section->add_control(
			'add_separator',
			[
				'label'       => esc_html__('Add Separator', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Add a separator line.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'el-col-sep',
			]
		);


		$section->add_responsive_control(
			'column_order',
			[
				'label'       => esc_html__('Column Order', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::NUMBER,
				'description' => esc_html__('Rearrange columns by setting order for each.', 'bunyad-admin'),
				'default'      => '',
				'selectors'    => [
					'{{WRAPPER}}' => 'order: {{VALUE}};'
				]
			]
		);
	}
}PK03Yw���%�%.smartmag-core/inc/elementor/extend-section.php<?php

namespace Bunyad\Elementor;
use Elementor\Controls_Manager;

/**
 * Extra containers.
 */
class ExtendSection
{
	protected $type = 'section';

	public function __construct()
	{
		// Add section query section after layout section.
		add_action('elementor/element/section/section_layout/after_section_end', [$this, 'add_query_controls'], 10, 2);

		// Add extra sections after specific existing sections.
		add_action('elementor/element/after_section_end', [$this, 'add_options_sections'], 10, 2);

		// Add extra controls for the section element, in several sections.
		add_action('elementor/element/before_section_end', [$this, 'add_options_controls'], 10, 2);

		// Add render attributes for gutter.
		add_action('elementor/frontend/section/before_render', [$this, 'add_gutter_attr']);

		// Modify JS template for section
		add_action('elementor/section/print_template', [$this, 'modify_template']);

		/**
		 * Extend Column Element.
		 */
		// Extend the section in layout section.
		add_action('elementor/element/column/layout/after_section_start', [$this, 'add_column_controls']);
	}

	/**
	 * Add the "section/container query" controls.
	 *
	 * @param \Elementor\Includes\Elements\Container $section
	 * @param array $args
	 * @return void
	 */
	public function add_query_controls($section, $args)
	{
		// This is required class.
		if (!class_exists('\Bunyad\Blocks\Base\LoopOptions')) {
			return;
		}

		$options_obj = new SectionOptions;
		$sections    = [
			'sec-query' => [
				'label' => esc_html__('Section Query', 'bunyad-admin'),
				'tab'   => $args['tab']
			]
		];

		LoopWidget::do_register_controls($section, $options_obj, $sections);
	}

	public function add_column_controls($section) {

		// $section->add_control(
		// 	'ts_sticky_col',
		// 	[
		// 		'label'       => esc_html__('Sticky Column', 'bunyad-admin'),
		// 		'type'        => \Elementor\Controls_Manager::SWITCHER,
		// 		'description' => esc_html__('Makes sticky using browser native sticky.', 'bunyad-admin'),
		// 		//'separator'   => 'before',
		// 		'default'      => '',
		// 		// 'prefix_class' => '',
		// 		// 'return_value' => 'ts-sticky-col',
		// 	]
		// );
		$section->add_control(
			'ts_sticky_col',
			[
				'label'       => esc_html__('Sticky Column', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SELECT,
				'description' => esc_html__('Makes column sticky while scrolling. Native sticky is faster on slower laptops, but smart sticky has better UX.', 'bunyad-admin'),
				'separator'   => 'after',
				'options'     => [
					'' => esc_html__('Disabled', 'bunyad-admin'),
					'ts-sticky-native' => esc_html__('Native Sticky', 'bunyad-admin'),
					'ts-sticky-col'    => esc_html__('Smart Sticky', 'bunyad-admin'),
				],
				'default'      => '',
				'prefix_class' => '',
			]
		);

		$section->add_control(
			'is_sidebar',
			[
				'label'       => esc_html__('Is Sidebar?', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Check if this column is a sidebar.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'main-sidebar',
				'condition'    => ['is_main' => '']
			]
		);

		$section->add_control(
			'sidebar_sticky',
			[
				'label'       => esc_html__('Sticky Sidebar', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Check if this column is a sidebar.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'main-sidebar ts-sticky-col',
				'condition'    => ['is_sidebar!' => '', 'ts_sticky_col' => '']
			]
		);

		$section->add_control(
			'is_main',
			[
				'label'       => esc_html__('Is Main Column', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Check if this column is adjacent to a sidebar.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'main-content',
				'condition'    => ['is_sidebar' => '']
			]
		);

		$section->add_control(
			'add_separator',
			[
				'label'       => esc_html__('Add Separator', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::SWITCHER,
				'description' => esc_html__('Add a separator line.', 'bunyad-admin'),
				//'separator'   => 'before',
				'default'      => '',
				'prefix_class' => '',
				'return_value' => 'el-col-sep',
			]
		);


		$section->add_responsive_control(
			'column_order',
			[
				'label'       => esc_html__('Column Order', 'bunyad-admin'),
				'type'        => \Elementor\Controls_Manager::NUMBER,
				'description' => esc_html__('Rearrange columns by setting order for each.', 'bunyad-admin'),
				'default'      => '',
				'selectors'    => [
					'{{WRAPPER}}' => 'order: {{VALUE}};'
				]
			]
		);
	}

	/**
	 * Add extra sections after other sections.
	 *
	 * @param \Elementor\Element_Base $section
	 * @param string $section_id
	 * @return void
	 */
	public function add_options_sections($section, $section_id)
	{
		if (!method_exists($section, 'get_type') || $section->get_type() !== $this->type) {
			return;
		}

		/**
		 * Dark Background section.
		 */
		if ($section_id === 'section_background') {

			$section->start_controls_section(
				'section_background_sd',
				[
					'label' => esc_html__('Dark Mode: Background', 'bunyad-admin'),
					'tab' => \Elementor\Controls_Manager::TAB_STYLE,
				]
			);

			$section->add_group_control(
				\Elementor\Group_Control_Background::get_type(),
				[
					'name'  => 'background_sd',
					'types' => ['classic', 'gradient'],
					'fields_options' => [
						'background' => [
							'frontend_available' => true,
						],
					],
					'selector' => '.s-dark {{WRAPPER}}',
				]
			);

			$section->end_controls_section();
		}

		/**
		 * Dark Border section.
		 */
		if ($section_id === 'section_border') {

			$section->start_controls_section(
				'section_border_sd',
				[
					'label' => esc_html__('Dark Mode: Border', 'bunyad-admin'),
					'tab' => \Elementor\Controls_Manager::TAB_STYLE,
				]
			);

			$section->add_group_control(
				\Elementor\Group_Control_Border::get_type(),
				[
					'name'     => 'border_sd',
					'selector' => '.s-dark {{WRAPPER}}',
				]
			);

			$section->end_controls_section();
		}
	}

	/**
	 * Add extra controls to the sections.
	 *
	 * @param \Elementor\Element_Base $section
	 * @param string $section_id
	 * @return void
	 */
	public function add_options_controls($section, $section_id)
	{
		if (!method_exists($section, 'get_type') || $section->get_type() !== $this->type) {
			return;
		}

		/**
		 * Layout section controls.
		 * 
		 * @todo Move to SectionsOptions class where possible.
		 */
		if ($section_id === 'section_layout') {
			$section->add_control(
				'is_full_xs',
				[
					'label'       => esc_html__('Full-width on Mobile?', 'bunyad-admin'),
					'description' => '',
					'type'        => \Elementor\Controls_Manager::SWITCHER,
					'default'      => '',
					'prefix_class' => '',
					'return_value' => 'is-full-xs',
				],
				[
					'position'    => [
						'at' => 'before',
						'of' => 'gap'
					]
				]
			);

			$section->add_control(
				'gutter',
				[
					'label'       => esc_html__('Space Between Columns (Vertical)', 'bunyad-admin'),
					'type'        => 'select',
					'description' => esc_html__('This is different from Gap as it only applies vertically between columns excluding the left-most and right-most column.. Gap applies in both directions and also at beginning and end..', 'bunyad-admin'),
					'options'     => [
						'default' => esc_html__('Default Spacing', 'bunyad-admin'),
						'none'    => esc_html__('None', 'bunyad-admin'),
						'sm'      => esc_html__('Small Spacing', 'bunyad-admin'),
						'lg'      => esc_html__('Large Spacing', 'bunyad-admin'),
						'xlg'     => esc_html__('Wide Spacing', 'bunyad-admin'),
					],
					'label_block' => true,
					//'separator'   => 'before',
	
					// Keeping default to none for elementor imports.
					'default'     => 'none',
				],
				[
					'position'    => [
						'at' => 'before', 
						'of' => 'gap'
					]
				]
			);
		}

		if ($section_id === 'section_background') {
			$section->add_control(
				'is_dark_section',
				[
					'label'       => esc_html__('Is Dark Section', 'bunyad-admin'),
					'description' => 'Set to auto-adjust all SmartMag block colors under this section.',
					'type'        => \Elementor\Controls_Manager::SWITCHER,
					'separator'   => 'before',
					'default'      => '',
					'prefix_class' => '',
					'return_value' => 's-dark',
				]
			);
		}
	}

	/**
	 * Hook Callback: Add gutter attributes for section
	 * 
	 * @param \Elementor\Element_Section $section
	 */
	public function add_gutter_attr($section) 
	{
		if (!is_callable([$section, 'add_render_attribute'])) {
			return;
		}

		$spacing = $section->get_settings('gutter');
		if ($spacing && $spacing !== 'none') {
			$section->add_render_attribute(
				'_wrapper',
				'class',
				[
					'has-el-gap',
					'el-gap-' . $spacing,
				]
			);
		}
	}

	/**
	 * Hook Callback: Modify the content_template output for section
	 */
	public function modify_template($content)
	{
		ob_start();
		?>
			<# 
			if (view && view.$el) {
				view.$el.removeClass('has-el-gap el-gap-default el-gap-sm el-gap-lg el-gap-xlg');

				if (settings.gutter && settings.gutter !== 'none') {
					view.$el.addClass('has-el-gap el-gap-' + settings.gutter);
				}
			}
			#>
		<?php

		return ob_get_clean() . $content;
	}
}PK03Y
l�2�%�%.smartmag-core/inc/elementor/extend-widgets.php<?php

namespace Bunyad\Elementor;

use Elementor\Controls_Manager;

/**
 * Extra controls for widgets.
 */
class ExtendWidgets
{
	public function __construct()
	{
		add_action('elementor/element/after_section_end', [$this, 'extend_column_sections'], 9999, 2);
		add_action('elementor/element/after_section_end', [$this, 'extend_widgets_sections'], 9999, 2);
		add_action('elementor/element/before_section_end', [$this, 'extend_controls'], 9999, 2);

		// Add social links from global if missing.
		add_action('elementor/widget/before_render_content', [$this, 'add_social_links']);
	}

	/**
	 * Extend columns controls.
	 *
	 * @param \Elementor\Element_Base $section
	 * @param string $section_id
	 * @return void
	 */
	public function extend_column_sections($element, $section_id)
	{
		if (!method_exists($element, 'get_type') || $element->get_type() !== 'column') {
			return;
		}

		/**
		 * Dark Background section.
		 */
		if ($section_id === 'section_style') {

			$element->start_controls_section(
				'section_background_sd',
				[
					'label' => esc_html__('Dark Mode: Background', 'bunyad-admin'),
					'tab' => \Elementor\Controls_Manager::TAB_STYLE,
				]
			);

			$element->add_group_control(
				\Elementor\Group_Control_Background::get_type(),
				[
					'name'  => 'background_sd',
					'types' => ['classic', 'gradient'],
					'fields_options' => [
						'background' => [
							'frontend_available' => true,
						],
					],
					'selector' => '.s-dark {{WRAPPER}} > .elementor-widget-wrap',
				]
			);

			$element->end_controls_section();
		}

		/**
		 * Dark Border section.
		 */
		if ($section_id === 'section_border') {

			$element->start_controls_section(
				'section_border_sd',
				[
					'label' => esc_html__('Dark Mode: Border', 'bunyad-admin'),
					'tab' => \Elementor\Controls_Manager::TAB_STYLE,
				]
			);

			$element->add_group_control(
				\Elementor\Group_Control_Border::get_type(),
				[
					'name'     => 'border_sd',
					'selector' => '.s-dark {{WRAPPER}} > .elementor-element-populated',
				]
			);

			$element->end_controls_section();
		}
	}

	/**
	 * Extend widget sections.
	 *
	 * @param \Elementor\Element_Base $section
	 * @param string $section_id
	 * @return void
	 */
	public function extend_widgets_sections($element, $section_id)
	{
		if (!method_exists($element, 'get_type') || in_array($element->get_type(), ['column', 'section'])) {
			return;
		}

		/**
		 * Dark Background section.
		 */
		if ($section_id === '_section_background') {

			$element->start_controls_section(
				'_section_background_sd',
				[
					'label' => esc_html__('Dark Mode: Background', 'bunyad-admin'),
					'tab' => \Elementor\Controls_Manager::TAB_ADVANCED,
				]
			);

			$element->add_group_control(
				\Elementor\Group_Control_Background::get_type(),
				[
					'name'  => '_background_sd',
					'types' => ['classic', 'gradient'],
					'fields_options' => [
						'background' => [
							'frontend_available' => true,
						],
					],
					'selector' => '.s-dark {{WRAPPER}} > .elementor-widget-container',
				]
			);

			$element->end_controls_section();
		}

		/**
		 * Dark Border section.
		 */
		if ($section_id === '_section_border') {

			$element->start_controls_section(
				'_section_border_sd',
				[
					'label' => esc_html__('Dark Mode: Border', 'bunyad-admin'),
					'tab' => \Elementor\Controls_Manager::TAB_ADVANCED,
				]
			);

			$element->add_group_control(
				\Elementor\Group_Control_Border::get_type(),
				[
					'name'     => '_border_sd',
					'selector' => '.s-dark {{WRAPPER}} > .elementor-widget-container',
				]
			);

			$element->end_controls_section();
		}
	}


	/**
	 * Add extra controls to the editor widgets.
	 *
	 * @param \Elementor\Element_Base $section
	 * @param string $section_id
	 * @return void
	 */
	public function extend_controls($element, $section_id)
	{
		if (!method_exists($element, 'get_name')) {
			return;
		}

		switch ($element->get_name())
		{
			case 'text-editor':
				$this->text_editor_controls($element, $section_id);
				break;

			case 'divider':
				$this->divider_controls($element, $section_id);
				break;

			case 'icon-list':
				$this->icon_list_controls($element, $section_id);
				break;
		}

		$advanced = [
			// Columns and sections advanced section.
			'section_advanced',
			// Widgets advanced section
			'_section_style'
		];

		if (in_array($section_id, $advanced)) {
			$this->dark_mode_controls($element, $section_id);
		}
	}

	/**
	 * Add controls for dark mode to hide / show.
	 *
	 * @return void
	 */
	public function dark_mode_controls($element, $section_id)
	{
		$element->add_control(
			'ts_hide_s_dark',
			[
				'label' => esc_html__('Hide In Dark Mode', 'bunyad-admin'),
				'type' => Controls_Manager::SWITCHER,
				'default' => '',
				'prefix_class' => 'ts-el-',
				'label_on' => 'Hide',
				'label_off' => 'Show',
				'separator' => 'before',
				'return_value' => 'hide-s-dark',
			]
		);

		$element->add_control(
			'ts_hide_s_light',
			[
				'label' => esc_html__('Hide In Light Mode', 'bunyad-admin'),
				'type' => Controls_Manager::SWITCHER,
				'default' => '',
				'prefix_class' => 'ts-el-',
				'label_on' => 'Hide',
				'label_off' => 'Show',
				'return_value' => 'hide-s-light',
			]
		);
	}

	/**
	 * Add extra controls to the text editor widget.
	 *
	 * @param \Elementor\Element_Base $section
	 * @param string $section_id
	 * @return void
	 */
	public function text_editor_controls($element, $section_id)
	{
		if ($section_id === 'section_editor') {
			$element->add_control(
				'theme_content_style',
				[
					'label'       => esc_html__('Theme Content Style', 'bunyad-admin'),
					'description' => '',
					'type'        => Controls_Manager::SWITCHER,
					'default'      => '',
					'prefix_class' => '',
					'return_value' => 'post-content',
				],
				[
					'position' => [
						'at' => 'after',
						'of' => 'editor'
					]
				]
			);
		}

		if ($section_id === 'section_style') {
			$element->add_control(
				'text_color_sd',
				[
					'label' => esc_html__('Dark: Text Color', 'bunyad-admin'),
					'type' => Controls_Manager::COLOR,
					'default' => '',
					'selectors' => [
						'.s-dark {{WRAPPER}}' => 'color: {{VALUE}};',
					],
				],
				[
					'position' => [
						'at' => 'after',
						'of' => 'text_color'
					]
				]
			);	
		}
	}

	/**
	 * Divider widget.
	 */
	public function divider_controls($element, $section_id)
	{
		if ($section_id === 'section_divider_style') {
			$element->add_control(
				'color_sd',
				[
					'label'       => esc_html__('Dark: Color', 'bunyad-admin'),
					'type'        => Controls_Manager::COLOR,
					'default'     => '',
					'render_type' => 'template',
					'selectors'   => [
						'.s-dark {{WRAPPER}}' => '--divider-color: {{VALUE}}',
					],
				],
				[
					'position' => [
						'at' => 'after',
						'of' => 'color'
					]
				]
			);
		}
	}

	/**
	 * Icon list widget.
	 */
	public function icon_list_controls($element, $section_id)
	{
		if ($section_id === 'section_icon_list') {
			$element->update_control('divider_color', ['default' => 'var(--c-separator2)']);
			$element->add_control(
				'divider_color_sd',
				[
					'label'   => esc_html__('Dark: Color', 'bunyad-admin'),
					'type'    => Controls_Manager::COLOR,
					'default' => '',
					'condition' => ['divider' => 'yes'],
					'selectors' => [
						'.s-dark {{WRAPPER}} .elementor-icon-list-item:not(:last-child):after' => 'border-color: {{VALUE}}',
					],
				],
				['position' => ['at' => 'after', 'of' => 'divider_color']]
			);
		}

		if ($section_id === 'section_icon_style') {
			$element->add_control(
				'icon_color_sd',
				[
					'label' => esc_html__('Dark: Color', 'bunyad-admin'),
					'type' => Controls_Manager::COLOR,
					'default' => '',
					'selectors' => [
						'.s-dark {{WRAPPER}} .elementor-icon-list-icon i' => 'color: {{VALUE}};',
						'.s-dark {{WRAPPER}} .elementor-icon-list-icon svg' => 'fill: {{VALUE}};',
					],
					'condition' => ['icon_color!' => '']
				],
				['position' => ['at' => 'after', 'of' => 'icon_color']]
			);
		}

		if ($section_id === 'section_text_style') {
			$element->add_control(
				'text_color_sd',
				[
					'label' => esc_html__('Dark: Color', 'bunyad-admin'),
					'type' => Controls_Manager::COLOR,
					'default' => '',
					'selectors' => [
						'.s-dark {{WRAPPER}} .elementor-icon-list-text' => 'color: {{VALUE}};',
					],
					'condition' => ['text_color!' => '']
				],
				['position' => ['at' => 'after', 'of' => 'text_color']]
			);
		}
	}

	/**
	 * Automatically add global social media profiles to social icons widget, if the 
	 * link is missing in widget settings.
	 *
	 * @param \Elementor\Widget_Base $element
	 * @return void
	 */
	public function add_social_links($element)
	{
		if (!class_exists('\Bunyad') || !\Bunyad::options()) {
			return;
		}

		if (!method_exists($element, 'get_name') || $element->get_name() !== 'social-icons') {
			return;
		}

		$settings = $element->get_settings();
		if (empty($settings['social_icon_list'])) {
			return;
		}

		$social_profiles = \Bunyad::options()->get('social_profiles');
		$changed = false;
		foreach ($settings['social_icon_list'] as $key => $icon) {
			if (!empty($icon['link']['url']) || empty($icon['social_icon']['value'])) {
				continue;
			}

			preg_match('/fa-([a-z]+)(\s|$)/', $icon['social_icon']['value'], $match);
			if (!$match || !$match[1]) {
				continue;
			}

			$value = $social_profiles[$match[1]] ?? '';
			if ($value) {
				$icon['link']['url'] = $value;
				$settings['social_icon_list'][$key] = $icon;

				$changed = true;
			}
		}

		if ($changed) {
			$element->set_settings($settings);
		}
	}
}PK03Y�!��	�	+smartmag-core/inc/elementor/loop-widget.php<?php

namespace Bunyad\Elementor;

/**
 * The base loop widget.
 */
class LoopWidget extends BaseWidget
{
	protected function _process_settings()
	{
		$settings = parent::_process_settings();

		/**
		 * Default query_type for archives is dynamically set as 'main-custom', but it would 
		 * revert to default of 'custom' when rendering.
		 * 
		 * Check raw settings to see if it's really 'custom', or use 'main-custom'.
		 */
		if (
			$settings['query_type'] === 'custom' 
			&& is_archive() 
			&& $this->get_doc_type() === 'ts-archive'
		) {
			$raw_settings = $this->get_data('settings');
			$raw_query    = $raw_settings['query_type'] ?? '';			
			
			if ($raw_query !== 'custom') {
				$settings['query_type'] = 'main-custom';
			}
		}

		// This shouldn't happen as elementor should have set it with a default value.
		// But if it does, default to custom query.
		if (!isset($settings['query_type'])) {
			$settings['query_type'] = 'custom';
		}

		// Section query if section_data available. Checking for query_type as section_query data
		// is only needed when the section query is used.
		if (isset($settings['section_data']) && $settings['query_type'] === 'section') {
			$settings['section_query'] = $settings['section_data'];
		}

		return $settings;
	}

	public function get_options($init_editor = false)
	{
		parent::get_options($init_editor);

		/**
		 * In editor, change the default query_type. 
		 * 
		 * NOTE: This cannot effect frontend consistently, DO NOT refactor it. 
		 * Pre-render checks should be added when processing the settings, as the option will 
		 * change per doc type with several doc types possible on a single page locations.
		 */
		if ($init_editor && $this->get_doc_type() === 'ts-archive') {
			$this->options->change_option('query_type', ['default' => 'main-custom']);
		}

		return $this->options;
	}

	/**
	 * Get current elementor document type.
	 * 
	 * Note: This isn't always available, such as when elementor CSS enqueue calls where
	 * the current document isn't set.
	 * 
	 * @return string Empty or the document type.
	 */
	protected function get_doc_type()
	{
		$documents = \Elementor\Plugin::instance()->documents;

		// For AJAX requests load method of Elementor editor.
		if (isset($_REQUEST['editor_post_id'])) {
			$document = $documents->get($_REQUEST['editor_post_id']);
		} else {
			$document = $documents->get_current();
		}

		if ($document && is_callable([$document, 'get_type'])) {
			return $document->get_type();
		}

		return '';
	}
}PK03Y��P�&�&&smartmag-core/inc/elementor/module.php<?php

namespace Bunyad\Elementor;

use Elementor\Plugin;
use \SmartMag_Core;

/**
 * Base Elementor Class for setup
 */
class Module 
{
	public function register_hooks()
	{
		// Register theme locations for Elementor Pro.
		add_action('elementor/theme/register_locations', function($manager) {
			$manager->register_all_core_location();
		});

		add_action('init', function() {
			if (!function_exists('elementor_theme_do_location')) {
				return;
			}

			$filters = [
				'bunyad_do_partial_404'     => 'single',
				'bunyad_do_partial_single'  => 'single',
				'bunyad_do_partial_page'    => 'single',
				'bunyad_do_partial_header'  => 'header',
				'bunyad_do_partial_footer'  => 'footer',

				// Note: Won't be reached for elementor as they overwrite it with headers-footers.php instead.
				'bunyad_do_partial_archive' => 'archive',
			];

			// Only do these locations if not already handled by elementor.
			foreach ($filters as $filter => $location) {
				// 9 so that it's lower priority than sphere-core custom layouts.
				add_filter($filter, function() use ($location) {
					return !elementor_theme_do_location($location);
				}, 9);
			}
		});

		// Fix: Elementor Pro won't use archive.php in locations API.
		$overridden = false;
		add_filter('elementor/theme/need_override_location', function($override) use (&$overridden) {
			if ($override) {
				$overridden = true;
			}
			return $override;
		});
		add_action('elementor/page_templates/header-footer/before_content', function() use (&$overridden) {
			if ($overridden) {
				\Bunyad::blocks()->load('Breadcrumbs')->render();
			}
		});

		// Add widgets
		add_action('elementor/widgets/register', [$this, 'register_widgets']);

		// Add custom controls.
		add_action('elementor/controls/register', [$this, 'register_controls']);
		
		// Register categories
		add_action('elementor/elements/categories_registered', function($manager) {
			$manager->add_category(
				'smart-mag-blocks',
				[
					'title' => esc_html__('SmartMag Blocks', 'bunyad-admin'),
					'icon'  => 'fa fa-plug'
				]
			);
		});

		// Add assets for the editor.
		add_action('elementor/editor/after_enqueue_scripts', function() {
			wp_enqueue_script(
				'bunyad-elementor-editor', 
				SmartMag_Core::instance()->path_url . 'inc/elementor/js/elementor-editor.js',
				['jquery', 'wp-api-request'], 
				SmartMag_Core::VERSION, 
				true
			);

			wp_enqueue_style(
				'bunyad-elementor-editor', 
				SmartMag_Core::instance()->path_url . 'inc/elementor/css/elementor-editor.css',
				[],
				SmartMag_Core::VERSION
			);
		});

		// Preview only assets.
		add_action('elementor/preview/enqueue_scripts', [$this, 'register_preview_assets']);

		// Extend widget controls.
		new ExtendWidgets;

		// Extend sections.
		new ExtendSection;

		// Extend containers.
		new ExtendContainer;

		/**
		 * Add post-content class to text widget.
		 */
		// add_filter('elementor/widget/print_template', function($content, $element) {
		// 	if ($element->get_name() !== 'text-editor') {
		// 		return $content;
		// 	}
			
		// 	return "<# view.addRenderAttribute( 'editor', 'class', ['post-content'] ); #>\n" . $content;
			
		// }, 10, 2);

		// add_action('elementor/widget/before_render_content', function($element) {
		// 	if ($element->get_name() !== 'text-editor') {
		// 		return;
		// 	}

		// 	$element->add_render_attribute(
		// 		'_wrapper', 'class', [
		// 			'elementor-widget',
		// 			'elementor-widget-text-editor',
		// 			'post-content'
		// 		]
		// 	);

		// 	// $element->add_render_attribute('editor', 'class', ['post-content']);
		// });

		/**
		 * Cleanup.
		 */
		// Cleanup templates library.
		add_filter('option_elementor_remote_info_library', function($data) {
			if (defined('ELEMENTOR_PRO_VERSION')) {
				return $data;
			}

			if (isset($data['templates'])) {
				$data['templates'] = array_filter($data['templates'], function($item) {
					return !$item['is_pro'];
				});
			}

			return $data;
		});
		
		add_filter('elementor/frontend/admin_bar/settings', function($config) {
			if (defined('ELEMENTOR_PRO_VERSION')) {
				return $config;
			}

			if (isset($config['elementor_edit_page']['children'])) {
				$config['elementor_edit_page']['children'] = array_filter(
					$config['elementor_edit_page']['children'],
					function($value) {
						return (
							empty($value['id']) 
							|| !in_array($value['id'], ['elementor_app_site_editor', 'elementor_site_settings'])
						);
					}
				);	
			}

			return $config;
		}, 999);
		
		// Ensure our kit exists.
		add_action('elementor/init', [$this, 'init_smartmag_kit']);

		// Initialize page related settings.
		new PageSettings;

		// Unnecessary redirect on plugin activation.
		add_action('admin_init', function() {
			if (get_transient('elementor_activation_redirect')) {
				delete_transient('elementor_activation_redirect');
			}
		}, -1);

		// Dev notices, comeon. Disable.
		add_filter('elementor/core/admin/notices', function($notices) {
			foreach ($notices as $key => $notice) {
				if (is_a($notice, 'Elementor\Core\Admin\Notices\Elementor_Dev_Notice')) {
					unset($notices[$key]);
				}
			}

			return $notices;
		});

		// Check conflict with Bunyad Page Builder.
		add_action('admin_init', function() {
			if (is_plugin_active('bunyad-siteorigin-panels/bunyad-siteorigin-panels.php')) {
				add_action('admin_notices', [$this, 'notice_bunyad_builder']);
			}
		});
	}

	/**
	 * Setup our style kit.
	 */
	public function init_smartmag_kit()
	{
		if (!is_admin() || wp_doing_ajax() || !is_user_logged_in()) {
			return;
		}

		$kits_manager = Plugin::$instance->kits_manager;
		if (!$kits_manager || !is_callable([$kits_manager, 'get_active_kit'])) {
			return;
		}

		$active = $kits_manager->get_active_kit();
		if (!is_callable([$active, 'get_post'])) {
			return;
		}
		
		$active_kit = $active->get_post();
		if (strpos($active_kit->post_name, 'smartmag-kit') !== false) {
			return;
		}

		// Create the kit.
		if (is_callable([Plugin::$instance->documents, 'create'])) {
			$new_settings = [
				'viewport_lg' => 940,
				'container_width' => [
					'unit' => 'px',
					'size' => 1200,
					'sizes' => []
				],
				'container_width_tablet' => [
					'unit' => 'px',
					'size' => 940,
					'sizes' => []
				],
				'system_colors' => [[
					'_id' => 'smartmag',
					'title' => 'SmartMag Main',
					'color' => 'var(--c-main)',
				]]
			];

			$kit = Plugin::$instance->documents->create('kit', [
				'post_type'   => 'elementor_library',
				'post_title'  => 'SmartMag Kit',
				'post_name'   => 'smartmag-kit',
				'post_status' => 'publish'
			]);

			if (!$kit || !is_callable([$kit, 'get_settings'])) {
				return;
			}

			$settings = $kit->get_settings();
			$new_settings['system_colors'] = array_merge(
				$new_settings['system_colors'],
				$settings['system_colors']
			);

			// Font-families should be inherited from the theme.
			$new_settings['system_typography'] = array_map(
				function($typography) {
					foreach ($typography as $key => $value) {
						if ($key !== 'typography_font_family') {
							continue;
						}

						unset($typography[$key]);
					}

					return $typography;
				}, 
				$settings['system_typography']
			);

			if (is_callable([$kit, 'update_settings']) && is_callable([$kit, 'get_id'])) {
				$kit->update_settings($new_settings);
				update_option('elementor_active_kit', $kit->get_id());
			}
		}
	}

	/**
	 * Register assets only for the Elementor preview.
	 */
	public function register_preview_assets()
	{
		// Registered a bit later.
		add_action('bunyad_register_assets', function() {
			// Make slick slider always available.
			wp_enqueue_script('smartmag-slick');
		});

		// Register front-end script for widgets.
		wp_enqueue_script(
			'bunyad-elementor-preview',
			SmartMag_Core::instance()->path_url . 'js/elementor/preview.js',
			['elementor-frontend', 'smartmag-theme'],
			SmartMag_Core::VERSION, 
			true
		);

		wp_enqueue_style(
			'bunyad-elementor-preview',
			SmartMag_Core::instance()->path_url . 'inc/elementor/css/preview.css',
			[],
			SmartMag_Core::VERSION
		);
	}

	/**
	 * Register blocks as widgets for Elementor
	 */
	public function register_widgets()
	{
		// Load the class map to prevent unnecessary autoload to save resources
		include_once SmartMag_Core::instance()->path . 'inc/elementor/classmap-widgets.php';

		// Widgets to load
		$blocks = apply_filters('bunyad_elementor_widgets', []);
		
		foreach ($blocks as $block) {
			$class = 'Bunyad\Blocks\\' . $block . '_Elementor';

			Plugin::instance()->widgets_manager
				->register(new $class);
		}

		// Some extra widgets that are Elementor only.
		$elementor_widgets = [
			'LinksList'
		];

		foreach ($elementor_widgets as $widget) {
			$class = 'Bunyad\Elementor\Widgets\\' . $widget;

			Plugin::instance()->widgets_manager
				->register(new $class);
		}
	}

	public function register_controls()
	{
		$manager = Plugin::$instance->controls_manager;
		$manager->register(new Controls\Selectize);

		$manager->add_group_control(
			'bunyad-border',
			new Controls\Groups\Border
		);
	}

	public function add_section_query_controls($section, $args)
	{
		// This is required class.
		if (!class_exists('\Bunyad\Blocks\Base\LoopOptions')) {
			return;
		}

		$options_obj = new SectionOptions;
		$sections    = [
			'sec-query' => [
				'label' => esc_html__('Section Query', 'bunyad-admin'),
				'tab'   => $args['tab']
			]
		];

		LoopWidget::do_register_controls($section, $options_obj, $sections);
	}

	/**
	 * Admin notice for bunyad builder conflict.
	 */
	public function notice_bunyad_builder()
	{
		$message = 'As of SmartMag v5+, <strong>Bunyad Page Builder</strong> is no longer needed and conflicts with Elementor. Please deactivate.';
		printf(
			'<div class="notice notice-error"><h3>Important:</h3><p>%1$s</p></div>',
			wp_kses_post($message)
		);
	}
}PK03Y;*���-smartmag-core/inc/elementor/page-settings.php<?php

namespace Bunyad\Elementor;

/**
 * Base Elementor Class for setup
 */
class PageSettings 
{
	public function __construct()
	{
		/**
		 * Extend page settings
		 */
		add_action('elementor/element/wp-page/document_settings/before_section_end', function($page) {

			/** @var \Elementor\Core\DocumentTypes\Page $page */
			$page->add_control(
				'layout_style',
				[
					'label'       => esc_html__('Layout Style', 'bunyad-admin'),
					'type'        => 'select',
					'description' => '',
					'options'     => [
						''      => esc_html__('Default', 'bunyad-admin'),
						'right' => esc_html__('Right Sidebar', 'bunyad-admin'),
						'full'  => esc_html__('Full Width', 'bunyad-admin'),
					],
					'label_block' => false,
					'default'     => '',
					'meta_key'    => '_bunyad_layout_style',
					'condition'    => [
						'template!' => [
							'page-templates/no-wrapper.php',
						]
					]
				]
			);

			$page->add_control(
				'show_page_title',
				[
					'label'       => esc_html__('Page Heading', 'bunyad-admin'),
					'type'        => 'select',
					'description' => '',
					'options'     => [
						'yes' => esc_html__('Yes', 'bunyad-admin'),
						'no'  => esc_html__('No', 'bunyad-admin'),
					],
					'label_block' => false,
					'default'     => 'yes',
					'meta_key'    => '_bunyad_page_title',
					'condition'    => [
						'template!' => [
							'page-templates/no-wrapper.php',
						]
					]
				]
			);
		});

		/**
		 * Set default page template at launch, if none set.
		 * 
		 * Note: Doing at priority 1, much lower than Elementor handling which uses die().
		 */
		add_action('admin_action_elementor', function() {

			if (apply_filters('bunyad_elementor_skip_page_template', false)) {
				return;
			}

			if (empty($_REQUEST['post'])) {
				return;
			}

			$post_id = absint($_REQUEST['post']);

			$editor = \Elementor\Plugin::$instance->editor;
			if (!is_callable([$editor, 'is_edit_mode']) || !$editor->is_edit_mode($post_id)) {
				return;
			}

			// Only set for pages.
			if (get_post_type($post_id) !== 'page') {
				return;
			}

			$template = get_post_meta($post_id, '_wp_page_template', true);
			$default_template = 'page-templates/no-wrapper.php';

			// Set page template if none set.
			if (!$template || $template === 'default') {

				// If not first edit, we'll use blocks.php instead as default.
				$document = \Elementor\Plugin::$instance->documents->get($post_id);
				if ($document && $document->is_built_with_elementor()) {
					$default_template = 'page-templates/blocks.php';
				}

				update_post_meta($post_id, '_wp_page_template', $default_template);
			}
		}, 1);

		// Change the native hide_title control.
		add_action('elementor/element/wp-page/section_page_style/after_section_end', function($page) {

			$page->update_control('hide_title', [
				'condition'    => [
					'template!' => [
						'page-templates/authors.php', 
						'page-templates/sitemap.php', 
						'page-templates/blocks.php', 
						'page-templates/no-wrapper.php',
					]
				],
			]);
		});

		// Map some of the settings to post meta
		add_action('elementor/editor/localize_settings', [$this, 'load_post_settings_meta'], 10, 2);
		add_filter('elementor/documents/ajax_save/return_data', [$this, 'save_post_settings_meta'], 10, 2);
	}

	/**
	 * Filter Callback: Load the mapped post meta values.
	 */
	public function load_post_settings_meta($settings, $post_id) {

		$document = \Elementor\Plugin::$instance->documents->get_doc_or_auto_save($post_id);

		$controls = [];
		foreach ($document->get_controls() as $key => $control) {
			if (!isset($control['meta_key'])) {
				continue;
			}

			if (isset($control['meta_load_cb'])) {
				$meta_value = call_user_func($control['meta_load_cb'], $post_id);
			}
			else {
				$meta_value = get_post_meta($post_id, $control['meta_key'], true);
			}

			$controls[$key] = $meta_value;
		}

		// Match settings array as specified by Elementor
		$new_settings = [
			'settings' => [
				'page' => ['settings' => $controls]
			]
		];

		return array_replace_recursive($settings, $new_settings);
	}

	/**
	 * Filter Callback: Save the mapped post meta.
	 * 
	 * @param array $return
	 * @param Elementor\Core\DocumentTypes\Post $document
	 * @return array
	 */
	public function save_post_settings_meta($return, $document) {

		$post_id  = $document->get_id();
		$settings = $document->get_settings();

		foreach ($document->get_controls() as $key => $control) {
			if (!isset($control['meta_key'])) {
				continue;
			}

			$has_key = array_key_exists($key, $settings);

			// Have a callback to update meta?
			if (isset($control['meta_save_cb'])) {
				
				call_user_func(
					$control['meta_save_cb'], 
					$post_id, 
					$has_key ? $settings[$key] : null
				);

				continue;
			}

			// If empty or default, remove from post meta too.
			if (!$has_key) {
				delete_post_meta($post_id, $control['meta_key']);
			}
			else {
				update_post_meta($post_id, $control['meta_key'], $settings[$key]);
			}
		}

		return $return;
	}
}PK03Yˀm=��/smartmag-core/inc/elementor/section-options.php<?php

namespace Bunyad\Elementor;

use Bunyad\Blocks\Base\LoopBlock;
use Bunyad\Blocks\Base\LoopOptions;

/**
 * Extra section options.
 */
class SectionOptions extends LoopOptions
{
	public function init()
	{
		parent::init();
		if (LoopWidget::is_elementor()) {
			parent::init_editor();
		}

		$options = [
			'sec-query' => [
				// 'posts' => $this->options['sec-general']['posts']
			] + $this->options['sec-filter']
		];

		$this->options = $options;
		$this->_add_defaults(LoopBlock::get_query_props());

		/**
		 * IMPORTANT: Any changes will also have to reflect in blockQueryKeys in elementor-editor.js
		 */
		$this->options['sec-query']['query_type'] = array_replace(
			$this->options['sec-query']['query_type'],
			[
				'options' => [
					'none'        => esc_html__('None', 'bunyad-admin'),
					'custom'      => esc_html__('Custom', 'bunyad-admin'),

					// Main isn't supported yet.
					'main-custom' => esc_html__('Archive / Main Query', 'bunyad-admin'),

					// Using parent's query not supported yet.
					// 'section' => esc_html__('Section Query (Parent Section)', 'bunyad-admin'),
					
				],
				'default' => 'none'
			]
		);
	}
}PK03Yd�w��2smartmag-core/inc/elementor/controls/selectize.php<?php
namespace Bunyad\Elementor\Controls;

/**
 * Selectize Control.
 */
class Selectize extends \Elementor\Base_Data_Control {

	/**
	 * Control type.
	 */
	public function get_type() 
	{
		return 'bunyad-selectize';
	}

	/**
	 * Register assets.
	 */
	public function enqueue() 
	{
		// Enqueue selectize only when theme is active.
		if (\Bunyad::get('theme')) {
			wp_enqueue_script(
				'bunyad-customize-selectbox', 
				get_template_directory_uri() . '/inc/core/assets/js/selectize.js',
				['jquery'],
				\Bunyad::options()->get_config('theme_version')
			);

			wp_enqueue_style(
				'bunyad-customize-selectbox', 
				get_template_directory_uri() . '/inc/core/assets/css/selectize.css', 
				[], 
				\Bunyad::options()->get_config('theme_version')
			);
		}
	}

	/**
	 * Default settings.
	 */
	protected function get_default_settings() {
		return [
			'label_block' => true,
			'options'     => [],
			'selectize_options' => [],
		];
	}

	/**
	 * Render selecitze output in the editor.
	 */
	public function content_template() {
		$control_uid = $this->get_control_uid();
		?>
		<div class="elementor-control-field">
			<# if ( data.label ) {#>
				<label for="<?php echo $control_uid; ?>" class="elementor-control-title">{{{ data.label }}}</label>
			<# } #>
			<div class="elementor-control-input-wrapper elementor-control-unit-5">
				<# var multiple = ( data.multiple ) ? 'multiple' : ''; #>
				<select id="<?php echo $control_uid; ?>" class="bunyad-el-selectize" type="select2" {{ multiple }} data-setting="{{ data.name }}">
					<# _.each( data.options, function( option_title, option_value ) {
						var value = data.controlValue;
						if ( typeof value == 'string' ) {
							var selected = ( option_value === value ) ? 'selected' : '';
						} else if ( null !== value ) {
							var value = _.values( value );
							var selected = ( -1 !== value.indexOf( option_value ) ) ? 'selected' : '';
						}
						#>
					<option {{ selected }} value="{{ option_value }}">{{{ option_title }}}</option>
					<# } ); #>
				</select>
			</div>
		</div>
		<# if ( data.description ) { #>
			<div class="elementor-control-field-description">{{{ data.description }}}</div>
		<# } #>
		<?php
	}

}PK03Y�s3��6smartmag-core/inc/elementor/controls/groups/border.php<?php
namespace Bunyad\Elementor\Controls\Groups;

/**
 * Extended border control with some extra options.
 */
class Border extends \Elementor\Group_Control_Border
{
	protected static $fields;

	public static function get_type()
	{
		return 'bunyad-border';
	}

	/**
	 * Modify the selector for dark dynamically since init is run once.
	 *
	 * @param array $fields
	 * @return array
	 */
	protected function prepare_fields($fields)
	{
		$args = $this->get_args();
		$fields = parent::prepare_fields($fields);

		if (isset($fields['color_dark'])) {
			$fields['color_dark']['selectors'] = [
				$args['selector_color_dark'] => 'border-color: {{VALUE}};',
			];
		}

		return $fields;
	}

	protected function init_fields()
	{
		$args = $this->get_args();
		$fields = parent::init_fields();

		if (!isset($args['selector_color_dark'])) {
			return $fields;
		}

		$fields['color_dark'] = [
			'label' => esc_html__('Dark: Color', 'bunyad-admin'),
			'type' => \Elementor\Controls_Manager::COLOR,
			'default' => '',
			// To be added later at prepare time since init isn't dynamic and only called once.
			'selectors' => [],
			'condition' => [
				'border!' => ['', 'none'],
			],
		];

		return $fields;
	}

	protected function get_default_options()
	{
		return [
			'popover' => [
				'starter_title' => esc_html__('Border Type', 'bunyad-admin'),
				'starter_name' => 'box_border_type',
				'starter_value' => 'yes',
				'settings' => [
					'render_type' => 'ui',
				],
			],
		];
	}
}PK03Y�]��\8\84smartmag-core/inc/elementor/css/elementor-editor.css/**
 * Styling adjustments for the Elementor backend editor.
 */

.elementor-device-mobile #elementor-preview-responsive-wrapper {
	width: 385px !important;
	height: 740px !important;
	max-height: calc(100vh - 60px);
	min-height: 500px;
}

.ts-ele-icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 54px;
	margin-top: -5px;
	margin-bottom: -2px;
	background-position: center center;
	background-repeat: no-repeat;
}

.ts-ele-icon-grid {
	background-image: url("data:image/svg+xml,%3Csvg width='45' height='43' viewBox='0 0 45 43' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='17.0714' height='11.0476' fill='%23E8E8E8' stroke='black'/%3E%3Cline y1='16.625' x2='18' y2='16.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='18.625' x2='18' y2='18.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='14.5' x2='16' y2='14.5' stroke='black'/%3E%3Crect x='26.5' y='0.5' width='17.0714' height='11.0476' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='26' y1='16.625' x2='44' y2='16.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='26' y1='18.625' x2='44' y2='18.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='26' y1='14.5' x2='42' y2='14.5' stroke='black'/%3E%3Crect x='26.5' y='24.5' width='17.0714' height='11.0476' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='26' y1='40.625' x2='44' y2='40.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='26' y1='42.625' x2='44' y2='42.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='26' y1='38.5' x2='42' y2='38.5' stroke='black'/%3E%3Crect x='0.5' y='24.5' width='17.0714' height='11.0476' fill='%23E8E8E8' stroke='black'/%3E%3Cline y1='40.625' x2='18' y2='40.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='42.625' x2='18' y2='42.625' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='38.5' x2='16' y2='38.5' stroke='black'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-focus-grid {
	background-image: url("data:image/svg+xml,%3Csvg width='70' height='32' viewBox='0 0 70 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='28.7701' height='19.0424' fill='%23E8E8E8' stroke='black'/%3E%3Cline y1='28.7797' x2='29.6524' y2='28.7797' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='31.2334' x2='29.6524' y2='31.2334' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='24.204' x2='26.3577' y2='24.204' stroke='black' stroke-width='1.5'/%3E%3Crect x='35.9023' y='0.5' width='13.5402' height='8.69349' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='35.4023' y1='13.4282' x2='38.6207' y2='13.4282' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline x1='35.4023' y1='11.569' x2='48.2758' y2='11.569' stroke='black'/%3E%3Crect x='55.2126' y='0.5' width='13.5402' height='8.69349' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='54.7126' y1='13.4282' x2='57.931' y2='13.4282' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline x1='54.7126' y1='11.569' x2='67.5862' y2='11.569' stroke='black'/%3E%3Crect x='35.9023' y='17.3966' width='13.5402' height='8.69349' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='35.4023' y1='30.3247' x2='38.6207' y2='30.3247' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline x1='35.4023' y1='28.4655' x2='48.2758' y2='28.4655' stroke='black'/%3E%3Crect x='55.2126' y='17.3966' width='13.5402' height='8.69349' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='54.7126' y1='30.3247' x2='57.931' y2='30.3247' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline x1='54.7126' y1='28.4655' x2='67.5862' y2='28.4655' stroke='black'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-overlay {
	background-image: url("data:image/svg+xml,%3Csvg width='53' height='21' viewBox='0 0 53 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='22' height='20' fill='%23D6D6D6' stroke='black'/%3E%3Cline x1='3' y1='18.75' x2='9' y2='18.75' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline x1='3' y1='13.625' x2='6' y2='13.625' stroke='%23181818' stroke-width='0.75'/%3E%3Cline x1='3' y1='16.5' x2='16' y2='16.5' stroke='black'/%3E%3Crect x='30.5' y='0.5' width='22' height='20' fill='%23D6D6D6' stroke='black'/%3E%3Cline x1='33' y1='18.75' x2='39' y2='18.75' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline x1='33' y1='13.625' x2='36' y2='13.625' stroke='%23181818' stroke-width='0.75'/%3E%3Cline x1='33' y1='16.5' x2='46' y2='16.5' stroke='black'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-feat-grid {
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='35' viewBox='0 0 60 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='4.5' width='37' height='25' fill='%23D6D6D6' stroke='black'/%3E%3Cline x1='3' y1='25.75' x2='9' y2='25.75' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline x1='3' y1='20.5' x2='6' y2='20.5' stroke='%23181818'/%3E%3Cline x1='3' y1='23.4' x2='23' y2='23.4' stroke='black' stroke-width='1.2'/%3E%3Crect x='39.5' y='18.5' width='20' height='11' fill='%23D6D6D6' stroke='black'/%3E%3Cline x1='42' y1='23.625' x2='45' y2='23.625' stroke='%23181818' stroke-width='0.75'/%3E%3Cline x1='42' y1='26.5' x2='55' y2='26.5' stroke='black'/%3E%3Crect x='39.5' y='4.5' width='20' height='12' fill='%23D6D6D6' stroke='black'/%3E%3Cline x1='42' y1='9.625' x2='45' y2='9.625' stroke='%23181818' stroke-width='0.75'/%3E%3Cline x1='42' y1='12.5' x2='55' y2='12.5' stroke='black'/%3E%3Cg filter='url(%23filter0_d)'%3E%3Crect x='11' y='1' width='32' height='17.9288' fill='%23EEEAEA'/%3E%3Crect x='11' y='1' width='32' height='17.9288' stroke='black'/%3E%3C/g%3E%3Cline x1='15.5714' y1='9.58942' x2='20.1429' y2='9.58942' stroke='%23181818' stroke-width='0.75'/%3E%3Cline x1='15.5714' y1='13.9466' x2='35.381' y2='13.9466' stroke='black'/%3E%3Cdefs%3E%3Cfilter id='filter0_d' x='6.5' y='0.5' width='41' height='26.9288' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
}

.ts-ele-icon-list {
	background-image: url("data:image/svg+xml,%3Csvg width='55' height='34' viewBox='0 0 55 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='19.4032' height='12.6021' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='23.0645' y1='4.94757' x2='52.3387' y2='4.94757' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='23.0645' y1='6.72177' x2='54.1129' y2='6.72177' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='23.0645' y1='10.1452' x2='28.3871' y2='10.1452' stroke='%23CCCCCC'/%3E%3Cline x1='23.0645' y1='2.16129' x2='55' y2='2.16129' stroke='black'/%3E%3Crect x='0.5' y='20.0161' width='19.4032' height='12.6021' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='23.0645' y1='24.4637' x2='52.3387' y2='24.4637' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='23.0645' y1='26.2379' x2='54.1129' y2='26.2379' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='23.0645' y1='29.6613' x2='28.3871' y2='29.6613' stroke='%23CCCCCC'/%3E%3Cline x1='23.0645' y1='21.6774' x2='55' y2='21.6774' stroke='black'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-small {
	background-image: url("data:image/svg+xml,%3Csvg width='72' height='24' viewBox='0 0 72 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='1.49998' width='10' height='8' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='14' y1='6.49998' x2='19.3226' y2='6.49998' stroke='%23AEAEAE'/%3E%3Cline x1='14' y1='3.49998' x2='32' y2='3.49998' stroke='black'/%3E%3Crect x='40.5' y='1.01611' width='10' height='8' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='54' y1='6.01611' x2='59.3226' y2='6.01611' stroke='%23AEAEAE'/%3E%3Cline x1='54' y1='3.01611' x2='72' y2='3.01611' stroke='black'/%3E%3Crect x='0.5' y='15.0161' width='10' height='8' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='14' y1='20.0161' x2='19.3226' y2='20.0161' stroke='%23AEAEAE'/%3E%3Cline x1='14' y1='17.0161' x2='32' y2='17.0161' stroke='black'/%3E%3Crect x='40.5' y='15.0161' width='10' height='8' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='54' y1='20.0161' x2='59.3226' y2='20.0161' stroke='%23AEAEAE'/%3E%3Cline x1='54' y1='17.0161' x2='72' y2='17.0161' stroke='black'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-large {
	background-image: url("data:image/svg+xml,%3Csvg width='35' height='48' viewBox='0 0 35 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='26.5' width='34' height='12.766' fill='%23E8E8E8' stroke='black'/%3E%3Cline y1='45.1747' x2='34.8616' y2='45.1747' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline y1='47.46' x2='34.8616' y2='47.46' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline y1='42.6394' x2='30.9881' y2='42.6394' stroke='black'/%3E%3Crect x='0.5' y='0.5' width='34' height='12.766' fill='%23E8E8E8' stroke='black'/%3E%3Cline y1='19.1747' x2='34.8616' y2='19.1747' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline y1='21.46' x2='34.8616' y2='21.46' stroke='%239F9F9F' stroke-width='0.5'/%3E%3Cline y1='16.6394' x2='30.9881' y2='16.6394' stroke='black'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-news-focus {
	background-image: url("data:image/svg+xml,%3Csvg width='63' height='28' viewBox='0 0 63 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='26' height='16.6991' fill='%23E8E8E8' stroke='black'/%3E%3Cline y1='24.5996' x2='26.8933' y2='24.5996' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='27.5378' x2='26.8933' y2='27.5378' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='21.5364' x2='23.9051' y2='21.5364' stroke='black'/%3E%3Crect x='35.4' y='0.4' width='8.825' height='7.03999' fill='%23E8E8E8' stroke='black' stroke-width='0.8'/%3E%3Cpath d='M47.25 4.97665H51.9073' stroke='%23AEAEAE' stroke-width='0.5'/%3E%3Cline x1='47.25' y1='2.23833' x2='63' y2='2.23833' stroke='black' stroke-width='0.75'/%3E%3Crect x='35.4' y='10.4' width='8.825' height='7.03999' fill='%23E8E8E8' stroke='black' stroke-width='0.8'/%3E%3Cpath d='M47.25 14.9767H51.9073' stroke='%23AEAEAE' stroke-width='0.5'/%3E%3Cline x1='47.25' y1='12.2383' x2='63' y2='12.2383' stroke='black' stroke-width='0.75'/%3E%3Crect x='35.4' y='20.4' width='8.825' height='7.03999' fill='%23E8E8E8' stroke='black' stroke-width='0.8'/%3E%3Cpath d='M47.25 24.9767H51.9073' stroke='%23AEAEAE' stroke-width='0.5'/%3E%3Cline x1='47.25' y1='22.2383' x2='63' y2='22.2383' stroke='black' stroke-width='0.75'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-highlights {
	background-image: url("data:image/svg+xml,%3Csvg width='59' height='39' viewBox='0 0 59 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='24' height='10.7994' fill='%23E8E8E8' stroke='black'/%3E%3Cline y1='16.2747' x2='24.9012' y2='16.2747' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='18.2335' x2='24.9012' y2='18.2335' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline y1='14.1909' x2='22.1344' y2='14.1909' stroke='black'/%3E%3Crect x='36.5' y='0.5' width='22' height='10.7994' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='36' y1='16.2747' x2='58.9091' y2='16.2747' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='36' y1='18.2335' x2='58.9091' y2='18.2335' stroke='%239F9F9F' stroke-width='0.75'/%3E%3Cline x1='36' y1='14.1909' x2='56.3636' y2='14.1909' stroke='black'/%3E%3Crect x='0.4' y='22.4' width='6.7625' height='6.19999' fill='%23E8E8E8' stroke='black' stroke-width='0.8'/%3E%3Cpath d='M9.625 26.4435H13.2843' stroke='%23AEAEAE' stroke-width='0.5'/%3E%3Cline x1='9.625' y1='23.9583' x2='22' y2='23.9583' stroke='black' stroke-width='0.75'/%3E%3Crect x='36.4' y='22.4' width='6.075' height='6.19999' fill='%23E8E8E8' stroke='black' stroke-width='0.8'/%3E%3Cpath d='M44.75 26.4435H48.0766' stroke='%23AEAEAE' stroke-width='0.5'/%3E%3Cline x1='44.75' y1='23.9583' x2='56' y2='23.9583' stroke='black' stroke-width='0.75'/%3E%3Crect x='0.4' y='32.4' width='6.7625' height='6.19999' fill='%23E8E8E8' stroke='black' stroke-width='0.8'/%3E%3Cpath d='M9.625 36.4435H13.2843' stroke='%23AEAEAE' stroke-width='0.5'/%3E%3Cline x1='9.625' y1='33.9583' x2='22' y2='33.9583' stroke='black' stroke-width='0.75'/%3E%3Crect x='36.4' y='32.4' width='6.075' height='6.19999' fill='%23E8E8E8' stroke='black' stroke-width='0.8'/%3E%3Cpath d='M44.75 36.4435H48.0766' stroke='%23AEAEAE' stroke-width='0.5'/%3E%3Cline x1='44.75' y1='33.9583' x2='56' y2='33.9583' stroke='black' stroke-width='0.75'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-heading {
	background-image: url("data:image/svg+xml,%3Csvg width='84' height='22' viewBox='0 0 84 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='6.64286' x2='83.3333' y2='6.64286' stroke='%23C9C9C9'/%3E%3Crect width='25' height='4.7619' fill='%23A2A2A2'/%3E%3Cline y1='16.4881' x2='8.33333' y2='16.4881' stroke='black' stroke-width='1.5'/%3E%3Cline x1='11.9048' y1='16.4881' x2='23.8095' y2='16.4881' stroke='black' stroke-width='1.5'/%3E%3Cline y1='21.5' x2='83.3333' y2='21.5' stroke='%23C9C9C9'/%3E%3C/svg%3E%0A");
}

.ts-ele-icon-newsletter {
	background-image: url("data:image/svg+xml,%3Csvg width='38' height='39' viewBox='0 0 38 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='37' height='38' fill='%23E8E8E8' stroke='black'/%3E%3Cline x1='8' y1='27' x2='31' y2='27' stroke='%239F9F9F' stroke-width='2'/%3E%3Cline x1='8' y1='31.5' x2='31' y2='31.5' stroke='%23333333' stroke-width='3'/%3E%3Cpath d='M8 19H30' stroke='%232B2B2B'/%3E%3Cpath d='M22.1562 6.25H14.8438C14.3691 6.25 14 6.63672 14 7.09375V12.1562C14 12.6309 14.3691 13 14.8438 13H22.1562C22.6133 13 23 12.6309 23 12.1562V7.09375C23 6.63672 22.6133 6.25 22.1562 6.25ZM22.1562 7.09375V7.81445C21.752 8.14844 21.1191 8.64062 19.7832 9.69531C19.4844 9.92383 18.9043 10.4863 18.5 10.4688C18.0781 10.4863 17.498 9.92383 17.1992 9.69531C15.8633 8.64062 15.2305 8.14844 14.8438 7.81445V7.09375H22.1562ZM14.8438 12.1562V8.9043C15.2305 9.2207 15.8105 9.67773 16.6719 10.3633C17.0586 10.6621 17.7441 11.3301 18.5 11.3125C19.2383 11.3301 19.9062 10.6621 20.3105 10.3633C21.1719 9.67773 21.752 9.2207 22.1562 8.9043V12.1562H14.8438Z' fill='black'/%3E%3C/svg%3E%0A");
}PK03Y��=�	�	+smartmag-core/inc/elementor/css/preview.css/**
 * Styling adjustments for the Elementor preview.
 */
.site-s-dark .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-dark,
.site-s-light .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-light {
	display: inherit;
	background: -webkit-repeating-linear-gradient(325deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .05) 1px, transparent 2px, transparent 9px);
	background: repeating-linear-gradient(125deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .05) 1px, transparent 2px, transparent 9px);
	border: 1px solid rgba(0, 0, 0, .02);
}

.site-s-dark .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-dark.elementor-section > .elementor-element-overlay,
.site-s-light .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-light.elementor-section > .elementor-element-overlay {
	background-color: #d5dadf;
	mix-blend-mode: color;
}

.site-s-dark .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-dark.elementor-section:before,
.site-s-light .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-light.elementor-section:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: hsla(0, 0%, 100%, .6);
	z-index: 9997;
}

.site-s-dark .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-dark.elementor-inner-section .elementor-container,
.site-s-light .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-light.elementor-inner-section .elementor-container {
	width: 100%;
}

.site-s-dark .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-dark > .elementor-widget-container,
.site-s-dark .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-dark > .elementor-widget-wrap,
.site-s-light .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-light > .elementor-widget-container,
.site-s-light .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-light > .elementor-widget-wrap {
	-webkit-filter: opacity(.4) saturate(0);
	filter: opacity(.4) saturate(0);
}

.site-s-dark .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-dark.elementor-edit-hidden,
.site-s-light .e-preview--show-hidden-elements .elementor-edit-area-active .ts-el-hide-s-light.elementor-edit-hidden {
	display: none;
}PK03YSjqFF2smartmag-core/inc/elementor/js/elementor-editor.js(()=>{"use strict";const e=["query_type","sort_by","sort_order","sort_days","terms","cat","offset","reviews_only","tags","post_ids","post_formats","taxonomy","tax_ids","post_type","exclude_tags","exclude_ids","exclude_current","query_id"];
/**
 * Elementor backend editor extra functionality.
 * 
 * @copyright 2023 ThemeSphere.
 */
jQuery((function(t){elementor.hooks.addAction("panel/open_editor/container",(function(t,n,i){var s=t.$el;n.get("settings")&&n.get("settings").on("change",(t=>{Object.keys(t.changed).some((t=>e.includes(t)))&&o(i.$el)})),s.length})),elementor.hooks.addAction("panel/open_editor/section",(function(n,i,s){var r=n.$el;i.get("settings")&&i.get("settings").on("change",(t=>{Object.keys(t.changed).some((t=>e.includes(t)))&&o(s.$el)})),r.length&&r.find('[data-setting="gutter"]').on("change",(function(){if("none"!=t(this).val()){var e=r.find('[data-setting="gap"]');e.length&&e.val("no").trigger("change")}}))})),elementor.hooks.addAction("panel/open_editor/column",((e,t,n)=>{if(!e.$el)return;const o=n._parent;o&&o.getPreviousColumn&&t.get("settings").on("change:is_sidebar",((e,t)=>{const i=o.getPreviousColumn(n)||o.getNextColumn(n);if(!i)return;const s=i.model.get("settings");e!==s&&(t?((s.get("_inline_size")||e.get("_inline_size"))&&(s.set("_inline_size",66.667),e.set("_inline_size",33.333),n.render(),i.render()),s.set("is_main","main-content").set("_inline_size_tablet",100),e.set("_inline_size_tablet",100)):s.set("is_main",""))}))}));const n=e=>{const t=(e,n)=>{if(!n.elements)return;const o=n.elements;let i=n.elements.get(e);return i||(o.models?(o.models.find((n=>!!n.attributes&&(i=t(e,n.attributes),i))),i):void 0)};return t(e,elementor)},o=(e,o)=>{t(e).find("[data-model-cid]").each(((e,i)=>{const s=t(i).data("model-cid");if(o&&o===s)return;const r=n(s);"section"===r.getSetting("query_type")&&r.renderRemoteServer()}))},i=o=>{const i=o.options.model.get("settings");if(!i||"section"!==i.get("query_type"))return;const r=s(o),a=n(t(r).data("model-cid"));if(!a||!a.get("settings"))return;let l=0;r.find("[data-model-cid]").each(((e,o)=>{const i=t(o).data("model-cid"),s=n(i),r=s.get("settings");r&&"section"===r.get("query_type")&&(r.set({skip_posts:l},{silent:!0}),l+=s.getSetting("posts")||0)}));let d=a.get("settings"),c={};if(d&&d.toJSON){d=d.toJSON();for(let t in d)e.includes(t)&&(c[t]=d[t])}i.set({section_data:c},{silent:!0})},s=e=>{const o=t(e.el).parents("[data-element_type=container]");if(!o.length)return t(e.el).closest("[data-element_type=section]");let i;return o.each(((e,o)=>{const s=n(t(o).data("model-cid"));return!s||!s.get("settings")||("none"===s.getSetting("query_type")||(i=t(o),!1))})),i||!1};elementor.hooks.addFilter("elements/base/behaviors",((t,n)=>{if("widget"!==n.options.model.get("elType"))return t;if(-1===n.options.model.get("widgetType").indexOf("smartmag"))return t;(t=>{const n=t.options.model;if(!n||!n.on)return;const r=n.get("settings");r&&r.on("change",(i=>{Object.keys(i.changed).some((t=>e.includes(t)))&&o(s(t),n.cid)})),n.on("before:remote:render",(()=>i(t)));let a=!1;t.on("render",(()=>{if(a)return a=!1,!1;const e=Object.assign({},n.get("settings").get("section_data"));a=!0,i(t);const o=n.get("settings").get("section_data");o&&!_.isEqual(e,o)?n.renderRemoteServer():a=!1}))})(n);const r=e=>{var t=[];if(!e.model||!e.model.getSetting)return[];if(e.model.getSetting("_column_size"))t.push(e.model.getSetting("_column_size"));else if(e.model.getSetting("width")){const n=e.model.getSetting("width");n.unit&&"%"===n.unit&&n.size&&t.push(n.size)}return e._parent&&e.model&&(t=t.concat(r(e._parent))),t},a=e=>{const t=r(e);return t&&t.length?t.reduce(((e,t)=>t/100*e)):100};var l=n.onRender.bind(n);return n.onRender=function(){let e;if(l.apply(this,arguments),n.model.getSetting("container_width")){if(!n.model.attributes._parentWidth)return void(n.model.attributes._parentWidth=a(n));if(e=a(n),n.model.attributes._parentWidth===e)return}var t=e||a(n);if(n.model.attributes._parentWidth=t,t){let e=1;elementor.$previewContents.find(".main:not(.no-sidebar)").length&&(e=.666);let o=33;(t*=e)>90?o=100:t>60?o=66:t>40&&(o=50),n.model.setSetting("container_width",o)}},t}));const r=()=>{const e=elementor.documents.getCurrent(),t=e.container.settings.get("post_status");$e.internal("document/save/save",{status:t,document:e,onSuccess:()=>{elementor.reloadPreview()}})};elementor.settings.page.addChangeCallback("show_page_title",r),elementor.settings.page.addChangeCallback("layout_style",r),function(){let e=!1;const t=Object.assign(new(Object.getPrototypeOf($e.hooks.ui).constructor),{getCommand:()=>"document/elements/create",getId:()=>"bunyad-section-set-defaults",getContainerType:()=>"",run(t,n){setTimeout((()=>{if(e&&"section"===t.model.elType&&n.model){n.model.setSetting("gutter","default"),n.model.setSetting("gap","no");try{n.view.render()}catch(e){elementor.panel.currentView.$el.find("[data-setting=gap]").trigger("change")}setTimeout((()=>e=!1),1)}}),2)}});$e.hooks.registerUIAfter(t),elementor.on("preview:loaded",(()=>{elementor.$previewContents.on("click",".elementor-preset",(t=>{e=!0})),elementor.$previewContents.on("drop",(t=>{elementor.channels.panelElements.request("element:selected").model&&(e=!0)}))}))}(),function(){if(window.elementorPro)return;const e=t("#tmpl-elementor-panel-categories");e.text(e.text().replace('elementor-nerd-box"','" style="display: none;"')),Array.isArray(elementor.config.promotionWidgets)&&(elementor.config.promotionWidgets=[]),$e.commandsInternal.on("run:after",((e,t)=>{"panel/state-ready"===t&&elementor.getPanelView().getRegion("content").on("show",(()=>{elementor.getPanelView().$el.find(".elementor-panel-menu-item-site-editor").hide()}))}))}(),function(e){const t=elementor.modules.controls.BaseData.extend({applySavedValue(){elementor.modules.controls.BaseData.prototype.applySavedValue.apply(this,arguments);const t=this.ui.select,n=Object.assign({sortable:!0,multiple:!0,create:!1,ajax:!1,preload:!0},this.model.get("selectize_options")||{}),o=this.getControlValue(),i={create:n.create,items:o,plugins:[]};if(n.sortable&&i.plugins.push("drag_drop"),n.multiple&&i.plugins.push("remove_button"),n.ajax&&(i.preload=n.preload,i.load=(t,o,i)=>{window.bunyadAjaxCache||(window.bunyadAjaxCache={});const s=e=>(e=wpApiSettings.root.includes("?")?e.replace("?","&"):e,wpApiSettings.root+wpApiSettings.versionString+e);let r=n.url||"";if(n.endpoint&&(r=s(n.endpoint),r=r.replace("{query}",encodeURIComponent(t))),i&&(r=s(n.endpoint_saved),r=r.replace("{ids}",t)),r in window.bunyadAjaxCache)return o(window.bunyadAjaxCache[r]);e.ajax({url:r,type:"GET",dataType:"json",beforeSend:e=>e.setRequestHeader("X-WP-Nonce",wpApiSettings.nonce),error:()=>o(),success:e=>{const t=[];e.forEach((e=>{e.id&&t.push({text:e.name,value:e.id})})),window.bunyadAjaxCache[r]=t,o(t)}})},o)){let e=o;Array.isArray(o)&&(e=o.filter((e=>parseInt(e))).join(","));const n=()=>{const n=t[0].selectize;i.load(e,(e=>{e&&(e.forEach((e=>n.addOption(e))),n.clear(!0),n.setValue(o,!0))}),!0)};e&&(i.onInitialize=n)}if(t.selectize(i),n.create){const e=t[0].selectize;if(Array.isArray(o)){for(const t of o)parseInt(t)||e.addOption({text:t,value:t});e.setValue(o,!0)}}}});elementor.addControlView("bunyad-selectize",t)}(t)}))})();PK03Y
X�F:.:.2smartmag-core/inc/elementor/widgets/links-list.php<?php

namespace Bunyad\Elementor\Widgets;

use Elementor\Controls_Manager;
use Elementor\Repeater;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Typography;
use Elementor\Widget_Base;

/**
 * Lists with Links for Elementor.
 * 
 * Mostly based on Elementor icon list widget.
 */
class LinksList extends Widget_Base
{
	/**
	 * Get widget name.
	 *
	 * @return string Widget name.
	 */
	public function get_name()
	{
		return 'ts-links-list';
	}

	/**
	 * Get widget icon.
	 *
	 * @return string Widget icon.
	 */
	public function get_icon()
	{
		return 'eicon-bullet-list';
	}

	/**
	 * Get widget title.
	 *
	 * @return string Widget title.
	 */
	public function get_title()
	{
		return esc_html__('Links List', 'bunyad-admin');
	}

	/**
	 * Get widget keywords.
	 *
	 * Retrieve the list of keywords the widget belongs to.
	 *
	 * @since 2.1.0
	 * @access public
	 *
	 * @return array Widget keywords.
	 */
	public function get_keywords()
	{
		return ['links list', 'links', 'list'];
	}

	/**
	 * Register list widget controls.
	 */
	protected function register_controls()
	{
		$this->start_controls_section(
			'section_links_list',
			[
				'label' => esc_html__('Links List', 'elementor'),
			]
		);

		$this->add_control(
			'view',
			[
				'label'   => esc_html__('Layout', 'elementor'),
				'type'    => Controls_Manager::CHOOSE,
				'default' => 'inline',
				'options' => [
					'vertical' => [
						'title' => esc_html__('Default', 'elementor'),
						'icon'  => 'eicon-editor-list-ul',
					],
					'inline' => [
						'title' => esc_html__('Inline', 'elementor'),
						'icon'  => 'eicon-ellipsis-h',
					],
				],
				'render_type'    => 'template',
				'classes'        => 'elementor-control-start-end',
				'style_transfer' => true,
			]
		);

		$repeater = new Repeater();

		$repeater->add_control(
			'text',
			[
				'label'       => esc_html__('Text', 'elementor'),
				'type'        => Controls_Manager::TEXT,
				'label_block' => true,
				'placeholder' => esc_html__('List Item', 'elementor'),
				'default'     => esc_html__('List Item', 'elementor'),
				'dynamic'     => [
					'active' => true,
				],
			]
		);

		$repeater->add_control(
			'link',
			[
				'label'   => esc_html__('Link', 'elementor'),
				'type'    => Controls_Manager::URL,
				'dynamic' => [
					'active' => true,
				],
				'placeholder' => esc_html__('https://your-link.com', 'elementor'),
			]
		);

		$this->add_control(
			'links_list',
			[
				'label'   => esc_html__('Items', 'elementor'),
				'type'    => Controls_Manager::REPEATER,
				'fields'  => $repeater->get_controls(),
				'default' => [
					[
						'text'          => esc_html__('List Item #1', 'elementor'),
					],
					[
						'text'          => esc_html__('List Item #2', 'elementor'),
					],
					[
						'text'          => esc_html__('List Item #3', 'elementor'),
					],
				],
				'title_field' => '{{{ text }}}',
			]
		);

		$this->add_control(
			'link_click',
			[
				'label'   => esc_html__('Apply Link On', 'elementor'),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'full' => esc_html__('Full Width', 'elementor'),
					'inline'     => esc_html__('Inline', 'elementor'),
				],
				'default'      => 'full',
				'separator'    => 'before',
				'prefix_class' => 'ts-el-list-links-',
				'condition'    => ['view' => 'vertical']
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_list',
			[
				'label' => esc_html__('List', 'elementor'),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'space_between',
			[
				'label' => esc_html__('Space Between', 'elementor'),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'max' => 150,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ts-el-list' => '--spacing: {{SIZE}}{{UNIT}};'
				],
			]
		);

		$this->add_responsive_control(
			'text_align',
			[
				'label' => esc_html__('Alignment', 'elementor'),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left' => [
						'title' => esc_html__('Left', 'elementor'),
						'icon' => 'eicon-h-align-left',
					],
					'center' => [
						'title' => esc_html__('Center', 'elementor'),
						'icon' => 'eicon-h-align-center',
					],
					'right' => [
						'title' => esc_html__('Right', 'elementor'),
						'icon' => 'eicon-h-align-right',
					],
				],
				'selectors_dictionary' => [
					'left'  => 'justify-content: flex-start; text-align: left;',
					'center' => 'justify-content: center; text-align: center;',
					'right' => 'justify-content: flex-end; text-align: right;',
				],
				'selectors' => [
					'{{WRAPPER}} .ts-el-list' => '{{VALUE}}',
				],
			]
		);

		$this->add_control(
			'divider',
			[
				'label'     => esc_html__('Divider', 'elementor'),
				'type'      => Controls_Manager::SWITCHER,
				'label_off' => esc_html__('Off', 'elementor'),
				'label_on'  => esc_html__('On', 'elementor'),
				'selectors' => [
					'{{WRAPPER}} .ts-el-list' => '--sep-weight: 1px;',
				],
				'separator' => 'before',
			]
		);

		$this->add_control(
			'divider_style',
			[
				'label'   => esc_html__('Style', 'elementor'),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'solid'  => esc_html__('Solid', 'elementor'),
					'double' => esc_html__('Double', 'elementor'),
					'dotted' => esc_html__('Dotted', 'elementor'),
					'dashed' => esc_html__('Dashed', 'elementor'),
				],
				'default'   => 'solid',
				'condition' => [
					'divider' => 'yes',
				],
				'selectors' => [
					'{{WRAPPER}} .ts-el-list' => '--sep-style: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'divider_weight',
			[
				'label'   => esc_html__('Weight', 'elementor'),
				'type'    => Controls_Manager::SLIDER,
				'default' => [
					'size' => 1,
				],
				'range' => [
					'px' => [
						'min' => 1,
						'max' => 20,
					],
				],
				'condition' => [
					'divider' => 'yes',
				],
				'selectors' => [
					'{{WRAPPER}} .ts-el-list ' => '--sep-weight: {{SIZE}}{{UNIT}}',
				],
			]
		);

		$this->add_control(
			'divider_height',
			[
				'label'      => esc_html__('Height', 'elementor'),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => ['%', 'px'],
				'default'    => [
					'unit' => '%',
				],
				'range' => [
					'px' => [
						'min' => 1,
						'max' => 100,
					],
					'%' => [
						'min' => 1,
						'max' => 100,
					],
				],
				'condition' => [
					'divider' => 'yes',
					'view'    => 'inline',
				],
				'selectors' => [
					'{{WRAPPER}} .ts-el-list' => '--sep-height: {{SIZE}}{{UNIT}}',
				],
			]
		);

		$this->add_control(
			'divider_color',
			[
				'label'   => esc_html__('Color', 'elementor'),
				'type'    => Controls_Manager::COLOR,
				'default' => '',
				'condition' => ['divider' => 'yes',],
				'selectors' => [
					'{{WRAPPER}} .ts-el-list' => '--c-sep: {{VALUE}}',
				],
			]
		);
		$this->add_control(
			'divider_color_sd',
			[
				'label'   => esc_html__('Dark: Color', 'bunyad-admin'),
				'type'    => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'.s-dark {{WRAPPER}} .ts-el-list' => '--c-sep: {{VALUE}}',
				],
				'condition' => ['divider' => 'yes', 'divider_color!' => ''],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_text_style',
			[
				'label' => esc_html__('Text', 'elementor'),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'text_color',
			[
				'label'     => esc_html__('Text Color', 'elementor'),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ts-el-list .item' => 'color: {{VALUE}};',
					'{{WRAPPER}} .ts-el-list a' => 'color: inherit;',
				],
			]
		);
		$this->add_control(
			'text_color_sd',
			[
				'label'     => esc_html__('Dark: Color', 'bunyad-admin'),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'.s-dark {{WRAPPER}} .ts-el-list .item' => 'color: {{VALUE}};',
					'.s-dark {{WRAPPER}} .ts-el-list a' => 'color: inherit;',
				],
				'condition' => ['text_color!' => '']
			]
		);

		$this->add_control(
			'text_color_hover',
			[
				'label'     => esc_html__('Hover', 'elementor'),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ts-el-list .item a:hover' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'text_color_hover_sd',
			[
				'label'     => esc_html__('Dark: Color', 'elementor'),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'.s-dark {{WRAPPER}} .ts-el-list .item a:hover' => 'color: {{VALUE}};',
				],
				'condition' => ['text_color_hover!' => '']
			]
		);

		$this->add_control(
			'text_indent',
			[
				'label' => esc_html__('Text Indent', 'elementor'),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ts-el-list .item span' => is_rtl() ? 'padding-right: {{SIZE}}{{UNIT}};' : 'padding-left: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'item_typography',
				'selector' => '{{WRAPPER}} .ts-el-list .item',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Render list widget output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 */
	protected function render()
	{
		$settings = $this->get_settings_for_display();

		$this->add_render_attribute('links_list', 'class', 'ts-el-list ts-el-list-' . $settings['view']);
		$this->add_render_attribute('list_item', 'class', 'item');
	?>
	
		<ul <?php $this->print_render_attribute_string('links_list'); ?>>
			<?php
			foreach ($settings['links_list'] as $index => $item) :
				$repeater_setting_key = $this->get_repeater_setting_key('text', 'links_list', $index);

				$this->add_inline_editing_attributes($repeater_setting_key);

			?>
				<li <?php $this->print_render_attribute_string('list_item'); ?>>
					<?php
					if (!empty($item['link']['url'])) {
						$link_key = 'link_' . $index;
						$this->add_link_attributes($link_key, $item['link']);
					?>
						<a <?php $this->print_render_attribute_string($link_key); ?>>
					<?php
					}
					?>

					<span <?php $this->print_render_attribute_string($repeater_setting_key); ?>><?php $this->print_unescaped_setting('text', 'links_list', $index); ?></span>
					
					<?php if (!empty($item['link']['url'])): ?>
						</a>
					<?php endif; ?>
				</li>
			<?php
			endforeach;
			?>
		</ul>

	<?php
	}

	/**
	 * Render list widget output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 */
	protected function content_template()
	{
		?>
		<#
			view.addRenderAttribute( 'links_list', 'class', 'ts-el-list ts-el-list-' + settings.view );
			view.addRenderAttribute( 'list_item', 'class', 'item' );
		#>
		<# if ( settings.links_list ) { #>
			<ul {{{ view.getRenderAttributeString( 'links_list' ) }}}>
			<# _.each( settings.links_list, function( item, index ) {

					var textKey = view.getRepeaterSettingKey( 'text', 'links_list', index );
					view.addInlineEditingAttributes( textKey ); 
			#>

					<li {{{ view.getRenderAttributeString( 'list_item' ) }}}>
						<# if ( item.link && item.link.url ) { #>
							<a href="{{ item.link.url }}">
						<# } #>
						<span {{{ view.getRenderAttributeString( textKey ) }}}>{{{ item.text }}}</span>
						<# if ( item.link && item.link.url ) { #>
							</a>
						<# } #>
					</li>
				<#
				} ); #>
			</ul>
		<#	} #>

		<?php
	}
}PK03Y$KO��$smartmag-core/inc/reviews/module.php<?php
namespace SmartMag\Reviews;
use Bunyad;

/**
 * The Reviews API.
 */
class Module
{
	public $rating_max;
	
	public function __construct()
	{
		$this->rating_max = (!empty(Bunyad::options()->rating_max) ? Bunyad::options()->rating_max : 10);

		// Inject review box in content.
		add_filter('the_content', [$this, 'inject_review']);

		// Hook at earlier priority so users can use filters without setting priorities.
		add_filter('bunyad_meta_boxes', [$this, 'register_metabox'], 1);
		add_action('bunyad_meta_before_save', [$this, 'process_save']);

		// AJAX handlers.
		add_action('wp_ajax_nopriv_bunyad_rate', [$this, 'add_rating']);
		add_action('wp_ajax_bunyad_rate', [$this, 'add_rating']);

		// Add shortcode.
		if (Bunyad::options()->legacy_mode) {
			add_shortcode('review', [$this, '_render_shortcode']);
		}

		add_shortcode('ts_review', [$this, '_render_shortcode']);
	}

	/**
	 * Callback: Setup metabox options via the framework config.
	 */
	public function register_metabox($meta_boxes)
	{
		$meta_boxes['reviews'] = [
			// register_boxes() will add prefix.
			'id'       => 'reviews',
			'title'    => esc_html_x('Review', 'bunyad-admin'),
			'priority' => 'high', 
			'page'     => ['post'],
			'form'     => trailingslashit(__DIR__) . 'metabox/form.php',
			'options'  => trailingslashit(__DIR__) . 'metabox/options.php',
		];

		return $meta_boxes;
	}

	/**
	 * On metabox save, we need additional cleanup for review meta.
	 */
	public function process_save($post_id)
	{
		$meta_prefix = Bunyad::options()->get_config('meta_prefix') . '_';

		// Ensure the review metabox data exists and not an invalid request.
		if (!isset($_POST[$meta_prefix . 'reviews'])) {
			return;
		}

		$meta = Bunyad::posts()->meta(null, $post_id);

		foreach ($meta as $key => $value) {
			if (!preg_match('/criteria_rating_([0-9]+)$/', $key, $match)) {
				continue;
			}

			$meta_key = $meta_prefix . $key;

			if (!isset($_POST[$meta_key])) {
				delete_post_meta($post_id, $meta_key);
				delete_post_meta($post_id, $meta_prefix . 'criteria_label_' . $match[1]);
			}
		}
	}

	/**
	 * Add review/ratings to content
	 * 
	 * @param string $content
	 */
	public function inject_review($content)
	{
		if (!is_single() || !Bunyad::posts()->meta('reviews')) {
			return $content;
		}
		
		$position  = Bunyad::posts()->meta('review_pos');
		$shortcode = '[ts_review position="'. esc_attr($position) .'"]';
		
		// Based on placement.
		if (strstr($position, 'top')) { 
			$content =  $shortcode . $content;
		}
		else if ($position == 'bottom') {
			$content .= $shortcode; 
		}

		return $content;
	}

	/**
	 * Get all the criteria and the associated editor rating.
	 * 
	 * @return array
	 */
	public function get_criteria()
	{
		$meta = Bunyad::posts()->meta();
		$criteria = [];

		foreach ($meta as $key => $value) {
			if (preg_match('/criteria_rating_([0-9]+)$/', $key, $match)) {

				$data = [
					'number' => $match[1],
					'rating' => $value,
					'label'  => $meta['criteria_label_' . $match[1]]
				];

				// Bad import.
				if (is_array($data['rating'])) {
					$data['rating'] = $data['rating'][0];
					$data['label']  = array_values((array) $data['label'])[0];
				}

				$criteria[] = $data;
			}
		}

		return apply_filters('bunyad_reviews_criteria', $criteria);
	}

	/**
	 * Get all the pros and cons.
	 * 
	 * @return array|boolean
	 */
	public function get_pros_cons()
	{
		$pros = Bunyad::posts()->meta('review_pros') ?: [];
		$cons = Bunyad::posts()->meta('review_cons') ?: [];

		if (!$pros && !$cons) {
			return false;
		}

		return apply_filters('bunyad_reviews_pros_cons', [
			'pros' => $pros,
			'cons' => $cons,
			'pros_title' => Bunyad::posts()->meta('review_pros_title') ?: esc_html__('The Good', 'bunyad'),
			'cons_title' => Bunyad::posts()->meta('review_cons_title') ?: esc_html__('The Bad', 'bunyad'),
		]);
	}
	
	/**
	 * Converts percent rating to points rating
	 * 
	 * @param float|int $percent
	 */
	public function percent_to_decimal($percent)
	{
		return ((float) $percent / 100) * $this->rating_max;
	}
	
	/**
	 * Converts point rating to percent 
	 * 
	 * @param float|int $decimal
	 */
	public function decimal_to_percent($decimal)
	{
		return round(floatval($decimal) / $this->rating_max * 100);	
	}

	/**
	 * Get number of votes on a post.
	 */
	public function votes_count($post_id = null)
	{
		$rating = Bunyad::posts()->meta('user_rating', $post_id);
		
		if (!empty($rating['count'])) {
			return $rating['count'];
		}
		
		return 0;
	}
	
	/**
	 * Get overall user rating for a post
	 * 
	 * @param integer|null $post_id
	 * @param string $type  empty for overall number or 'percent' for rounded percent
	 */
	public function get_user_rating($post_id = null, $type = '')
	{
		$rating = Bunyad::posts()->meta('user_rating', $post_id);
		
		if (!empty($rating['overall'])) {
			
			// return percent?
			if ($type == 'percent') {
				return $this->decimal_to_percent($rating['overall']);
			}
			
			return round($rating['overall'], 1);
		}
		
		return 0;
	}
	
	/**
	 * Callback: AJAX add user rating.
	 */
	public function add_rating()
	{		
		// can the rating be added - perform all checks
		if (!$this->can_rate(intval($_POST['id']))) {
			wp_die();
		}
		
		if ($_POST['rating'] && $_POST['id']) {
		
			$votes = Bunyad::posts()->meta('user_rating', intval($_POST['id']));
			
			// defaults if no votes yet
			if (!is_array($votes)) {
				$votes = array('votes' => array(), 'overall' => null, 'count' => 0);
			}
			
			$votes['count']++;
		
			// Add to votes record.
			$votes['votes'][time()] = array($this->percent_to_decimal($_POST['rating']));

			// @deprecated due to GDPR
			//$votes['votes'][time()] = array($this->percent_to_decimal($_POST['rating']), $this->get_user_ip());
			
			// Recount overall.
			$total = 0;
			foreach ($votes['votes'] as $data) {
				$total += $data[0]; // rating
			}
			
			$votes['overall'] = $total / $votes['count'];
			
			// Save meta data.
			update_post_meta(intval($_POST['id']), '_bunyad_user_rating', $votes); 
			
			// Set the cookie.
			$ids = array();
			if (!empty($_COOKIE['bunyad_user_ratings'])) {
				$ids = (array) explode('|', $_COOKIE['bunyad_user_ratings']);
			}
			
			array_push($ids, $_POST['id']);
			setcookie('bunyad_user_ratings', implode('|', $ids), time() + 86400 * 30);
			
			echo json_encode([
				'decimal' => round($votes['overall'], 1), 
				'percent' => $this->decimal_to_percent($votes['overall'])
			]);
		}

		exit;
	}

	/**
	 * Whether a user can rate.
	 * 
	 * @param integer|null $post_id
	 * @param integer|null $user_id
	 */
	public function can_rate($post_id = null, $user_id = null)
	{
		if (!$post_id) {
			$post_id = get_the_ID();
		}
		
		// rating not even enabled
		if (!Bunyad::posts()->meta('reviews', $post_id) || !Bunyad::options()->user_rating) {
			return false;
		}

		// ip check
		// @deprecated due to GDPR policy

		// $votes = Bunyad::posts()->meta('user_rating', $post_id);
		// $user_ip = $this->get_user_ip();
		
		// if (!empty($votes['votes'])) {
			
		// 	foreach ((array) $votes['votes'] as $time => $data) {
		// 		if (!empty($data[1]) && $data[1] == $user_ip) {
		// 			return false;
		// 		}
		// 	}
		// }
		
		// Cookie check.
		if (!empty($_COOKIE['bunyad_user_ratings'])) {
			$ids = (array) explode('|', $_COOKIE['bunyad_user_ratings']);
			
			if (in_array($post_id, $ids)) {
				return false;
			}
		}
		
		return true;
	}

	/**
	 * Render the shortcode.
	 * 
	 * @access private
	 * @return string
	 */
	public function _render_shortcode($atts)
	{
		$props = shortcode_atts([
			'position' => 'bottom'
		], $atts);

		extract($props, EXTR_SKIP);

		ob_start();
		include __DIR__ . '/review.php';

		return ob_get_clean();
	}

	/**
	 * Get user ip
	 * 
	 * @deprecated No longer used due to GDPR policy
	 */
	public function get_user_ip()
	{
		if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
			// check ip from share internet
			$ip = $_SERVER['HTTP_CLIENT_IP'];	
		}
		elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
			// to check ip is pass from proxy
			$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
		}
		else {
			$ip = $_SERVER['REMOTE_ADDR'];
		}

		return $ip;
	}
}PK03Y_�c���$smartmag-core/inc/reviews/review.php<?php
/**
 * Block for review shortcode
 * 
 * Collect criteria and create an average rating to display.
 * 
 * Override by creating your-theme/partials/review.php file.
 */

$ratings = Bunyad::reviews()->get_criteria();
$review_scale = intval(Bunyad::options()->review_scale);

$overall = Bunyad::posts()->meta('review_overall');
$heading = Bunyad::posts()->meta('review_heading');
$type    = Bunyad::posts()->meta('review_type') ?: 'points';

if (!is_numeric($overall)) {
	$overall = 0;
}

// add verdict text 
$verdict = Bunyad::posts()->meta('review_verdict');
$verdict_text = Bunyad::posts()->meta('review_verdict_text');

// container classes
$classes[] = 'review-box';
if ($position == 'top-left') {
	array_push($classes, 'alignleft', 'column', 'half');
}

// add stars class
if ($type == 'stars') {
	array_push($classes, 'stars', 'review-box-stars');
}

// Allow themes to override.
if ($file = locate_template('partials/review.php')) {
	include $file; // phpcs:ignore WordPress.Security.EscapeOutput -- Safe from locate_template()
	return;
}

$pros_cons = Bunyad::reviews()->get_pros_cons();

?>

<section class="<?php echo esc_attr(implode(' ', $classes)); ?>">	
<div class="inner">
	<?php if ($heading): ?>
		<h3 class="heading"><?php echo esc_html($heading); ?></h3>
	<?php endif; ?>

	<div class="verdict-box">
		<div class="overall">
			<span class="number rating"><span class="value">
				<?php
					$overall_percent = round($overall / $review_scale * 100);
					echo (
						$type !== 'points' 
							? esc_html($overall_percent) . '<span class="percent">%</span>' 
							: esc_html($overall)
					); 

				?></span>
				
				<?php if ($type == 'stars'): ?>
				<div class="overall-stars">
					<div class="main-stars">
						<span style="width: <?php echo esc_attr($overall_percent); ?>%;"><strong class="number"><?php echo esc_html($overall_percent); ?>%</strong></span>
					</div>
				</div>
				
				<?php endif; ?>
				
				<span class="best"><span class="value-title" title="<?php echo esc_attr($type != 'points' ? 100 : Bunyad::reviews()->rating_max); ?>"></span></span>
			</span>
			<span class="verdict"><?php echo esc_html($verdict); ?></span>
		</div>
		
		<div class="text summary"><?php 
			echo do_shortcode(wpautop(
				wp_kses_post($verdict_text)
			));
		?></div>		
	</div>
	
	<?php if ($pros_cons): ?>

		<div class="review-pros-cons">
			<div class="the-pros">
				<h5 class="the-heading"><?php echo esc_html($pros_cons['pros_title']); ?></h5> 
				
				<ol class="the-pros-list">
				<?php foreach ($pros_cons['pros'] as $text): ?>
					<li>
					<svg viewBox="0 0 14 14"><path d="M12.376 2.056 4.788 9.644 1.623 6.479A.736.736 0 1 0 .581 7.521l3.686 3.686a.736.736 0 0 0 1.042 0l8.109-8.109a.736.736 0 1 0-1.042-1.042z"/></svg>
						<?php echo wp_kses_post($text); ?> 
					</li>
				<?php endforeach; ?>
				</ol>
			</div>

			<div class="the-cons">
				<h5 class="the-heading"><?php echo esc_html($pros_cons['cons_title']); ?></h5> 
				
				<ol class="the-cons-list">
				<?php foreach ($pros_cons['cons'] as $text): ?>
					<li>
					<svg viewBox="0 0 14 14"><path d="M2.209 3.219 5.99 7l-3.781 3.781a.714.714 0 1 0 1.01 1.01L7 8.01l3.781 3.781a.714.714 0 1 0 1.01-1.01L8.01 7l3.781-3.781a.714.714 0 1 0-1.01-1.01L7 5.99 3.219 2.209a.714.714 0 1 0-1.01 1.01z"/></svg>
						<?php echo wp_kses_post($text); ?> 
					</li>
				<?php endforeach; ?>
				</ol>
			</div>
		</div>

	<?php endif; ?>
	
	<ul class="criteria">
	<?php foreach ((array) $ratings as $rating): 
	
			$percent = round(($rating['rating'] / $review_scale) * 100);
	
			if ($type == 'percent') {
				$rating['rating'] = $percent . ' %';
			}
	?>
	
		<li>
		
		<?php if ($type == 'stars'): ?>
		
			<div class="criterion">
				<span class="label"><?php echo esc_html($rating['label']); ?></span>

				<div class="main-stars">
					<span style="width: <?php echo $percent; ?>%;"><strong class="rating"><?php echo esc_html($rating['rating']); ?></strong></span>
				</div>
			
			</div>
				
		<?php else: ?>
		
			<div class="criterion">
				<span class="label"><?php echo esc_html($rating['label']); ?></span>	
				<span class="rating"><?php echo esc_html($rating['rating']); ?></span>
			</div>
			
			<div class="rating-bar"><div class="bar" style="width: <?php echo $percent; ?>%;"></div></div>
				
		<?php endif; ?>

		</li>
	
	<?php endforeach; ?>
	
	<?php if (Bunyad::options()->user_rating): ?>
	
		<li class="review-box-user-ratings user-ratings<?php echo (!Bunyad::reviews()->can_rate() ? ' voted' : ''); ?>" data-post-id="<?php echo get_the_ID(); ?>">
			<span class="label"><?php esc_html_e('User Ratings', 'bunyad'); ?> <span class="votes">(<?php 
				printf(__('%s Votes', 'bunyad'), '<span class="number">' . Bunyad::reviews()->votes_count() . '</span>'); ?>)</span>
			</span>
			
			<?php if ($type == 'stars'): ?>
				
				<div class="main-stars">
					<span style="width: <?php echo Bunyad::reviews()->get_user_rating(null, 'percent'); ?>%;"><strong class="rating"><?php echo esc_html(Bunyad::reviews()->get_user_rating()); ?></strong></span>
				</div>
				
				<span class="hover-number"></span>
				
			<?php else: ?>
			
				<span class="rating"><?php echo esc_html(Bunyad::reviews()->get_user_rating(null, $type)) . ($type == 'percent' ? ' %' : ''); ?></span>
				
				<span class="hover-number"></span>
			
				<div class="rating-bar"><span class="bar" style="width: <?php echo Bunyad::reviews()->get_user_rating(null, 'percent'); ?>%;"></span></div>			
			
			<?php endif; ?>
		</li>
	
	<?php endif;?>
	
	</ul>
</div>
</section>PK03Yl䰂�'�'*smartmag-core/inc/reviews/metabox/form.php<?php 
/**
 * Meta box for post reviews.
 * 
 * @var Bunyad_Admin_MetaRenderer $this
 */

include trailingslashit(__DIR__) . 'options.php';
$basic_options  = $this->options($basic_options);
$schema_options = $this->options($schema_options);

$this->default_values = array_replace($this->default_values, [
	'_bunyad_review_overall' => $this->default_values['_bunyad_review_overall'] ?? '',
	'_bunyad_review_cons'    => $this->default_values['_bunyad_review_cons'] ?? '',
	'_bunyad_review_pros'    => $this->default_values['_bunyad_review_pros'] ?? '',
	'_bunyad_review_pros_title' => $this->default_values['_bunyad_review_pros_title'] ?? '',
	'_bunyad_review_cons_title' => $this->default_values['_bunyad_review_cons_title'] ?? '',
	'_bunyad_review_percent' => $this->default_values['_bunyad_review_percent'] ?? '' 
]);

$review_scale  = intval(Bunyad::options()->review_scale);
$criteria_data = Bunyad::reviews()->get_criteria();
$pros_data     = maybe_unserialize($this->default_values['_bunyad_review_pros'] ?? []);
$cons_data     = maybe_unserialize($this->default_values['_bunyad_review_cons'] ?? []);

$render_options = function($options) {

	foreach ($options as $element): 
		$class = $element['name'];
		if (isset($element['group']) && $element['group'] === 'schema') {
			$class .= ' is-schema-option';
		}
	?>
	<div class="option <?php echo esc_attr($class); ?>">
		<span class="label"><?php echo esc_html($element['label']); ?></span>
		<span class="field">
			<?php echo $this->render($element); ?>

			<?php if (!empty($element['desc'])): ?>
			
			<p class="description"><?php echo esc_html($element['desc']); ?></p>
		
			<?php endif;?>
		</span>
	</div>
	
	<?php 
	endforeach; 
};

?>

<div class="bunyad-meta bunyad-review bunyad-meta-editor cf">
<input type="hidden" name="bunyad_meta_box[]" value="<?php echo esc_attr($box_id); ?>" />

	<input type="hidden" name="_bunyad_review_percent" value="<?php echo esc_attr($this->default_values['_bunyad_review_percent']); ?>" size="3" />

	<?php 
		// Render basic options.
		$render_options($basic_options);
	?>

	<div class="option bunyad-review-criteria">
		<span class="label"><?php esc_html_e('Criteria', 'bunyad-admin'); ?></span>
		<div class="field criteria">
		
			<p>
				<input type="button" class="button add-more" value="<?php esc_attr_e('Add More Criteria', 'bunyad-admin'); ?>" 
					data-type="criteria" />
			</p>
			<p><?php esc_html_e('Overall rating auto-calculated:', 'bunyad-admin'); ?> <strong>
				<input type="text" name="_bunyad_review_overall" value="<?php echo esc_attr($this->default_values['_bunyad_review_overall']); ?>" size="3" />
				</strong></p>
				
			<div class="bunyad-group-fields fields"></div>
		</div>
	</div>

	<div class="option bunyad-review-pros">
		<span class="label"><?php esc_html_e('Pros', 'bunyad-admin'); ?></span>
		<div class="field">
			<p>
				<?php esc_html_e('Heading:', 'bunyad-admin'); ?> &nbsp;
				<input type="text" placeholder="<?php esc_attr_e('The Good', 'bunyad'); ?>" name="_bunyad_review_pros_title" value="<?php echo esc_attr($this->default_values['_bunyad_review_pros_title']); ?>" class="input" />
			</p>		
			<p>
				<input type="button" class="button add-more" 
					value="<?php esc_attr_e('Add A Pro', 'bunyad-admin'); ?>" 
					data-type="pros" />
			</p>
			
			<?php // Hidden field needed to allow metabox delete if none exist. ?>
			<input type="hidden" name="_bunyad_review_pros[]" value="" />

			<div class="bunyad-group-fields fields"></div>
		</div>
	</div>

	<div class="option bunyad-review-cons">
		<span class="label"><?php esc_html_e('Cons', 'bunyad-admin'); ?></span>
		<div class="field">
			<p>
				<?php esc_html_e('Heading:', 'bunyad-admin'); ?> &nbsp;
				<input type="text" placeholder="<?php esc_attr_e('The Bad', 'bunyad'); ?>" name="_bunyad_review_cons_title" value="<?php echo esc_attr($this->default_values['_bunyad_review_cons_title']); ?>" class="input" />
			</p>

			<p>
				<input type="button" class="button add-more" 
					value="<?php esc_attr_e('Add A Con', 'bunyad-admin'); ?>" 
					data-type="cons" />
			</p>

			<?php // Hidden field needed to allow metabox delete if none exist. ?>
			<input type="hidden" name="_bunyad_review_cons[]" value="" />
				
			<div class="bunyad-group-fields fields"></div>
		</div>
	</div>

	<div class="option-sep"></div>

	<?php 
		// Render schema options.
		$render_options($schema_options);
	?>

</div>

<script type="text/html" class="bunyad-review-tpl-criteria">
	<div class="criterion bunyad-group-item">
		<span class="delete dashicons dashicons-dismiss"></span>

		<span class="group-label"><?php esc_html_e('Criterion', 'bunyad-admin'); ?> &mdash;</span>
		<label>
			<?php esc_html_e('Label:', 'bunyad-admin'); ?> 
			<input type="text" name="_bunyad_criteria_label_%number%" class="input-rating" />
		</label>
		<label><?php esc_html_e('Rating:', 'bunyad-admin'); ?>
			<input type="text" name="_bunyad_criteria_rating_%number%" size="3" /> / <?php echo $review_scale; ?>
		</label>
	</div>
</script>

<script type="text/html" class="bunyad-review-tpl-pros">
	<div class="bunyad-group-item">
		<span class="delete dashicons dashicons-dismiss"></span>

		<label>
			<span class="group-label"><?php esc_html_e('Pro', 'bunyad-admin'); ?></span>
			<input type="text" name="_bunyad_review_pros[]" value="%value%" />
		</label>
	</div>
</script>

<script type="text/html" class="bunyad-review-tpl-cons">
	<div class="bunyad-group-item">
		<span class="delete dashicons dashicons-dismiss"></span>

		<label>
			<span class="group-label"><?php esc_html_e('Con', 'bunyad-admin'); ?></span>
			<input type="text" name="_bunyad_review_cons[]" value="%value%" />
		</label>
	</div>
</script>

<script>
jQuery(function($) {
	"use strict";

	const repeatField = (optionId, tplId, value, number) => {
		const option = $(optionId);

		// Current count
		let fieldsCount = option.data('fieldsCount') || 0;
		fieldsCount++;

		if (number) {
			fieldsCount = number;
		}

		// Get our template and modify it
		var html = $(tplId).html();
		html = html.replace(/%number%/g, fieldsCount);
		html = html.replace(/%value%/g, ['string', 'number'].includes(typeof value) ? value : '');
		
		option.find('.fields').append(html);

		// Update counter
		option.data('fieldsCount', fieldsCount);
	}
	
	const addMore = function(e, number) {
		const type = $(e.currentTarget).data('type');
		if (!type) {
			return false;
		}

		repeatField(`.bunyad-review-${type}`, `.bunyad-review-tpl-${type}`, number);
		return false;
	};

	var overall_rating = function() {
		var count = 0, total = 0, number = null; 
		$('.bunyad-review-criteria input[name*="criteria_rating"]').each(function() {

			number = parseFloat($(this).val());

			if (!isNaN(number)) {
				total += number;
				count++;
			}
		});

		var rating = (total/count).toFixed(1);
		$('.bunyad-review-criteria .overall-rating').html(rating);
		$('.bunyad-review-criteria input[name="_bunyad_review_overall"]').val(rating);
		$('.bunyad-review-criteria input[name="_bunyad_review_percent"]').val(Math.round(rating / <?php echo $review_scale; ?> * 100));	
	};

	$('.bunyad-review-criteria').on('blur', 'input[name*="criteria_rating"]', function() {
		if ($(this).val() > <?php echo $review_scale; ?>) {
			alert("<?php printf(esc_attr__('Rating cannot be greater than %d.', 'bunyad-admin'), $review_scale); ?>");
			$(this).val(<?php echo $review_scale; ?>);
		}

		overall_rating();
	});

	$('.bunyad-review-criteria .add-more').on('click', addMore);

	$('.bunyad-review-criteria').on('click', '.delete', function() {
		$(this).parents('.criterion').remove();
	});

	/**
	 * Add criteria
	 */
	var criteriaData = <?php echo json_encode($criteria_data); ?>;
	if (criteriaData.length) { 
		$.each(criteriaData, function(i, value) {
			repeatField(
				`.bunyad-review-criteria`, 
				`.bunyad-review-tpl-criteria`, 
				value, 
				value.number
			);

			$('[name=_bunyad_criteria_label_' + value.number + ']').val(value.label);
			$('[name=_bunyad_criteria_rating_' + value.number + ']').val(value.rating);
		});

		overall_rating();
	}
	else {
		$('.bunyad-review-criteria .add-more').trigger('click');
	}

	/**
	 * Add pros and cons.
	 */
	const doRepeater = (type, data) => {
		const optionId = `.bunyad-review-${type}`;

		$(`${optionId} .add-more`).on('click', addMore);

		$(optionId).on('click', '.delete', function() {
			$(this).parents('.bunyad-group-item').remove();
		});

		if (!data) {
			return;
		}

		Object.values(data).forEach(value => {
			repeatField(
				optionId,
				`.bunyad-review-tpl-${type}`,
				value
			);
		});

		$(optionId + ' .bunyad-group-fields').sortable();
	}

	const consData = <?php echo json_encode($cons_data); ?>;
	const prosData = <?php echo json_encode($pros_data); ?>;

	doRepeater('cons', consData);
	doRepeater('pros', prosData);

	/**
	 * Conditional show/hide
	 */
	const conditionalFields = () => {

		var current = $('[name=_bunyad_review_schema]').val();
		
		const getSelector = d => d.map(item => '._bunyad_review_' + item).join(',');
		
		const hideShow = (types, fields) => {
			const select = getSelector(fields);
			types.includes(current) ? $(select).show() : $(select).hide()
		}		
		
		const selector = getSelector([
			'item_author',
			'item_author_type',
			'item_link',
			'item_name'
		]);
		current === 'none' ? $(selector).hide() : $(selector).show();

		hideShow(['SoftwareApplication'], [
			'item_os',
			'item_app_cat'
		]);
		
		// Offers schema
		hideShow(['', 'SoftwareApplication', 'Product'], [
			'item_price',
			'item_currency'
		]);

		return;
	};

	$('[name=_bunyad_review_schema]').on('change', () => conditionalFields());
	conditionalFields();


	/**
	 * Show / hide all options.
	 */
	const handleShow = function() {
		const checked = $(this).is(':checked');
		const elements = $(this).closest('.bunyad-review').find('.option:not(._bunyad_reviews), .option-sep');

		if (checked) {
			elements.show();
			conditionalFields(); 
		} else {
			elements.hide();
		}
		
		return;
	}

	const element = $('[name=_bunyad_reviews]');
	element.on('click', handleShow)
	handleShow.call(element);
		
	
});
</script>PK03Yw�u��-smartmag-core/inc/reviews/metabox/options.php<?php
/**
 * Fields to show for page meta box
 */

$basic_options = [
	[
		'label' => esc_html__('Enable Review?', 'bunyad-admin'),
		'name'  => 'reviews', 
		'type'  => 'checkbox',
		'value' => 0,
	],

	[
		'label'   => esc_html__('Display Position', 'bunyad-admin'),
		'name'    => 'review_pos',
		'type'    => 'select',
		'options' => [
			'none'   => esc_html__('Do not display - Disabled', 'bunyad-admin'), 
			'top'    => esc_html__('Top', 'bunyad-admin'),
			'bottom' => esc_html__('Bottom', 'bunyad-admin')
		]
	],
	
	[
		'label'   => esc_html__('Show Rating As', 'bunyad-admin'),
		'name'    => 'review_type',
		'type'    => 'radio',
		'options' => [
			'percent' => esc_html__('Percentage', 'bunyad-admin'),
			'points'  => esc_html__('Points', 'bunyad-admin'),
			'stars'   => esc_html__('Stars', 'bunyad-admin'),
		], 
		'value' => 'points',
	],

	[
		'label' => esc_html__('Heading (Optional)', 'bunyad-admin'),
		'name'  => 'review_heading',
		'desc'  => 'A heading to display in the review box.',
		'type'  => 'text',
	],
	
	[
		'label' => esc_html__('Verdict', 'bunyad-admin'),
		'name'  => 'review_verdict',
		'desc'  => 'A one word verdit such as: Good or Awesome.',
		'type'  => 'text',
		'value' => '',
	],
	
	[
		'label'   => esc_html__('Verdict Summary', 'bunyad-admin'),
		'name'    => 'review_verdict_text',
		'type'    => 'textarea',
		'options' => ['rows' => 5, 'cols' => 90],
		'value'   => '',
	],
];

$schema_options = [
	[
		'label'   => esc_html__('Review Type/Schema', 'bunyad-admin'),
		'name'    => 'review_schema',
		'type'    => 'select',
		'options' => [
			''                   => 'Default (Product)',
			'none'               => 'Disabled',
			// 'Book'               => 'Book',
			'Course'             => 'Course',
			'CreativeWorkSeason' => 'CreativeWorkSeason',
			'CreativeWorkSeries' => 'CreativeWorkSeries',
			'Episode'            => 'Episode',
			// 'Event'              => 'Event',
			'Game'               => 'Game',
			// 'HowTo'              => 'HowTo',
			'LocalBusiness'       => 'LocalBusiness',
			'MediaObject'         => 'MediaObject',
			'Movie'               => 'Movie',
			'MusicPlaylist'       => 'MusicPlaylist',
			'MusicRecording'      => 'MusicRecording',
			'Organization'        => 'Organization',
			'Product'             => 'Product',
			'Recipe'              => 'Recipe',
			'SoftwareApplication' => 'SoftwareApplication',
		]
	],

	[
		'label' => esc_html__('Schema: Author / Brand / Org', 'bunyad-admin'),
		'group' => 'schema',
		'desc'  => 'Note: For schema "Product", this field should have brand/company of product. For CreativeWorks and Books it can be Author/Publisher.',
		'name'  => 'review_item_author',
		'type'  => 'text',
	],

	[
		'label'   => esc_html__('Schema: Author Type', 'bunyad-admin'),
		'group'   => 'schema',
		'name'    => 'review_item_author_type',
		'type'    => 'select',
		'options' => [
			'organization' => 'Organization',
			'person'       => 'Person',
		]
	],
	
	[
		'label' => esc_html__('Schema: Official Link', 'bunyad-admin'),
		'group' => 'schema',
		'name'  => 'review_item_link',
		'desc'  => 'Required for: Movie - Optional for other types. Link to the Wikipedia/official website/item site.',
		'type'  => 'text',
	],

	[
		'label' => esc_html__('Schema: Item Name (Optional)', 'bunyad-admin'),
		'group' => 'schema',
		'name'  => 'review_item_name',
		'desc'  => 'Will use post title when left empty.',
		'type'  => 'text',
	],

	[
		'label' => esc_html__('Schema: Operating System', 'bunyad-admin'),
		'group' => 'schema',
		'name'  => 'review_item_os',
		'desc'  => 'Optional: The operating system(s) required to use the app (for example, Windows 10, OSX 10.6, Android 1.6).',
		'type'  => 'text',
	],

	[
		'label'   => esc_html__('Schema: Application Category', 'bunyad-admin'),
		'group'   => 'schema',
		'name'    => 'review_item_app_cat',
		'desc'    => 'The type of app (for example, BusinessApplication or GameApplication). The value must be a supported app type.',
		'type'    => 'select',
		'options' => [
			''                              => '-- No Category --',
			'GameApplication'               => 'GameApplication',
			'SocialNetworkingApplication'   => 'SocialNetworkingApplication',
			'TravelApplication'             => 'TravelApplication',
			'ShoppingApplication'           => 'ShoppingApplication',
			'SportsApplication'             => 'SportsApplication',
			'LifestyleApplication'          => 'LifestyleApplication',
			'BusinessApplication'           => 'BusinessApplication',
			'DesignApplication'             => 'DesignApplication',
			'DeveloperApplication'          => 'DeveloperApplication',
			'DriverApplication'             => 'DriverApplication',
			'EducationalApplication'        => 'EducationalApplication',
			'HealthApplication'             => 'HealthApplication',
			'FinanceApplication'            => 'FinanceApplication',
			'SecurityApplication'           => 'SecurityApplication',
			'BrowserApplication'            => 'BrowserApplication',
			'CommunicationApplication'      => 'CommunicationApplication',
			'DesktopEnhancementApplication' => 'DesktopEnhancementApplication',
			'EntertainmentApplication'      => 'EntertainmentApplication',
			'MultimediaApplication'         => 'MultimediaApplication',
			'HomeApplication'               => 'HomeApplication',
			'UtilitiesApplication'          => 'UtilitiesApplication',
			'ReferenceApplication'          => 'ReferenceApplication',
		]
	],

	// Offer schema.
	[
		'label' => esc_html__('Schema: Price', 'bunyad-admin'),
		'group' => 'schema',
		'name'  => 'review_item_price',
		'desc'  => 'Required for: SoftwareApplication. Optional for other types.',
		'type'  => 'number',
	],
	[
		'label' => esc_html__('Schema: Currency', 'bunyad-admin'),
		'group' => 'schema',
		'name'  => 'review_item_currency',
		'value' => Bunyad::options()->review_schema_currency ?: 'USD',
		'desc'  => 'The 3-letter currency code such as USD. Required for: SoftwareApplication. Optional for other types.',
		'type'  => 'text',
	],
];

$options = array_merge($basic_options, $schema_options);
PK03Y�Q�w����"smartmag-core/inc/studio/data.json{
	"1": {
		"tab": "blocks",
		"title": "Content + Sidebar",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/structure-sidebar.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"structure"
		]
	},
	"2": {
		"tab": "blocks",
		"title": "Content + Sticky Sidebar",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/structure-sidebar.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"structure"
		],
		"order": 1
	},
	"15": {
		"tab": "pages",
		"title": "Home - Good News",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-good-news.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-good-news.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/good-news/",
		"tags": [
			"home"
		]
	},
	"16": {
		"tab": "pages",
		"title": "Home - Gaming",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-gaming.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-gaming.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/gaming/",
		"tags": [
			"home"
		]
	},
	"17": {
		"tab": "pages",
		"title": "Home - TheZine",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-zine.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-zine.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/zine/",
		"tags": [
			"home"
		]
	},
	"18": {
		"tab": "pages",
		"title": "Home - Sports",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-sports.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-sports.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/sports/",
		"tags": [
			"home"
		]
	},
	"19": {
		"tab": "pages",
		"title": "Home - Trendy",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-trendy.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-trendy.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/trendy/",
		"tags": [
			"home"
		]
	},
	"20": {
		"tab": "pages",
		"title": "Home - Tech 1",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-tech-1.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-tech-1.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/tech-1/",
		"tags": [
			"home"
		]
	},
	"21": {
		"tab": "pages",
		"title": "Home - Tech 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-tech-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-tech-2.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/tech-2/",
		"tags": [
			"home"
		]
	},
	"22": {
		"tab": "pages",
		"title": "Home - News",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-news.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-news.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/news/",
		"tags": [
			"home"
		]
	},
	"23": {
		"tab": "pages",
		"title": "Home - Informed News",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-informed.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-informed.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/informed/",
		"tags": [
			"home"
		]
	},
	"24": {
		"tab": "pages",
		"title": "Home - Geeks Empire",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-geeks-empire.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-geeks-empire.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/geeks-empire/",
		"tags": [
			"home"
		]
	},
	"25": {
		"tab": "pages",
		"title": "Home - PrimeMag",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-prime-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-prime-mag.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/prime-mag/",
		"tags": [
			"home"
		]
	},
	"26": {
		"tab": "pages",
		"title": "Home - Financial",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-financial.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-financial.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/financial/",
		"tags": [
			"home"
		]
	},
	"27": {
		"tab": "pages",
		"title": "Home - SocialLife",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-social-life.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-social-life.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/social-life/",
		"tags": [
			"home"
		]
	},
	"28": {
		"tab": "pages",
		"title": "Home - CoinBase",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-coinbase.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-coinbase.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/coinbase/",
		"tags": [
			"home"
		]
	},
	"29": {
		"tab": "pages",
		"title": "Home - ProMag",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-pro-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-pro-mag.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/pro-mag/",
		"tags": [
			"home"
		]
	},
	"30": {
		"tab": "pages",
		"title": "Home - CityBuzz",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-citybuzz.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-citybuzz.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/citybuzz/",
		"tags": [
			"home"
		]
	},
	"31": {
		"tab": "pages",
		"title": "Home - GameZone",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-game-zone.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-game-zone.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/game-zone/",
		"tags": [
			"home"
		]
	},
	"32": {
		"tab": "pages",
		"title": "Home - NewsBulletin",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-news-bulletin.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-news-bulletin.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/news-bulletin/",
		"tags": [
			"home"
		]
	},
	"33": {
		"tab": "pages",
		"title": "Home - Health",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-health.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-health.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/health/",
		"tags": [
			"home"
		]
	},
	"34": {
		"tab": "pages",
		"title": "Home - MagStudio",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-mag-studio.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-mag-studio.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/mag-studio/",
		"tags": [
			"home"
		]
	},
	"35": {
		"tab": "pages",
		"title": "Home - GossipMag",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-gossip-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-gossip-mag.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/gossip-mag/",
		"tags": [
			"home"
		]
	},
	"36": {
		"tab": "pages",
		"title": "Home - Muscle+Fitness",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-fitness.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-fitness.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/fitness/",
		"tags": [
			"home"
		]
	},
	"37": {
		"tab": "pages",
		"title": "Home - SmartTimes",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-smart-times.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-smart-times.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/smart-times/",
		"tags": [
			"home"
		]
	},
	"38": {
		"tab": "pages",
		"title": "Home - NewsBoard",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-news-board.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-news-board.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/news-board/",
		"tags": [
			"home"
		]
	},
	"39": {
		"tab": "pages",
		"title": "Home - NewsTime",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-news-time.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-news-time.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/news-time/",
		"tags": [
			"home"
		]
	},
	"40": {
		"tab": "pages",
		"title": "Home - TechDrop",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-tech-drop.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-tech-drop.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/tech-drop/",
		"tags": [
			"home"
		]
	},
	"41": {
		"tab": "pages",
		"title": "Home - Blogger",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-blogger.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-blogger.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/blogger/",
		"tags": [
			"home"
		]
	},
	"42": {
		"tab": "pages",
		"title": "Home - DigiTech",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-digi-tech.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-digi-tech.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/digi-tech/",
		"tags": [
			"home"
		]
	},
	"43": {
		"tab": "pages",
		"title": "Home - RTL Arabic",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-rtl.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-rtl.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/rtl/",
		"tags": [
			"home"
		]
	},
	"44": {
		"tab": "pages",
		"title": "Home - TechBlog",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-tech-blog.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-tech-blog.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/tech-blog/",
		"tags": [
			"home"
		]
	},
	"45": {
		"tab": "pages",
		"title": "Home - Discover",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-discover.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-discover.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/discover/",
		"tags": [
			"home"
		]
	},
	"46": {
		"tab": "pages",
		"title": "Home - SmartPost",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-smart-post.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-smart-post.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/smart-post/",
		"tags": [
			"home"
		]
	},
	"47": {
		"tab": "pages",
		"title": "Home - FridayMag",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-friday-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-friday-mag.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/friday-mag/",
		"tags": [
			"home"
		]
	},
	"48": {
		"tab": "pages",
		"title": "Home - SmartLife",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-smart-life.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-smart-life.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/smart-life/",
		"tags": [
			"home"
		]
	},
	"49": {
		"tab": "pages",
		"title": "Home - MagazineCo",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-magazine-co.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-magazine-co.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/magazine-co/",
		"tags": [
			"home"
		]
	},
	"50": {
		"tab": "pages",
		"title": "Home - EverydayNews",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-everyday-news.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-everyday-news.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/everyday-news/",
		"tags": [
			"home"
		]
	},
	"51": {
		"tab": "pages",
		"title": "Home - WorldMag",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-world-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-world-mag.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/world-mag/",
		"tags": [
			"home"
		]
	},
	"52": {
		"tab": "pages",
		"title": "Home - CityToday",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-city-today.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-city-today.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/city-today/",
		"tags": [
			"home"
		]
	},
	"53": {
		"tab": "pages",
		"title": "Home - DigitalHub",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-digital-hub.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-digital-hub.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/digital-hub/",
		"tags": [
			"home"
		]
	},
	"54": {
		"tab": "pages",
		"title": "Home - NewsMag",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-news-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-news-mag.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/news-mag/",
		"tags": [
			"home"
		]
	},
	"55": {
		"tab": "pages",
		"title": "Home - BeTheChange",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-be-the-change.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-be-the-change.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/be-the-change/",
		"tags": [
			"home"
		]
	},
	"56": {
		"tab": "pages",
		"title": "Home - LazyBusy",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-lazy-busy.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-lazy-busy.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/lazy-busy/",
		"tags": [
			"home"
		]
	},
	"57": {
		"tab": "pages",
		"title": "Home - InsightsOnly",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-insights-only.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-insights-only.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/insights-only/",
		"tags": [
			"home"
		]
	},
	"58": {
		"tab": "pages",
		"title": "Home - CupOfCoffee",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-cup-of-coffee.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-cup-of-coffee.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/cup-of-coffee/",
		"tags": [
			"home"
		]
	},
	"59": {
		"tab": "pages",
		"title": "Home - FamilyMag",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-family-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-family-mag.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/family-mag/",
		"tags": [
			"home"
		]
	},
	"60": {
		"tab": "pages",
		"title": "Home - Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-spotlight.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-spotlight.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/spotlight/",
		"tags": [
			"home"
		]
	},
	"61": {
		"tab": "pages",
		"title": "Home - DailyScoop",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-daily-scoop.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-daily-scoop.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/daily-scoop/",
		"tags": [
			"home"
		]
	},
	"62": {
		"tab": "pages",
		"title": "Home - MorningPost",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-morning-post.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-morning-post.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/morning-post/",
		"tags": [
			"home"
		]
	},
	"63": {
		"tab": "pages",
		"title": "Home - Political",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-political.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-political.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/political/",
		"tags": [
			"home"
		]
	},
	"64": {
		"tab": "pages",
		"title": "Home - NewsOne24",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-new-one24.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-new-one24.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/new-one24/",
		"tags": [
			"home"
		]
	},
	"65": {
		"tab": "pages",
		"title": "Home - TheVoiceDaily",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-thevoice-daily.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-thevoice-daily.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/thevoice-daily/",
		"tags": [
			"home"
		]
	},
	"66": {
		"tab": "pages",
		"title": "Home - NationalPress",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/home-national-press.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/home-national-press.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/national-press/",
		"tags": [
			"home"
		]
	},
	"50001": {
		"tab": "pages",
		"title": "Archive - Example 1",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/archive-example-1.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/archive-example-1.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/good-news/category/example-1/ts-qs/layout=custom/",
		"tags": [
			"archive"
		],
		"order": -1
	},
	"51001": {
		"tab": "pages",
		"title": "Footer - SmartTimes",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/footer-smart-times.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/footer-smart-times.jpg",
		"livePreview": "https://smartmag.theme-sphere.com/smart-times/",
		"tags": [
			"footer"
		],
		"order": -1
	},
	"500": {
		"tab": "blocks",
		"title": "Grid 2 Cols",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"501": {
		"tab": "blocks",
		"title": "1: Grid 2 Cols - Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-2-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"502": {
		"tab": "blocks",
		"title": "2: Grid 3 Cols - Small",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-3-sm.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"503": {
		"tab": "blocks",
		"title": "3: Grid Numbers 1 Col",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-numbers.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"504": {
		"tab": "blocks",
		"title": "4: Grid Numbers Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-numbers-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"505": {
		"tab": "blocks",
		"title": "5: Grid Title Above",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-title-above.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"506": {
		"tab": "blocks",
		"title": "6: Focus Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-focus-grid.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"507": {
		"tab": "blocks",
		"title": "7: Focus Grid Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-focus-grid-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"508": {
		"tab": "blocks",
		"title": "8: News Focus",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-news-focus.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"509": {
		"tab": "blocks",
		"title": "9: Highlights 1 Col",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-highlights-1.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"510": {
		"tab": "blocks",
		"title": "10: Highlights 2 Col",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-highlights-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"511": {
		"tab": "blocks",
		"title": "11: Small Posts",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-small-posts-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"512": {
		"tab": "blocks",
		"title": "12: Small Posts Alt",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-small-posts.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"513": {
		"tab": "blocks",
		"title": "13: Overlays",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-overlay.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"514": {
		"tab": "blocks",
		"title": "14: Overlays Tall Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-overlay-tall.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"515": {
		"tab": "blocks",
		"title": "15: Overlays Tall Full 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-overlay-tall-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"516": {
		"tab": "blocks",
		"title": "16: Overlays Tall 3",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-overlay-tall-3.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},

	"517": {
		"tab": "blocks",
		"title": "17: Posts List",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-list.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"518": {
		"tab": "blocks",
		"title": "18: List Large Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-list-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"519": {
		"tab": "blocks",
		"title": "19: List Compact",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-list-compact.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"520": {
		"tab": "blocks",
		"title": "20: Featured Grid 1",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-1.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"521": {
		"tab": "blocks",
		"title": "21: Featured Grid 1 Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-1-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"522": {
		"tab": "blocks",
		"title": "22: Featured Grid 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"523": {
		"tab": "blocks",
		"title": "23: Featured Grid 2 Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-2-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"524": {
		"tab": "blocks",
		"title": "24: Featured Grid 3",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-3.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"525": {
		"tab": "blocks",
		"title": "25: Featured Grid 3 - Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-3-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"526": {
		"tab": "blocks",
		"title": "26: Featured Grid 4",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-4.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"527": {
		"tab": "blocks",
		"title": "27: Featured Grid 4 - Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-4-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"528": {
		"tab": "blocks",
		"title": "28: Featured Single Full (Gaming)",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-eq1-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"529": {
		"tab": "blocks",
		"title": "29: Featured 2 Equals",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-eq2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"530": {
		"tab": "blocks",
		"title": "30: Featured 3 Equals",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-eq3.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"531": {
		"tab": "blocks",
		"title": "31: Featured 3 Equals Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-eq3-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"532": {
		"tab": "blocks",
		"title": "32: Featured 4 Equals Full",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-eq4-full.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},
	"533": {
		"tab": "blocks",
		"title": "33: Featured 3 Centered",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-feat-grid-eq3-center.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"featured"
		]
	},

	"534": {
		"tab": "blocks",
		"title": "34: Carousel Grid 1",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-carousel.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block",
			"carousel"
		]
	},
	"535": {
		"tab": "blocks",
		"title": "35: Carousel Grid Dark",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-grid-carousel-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block",
			"carousel"
		]
	},
	"536": {
		"tab": "blocks",
		"title": "36: Carousel Overlays",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-overlay-carousel.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block",
			"carousel"
		]
	},
	"537": {
		"tab": "blocks",
		"title": "37: Carousel News Ticker",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-carousel-ticker.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block",
			"carousel"
		]
	},
	"538": {
		"tab": "blocks",
		"title": "38: List Packed",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-list-packed.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"539": {
		"tab": "blocks",
		"title": "39: List Packed 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-list-packed-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"540": {
		"tab": "blocks",
		"title": "40: Mixed Overlay Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-mixed-40.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"541": {
		"tab": "blocks",
		"title": "41: Numbered Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-numbered-grid.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block",
			"section"
		]
	},
	"542": {
		"tab": "blocks",
		"title": "42: Mixed Digitech",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-mixed-digitech.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"543": {
		"tab": "blocks",
		"title": "43: Modern Strip - Small",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-small-modern-strip.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"544": {
		"tab": "blocks",
		"title": "44: Rounded Posts Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-rounded-grid.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block",
			"section"
		]
	},
	"545": {
		"tab": "blocks",
		"title": "45: Stylish Posts Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-stylish-grid.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block",
			"section"
		]
	},
	"546": {
		"tab": "blocks",
		"title": "46: Stylish Carousel",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-stylish-carousel.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block", 
			"section", 
			"carousel"
		]
	},
	"547": {
		"tab": "blocks",
		"title": "47: Mixed List + Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-mixed-list-grid.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"548": {
		"tab": "blocks",
		"title": "48: Mixed Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-mixed-grid.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"549": {
		"tab": "blocks",
		"title": "49: Cards Grid",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-cards-grid.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"550": {
		"tab": "blocks",
		"title": "49: Cards List",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/block-cards-list.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"block"
		]
	},
	"950": {
		"tab": "blocks",
		"title": "Newsletter Widget",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-1.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter"
		]
	},
	"951": {
		"tab": "blocks",
		"title": "Newsletter Widget 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter"
		]
	},
	"952": {
		"tab": "blocks",
		"title": "Newsletter Widget Dark",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-3.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter"
		]
	},
	"953": {
		"tab": "blocks",
		"title": "Newsletter Widget Dark 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-4.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter"
		]
	},
	"954": {
		"tab": "blocks",
		"title": "Newsletter Widget Large",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-lg-1.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter"
		]
	},
	"955": {
		"tab": "blocks",
		"title": "Newsletter Widget Large 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-lg-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter"
		]
	},
	"956": {
		"tab": "blocks",
		"title": "Newsletter Widget Large 3",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-lg-3.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter"
		]
	},
	"957": {
		"tab": "blocks",
		"title": "Newsletter Large Section",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/newsletter-lg-section.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"newsletter",
			"section"
		]
	},

	"1001": {
		"tab": "blocks",
		"title": "Section 1: Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1002": {
		"tab": "blocks",
		"title": "Section 2: Spotlight 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-2.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1003": {
		"tab": "blocks",
		"title": "Section 3: Spotlight Sports",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-3.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1004": {
		"tab": "blocks",
		"title": "Section 4: Spotlight Tech",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-4.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1005": {
		"tab": "blocks",
		"title": "Section 5: Highlights",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-highlights.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1006": {
		"tab": "blocks",
		"title": "Section 6: Mixed List",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-mixed-list.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1007": {
		"tab": "blocks",
		"title": "Section 7: News Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-7.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1008": {
		"tab": "blocks",
		"title": "Section 8: Informed Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-8.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1009": {
		"tab": "blocks",
		"title": "Section 9: Mixed (Informed)",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-mixed-informed.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1010": {
		"tab": "blocks",
		"title": "Section 10: Informed Spotlight 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-9.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1011": {
		"tab": "blocks",
		"title": "Section 11: GeeksEmpire Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-10.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1012": {
		"tab": "blocks",
		"title": "Section 12: GeeksEmpire Spotlight 2",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-11.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1013": {
		"tab": "blocks",
		"title": "Section 13: Video Carousel",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-video-carousel.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section",
			"carousel"
		]
	},
	"1014": {
		"tab": "blocks",
		"title": "Section 14: SocialLife Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-social.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1015": {
		"tab": "blocks",
		"title": "Section 15: CoinBase Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-coinbase.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1016": {
		"tab": "blocks",
		"title": "Section 16: ProMag Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-pro-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1017": {
		"tab": "blocks",
		"title": "Section 17: GossipMag Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-gossip-mag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1018": {
		"tab": "blocks",
		"title": "Section 18: NewsBulletin Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-news-bulletin.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1019": {
		"tab": "blocks",
		"title": "Section 19: Dual Sidebars",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-dual-sidebars.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1020": {
		"tab": "blocks",
		"title": "Section 20: Color Boxes Highlights",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-color-boxes-highlights.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1021": {
		"tab": "blocks",
		"title": "Section 21: Health Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-health.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1022": {
		"tab": "blocks",
		"title": "Section 22: Videos + Boxes Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-video-boxes-spotlight.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1023": {
		"tab": "blocks",
		"title": "Section 23: Fitness Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-fitness.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1024": {
		"tab": "blocks",
		"title": "Section 24: Mixed Stylish",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-mixed-stylish.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1025": {
		"tab": "blocks",
		"title": "Section 25: Videos Stylish",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-videos-stylish.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1026": {
		"tab": "blocks",
		"title": "Section 26: Mixed Videos Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-videos-techdrop.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1027": {
		"tab": "blocks",
		"title": "Section 27: TechDrop Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-techdrop.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1028": {
		"tab": "blocks",
		"title": "Section 28: Colored Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-digitech.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1029": {
		"tab": "blocks",
		"title": "Section 29: Stylish Mixed Carousel",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-stylish-mixed-carousel.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section",
			"carousel"
		]
	},
	"1030": {
		"tab": "blocks",
		"title": "Section 30: Mixed Content Blogger",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-mixed-blogger.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1031": {
		"tab": "blocks",
		"title": "Section 31: Modern Featured Blogger",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-featured-blogger.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section",
			"featured"
		]
	},
	"1032": {
		"tab": "blocks",
		"title": "Section 32: MagazineCo Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-magco.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1033": {
		"tab": "blocks",
		"title": "Section 33: TechBlog Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-techblog.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section",
			"featured"
		]
	},
	"1034": {
		"tab": "blocks",
		"title": "Section 34: Stylish Mixed Dark Boxes",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-stylish-mixed-dark.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	},
	"1035": {
		"tab": "blocks",
		"title": "Section 35: FridayMag Spotlight",
		"thumbnail": "https://theme-sphere.com/studio/smartmag/thumbs/section-spotlight-fridaymag.jpg",
		"preview": "https://theme-sphere.com/studio/smartmag/[email protected]",
		"tags": [
			"section"
		]
	}
}PK03Ya'(���#smartmag-core/inc/studio/module.php<?php

namespace Bunyad\Studio;

use \SmartMag_Core;

/**
 * The SmartMag Cloud Studio.
 */
class Module
{
	public function __construct()
	{
		add_action('elementor/editor/footer', [$this, 'elementor_views']);
		add_action('elementor/editor/after_enqueue_styles', [$this, 'elementor_scripts']);
		add_action('elementor/preview/enqueue_scripts', [$this, 'elementor_styles']);

		// Ajax request
		add_action('wp_ajax_ts-el-studio-template', [$this, 'get_template']);
	}

	public function elementor_scripts()
	{
		wp_enqueue_script(
			'bunyad-el-studio',
			SmartMag_Core::instance()->path_url . 'inc/studio/js/elementor.js',
			['jquery', 'wp-util', 'masonry', 'imagesloaded'],
			SmartMag_Core::VERSION
		);

		$data = json_decode(
			file_get_contents(__DIR__ . '/data.json')
		);

		wp_localize_script('bunyad-el-studio', 'SphereStudioData', [
			'elTemplates' => $data
		]);

		$this->elementor_styles();
	}

	public function elementor_styles() 
	{
		wp_enqueue_style(
			'bunyad-el-studio',
			SmartMag_Core::instance()->path_url . 'inc/studio/css/elementor.css',
			[],
			SmartMag_Core::VERSION
		);
	}

	/**
	 * Add the modal view templates.
	 */
	public function elementor_views()
	{
		$views = [
			'header',
			'blocks',
			'pages',
			'items',
			'header-preview',
			'preview'
		];

		foreach ($views as $view) {
			include_once SmartMag_Core::instance()->path . 'inc/studio/views/el-' . $view . '.php';
		}
	}

	/**
	 * AJAX request to get a block/template.
	 */
	public function get_template()
	{
		if (!current_user_can('edit_posts') || !$_GET['id']) {
			return wp_send_json_error();
		}
		
		$data = json_decode(
			file_get_contents(__DIR__ . '/templates.json'), 
			true
		);

		if (!isset($data[$_GET['id']])) {
			return wp_send_json_error('Block not found');
		}

		// Process content.
		$content = $data[ $_GET['id'] ];
		$content = $this->elementor_replace_ids($content);

		wp_send_json_success([
			'content' => $content
		]);
	}

	/**
	 * Required to have unique ids for multi-imports.
	 */
	public function elementor_replace_ids($content)
	{
		return \ELementor\Plugin::$instance->db->iterate_data($content, function($element) {
			$element['id'] = dechex(rand());
			return $element;
		});
	}
}PK03Y��o�{�{�'smartmag-core/inc/studio/templates.json{
	"1": [{"id":"70cd8fac","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"6878bfc4","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"438ab521","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"2": [{"id":"70cd8fac","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"6878bfc4","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"438ab521","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"15": [{"id":"15a4b3a5","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"150d780c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"42787c73","settings":{"grid_type":"grid-c","posts":3,"grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":""},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"509cc694","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"66221f14","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"4f0ff813","settings":{"style":"sm","columns":"4","cat_labels":"0","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_type":"b","heading_colors":"force","heading":"*Editors'* Choice"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"273f7498","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\"><img src=\"https:\/\/smartmag.theme-sphere.com\/good-news\/wp-content\/uploads\/sites\/6\/2021\/01\/[email protected]\" width=\"1200\" height=\"250\" \/><\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"container_width":100,"hide_mobile":"hidden-phone"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7697c570","settings":{"gutter":"default","gap":"no","structure":"22","post_ids":[],"tax_ids":[]},"elements":[{"id":"6d30e2a3","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"54bb2f08","settings":{"space_below":"none","excerpt_length":21,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"57a40370","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"4e4d7","settings":{"columns":"1","excerpt_length":9,"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"g","heading":"Living With Covid","separators":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"1e556dcd","settings":{"wp":{"title":"We Are Social","style":"b-2","social":["facebook","twitter","pinterest","instagram","youtube","vimeo"]},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"992def3","settings":{"gap":"no","background_background":"classic","background_color":"#0A0A0A","margin":{"unit":"px","top":"65","right":0,"bottom":"65","left":0,"isLinked":true},"padding":{"unit":"px","top":"70","right":"0","bottom":"65","left":"0","isLinked":false},"gutter":"default","margin_mobile":{"unit":"px","top":"50","right":0,"bottom":"50","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false},"post_ids":[],"tax_ids":[]},"elements":[{"id":"7be5e98c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"28580a42","settings":{"type":"e","accent_colors":"force","heading":"In Spotlight","css_bhead_space_below":{"unit":"px","size":5,"sizes":[]},"container_width":50,"css_bhead_line_color":"#333333"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"20fb75ca","settings":{"gutter":"default","gap":"no","structure":"20","post_ids":[],"tax_ids":[],"query_type":"custom"},"elements":[{"id":"4627a6b8","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"24876a6","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"200edf9f","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3f940c22","settings":{"scheme":"dark","style":"sm","excerpts":"","media_ratio":"3-2","container_width":50,"post_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":44,"sizes":[]},"space_below":"none","cat_labels":"0","title_lines":"2","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3fe5f576","settings":{"gutter":"default","gap":"no","structure":"22","post_ids":[],"tax_ids":[]},"elements":[{"id":"453d8857","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"5fe910e7","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*Pro* Lifestyle","separators":"1","filters":"category","filters_terms":["4","10","15"]},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"},{"id":"53351144","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\"><img src=\"https:\/\/smartmag.theme-sphere.com\/good-news\/wp-content\/uploads\/sites\/6\/2021\/01\/728X90-banner-02.jpg\" width=\"728\" height=\"90\" \/><\/a>","container_width":66,"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"283e4551","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"space_below":"none","title_lines":"3","excerpt_length":20,"heading":"*Home* Design","heading_more_text":"See More >","css_title_typo_sm_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"55ff38f5","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"276b7bef","settings":{"posts":3,"columns":"1","space_below":"none","excerpts":"","numbers":"a","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"g"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"35252b5e","settings":{"gutter":"default","gap":"no","margin":{"unit":"px","top":"80","right":0,"bottom":"60","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true},"post_ids":[],"tax_ids":[],"query_type":"custom"},"elements":[{"id":"5d4ce6df","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"38529be1","settings":{"type":"e","accent_colors":"force","heading":"*Mobile* Tech","align":"center","css_bhead_inner_pad":25,"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"4104254b","settings":{"posts":2,"space_below":"none","cat_labels":"0","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":100,"query_type":"section","post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"post_formats_pos":"center","css_format_icon_size":1.25},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"7d7e0455","settings":{"style":"sm","columns":"4","space_below":"none","cat_labels":"0","excerpts":"","media_ratio":"3-2","container_width":100,"query_type":"section","post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"2","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":2,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""},"css_row_gap_tablet":{"unit":"px","size":30,"sizes":[]},"css_row_gap_mobile":{"unit":"px","size":30,"sizes":[]},"_margin_tablet":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7af777f7","settings":{"gutter":"default","gap":"no","background_background":"classic","background_color":"#F2F2F2","background_sd_background":"classic","background_sd_color":"#232323","margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false},"post_ids":[],"tax_ids":[]},"elements":[{"id":"52ef90c6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"10a3e658","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\"><img src=\"https:\/\/smartmag.theme-sphere.com\/good-news\/wp-content\/uploads\/sites\/6\/2021\/01\/[email protected]\" width=\"1200\" height=\"250\" \/><\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"45182fee","settings":{"gutter":"default","gap":"no","structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"post_ids":[],"tax_ids":[]},"elements":[{"id":"52247a72","settings":{"_column_size":66,"_inline_size":null,"is_main":"main-content","_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"70972ac2","settings":{"posts":6,"pagination":"1","pagination_type":"load-more","space_below":"none","container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*Latest* Posts"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"76867a20","settings":{"_column_size":33,"_inline_size":null,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"12a238f","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"g","heading":"Family & Relations","separators":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"3acf9b12","settings":{"headline":"Subscribe to Updates","message":"<p>Get the latest creative news from SmartMag about art &amp; design.<\/p>","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"16": [{"id":"d791ea0","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"2567d8a4","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"65f97613","settings":{"grid_type":"grid-eq1","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","space_below":"none","posts":1,"content_position":"bot-center","css_title_size_lg":38,"css_title_typo_lg_font_size":{"unit":"px","size":38,"sizes":[]},"css_title_max_width":{"unit":"px","size":820,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2ec57b38","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"207602c7","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4eebb359","settings":{"columns":"4","media_ratio":"3-4","container_width":100,"offset":1,"post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7e2f75bb","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"31eff7d7","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"353c895","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/gaming\/wp-content\/uploads\/sites\/9\/2021\/02\/[email protected]\" width=\"970\" height=\"225\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"24ab7382","settings":{"gutter":"xlg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"404a1958","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"50ed0dff","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Latest","posts":6,"heading_colors":"force","pagination":"1","pagination_type":"load-more"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7127b205","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"29d69bc3","settings":{"posts":3,"columns":"1","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"EDITOR'S PICKS","numbers":"a"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6ac412ca","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"layout":"full_width","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"54952eed","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"54e8e952","settings":{"grid_type":"grid-eq3","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","space_below":"none","posts":3,"content_position":"bot-center","offset":5,"css_title_typo_sm_font_size":{"unit":"px","size":25,"sizes":[]},"css_title_typo_md_typography":"custom","css_title_typo_md_font_size_tablet":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"960311","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"331d6b6a","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1cdde40f","settings":{"accent_colors":"force","heading":"Guides","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"26bdae85","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"33e7d2d6","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"123bbe6f","settings":{"columns":"1","cat_labels":"0","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GADGETS","space_below":"none","css_title_typo_typography":"custom","posts":1,"heading_type":"none","excerpt_length":27,"css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"22399227","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"46216d55","settings":{"style":"sm","columns":"2","cat_labels":"0","excerpts":"","meta_items_default":"","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GADGETS","space_below":"none","css_title_typo_typography":"custom","offset":1,"heading_type":"none","media_ratio":"3-2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"27b706e9","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"3dfc9d0f","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"18a24e","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/gaming\/wp-content\/uploads\/sites\/9\/2021\/02\/[email protected]\" width=\"1200\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"329dcffb","settings":{"gutter":"xlg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"4a14ae06","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"711ae687","settings":{"columns":"2","cat_labels":"0","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GAME REVIEWS","space_below":"none","css_title_typo_typography":"custom","posts":8,"pagination":"1","pagination_type":"load-more","excerpt_length":11},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"8d7aa87","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"5ac2e0cc","settings":{"wp":{"title":"We Are Social","style":"b-2","social":["facebook","twitter","instagram","youtube"]},"container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"21708d69","settings":{"posts":5,"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading":"Trending","heading_colors":"force"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"17": [{"id":"45bb9b5","settings":{"is_full_xs":"is-full-xs","gutter":"default","gap":"no","margin":{"unit":"px","top":"35","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"post_ids":[],"tax_ids":[]},"elements":[{"id":"1d8c3bb5","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5b18608f","settings":{"grid_type":"grid-d","space_below":"none","post_ids":[],"tax_ids":[],"post_type":"post","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"11db5ab2","settings":{"gutter":"default","gap":"no","structure":"20","post_ids":[],"tax_ids":[]},"elements":[{"id":"2959ada7","settings":{"_column_size":50,"space_between_widgets":0,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6e3cba42","settings":{"posts":"8","sort_order":"desc","heading":"*Latest* Articles","heading_type":"a","tags":"","filters":"category","filters_terms":"fitness, travel, world","offset":"0","heading_colors":"force","container_width":66,"columns":2,"excerpt_length":"15","cat_labels":"0","post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"416b0d8a","settings":{"posts":"5","sort_order":"desc","heading":"*Latest* World","heading_type":"a","highlights":"1","cat_labels":"0","tags":"","sub_tags":"","offset":"0","filters":"category","filters_terms":["9","13","4"],"heading_colors":"force","container_width":66,"excerpt_length":null,"media_ratio":"custom","media_ratio_custom":"1.59","post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"},{"id":"66b816a","settings":{"posts":"6","sort_order":"desc","heading":"*Great* Lifestyle","heading_type":"a","cat_labels":"1","pagination":"0","pagination_type":"","tags":"","filters":"category","filters_terms":"fitness, travel, celebrities","offset":"0","heading_colors":"force","container_width":66,"excerpt_length":null,"post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"141afbb8","settings":{"posts":"3","sort_order":"desc","heading":"*From* Beauty","heading_type":"a","cat_labels":"0","pagination":"0","pagination_type":"","tags":"","filters":"","filters_terms":"","offset":"0","heading_colors":"force","container_width":66,"columns":3,"excerpt_length":null,"media_ratio":"3-4","meta_items_default":false,"meta_below":["date"],"css_column_gap":{"unit":"px","size":2},"post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"81e1172","settings":{"posts":"4","sort_order":"desc","heading":"*Sports* & Fitness","heading_type":"a","cat_labels":"1","pagination":"1","pagination_type":"load-more","tags":"","filters":"","filters_terms":"","offset":"0","heading_colors":"force","container_width":66,"columns":1,"excerpt_length":20,"separators":1,"space_below":"none","post_ids":[],"tax_ids":[],"read_more":"basic"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"37cd8ff9","settings":{"_column_size":50,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[{"id":"7313f1d2","settings":{"space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"g","heading":"Our Picks"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"6388711a","settings":{"wp":{"title":"","style":"a","social":["facebook","twitter","instagram","pinterest"]},"container_width":50},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"5c924cdd","settings":{"columns":"1","space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"g","heading":"Latest Fun"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"2c308722","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\"><img src=\"http:\/\/theme-sphere.com\/smart-mag\/demos\/trendy\/wp-content\/uploads\/sites\/3\/2017\/01\/sm-banner-350.jpg\" width=\"300\"><\/a>","container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"10501b90","settings":{"wp":{"title":"","number":"4"},"container_width":50},"elements":[],"isInner":false,"widgetType":"wp-widget-recent-comments","elType":"widget"},{"id":"145b3b8b","settings":{"title_tag":"h4","style":"sm","cat_labels":"0","excerpts":"","meta_items_default":"","container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"g","heading":"Don't Miss","column_gap":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"18": [{"id":"2f11b69b","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"40","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"1fd39da3","settings":{"_column_size":25,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"5174a741","settings":{"columns":"1","cat_labels":"1","meta_items_default":"","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"force","space_below":"none","css_title_typo_typography":"custom","posts":3,"pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","media_ratio":"3-2","heading_type":"none","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"280599aa","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":66.6667,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"12059a15","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"1-1","container_width":"66","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":38,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.76,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":30,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"27a4e588","settings":{"space_below":"none","excerpt_length":21,"container_width":"50","post_ids":[],"tax_ids":[],"heading":"Latest","posts":1,"heading_colors":"force","pagination_type":"load-more","media_pos":"right","media_ratio":"1-1","heading_type":"none","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1c51328b","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":33.333},"elements":[{"id":"2115d390","settings":{"columns":"1","cat_labels":"1","meta_items_default":"","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GAME REVIEWS","space_below":"none","css_title_typo_typography":"custom","posts":1,"pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","media_ratio":"3-2","heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"015","left":"0","isLinked":false},"offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"71259f50","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading":"Top Headlines","heading_colors":"force","space_below":"none","show_media":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"700","css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.36,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6705e6a8","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"2397c8cb","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"432b877c","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/sports\/wp-content\/uploads\/sites\/10\/2021\/02\/[email protected]\" width=\"1200\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"45e75957","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"652edbe1","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6786233d","settings":{"columns":"4","cat_labels":"0","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","media_ratio":"3-2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"64b3753d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"7e33e952","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3f6d3501","settings":{"columns":"4","cat_labels":"0","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"SOCCER","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","media_ratio":"3-2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"71b4f4e4","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"5ca93938","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12c5be4c","settings":{"grid_type":"grid-eq1","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","space_below":"none","posts":1,"content_position":"bot-center","css_title_size_lg":38,"css_title_typo_lg_font_size":{"unit":"px","size":38,"sizes":[]},"css_title_max_width":{"unit":"px","size":820,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1e0ac0c3","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"1590f062","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4905c6d1","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"SPORTS","posts":6,"heading_colors":"force","pagination":"1","pagination_type":"load-more","excerpts":""},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"382f6075","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"40142161","settings":{"posts":3,"columns":"1","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"Top Picks","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"20b2d510","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"442334ec","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"250af4b8","settings":{"columns":"4","cat_labels":"0","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NBA","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","media_ratio":"3-2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"19": [{"id":"7db90203","settings":{"is_full_xs":"is-full-xs","gutter":"default","gap":"no","margin":{"unit":"px","top":"35","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"post_ids":[],"tax_ids":[]},"elements":[{"id":"609261db","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"32d805cd","settings":{"grid_type":"grid-d","space_below":"none","post_ids":[],"tax_ids":[],"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7ea51203","settings":{"gutter":"default","gap":"no","structure":"22","post_ids":[],"tax_ids":[]},"elements":[{"id":"3721b168","settings":{"_column_size":66,"space_between_widgets":0,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5df5b0af","settings":{"posts":"8","sort_order":"desc","heading":"Latest Articles","heading_type":"d","tags":"","filters":"category","filters_terms":"fashion, fitness, travel, leisure","offset":"0","heading_colors":"force","container_width":66,"columns":2,"excerpt_length":"15","cat_labels":"0","post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"11506c83","settings":{"posts":"6","sort_order":"desc","heading":"Latest Leisure","heading_type":"d","cat_labels":"0","pagination":"0","pagination_type":"","tags":"","filters":"category","filters_terms":"fitness, travel, celebrities","offset":"0","heading_colors":"force","container_width":66,"post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"35329de3","settings":{"posts":"3","sort_order":"desc","heading":"From Beauty","heading_type":"d","cat_labels":"0","pagination":"0","pagination_type":"","tags":"","filters":"","filters_terms":"","offset":"0","heading_colors":"force","container_width":66,"columns":3,"media_ratio":"3-4","meta_items_default":false,"meta_below":["date"],"css_column_gap":{"unit":"px","size":2},"post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"4970970b","settings":{"posts":"4","sort_order":"desc","heading":"Latest Fashion","heading_type":"d","cat_labels":"0","pagination":"1","pagination_type":"load-more","tags":"","filters":"","filters_terms":"","offset":"0","heading_colors":"force","container_width":66,"columns":1,"excerpt_length":"26","separators":1,"space_below":"none","post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"241b02e2","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4239dbcd","settings":{"sidebar":"smartmag-primary","container_width":33},"elements":[],"isInner":false,"widgetType":"sidebar","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"20": [{"id":"2ac1d181","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"47a93d49","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6d06d75e","settings":{"grid_type":"grid-c","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"75a1c0fe","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"1c36dbc3","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"16225a3c","settings":{"columns":"1","excerpt_length":10,"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Apps","separators":"1","space_below":"none","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"adc61c3","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"77486589","settings":{"columns":"1","excerpt_length":10,"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Gadgets","separators":"1","space_below":"none","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6b68a1a9","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"54e90c2f","settings":{"columns":"1","excerpt_length":10,"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Gear","separators":"1","space_below":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5d0a4210","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"hide_mobile":"hidden-phone"},"elements":[{"id":"777d3dd0","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"296ccf75","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/tech-1\/wp-content\/uploads\/sites\/7\/2021\/01\/banner-tech-02.jpg\" width=\"1200\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"481ba6d5","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"51823ba","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1b6e20cf","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"*Latest* In Tech"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"2065a76d","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":"100","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"_margin_tablet":{"unit":"px","top":"30","right":"0","bottom":"40","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3,"heading_type":"none","offset":4,"_margin":{"unit":"px","top":"32","right":"0","bottom":"40","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"10","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"11751842","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","heading_type":"none","offset":5,"pagination":"1","pagination_type":"load-more"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"53b2a84c","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"ce6a35b","settings":{"columns":"1","excerpt_length":10,"container_width":33,"post_ids":[],"tax_ids":[],"heading":"In Spotlight","separators":"1","posts":5},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"2e304205","settings":{"wp":{"title":"We Are Social","style":"b-2","social":["facebook","twitter","pinterest","instagram","youtube","vimeo"]},"container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"b456be6","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/tech-1\/wp-content\/uploads\/sites\/7\/2021\/01\/300x600-banner-tech-02.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1ed8e413","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"7e735834","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"362c119b","settings":{"style":"sm","columns":"4","cat_labels":"0","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*Tech* Insights","media_ratio":"3-2","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"21": [{"id":"657a9d90","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"1754da6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b431773","settings":{"grid_type":"grid-b","posts":3,"grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3f3d7acb","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"11415d49","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2e646fbf","settings":{"columns":"3","cat_labels":"0","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"TRENDING","posts":3,"css_column_gap":{"unit":"px","size":36,"sizes":[]},"css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"29928e0","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"hide_mobile":"hidden-phone"},"elements":[{"id":"2529e7dc","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2e82416a","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/tech-2\/wp-content\/uploads\/sites\/8\/2021\/02\/[email protected]\" width=\"1200\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"9b903d7","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"1eb51d7c","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7708261e","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Latest","posts":6,"excerpts":"","heading_type":"none","heading_colors":"force"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"161aa6f5","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"4a39634d","settings":{"posts":3,"columns":"1","excerpts":"","meta_items_default":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"EDITOR'S PICKS"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3e3d0c18","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"query_type":"custom"},"elements":[{"id":"4abbbfc2","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7637ecec","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"21-9","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":"100","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3,"heading_type":"b","_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"heading":"CES 2021","heading_colors":"force","query_type":"section","css_media_height_mobile":{"unit":"px","size":310,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":24,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"2420143c","settings":{"columns":"3","cat_labels":"0","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","posts":3,"heading_type":"none","css_column_gap":{"unit":"px","size":36,"sizes":[]},"css_title_typo_typography":"custom","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1bd28e2f","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F4F4F4","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false},"background_sd_background":"classic","background_sd_color":"#202020"},"elements":[{"id":"61ec4a9b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"167734e8","settings":{"style":"sm","columns":"4","cat_labels":"0","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GADGETS","media_ratio":"3-2","space_below":"none","css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"e3d363c","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"5a51ccbc","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6a72cea4","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Latest","posts":6,"pagination":"1","pagination_type":"load-more","excerpts":"","heading_type":"none","heading_colors":"force","offset":6},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6dcb706f","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"72c5050f","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/tech-2\/wp-content\/uploads\/sites\/8\/2021\/02\/[email protected]\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"22": [{"id":"2555f156","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"45","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"1a0057c4","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"255567d0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news\/wp-content\/uploads\/sites\/11\/2021\/02\/[email protected]\" width=\"970\" height=\"225\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5ae4cd3e","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"31","margin":{"unit":"px","top":"45","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"50","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6a75c60","settings":{"_column_size":50,"_inline_size":57.5,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"588d2c19","settings":{"columns":"1","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GAME REVIEWS","space_below":"none","css_title_typo_typography":"custom","posts":1,"pagination_type":"load-more","excerpt_length":40,"media_ratio":"4-3","heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"015","left":"0","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_weight":"700","read_more":"btn"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5a5de00d","settings":{"_column_size":25,"_inline_size":20.5,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"6bec040d","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading":"TOP HEADLINES","heading_colors":"force","space_below":"none","show_media":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"posts":6,"meta_items_default":"","meta_below":["cat","date"],"css_title_typo_typography":"custom","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4dd90eec","settings":{"_column_size":25,"_inline_size":22,"_inline_size_tablet":50},"elements":[{"id":"8dd4725","settings":{"columns":"1","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GAME REVIEWS","space_below":"none","posts":3,"pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","heading_type":"none","offset":7,"css_title_typo_font_weight":"700"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1d63ec13","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"10","left":0,"isLinked":false}},"elements":[{"id":"41b09850","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"351cbee6","settings":{"columns":"3","cat_labels":"0","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"Politics","space_below":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","posts":3,"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"65e8008b","settings":{"columns":"4","cat_labels":"0","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","pagination_type":"load-more","excerpt_length":12,"style":"sm","heading_type":"none","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"48f7474","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"2464be43","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"37ff85a5","settings":{"heading":"Sports","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"449b20a1","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"32"},"elements":[{"id":"760a2399","settings":{"_column_size":50,"_inline_size":45,"_inline_size_tablet":100},"elements":[{"id":"41c8abd2","settings":{"posts":1,"columns":"1","meta_cat_style":"text","container_width":33,"post_ids":[],"tax_ids":[],"css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_weight":"700","heading_type":"none","css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7ed7f8cc","settings":{"_column_size":25,"_inline_size":28,"_inline_size_tablet":50},"elements":[{"id":"2b2cfff6","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4d2e9102","settings":{"_column_size":25,"_inline_size":27,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"650803bf","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news\/wp-content\/uploads\/sites\/11\/2021\/02\/[email protected]\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"707a944d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"69ded998","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3f1a8704","settings":{"columns":"4","cat_labels":"0","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"SOCCER","space_below":"none","pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","heading_type":"none","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"747d7f06","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"background_background":"classic","background_color":"#1F242F","padding":{"unit":"px","top":"45","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2576bfec","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"58bc56b1","settings":{"columns":"4","cat_labels":"0","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Technology","space_below":"none","pagination_type":"load-more","excerpt_length":12,"style":"sm","scheme":"dark","heading_type":"h","css_bhead_typo_typography":"custom","css_bhead_typo_text_transform":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"47a507e0","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"30"},"elements":[{"id":"3853b575","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"42c2d0e3","settings":{"posts":3,"excerpt_length":24,"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"Entertainment","separators":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"696fa729","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"39efd16a","settings":{"posts":3,"excerpt_length":24,"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"Travel","separators":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4f29aaf1","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"46fa1bc6","settings":{"posts":6,"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"Opinion"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3d2a285b","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_mobile":"hidden-phone"},"elements":[{"id":"24f0c564","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"54d0cb14","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news\/wp-content\/uploads\/sites\/11\/2021\/02\/[email protected]\" width=\"1240\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"51ccc9e2","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"5f161d6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6c22b949","settings":{"accent_colors":"force","heading":"Finance","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"37cecfff","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"3c9d38ff","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"3b974098","settings":{"columns":"1","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GAME REVIEWS","css_title_typo_typography":"custom","posts":1,"pagination_type":"load-more","excerpt_length":36,"heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"015","left":"0","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_weight":"700"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4f186dfd","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"51e71c56","settings":{"columns":"2","cat_labels":"0","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"SOCCER","pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","heading_type":"none","offset":1,"meta_items_default":"","meta_below":["date"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2022f15c","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"37e39b29","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"23004025","settings":{"columns":"4","cat_labels":"0","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Health","space_below":"none","pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"23": [{"id":"30ba6b0f","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"60","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":0,"bottom":"050","left":0,"isLinked":false}},"elements":[{"id":"66de3c29","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null},"elements":[{"id":"3f4b4855","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"5b418698","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"-15","right":"0","bottom":"15","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4f5cb70","settings":{"posts":2,"columns":"2","space_below":"none","excerpts":"","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"offset":1,"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"040","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"37ef06aa","settings":{"_column_size":33,"add_separator":"el-col-sep","_inline_size":null},"elements":[{"id":"3b49738e","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"53ce8caf","settings":{"text":"Divider","color":"#E6E6E6","container_width":33,"gap":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"63f2049e","settings":{"posts":6,"space_below":"none","show_media":"","container_width":33,"post_ids":[],"tax_ids":[],"excerpts":"","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"offset":4},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5bffe01f","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"c341097","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"274a60f8","settings":{"columns":"4","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"heading":"Leadership","media_ratio":"3-2","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"heading_type":"f","heading_colors":"force","css_bhead_typo_typography":"custom","css_bhead_typo_font_family":"Merriweather","css_bhead_color":"#813C5B","css_bhead_line_color":"#813C5B","css_bhead_border_color":"#813C5B"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1595c63c","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true}},"elements":[{"id":"237b890d","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"25e1a0d2","settings":{"accent_colors":"force","heading":"Technology","css_bhead_typo_typography":"custom","container_width":100,"type":"f","css_bhead_typo_font_family":"Merriweather","css_bhead_color":"#5B7E48","css_bhead_line_color":"#5B7E48","css_bhead_border_color":"#5B7E48"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2fefc2a4","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"39ceecfc","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6c60fc45","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","excerpt_length":10,"meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3fb31c71","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"278bf161","settings":{"posts":3,"space_below":"none","media_pos":"right","container_width":50,"post_ids":[],"tax_ids":[],"excerpt_length":12,"media_width":43,"media_ratio":"16-9","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4ac844a9","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"31678b67","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"60ee627f","settings":{"columns":"4","cat_labels":"0","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"Health","pagination_type":"load-more","excerpt_length":12,"style":"sm","heading_type":"b","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"scheme":"dark","space_below":"none","excerpts":"","_padding":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true},"_background_background":"classic","_background_color":"#1B1A1A","css_title_typo_typography":"custom","css_bhead_typo_typography":"custom","css_bhead_typo_font_family":"Merriweather","css_bhead_typo_text_transform":"none","css_bhead_color":"#EC9256","media_ratio":"3-2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"31f2922c","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"1cb8b5cc","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5e769dda","settings":{"accent_colors":"force","heading":"Money","css_bhead_typo_typography":"custom","container_width":100,"type":"f","css_bhead_typo_font_family":"Merriweather","css_bhead_color":"#897226","css_bhead_line_color":"#897226","css_bhead_border_color":"#897226"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3b4a829","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"aa3a623","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2698316","settings":{"posts":3,"space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"excerpt_length":12,"media_width":43,"media_ratio":"16-9","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"offset":1,"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4c7afe72","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"200ec792","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","excerpt_length":10,"meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6761ced5","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"775c5be0","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6ece9d4e","settings":{"heading":"Women","container_width":100,"type":"f","css_bhead_typo_typography":"custom","css_bhead_typo_font_family":"Merriweather","css_bhead_color":"#AE53A7","css_bhead_line_color":"#AE53A7","css_bhead_border_color":"#AE53A7"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1b0e958b","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"5a73554a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null},"elements":[{"id":"16269d65","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":34,"sizes":[]},"excerpts":"","heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"759a87e4","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"-15","right":"0","bottom":"15","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4fb3d0f2","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"offset":1,"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3a1f4218","settings":{"_column_size":33,"add_separator":"el-col-sep","_inline_size":null},"elements":[{"id":"744ffe23","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"offset":4,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"411512d5","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"305e4e96","settings":{"posts":5,"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"offset":5,"heading_type":"none","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"518aa82a","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"3261187b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"603dfe28","settings":{"columns":"4","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"heading":"Business","media_ratio":"3-2","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"offset":4,"heading_type":"f","css_bhead_typo_typography":"custom","css_bhead_typo_font_family":"Merriweather","css_bhead_color":"#813C5B","css_bhead_line_color":"#813C5B","css_bhead_border_color":"#813C5B"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6897f605","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[]},"elements":[{"id":"4b9b7d2a","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"220c9803","settings":{"heading":"Real Estate","container_width":100,"type":"f","css_bhead_typo_typography":"custom","css_bhead_typo_font_family":"Merriweather","css_bhead_color":"#5B7E48","css_bhead_line_color":"#5B7E48","css_bhead_border_color":"#5B7E48"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"591d3e76","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"85","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"3eebc517","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2701d573","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","excerpt_length":10,"meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":34,"sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4117d336","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"39e2f3c5","settings":{"posts":3,"space_below":"none","media_pos":"right","container_width":50,"post_ids":[],"tax_ids":[],"excerpt_length":12,"media_width":43,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":1,"heading_type":"none","media_ratio":"16-9"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"24": [{"id":"7a4bbdbd","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"31301cbc","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"f507657","settings":{"grid_type":"grid-eq1","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","space_below":"none","posts":1,"content_position":"bot-center","css_title_size_lg":41,"css_title_typo_lg_font_size":{"unit":"px","size":38,"sizes":[]},"css_title_max_width":{"unit":"px","size":800,"sizes":[]},"css_media_height_eq":{"unit":"px","size":495,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":400,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"b8d406c","settings":{"gap":"no","background_color":"#0A0A0A","margin":{"unit":"px","top":"45","right":0,"bottom":"50","left":0,"isLinked":false},"gutter":"default","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"post_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"47a6b4fc","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5dd25fd2","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3,"media_ratio_custom":0.92},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2a6dcbdf","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1a824b17","settings":{"excerpts":"","media_ratio":"4-3","container_width":50,"post_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":35,"sizes":[]},"space_below":"none","title_lines":"3","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"meta_cat_style":"labels","css_title_typo_typography":"custom","cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5f2f0119","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"68558844","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3ead28c1","settings":{"posts":3,"columns":"3","media_ratio":"16-9","container_width":100,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","cat_labels":"1","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","numbers":"a","heading_type":"c","heading":"Latest Movies","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_line_weight":3,"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2fb1e26a","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"hide_mobile":"hidden-phone"},"elements":[{"id":"1ef39984","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"112a440c","settings":{"code":"<img src=\"https:\/\/smartmag.theme-sphere.com\/gaming\/wp-content\/uploads\/sites\/9\/2021\/02\/[email protected]\" \/>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"72159380","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#1A1B1D","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"55","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4248daeb","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"33298cde","settings":{"grid_type":"grid-eq4","space_below":"none","cat_labels":"0","css_media_ratio":0.75,"meta_items_default":"1","post_ids":[],"tax_ids":[],"content_position":"bot-center","css_grid_gap":{"unit":"px","size":2,"sizes":[]},"css_title_size_sm":18,"container_width":100,"heading_type":"e","heading_colors":"none","heading":"Top Games","css_bhead_space_below":{"unit":"px","size":36,"sizes":[]},"css_bhead_color":"#FFFFFF","css_bhead_line_weight":2,"css_bhead_line_color":"#FFFFFF24"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"32b5f8ed","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","query_type":"custom"},"elements":[{"id":"61f91c22","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"5062f6df","settings":{"type":"c","heading":"Binge Watch","css_bhead_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_bhead_typo_font_weight":"bold","css_bhead_line_weight":3,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":66,"css_bhead_space_below":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"cb34352","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"none","css_media_ratio":1.95,"post_ids":[],"tax_ids":[],"_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"container_width":66,"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""},"heading_type":"none","has_ratio":"","css_media_height_eq":{"unit":"px","size":400,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"5a3e0bfc","settings":{"cat_labels":"0","excerpts":"","media_ratio":"16-9","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_margin":{"unit":"px","top":"15","right":0,"bottom":"15","left":0,"isLinked":true},"posts":5,"pagination":"1","pagination_type":"load-more","meta_author_img":"","heading_type":"none","heading":"New Stories","css_column_gap":{"unit":"px","size":0,"sizes":[]},"css_row_gap":{"unit":"px","size":40,"sizes":[]},"space_below":"none","load_more_style":"b","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2f1d3d9","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"6fef876c","settings":{"columns":"1","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"c2","heading":"Trendy Tv","heading_align":"center","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5b3508a3","settings":{"gap":"no","post_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#101010","margin":{"unit":"px","top":"55","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true}},"elements":[{"id":"4349483d","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"446eae33","settings":{"headline":"Join our mailing list","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","fields_style":"inline","container_width":100,"scheme":"dark","container":"lg","icon":"mail-bg","css_padding":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":38,"sizes":[]},"css_message_typo_typography":"custom","css_message_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_heading_typo_font_size_mobile":{"unit":"px","size":27,"sizes":[]},"css_message_typo_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"46879140","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"520e0e41","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"79fca02a","settings":{"type":"c","heading":"Latest Updates","css_bhead_typo_font_weight":"bold","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":66,"css_bhead_space_below":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"34fda5f3","settings":{"posts":6,"pagination":"1","container_width":66,"post_ids":[],"tax_ids":[],"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2038939f","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col","space_between_widgets":0},"elements":[{"id":"464376da","settings":{"type":"c2","heading":"Follow Us","align":"center","css_bhead_typo_font_weight":"bold","_z_index":1,"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"e29e360","settings":{"wp":{"title":"","style":"b-2","social":["facebook","twitter","pinterest","instagram"]},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"20e43a61","settings":{"space_below":"none","title_lines":"3","media_ratio":"custom","media_ratio_custom":1.2,"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"c2","heading":"Must Read","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"heading_align":"center","css_bhead_space_below":{"unit":"px","size":32,"sizes":[]},"css_bhead_line_weight":3,"_margin":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false},"style":"a","css_title_typo_font_weight":"600","_padding":{"unit":"px","top":"35","right":"25","bottom":"35","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#F3F3F3"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5982cfd9","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"16ae544d","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#E1E1E1"},"elements":[{"id":"334664e9","settings":{"code":"<img src=\"https:\/\/smartmag.theme-sphere.com\/gaming\/wp-content\/uploads\/sites\/9\/2021\/02\/[email protected]\" \/>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5b5754f7","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"background_color":"#F9F9F9","margin":{"unit":"px","top":"55","right":0,"bottom":"75","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6c9786e5","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"2bf5d6e8","settings":{"type":"e","heading":"Top *Stories*","align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_typo_font_weight":"bold","css_bhead_line_weight":2,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":100,"css_bhead_space_below":{"unit":"px","size":31,"sizes":[]},"__globals__":{"css_bhead_line_color":""}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7d76ed3a","settings":{"gutter":"sm","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"3c7afc35","settings":{"_column_size":25,"_inline_size":50,"_inline_size_tablet":100,"column_order_tablet":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":2},"elements":[{"id":"5561255b","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","container_width":33,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"41f62ef","settings":{"_column_size":25,"_inline_size":25,"_inline_size_tablet":50,"column_order_tablet":2,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":1},"elements":[{"id":"4bcbbdad","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":33,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1276ff66","settings":{"_column_size":50,"_inline_size":25,"column_order_tablet":3,"_inline_size_tablet":50,"column_order":3},"elements":[{"id":"54a1001a","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":50,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"201f6c66","settings":{"columns":"4","cat_labels":"1","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"space_below":"none","pagination":"1","pagination_type":"load-more","cat_labels_pos":"bot-center","title_lines":"2","content_center":"1","media_ratio":"4-3","column_gap":"sm","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"25": [{"id":"132145ec","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"30","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"exclude_ids":[],"is_full_xs":"is-full-xs"},"elements":[{"id":"151c1776","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72d0314c","settings":{"post_ids":[],"tax_ids":[],"container_width":100,"space_below":"none","posts":5,"css_title_typo_lg_font_size":{"unit":"px","size":32,"sizes":[]},"css_title_max_width":{"unit":"%","size":90,"sizes":[]},"css_media_height_eq":{"unit":"px","size":495,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":400,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size_mobile":{"unit":"px","size":26,"sizes":[]},"css_media_ratio":1.15,"exclude_ids":[],"css_title_typo_sm_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"79cc8095","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"126eebe3","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"background_color":"#0A0A0A","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"625aa69a","settings":{"media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Lifestyle","filters":"category","filters_terms":["294","295"],"css_title_typo_font_weight":"800","css_bhead_typo_font_weight":"800"},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"},{"id":"9bad180","settings":{"posts":6,"space_below":"none","media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Arts & Culture","filters":"category","filters_terms":["292","293"]},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1902dc27","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3ecf71a","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/prime-mag\/wp-content\/uploads\/sites\/15\/2021\/06\/[email protected]\" width=\"336\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"76a7808e","settings":{"columns":"1","space_below":"none","media_ratio":"16-9","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"g","heading":"Travel"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5a8009fd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"10","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"69fb71b5","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3cc2e195","settings":{"posts":3,"columns":"3","cat_labels":"0","cat_labels_pos":"top-left","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"31f97791","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"5c1be5cb","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3527a7c1","settings":{"posts":5,"pagination":"1","pagination_type":"load-more","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Posts","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3ceddaae","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1cc6eca2","settings":{"wp":{"title":"Social","style":"a-2","counters":"","social":["facebook","twitter","pinterest","instagram","reddit","vimeo"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"1ad9a129","settings":{"columns":"1","media_ratio":"16-9","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"g","heading":"Home Decor"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4632d411","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"10","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"7a0b6c74","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"59d169d1","settings":{"posts":3,"columns":"3","cat_labels":"0","cat_labels_pos":"top-left","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"offset":3,"css_row_gap":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5f4b6dfb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"593b8cff","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6b858573","settings":{"media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Pets World","filters":"category","filters_terms":["296","297"],"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"},{"id":"3c757db6","settings":{"posts":6,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Travel","cat_labels":"1","reviews":"radial","heading_colors":"none","pagination":"1","pagination_type":"load-more","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1064e735","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6ca9395","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"59664be6","settings":{"excerpts":"","media_ratio":"3-2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"g","heading":"Food","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"title_lines":"2","meta_items_default":"","meta_below":["date"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"cat_labels":"0"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"26": [{"id":"4e1cacc6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"45","right":0,"bottom":"20","left":0,"isLinked":false}},"elements":[{"id":"5d2fadaa","settings":{"_column_size":33,"_inline_size":27.33,"column_order":"","column_order_mobile":2,"column_order_tablet":2,"_inline_size_tablet":50},"elements":[{"id":"4724380b","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":12,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"g","heading":"Top Stories","css_title_typo_typography":"custom","css_bhead_typo_typography":"custom","offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6a2cc38e","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4141a96b","settings":{"posts":6,"title_lines":"2","media_width":33,"media_ratio":"4-3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","offset":4,"css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"624018ff","settings":{"_column_size":33,"_inline_size":44.672,"column_order":"","column_order_mobile":1,"column_order_tablet":1,"_inline_size_tablet":100},"elements":[{"id":"58c4ed5f","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":21,"media_ratio":"4-3","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":34,"sizes":[]},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5e17565e","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"7235483b","settings":{"posts":2,"title_lines":"2","excerpt_length":11,"media_width":45,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":25,"sizes":[]},"separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"offset":1,"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5ae699f6","settings":{"_column_size":33,"_inline_size":27.33,"column_order":"","column_order_mobile":3,"column_order_tablet":3,"_inline_size_tablet":50},"elements":[{"id":"3220fa56","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/financial\/wp-content\/uploads\/sites\/16\/2021\/06\/[email protected]\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"5407db03","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":12,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"force","heading":"Investments"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"44046c78","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"6d48a8f4","settings":{"posts":3,"title_lines":"2","media_width":33,"media_ratio":"4-3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"58964613","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_slideshow_loop":"","background_image":{"url":"https:\/\/smartmag.theme-sphere.com\/financial\/wp-content\/uploads\/sites\/16\/2021\/06\/pexels-tima-miroshnichenko-7567222-12-scaled.jpg","id":3553},"background_size":"cover"},"elements":[{"id":"ea59edb","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2942016d","settings":{"columns":"4","space_below":"none","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"b","heading":"Economy Insights","css_title_typo_typography":"custom","scheme":"dark","excerpts":"","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"_padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"463bb18","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"65","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":0,"bottom":"050","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"4b036999","settings":{"_column_size":66,"_inline_size":67.5,"_inline_size_tablet":100,"is_main":"main-content"},"elements":[{"id":"f756061","settings":{"posts":8,"pagination":"1","pagination_type":"load-more","excerpt_length":27,"media_width":42,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"none","heading":"National News","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"space_below":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7bfa0123","settings":{"_column_size":33,"_inline_size":32.5,"_inline_size_tablet":100,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"1dd05455","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"exclude_ids":[],"heading":"Europe"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"49a1ca24","settings":{"text":"Divider","color":"#E6E6E6","container_width":33,"gap":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"748c2a87","settings":{"posts":3,"title_lines":"2","media_width":33,"media_ratio":"4-3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"293d49a7","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/financial\/wp-content\/uploads\/sites\/16\/2021\/06\/[email protected]\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"80","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"27": [{"id":"5b090d5","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"45","right":0,"bottom":"75","left":0,"isLinked":false}},"elements":[{"id":"171404c7","settings":{"_column_size":33,"_inline_size":27.33,"column_order":"","column_order_mobile":2,"column_order_tablet":2,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"767296ad","settings":{"posts":2,"columns":"1","excerpt_length":12,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Stories","css_title_typo_typography":"custom","css_bhead_typo_typography":"custom","offset":1,"excerpts":"","media_ratio":"3-2","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5eb8f89b","settings":{"_column_size":33,"_inline_size":44.672,"column_order":"","column_order_mobile":1,"column_order_tablet":1,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"540afe0e","settings":{"posts":1,"columns":"1","excerpt_length":23,"media_ratio":"1-1","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":34,"sizes":[]},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"23ba19f3","settings":{"_column_size":33,"_inline_size":27.33,"column_order":"","column_order_mobile":3,"column_order_tablet":3,"_inline_size_tablet":50},"elements":[{"id":"6ac6b4b4","settings":{"posts":5,"title_lines":"2","media_width":33,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":3,"media_pos":"right","css_row_gap":{"unit":"px","size":40,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"bold","heading_type":"none","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"73a823b9","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"26fab0c5","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5b39ce19","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/social-life\/wp-content\/uploads\/sites\/17\/2021\/07\/[email protected]\" width=\"1200\" height=\"225\" alt=\"Demo\" \/>\n<\/a>","container_width":100,"hide_mobile":"hidden-phone"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"47703232","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_slideshow_loop":"","background_size":"cover","background_color":"#121418","padding":{"unit":"px","top":"70","right":"0","bottom":"0","left":"0","isLinked":false},"margin":{"unit":"px","top":"80","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true}},"elements":[{"id":"4fdebd98","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"24668b48","settings":{"type":"e","accent_colors":"none","heading":"Featured Videos","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_bhead_typo_font_weight":"bold","css_bhead_space_below":{"unit":"px","size":5,"sizes":[]},"css_bhead_color":"#FFFFFF","css_bhead_line_color":"#2B303C","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"79d307c3","settings":{"posts":1,"scheme":"dark","space_below":"none","excerpts":"","media_pos":"right","media_width":62,"media_ratio":"16-9","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_pad":{"unit":"%","top":"9","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_padding":{"unit":"%","top":"3","right":"0","bottom":"5","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"heading_type":"none","css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"hide_mobile":"hidden-phone"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"6fa84dca","settings":{"columns":"1","space_below":"none","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"","css_title_typo_typography":"custom","scheme":"dark","excerpts":"","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"posts":1,"meta_items_default":"","meta_above":["cat"],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"carousel_autoplay":"1","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3dcd109a","settings":{"columns":"4","space_below":"none","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"","css_title_typo_typography":"custom","scheme":"dark","excerpts":"","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"posts":8,"meta_items_default":"","meta_above":["cat"],"carousel":"1","_margin":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"offset":1,"carousel_autoplay":"1","css_title_typo_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"660c6bc8","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"65","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":0,"bottom":"050","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"75e54236","settings":{"_column_size":66,"_inline_size":67.5,"_inline_size_tablet":100,"is_main":"main-content"},"elements":[{"id":"536bcc79","settings":{"pagination_type":"load-more","excerpt_length":19,"media_width":42,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Latest Posts","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"space_below":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"css_row_gap":{"unit":"px","size":42,"sizes":[]},"separators":"","css_content_pad":{"unit":"%","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"sort_order":"desc","title_lines":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7488ecdb","settings":{"_column_size":33,"_inline_size":32.5,"_inline_size_tablet":100,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"4b7fb14d","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"exclude_ids":[],"heading":"Celebrities","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"sort_order":"desc"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4e507158","settings":{"posts":2,"title_lines":"2","media_width":33,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":1,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"700"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"41e20452","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"75","left":0,"isLinked":false}},"elements":[{"id":"40726420","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"76a337d9","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","scheme":"dark","fields_style":"inline","css_bg_color_sd":"#131418","container_width":100,"css_button_bg":"#EDA541","container":"lg","css_padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"css_padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"78cb0350","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"25b67fe6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7bfa71f7","settings":{"heading":"Popular","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5d1c710e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"2c0f7790","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1dad0603","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":13,"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Stories","css_title_typo_typography":"custom","css_bhead_typo_typography":"custom","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6d2dffa9","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":2,"sizes":[]},"container_width":50},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"3c3c7191","settings":{"posts":1,"title_lines":"2","media_width":28,"media_ratio":"4-3","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":1,"space_below":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"bold","heading_type":"none","meta_items_default":"","meta_above":["cat"],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"52913af3","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":null,"_inline_size_tablet":100,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"15","isLinked":false},"margin_tablet":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"4ee59bec","settings":{"space_below":"none","title_lines":"2","excerpts":"","media_pos":"right","media_width":40,"media_ratio":"3-2","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":40,"sizes":[]},"heading_type":"none","query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"34c2140c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"85","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"3a21353c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"32bc2624","settings":{"columns":"4","space_below":"none","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Our Picks","css_title_typo_typography":"custom","excerpts":"","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"28": [{"id":"2be579b8","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#FFBD41"},"elements":[{"id":"4f86b226","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"37f6b547","settings":{"wp":{"title":"","text":"[ccpw id=4248]","filter":"on","visual":"on"}},"elements":[],"isInner":false,"widgetType":"wp-widget-text","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"77fb6226","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","background_background":"classic","background_color":"#142135","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1018ffe7","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"7738c316","settings":{"posts":1,"columns":"1","excerpt_length":35,"media_ratio":"16-9","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"scheme":"dark","meta_cat_style":"labels"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"34264d3e","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"7c9f0ffe","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":35,"media_ratio":"16-9","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"scheme":"dark","excerpts":"","meta_cat_style":"labels","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"14e00e31","settings":{"text":"Divider","color":"#313F4E","gap":{"unit":"px","size":3,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"278eabfd","settings":{"posts":2,"title_lines":"2","media_width":33,"media_ratio":"4-3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"scheme":"dark","show_media":"","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"437cf880","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"65","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":0,"bottom":"050","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"358e2bf","settings":{"_column_size":66,"_inline_size":69.25,"_inline_size_tablet":100,"is_main":"main-content"},"elements":[{"id":"7aaee871","settings":{"posts":9,"pagination":"1","pagination_type":"load-more","excerpt_length":18,"media_width":40,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"none","heading":"National News","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"space_below":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]},"media_ratio":"16-9","meta_cat_style":"labels"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"e8e946a","settings":{"_column_size":33,"_inline_size":30.75,"_inline_size_tablet":100,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"51f48eef","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"exclude_ids":[],"heading":"Europe","meta_cat_style":"labels"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3dedf1d8","settings":{"text":"Divider","color":"#E6E6E6","container_width":33,"gap":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"234720c0","settings":{"posts":5,"title_lines":"2","media_width":33,"media_ratio":"4-3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"4372df7e","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3c20becb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#142135","padding":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7aacb0e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"65b7692e","settings":{"type":"b","heading":"Featured Videos","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":19,"sizes":[]},"css_bhead_typo_font_weight":"600","css_bhead_typo_letter_spacing":{"unit":"px","size":0.2,"sizes":[]},"css_bhead_color":"#FFFFFF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3675e5eb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","background_background":"classic","background_color":"#142135","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"4cf64472","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"7a5bceda","settings":{"posts":1,"columns":"1","media_ratio":"16-9","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"48082440","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1ab87020","settings":{"scheme":"dark","title_lines":"2","excerpts":"","media_pos":"right","media_width":40,"media_ratio":"16-9","meta_items_default":"","meta_above":["cat"],"meta_cat_style":"labels","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":36,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"600","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"710a8dcc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"12e0b9bb","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"504a6006","settings":{"columns":"4","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Economy Insights","css_title_typo_typography":"custom","excerpts":"","media_ratio":"16-9","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"posts":8,"meta_items_default":"","meta_below":["date"],"meta_cat_style":"labels"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"66a9c0ba","settings":{"code":"\n<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/coinbase\/wp-content\/uploads\/sites\/19\/2021\/08\/Coinbase-wide.jpg\" width=\"1240\" height=\"225\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"container_width":100,"hide_mobile":"hidden-phone"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"79f691e6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"7ac7a6a9","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"48d46f54","settings":{"columns":"4","space_below":"none","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Economy Insights","css_title_typo_typography":"custom","excerpts":"","media_ratio":"16-9","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"meta_cat_style":"labels"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"29": [{"id":"28c7862","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"30","right":0,"bottom":"45","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"exclude_ids":[],"is_full_xs":"is-full-xs"},"elements":[{"id":"6f34ab99","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5906320b","settings":{"post_ids":[],"tax_ids":[],"container_width":100,"posts":5,"css_title_max_width":{"unit":"%","size":90,"sizes":[]},"css_media_height_eq":{"unit":"px","size":495,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":400,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size_mobile":{"unit":"px","size":26,"sizes":[]},"exclude_ids":[],"css_title_typo_sm_typography":"custom","grid_type":"grid-d","css_title_size_sm":17,"css_title_size_md":20,"css_title_size_lg":28,"css_title_typo_sm_font_weight":"600","css_title_typo_md_typography":"custom","css_title_typo_md_font_weight":"600","css_title_typo_lg_font_weight":"600","css_title_typo_lg_line_height":{"unit":"em","size":1.3,"sizes":[]},"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4cac3783","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"7bca1423","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"background_color":"#0A0A0A","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6e7868e5","settings":{"posts":6,"space_below":"sm","title_lines":"2","media_ratio":"3-2","container_width":66,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Pro* Lifestyle","filters":"category","filters_terms":["10","568"],"css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"387f6772","settings":{"pagination_type":"load-more","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Tech* News","space_below":"none","excerpt_length":16,"media_width":48,"media_ratio":"3-2","read_more":"basic","meta_items_default":"","meta_above":["cat"],"css_row_gap":{"unit":"px","size":2,"sizes":[]},"separators":"","css_content_pad":{"unit":"%","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_weight":"600","heading_colors":"none","heading_more_text":"View More >","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/pro-mag\/category\/example-2\/","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"title_lines":"3","css_row_gap_mobile":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2cb06601","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7f6e173e","settings":{"wp":{"title":"Social","style":"b-2","counters":"y","social":["facebook","twitter","pinterest","instagram","youtube","tiktok"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"55f73e2d","settings":{"posts":3,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Opinion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"none","excerpt_length":13,"media_ratio":"3-2","columns":"1","excerpts":"","numbers":"a","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3f3d20f0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#131312","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"60","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"47af515b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"70b68c68","settings":{"posts":3,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Gamers* Point","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"sm","excerpt_length":13,"media_ratio":"3-2","scheme":"dark","columns":"3","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"62be53f5","settings":{"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":13,"media_ratio":"3-2","scheme":"dark","columns":"4","title_lines":"2","excerpts":"","meta_items_default":"","meta_below":["date"],"heading_type":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"600","offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5b9dbc4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"654d21d0","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"a9a6a7e","settings":{"space_below":"sm","media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Food* & Recipes","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_sm_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"},{"id":"3a25385e","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/pro-mag\/wp-content\/uploads\/sites\/18\/2021\/08\/Dark-wide.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-phone"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"7b3e7de1","settings":{"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Home* Decor","heading_colors":"none","pagination_type":"load-more","space_below":"sm","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"509c78b0","settings":{"pagination_type":"load-more","container_width":66,"post_ids":"","exclude_ids":[],"tax_ids":[],"heading":"*Latest* Posts","excerpt_length":16,"media_width":48,"media_ratio":"3-2","read_more":"basic","meta_items_default":"","meta_above":["cat"],"css_row_gap":{"unit":"px","size":2,"sizes":[]},"separators":"","css_content_pad":{"unit":"%","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_weight":"600","pagination":"1","space_below":"none","title_lines":"3","css_row_gap_mobile":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"39ec37b3","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"498353e9","settings":{"posts":1,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Fashion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"sm","excerpt_length":13,"media_ratio":"3-2","columns":"1","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"2d7d3459","settings":{"columns":"1","title_lines":"2","media_width":31,"media_ratio":"4-3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":25,"sizes":[]},"separators":"","posts":2,"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"40156e41","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33,"css_button_bg":"#131312"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"7ee3c564","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/pro-mag\/wp-content\/uploads\/sites\/18\/2021\/08\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"30": [{"id":"31db3dfb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"50","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true}},"elements":[{"id":"23a570db","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7a189676","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/citybuzz\/wp-content\/uploads\/sites\/20\/2021\/08\/Top-wide.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"625624d4","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"50","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"exclude_ids":[],"is_full_xs":"is-full-xs"},"elements":[{"id":"4fef9b37","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f3450da","settings":{"post_ids":[],"tax_ids":[],"container_width":100,"posts":5,"css_title_typo_lg_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_max_width":{"unit":"%","size":90,"sizes":[]},"css_media_height_eq":{"unit":"px","size":495,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":400,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size_mobile":{"unit":"px","size":21,"sizes":[]},"css_media_ratio":1.5,"exclude_ids":[],"grid_type":"grid-b","css_title_typo_md_typography":"custom","css_title_typo_md_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_md_font_weight":"700","css_title_typo_md_line_height":{"unit":"em","size":1.3,"sizes":[]},"css_title_typo_md_letter_spacing":{"unit":"px","size":-0.3,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_lg_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"meta_below":["date"],"css_title_typo_md_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"13eb1687","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"2b6e15a2","settings":{"_column_size":66,"is_main":"main-content","_inline_size":70.667,"_inline_size_tablet":100},"elements":[{"id":"5c32b596","settings":{"posts":5,"pagination_type":"load-more","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Posts","space_below":"sm","title_lines":"2","excerpt_length":22,"content_vcenter":"1","media_width":43,"media_ratio":"4-3","read_more":"basic","heading_type":"none","css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"60e75061","settings":{"gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#EFEFEF","background_sd_background":"classic","background_sd_color":"#393939","border_border":"solid","border_width":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"#9B61BC","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"56de3329","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"border_color":"#00000012","padding":{"unit":"px","top":"25","right":"35","bottom":"30","left":"35","isLinked":false},"padding_mobile":{"unit":"px","top":"20","right":"24","bottom":"25","left":"24","isLinked":false}},"elements":[{"id":"7200573","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"16-9","meta_items_default":"","meta_below":["cat","date"],"meta_cat_style":"text","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"b","heading":"Top Posts","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_padding":{"unit":"%","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_font_weight":"bold","css_bhead_typo_text_transform":"none","css_bhead_typo_letter_spacing":{"unit":"px","size":-0.1,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":14,"sizes":[]},"css_bhead_color":"#DC2446","_border_border":"solid","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"query_type":"section","css_format_icon_size_mobile":0.8,"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_media_height_mobile":{"unit":"px","size":240,"sizes":[]},"post_formats_pos":"top-right"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"1772837e","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_border_border":"solid","query_type":"section","css_row_gap_mobile":{"unit":"px","size":24,"sizes":[]},"skip_posts":1,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5fae5da8","settings":{"posts":5,"pagination":"1","pagination_type":"load-more","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Posts","space_below":"none","title_lines":"2","excerpt_length":22,"content_vcenter":"1","media_width":43,"media_ratio":"4-3","read_more":"basic","heading_type":"none","css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"offset":5,"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"5cd5e72","settings":{"posts":5,"pagination":"1","media_ratio":"4-3","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5e6ad794","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":29,"_inline_size_tablet":100},"elements":[{"id":"330d4a59","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/citybuzz\/wp-content\/uploads\/sites\/20\/2021\/08\/Woman-Square.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"1bb33c82","settings":{"wp":{"title":"","style":"b-2","counters":"","social":["facebook","twitter","pinterest","instagram"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"62a9c5fb","settings":{"columns":"1","excerpts":"","numbers":"a","meta_items_default":"","meta_below":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Top Posts","media_ratio":"3-2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3ec796f6","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33,"message":"<p>Get the latest creative news from FooBar about art and design.<\/p>","style":"c","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_heading_typo_font_weight":"bold","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"31": [{"id":"17131cbd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"28","right":0,"bottom":"50","left":0,"isLinked":false},"is_full_xs":"is-full-xs","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"1c8c915a","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"51218e7c","settings":{"css_media_ratio":1.35,"meta_below":["date"],"post_ids":[],"tax_ids":[],"css_grid_gap":{"unit":"px","size":2,"sizes":[]},"container_width":100,"space_below":"none","css_overlay_pad_lg":{"unit":"px","top":"22","right":"22","bottom":"22","left":"22","isLinked":false},"css_overlay_pad_md":{"unit":"px","top":"15","right":"15","bottom":"20","left":"15","isLinked":false},"css_overlay_pad_sm":{"unit":"px","top":"15","right":"15","bottom":"20","left":"15","isLinked":false},"css_title_size_sm":16,"cat_labels_pos":"top-left","posts":2,"css_title_typo_lg_typography":"custom","show_post_formats":"","css_title_size_lg":28,"css_title_typo_sm_font_size":{"unit":"px","size":1,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"px","size":34,"sizes":[]},"exclude_ids":[],"grid_type":"grid-eq2","css_title_typo_lg_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4909475","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"050","left":0,"isLinked":false}},"elements":[{"id":"32708b8","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6f067e22","settings":{"columns":"4","excerpts":"","media_ratio":"3-2","container_width":100,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Featured Games","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","space_below":"none","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"cat_labels":"0"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"10e835e8","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"3adb05ce","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"18932900","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/game-zone\/wp-content\/uploads\/sites\/23\/2021\/11\/Content-Top.jpg\" width=\"970\" height=\"225\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"62948bdd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"521c2832","settings":{"_column_size":25,"_inline_size":21,"border_color":"#994433","ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100},"elements":[{"id":"7b8ecb34","settings":{"posts":8,"media_ratio":"3-2","container_width":33,"post_ids":[],"tax_ids":[],"heading":"Popular","heading_colors":"none","css_bhead_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_bhead_typo_text_transform":"uppercase","exclude_ids":[],"columns":"1","excerpts":"","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"space_below":"md","css_row_gap":{"unit":"px","size":29,"sizes":[]},"title_lines":"2","cat_labels":"0","columns_tablet":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6e4a4346","settings":{"_column_size":50,"_inline_size":51,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2836ac9a","settings":{"posts":1,"media_ratio":"16-9","container_width":50,"post_ids":[],"tax_ids":[],"heading":"Latest News","css_bhead_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_bhead_typo_text_transform":"uppercase","exclude_ids":[],"columns":"1","space_below":"none","excerpt_length":26,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"css_title_typo_font_weight":"700","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6cffeda1","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":5,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"28c30e73","settings":{"posts":3,"pagination_type":"load-more","excerpt_length":24,"media_width":39,"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"cat_labels":"1","meta_items_default":"","meta_below":["author","date","comments"],"meta_cat_style":"labels","space_below":"sm","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":40,"sizes":[]},"content_vcenter":"1","media_ratio":"3-2","offset":1,"title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"6ed296e3","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/game-zone\/wp-content\/uploads\/sites\/23\/2021\/11\/LatestNews-Mid.jpg\" width=\"571\" height=\"70\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"29ce3d8b","settings":{"pagination_type":"load-more","excerpt_length":24,"media_width":39,"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"cat_labels":"1","meta_items_default":"","meta_below":["author","date","comments"],"meta_cat_style":"labels","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":40,"sizes":[]},"content_vcenter":"1","pagination":"1","media_ratio":"3-2","space_below":"none","offset":4,"css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"410f9f67","settings":{"_column_size":25,"_inline_size":28,"sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"51bf4f9a","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"New Release","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_sm_font_weight":"700","css_title_typo_font_weight":"700","title_lines":"2","media_ratio":"3-2","css_title_typo_letter_spacing":{"unit":"px","size":-0.3,"sizes":[]},"css_title_typo_sm_letter_spacing":{"unit":"px","size":-0.3,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"3d13beec","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/game-zone\/wp-content\/uploads\/sites\/23\/2021\/11\/Sidebar-Mid.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"7d832274","settings":{"wp":{"title":"We Are Social!","style":"c-2","counters":"","social":["facebook","youtube","tiktok","whatsapp","twitter","instagram"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"13e3761d","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","icon":"mail-top","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"329539e7","settings":{"gap":"no","gutter":"default","is_full_xs":"is-full-xs","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"post_ids":[],"tax_ids":[],"exclude_ids":[]},"elements":[{"id":"66867922","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#000000"},"elements":[{"id":"8d99965","settings":{"columns":"4","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Gaming Videos","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"scheme":"dark","space_below":"md","meta_items_default":"","_padding":{"unit":"px","top":"30","right":"30","bottom":"0","left":"30","isLinked":false},"cat_labels":"0"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4ef6b82d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"590284b8","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#003087","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E2E2E2","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"background_overlay_background":"classic","_inline_size_tablet":50},"elements":[{"id":"fe00a11","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"Playstation","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"title_lines":"2","space_below":"none","_border_border":"solid","scheme":"dark","heading_colors":"force","css_bhead_accent":"#FFFFFF","css_title_hov_color_sd":"#FFFFFFB5","cat_labels":"0","css_title_color":"#FBFBFB"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2cca6f67","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#107C10","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E2E2E2","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"_inline_size_tablet":50},"elements":[{"id":"11f2f63c","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"Xbox","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"space_below":"none","title_lines":"2","scheme":"dark","heading_colors":"force","css_bhead_accent":"#FFFFFF","css_title_hov_color_sd":"#FFFFFFB5","cat_labels":"0","css_title_color":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6ce7f23e","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#BD0211","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E2E2E2","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4f5dd579","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"Nintendo","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"title_lines":"2","scheme":"dark","space_below":"none","heading_colors":"force","css_bhead_accent":"#FFFFFF","css_title_hov_color_sd":"#FFFFFFB5","cat_labels":"0","css_title_color":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"785530b6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"78cedd58","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"418a4386","settings":{"columns":"5","excerpts":"","media_ratio":"3-2","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Top Reviewed & Discussed","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","posts":10,"meta_items_default":"","title_lines":"2","style":"sm","space_below":"none","cat_labels":"0","reviews":"bars"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"32": [{"id":"7c6d098a","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"30","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"4db1883f","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"336b3fb0","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"sm","css_media_ratio":1.55,"meta_cat_style":"text","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.4,"sizes":[]},"container_width":66,"heading_type":"none","css_title_typo_lg_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"-20","bottom":"-10","left":"-20","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"3324bd21","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"2","exclude_ids":[],"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"246a3620","settings":{"_column_size":33,"_inline_size":null,"is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"485062ca","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1c406e80","settings":{"text":"Divider","color":"#E6E6E6","container_width":33,"gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"117b324f","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.3,"sizes":[]},"title_lines":"2","offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"249d7e65","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"exclude_ids":[],"is_full_xs":"is-full-xs"},"elements":[{"id":"145d0a72","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#101010","padding":{"unit":"px","top":"30","right":"30","bottom":"5","left":"30","isLinked":false}},"elements":[{"id":"6e774b11","settings":{"posts":8,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*World* News","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"none","excerpt_length":13,"columns":"4","excerpts":"","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_typography":"custom","scheme":"dark","title_lines":"2","media_ratio":"3-2","carousel":"1","carousel_autoplay":"1","css_title_typo_letter_spacing":{"unit":"px","size":-0.1,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"671a4cda","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","query_type":"custom","exclude_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"451cfe72","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"280841c6","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"none","css_media_ratio":1.95,"post_ids":[],"tax_ids":[],"_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"container_width":66,"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"has_ratio":"","css_media_height_eq":{"unit":"px","size":400,"sizes":[]},"meta_cat_style":"text","exclude_ids":[],"css_title_typo_md_font_weight":"600","css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":26,"sizes":[]},"heading":"Technology"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"16e21652","settings":{"cat_labels":"0","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":66,"post_ids":[],"tax_ids":[],"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"pagination_type":"load-more","meta_author_img":"","heading_type":"none","css_column_gap":{"unit":"px","size":0,"sizes":[]},"css_row_gap":{"unit":"px","size":40,"sizes":[]},"load_more_style":"b","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_font_weight":"600","content_vcenter":"1","media_width":43,"offset":1,"space_below":"none","grid_on_sm":"1","css_excerpt_visible_mobile":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"75efdf56","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col"},"elements":[{"id":"778802d6","settings":{"columns":"1","container_width":"33","post_ids":[],"tax_ids":[],"posts":3,"reviews":"radial","heading":"Covid'19","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_font_weight":"800","css_bhead_typo_letter_spacing":{"unit":"px","size":0.2,"sizes":[]},"__globals__":{"css_bhead_typo_typography":"","css_accent_color":""},"heading_colors":"none","css_bhead_line_weight":4,"exclude_ids":[],"css_bhead_border_weight":2,"css_bhead_border_color":"#152B4B","separators":"1","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"5936ec12","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-bulletin\/wp-content\/uploads\/sites\/26\/2021\/11\/News-Right.jpg\" width=\"336\" height=\"280\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5b88b3c6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"is_full_xs":"is-full-xs"},"elements":[{"id":"70d95fbc","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#101010"},"elements":[{"id":"21aba1c2","settings":{"headline":"Join our mailing list","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","fields_style":"inline","container_width":100,"scheme":"dark","container":"lg","icon":"mail-bg","css_padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":36,"sizes":[]},"css_message_typo_typography":"custom","css_message_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_heading_typo_font_size_mobile":{"unit":"px","size":27,"sizes":[]},"css_message_typo_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"submit_text":"Subscribe","css_padding_tablet":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"css_heading_typo_font_size_tablet":{"unit":"px","size":32,"sizes":[]},"css_heading_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7c3d0e4d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"exclude_ids":[]},"elements":[{"id":"65fce53a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"6a13a5f2","settings":{"posts":6,"pagination":"1","container_width":66,"post_ids":[],"tax_ids":[],"space_below":"none","pagination_type":"load-more","exclude_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"heading":"Top Stories"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"63e3f21b","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col","space_between_widgets":0},"elements":[{"id":"71aba64b","settings":{"heading":"Follow Us","css_bhead_typo_font_weight":"bold","_z_index":1,"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"29cd9a4d","settings":{"wp":{"title":"","style":"b-2","social":["facebook","twitter","pinterest","instagram"]},"container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"434eaaf8","settings":{"space_below":"none","title_lines":"2","media_ratio":"custom","media_ratio_custom":1.35,"container_width":33,"post_ids":[],"tax_ids":[],"heading":"Trending Now","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_bhead_line_weight":3,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"style":"a","css_title_typo_font_weight":"600","_padding":{"unit":"px","top":"35","right":"25","bottom":"35","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#0000000D","exclude_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"33": [{"id":"5e38c5fa","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","padding":{"unit":"px","top":"30","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"44c4141f","settings":{"_column_size":33,"_inline_size":24,"column_order":"","column_order_mobile":2,"ts_sticky_col":"ts-sticky-native","column_order_tablet":2,"_inline_size_tablet":50},"elements":[{"id":"1ae4add4","settings":{"posts":2,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Opinion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"none","excerpt_length":13,"media_ratio":"3-2","columns":"1","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"700","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1","meta_items_default":"","meta_below":["author"],"offset":1,"heading_type":"none","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"21412a88","settings":{"_column_size":33,"_inline_size":51.332,"border_border":"dotted","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#C5C5C5","column_order":"","column_order_mobile":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"column_order_tablet":1,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"f4d7b48","settings":{"posts":1,"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Opinion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"sm","excerpt_length":20,"media_ratio":"4-3","columns":"1","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"css_title_typo_font_weight":"700","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1","meta_items_default":"","meta_below":["author"],"heading_type":"none","css_title_typo_typography":"custom","css_content_margin":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":28,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"c7f6f61","settings":{"_column_size":33,"_inline_size":24,"column_order":"","column_order_mobile":3,"ts_sticky_col":"ts-sticky-native","column_order_tablet":3,"_inline_size_tablet":50,"align_tablet":"center"},"elements":[{"id":"38920d51","settings":{"posts":1,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Opinion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"none","excerpt_length":13,"media_ratio":"3-2","columns":"1","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1","meta_items_default":"","meta_below":["author"],"offset":3,"heading_type":"none","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"2b725b03","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/health\/wp-content\/uploads\/sites\/22\/2021\/11\/MedicalHealth.jpg\" width=\"250\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"25c825c2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6c4c798b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3b9c28d3","settings":{"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":13,"media_ratio":"3-2","columns":"4","title_lines":"2","excerpts":"","meta_items_default":"","meta_below":["date"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"700","space_below":"none","heading":"Covid'19","_padding":{"unit":"px","top":"30","right":"25","bottom":"35","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#E9F6F9","cat_labels":"0","reviews":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6e0c5e10","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"29e8c3fe","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5a6b5585","settings":{"posts":6,"excerpt_length":18,"media_width":38,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest News","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_title_typo_font_weight":"700","content_vcenter":"1","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"space_below":"none","grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7ae311a3","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"2c648f88","settings":{"columns":"1","title_lines":"2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_sm_typography":"custom","_padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"77928e54","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#014C62","padding":{"unit":"px","top":"50","right":"0","bottom":"115","left":"0","isLinked":false}},"elements":[{"id":"6b68faa8","settings":{"_column_size":100,"_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"366352b6","settings":{"type":"b","heading":"Featured Videos","css_bhead_color":"#FFFFFF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"655425f6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"639dcee4","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"71507822","settings":{"posts":1,"columns":"1","cat_labels":"0","media_ratio":"custom","media_ratio_custom":1.71,"meta_items_default":"","meta_below":["author","date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"70f27d6a","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5d6af0c6","settings":{"scheme":"dark","cat_labels":"0","excerpts":"","excerpt_length":18,"content_vcenter":"1","media_width":30,"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"offset":1,"columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"69cd2f84","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"-100","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"61622a","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E8E8E8","padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_inline_size_tablet":50},"elements":[{"id":"20397142","settings":{"posts":3,"space_below":"sm","title_lines":"2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Pro* Lifestyle","filters":"category","filters_terms":["10","568"],"css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600","heading_colors":"none","columns":"1","excerpt_length":11,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3559ebf9","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E8E8E8","padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1fb3a241","settings":{"space_below":"sm","title_lines":"3","excerpts":"","excerpt_length":18,"content_vcenter":"1","media_width":30,"media_ratio":"1-1","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"c2","heading":"Nutrition","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_bhead_line_weight":3,"cat_labels":"0","heading_align":"center"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7854a17c","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E8E8E8","text_align":"center","padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"31ffd29e","settings":{"space_below":"sm","title_lines":"3","excerpts":"","excerpt_length":18,"content_vcenter":"1","show_media":"","media_width":30,"media_ratio":"1-1","show_post_formats":"","meta_items_default":"","meta_below":["author","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"c2","heading":"Opinion","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"heading_align":"center","css_bhead_line_weight":3},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1c28f7d1","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"39bf763b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6db3d296","settings":{"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":13,"media_ratio":"3-2","columns":"4","title_lines":"0","excerpts":"","meta_items_default":"","meta_below":["date"],"heading_type":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"700","offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"31a549e4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","background_background":"classic","background_color":"#F4F3F3","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"1e4fe38a","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":60},"elements":[{"id":"262be4d0","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","fields_style":"inline","align":"left","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_heading_color":"#00789A","_padding":{"unit":"px","top":"65","right":"0","bottom":"30","left":"0","isLinked":false},"container_width":50,"submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"2b086da5","settings":{"image":{"url":"https:\/\/smartmag.theme-sphere.com\/health\/wp-content\/uploads\/sites\/22\/2021\/11\/[email protected]","id":4323,"alt":"","source":"library"},"image_size":"custom","image_custom_dimension":{"width":"284","height":"43"},"align":"left"},"elements":[],"isInner":false,"widgetType":"image","elType":"widget"},{"id":"7ec44091","settings":{"editor":"<p>Download HealthCare App. Its 100% FREE.<\/p>"},"elements":[],"isInner":false,"widgetType":"text-editor","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"d4cc213","settings":{"_column_size":50,"_inline_size":null,"hide_mobile":"hidden-mobile","_inline_size_tablet":40},"elements":[{"id":"635f0f29","settings":{"image":{"url":"https:\/\/smartmag.theme-sphere.com\/health\/wp-content\/uploads\/sites\/22\/2021\/11\/[email protected]","id":4324,"alt":"","source":"library"},"image_size":"custom","image_custom_dimension":{"width":"510","height":"393"},"_padding":{"unit":"px","top":"30","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"image","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6fc263ee","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"3ac0665","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"282f756","settings":{"heading":"Healthy Living","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"48761a9b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"75a2f87c","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"59650be5","settings":{"cat_labels":"0","excerpts":"","excerpt_length":18,"content_vcenter":"1","media_width":30,"media_ratio":"3-2","meta_items_default":"","meta_below":["author","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"title_lines":"3","css_media_max_width_mobile":{"unit":"%","size":35,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6be6bb7b","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"24cb0164","settings":{"cat_labels":"0","excerpts":"","excerpt_length":18,"content_vcenter":"1","media_width":30,"media_ratio":"3-2","meta_items_default":"","meta_below":["author","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":4,"title_lines":"3","css_media_max_width_mobile":{"unit":"%","size":35,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3ae234aa","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"25","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"5bd0ae","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"89d3933","settings":{"posts":6,"columns":"3","excerpts":"","meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"34": [{"id":"4d285b44","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"is_full_xs":"is-full-xs","margin":{"unit":"px","top":"30","right":0,"bottom":"50","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"5f803dff","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"62ae5f23","settings":{"posts":5,"grid_type":"grid-b","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_grid_gap":{"unit":"px","size":8,"sizes":[]},"container_width":100,"css_title_typo_md_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_lg_font_size":{"unit":"px","size":26,"sizes":[]},"css_title_typo_md_typography":"custom","css_title_typo_lg_typography":"custom","css_media_ratio":1.45,"post_formats_pos":"center","heading_type":"none","css_title_typo_lg_line_height":{"unit":"em","size":1.35,"sizes":[]},"space_below":"none","css_title_typo_md_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"_margin_mobile":{"unit":"px","top":"8","right":"8","bottom":"8","left":"8","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5f5d3831","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"658cdfde","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2eb703f9","settings":{"grid_type":"grid-eq3","space_below":"sm","post_ids":[],"tax_ids":[],"container_width":66,"css_grid_gap":{"unit":"px","size":8,"sizes":[]},"css_media_ratio":0.85,"exclude_ids":[],"heading_colors":"none","heading":"*Trending* Now","filters":"category","css_bhead_typo_text_transform":"none","css_bhead_typo_letter_spacing":{"unit":"px","size":0,"sizes":[]},"css_bhead_line_weight":4,"posts":3,"css_title_typo_md_typography":"custom","css_title_typo_md_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_color":"#152B4B","css_title_typo_md_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"4636640a","settings":{"post_ids":[],"tax_ids":[],"heading":"Entertainment","container_width":66,"cat_labels_pos":"top-right","pagination_type":"load-more","cat_labels":"0","excerpt_length":16,"media_width":43,"media_ratio":"3-2","read_more":"none","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"css_bhead_line_weight":4,"css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"__globals__":{"css_bhead_typo_typography":""},"exclude_ids":[],"meta_cat_style":"labels","heading_colors":"none","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#152B4B","content_vcenter":"1","separators":"","css_title_typo_font_weight":"500","space_below":"none","grid_on_sm":"1","css_excerpt_visible_mobile":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2beef8d8","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7b180096","settings":{"heading":"*Social* Circle","container_width":33,"css_bhead_line_weight":4,"css_bhead_border_color":"#152B4B","accent_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5a4b8d79","settings":{"wp":{"title":"","style":"b-2","counters":"","social":["facebook","twitter","pinterest","instagram","youtube","tiktok"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"66abc9c7","settings":{"columns":"1","container_width":"33","post_ids":[],"tax_ids":[],"posts":3,"reviews":"radial","heading":"*Top* Rated","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_font_weight":"800","css_bhead_typo_letter_spacing":{"unit":"px","size":0.2,"sizes":[]},"__globals__":{"css_bhead_typo_typography":"","css_accent_color":""},"heading_colors":"none","css_bhead_line_weight":4,"exclude_ids":[],"meta_items_default":"","meta_below":["author","date"],"meta_cat_style":"labels","css_title_typo_typography":"custom","css_bhead_border_weight":2,"css_bhead_border_color":"#152B4B","cat_labels":"1","cat_labels_pos":"bot-left","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"css_title_typo_sm_font_weight":"500","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7c5a85bb","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"layout":"full_width","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"exclude_ids":[]},"elements":[{"id":"4d597557","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"49c7912c","settings":{"grid_type":"grid-eq4","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"space_below":"none","content_position":"bot-center","css_title_typo_md_font_size_tablet":{"unit":"px","size":22,"sizes":[]},"css_media_ratio":0.95,"exclude_ids":[],"css_grid_gap":{"unit":"px","size":8,"sizes":[]},"offset":3,"heading_type":"none","css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5160f19","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"7f78616b","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3388fc2d","settings":{"post_ids":[],"tax_ids":[],"heading":"*Travel* Updates","container_width":66,"cat_labels_pos":"top-right","pagination_type":"load-more","cat_labels":"0","excerpt_length":16,"media_width":49,"media_ratio":"3-2","read_more":"none","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"css_bhead_line_weight":4,"__globals__":{"css_bhead_typo_typography":""},"exclude_ids":[],"meta_cat_style":"labels","heading_colors":"none","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#152B4B","content_vcenter":"1","separators":"","posts":1,"space_below":"none","grid_on_sm":"1","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"21435b5b","settings":{"columns":"2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"d05274b","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/mag-studio\/wp-content\/uploads\/sites\/25\/2021\/11\/MagStudio-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"62c7147d","settings":{"media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Latest* Posts","filters":"category","filters_terms":["6","7","8"],"css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"css_title_typo_font_weight":"500","excerpts":"","posts":6,"cat_labels":"1","cat_labels_pos":"bot-left","css_bhead_line_weight":4,"css_bhead_border_color":"#152B4B","pagination":"1","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"600c9392","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"574df3f0","settings":{"post_ids":[],"tax_ids":[],"heading":"*Editor's* Picks","container_width":33,"exclude_ids":[],"title_lines":"2","css_title_typo_font_weight":"500","separators":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_line_weight":4,"css_bhead_border_color":"#152B4B","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"150c5622","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33,"css_bg_image":{"id":4862,"url":"https:\/\/smartmag.theme-sphere.com\/mag-studio\/wp-content\/uploads\/sites\/25\/2021\/11\/shutterstock_552848824-2.jpeg","source":"library","alt":""},"style":"c","css_background_grad_color_b":"","css_background_grad_color_b_stop":{"unit":"%","size":"","sizes":[]},"css_background_grad_gradient_angle":{"unit":"deg","size":"","sizes":[]},"submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"613fc31e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F8F8F8","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[{"id":"69e47525","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1c545bd3","settings":{"posts":8,"columns":"4","space_below":"none","cat_labels":"0","cat_labels_pos":"bot-left","excerpts":"","media_ratio":"4-3","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"carousel":"1","carousel_autoplay":"1","heading_type":"none","reviews":"none","meta_items_default":"","meta_below":["author","date"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"35": [{"id":"39f7027a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false},"background_background":"classic","background_color":"#F3EEF2","is_full_xs":"is-full-xs","padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3e31119c","settings":{"_column_size":100,"_inline_size":null,"text_align":"center","space_between_widgets":0},"elements":[{"id":"b890ae6","settings":{"posts":1,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":37,"sizes":[]},"title_lines":"0","excerpt_length":17,"meta_items_default":"","pagination_type":"load-more","media_width":63,"css_bhead_accent":"#DC2430","cat_labels":"0","cat_labels_pos":"top-left","meta_above":["cat","date"],"meta_author_img":"","content_vcenter":"1","read_more":"none","css_content_pad":{"unit":"px","top":"28","right":"28","bottom":"28","left":"28","isLinked":true},"space_below":"none","heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"grid_on_sm":"1","css_media_max_width_tablet":{"unit":"%","size":50,"sizes":[]},"css_media_margin":{"unit":"px","size":0,"sizes":[]},"css_content_pad_tablet":{"unit":"px","top":"26","right":"26","bottom":"26","left":"26","isLinked":true},"css_content_pad_mobile":{"unit":"px","top":"10","right":"10","bottom":"30","left":"10","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":26,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"excerpt_lines":"5","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size_tablet":{"unit":"px","size":13,"sizes":[]},"css_excerpt_lines_tablet":1,"css_l_post_bg":"#FFFFFF","css_l_post_bg_sd":"#474747","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"dc638a9","settings":{"columns":"4","excerpts":"","excerpt_length":8,"media_ratio":"4-3","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"heading_type":"none","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"686a68b5","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"5f1278c8","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"67f48c73","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/gossip-mag\/wp-content\/uploads\/sites\/24\/2021\/11\/[email protected]\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"42","right":"0","bottom":"50","left":"0","isLinked":false},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2228234","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"646520ee","settings":{"_column_size":66,"_inline_size":71,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"4f64af99","settings":{"posts":5,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"title_lines":"0","excerpt_length":20,"media_ratio":"4-3","meta_items_default":"","heading":"Newswire","pagination_type":"load-more","media_width":38,"css_bhead_accent":"#DC2430","cat_labels":"0","cat_labels_pos":"top-left","meta_above":["cat","date"],"meta_author_img":"","content_vcenter":"1","read_more":"basic","css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]},"space_below":"none","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"437101ac","settings":{"_column_size":33,"_inline_size":29,"is_sidebar":"main-sidebar","_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"4f86fa29","settings":{"columns":"1","meta_below":["cat","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","posts":3,"pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"meta_items_default":"","media_ratio":"16-9","numbers":"b","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6340d6d2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"is_full_xs":"is-full-xs"},"elements":[{"id":"38305897","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#000000","padding":{"unit":"px","top":"35","right":"45","bottom":"0","left":"45","isLinked":false},"text_align":"center","padding_mobile":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":false}},"elements":[{"id":"cabc84b","settings":{"posts":1,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":34,"sizes":[]},"title_lines":"0","excerpt_length":22,"media_ratio":"16-9","meta_items_default":"","heading":"Trending Videos","pagination_type":"load-more","media_width":62,"css_bhead_accent":"#DC2430","cat_labels":"0","cat_labels_pos":"top-left","meta_above":["cat","date"],"meta_author_img":"","content_vcenter":"1","read_more":"none","css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"excerpts":"","scheme":"dark","space_below":"sm","_background_background":"classic","media_pos":"right","hide_mobile":"hidden-mobile","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"2971d067","settings":{"posts":1,"scheme":"dark","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","heading":"Trending Videos"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5c5f4284","settings":{"columns":"4","excerpts":"","excerpt_length":8,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"heading_type":"none","scheme":"dark","title_lines":"2","meta_items_default":"","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"offset":1,"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"331b2490","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","padding":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"208c75af","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"39cdb4b6","settings":{"heading":"Features","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"61d47648","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"21","background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"45b7abc2","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"2ed04e4b","settings":{"columns":"1","excerpts":"","excerpt_length":8,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"posts":1,"space_below":"md","heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4616c993","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"1887af8a","settings":{"columns":"1","excerpts":"","excerpt_length":8,"media_ratio":"custom","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"posts":1,"space_below":"md","media_ratio_custom":2.1,"offset":1,"heading_type":"none","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"54a13ac5","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"f27f3d1","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1330ade4","settings":{"columns":"4","excerpts":"","excerpt_length":8,"media_ratio":"4-3","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"heading_type":"none","offset":2,"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"153757ab","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"e59abf3","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5e18179","settings":{"fields_style":"inline","icon":"mail-bg","headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","scheme":"dark","css_bg_color":"#000000","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"container_width":100,"hide_mobile":"hidden-mobile","submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"7ada8788","settings":{"icon":"mail-bg","headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","scheme":"dark","css_bg_color":"#000000","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"container_width":100,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2c95960d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false}},"elements":[{"id":"2e825157","settings":{"_column_size":66,"_inline_size":71,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"3ae05207","settings":{"posts":6,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"title_lines":"0","excerpt_length":20,"media_ratio":"4-3","meta_items_default":"","heading":"The Latest","pagination_type":"load-more","media_width":38,"css_bhead_accent":"#DC2430","cat_labels":"0","cat_labels_pos":"top-left","meta_above":["cat","date"],"meta_author_img":"","content_vcenter":"1","read_more":"basic","css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"pagination":"1","space_below":"none","css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]},"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"48a381d8","settings":{"_column_size":33,"_inline_size":29,"is_sidebar":"main-sidebar","_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"76e226b1","settings":{"columns":"1","title_lines":"2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Movies","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":16,"sizes":[]},"media_ratio":"4-3","space_below":"none","sort_order":"asc","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"36": [{"id":"490d4ce4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"45","right":0,"bottom":"45","left":0,"isLinked":true},"is_full_xs":"is-full-xs","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"3011acd1","settings":{"_column_size":66,"_inline_size":73.133,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"7b5c1c68","settings":{"posts":1,"style":"stylish","columns":"1","space_below":"none","cat_labels":"0","content_center":"1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_above_margins":{"unit":"px","top":"-32","right":"0","bottom":"8","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"excerpt_lines":"3","css_excerpt_lines_mobile":2,"css_title_typo_font_size_mobile":{"unit":"px","size":27,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"102b358d","settings":{"_column_size":33,"_inline_size":26.532,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":false}},"elements":[{"id":"2ec1eb1e","settings":{"posts":2,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"3-2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":1,"columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"552b21d4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"45","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"40fb7a11","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"49952243","settings":{"columns":"4","space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","media_ratio":"1-1","numbers":"c","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Our Picks","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2731a9cb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"65","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"2a0ff3cf","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"592a1468","settings":{"heading":"New Workouts","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"72de56e9","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"4f28f9bb","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"556cddfc","settings":{"posts":6,"pagination":"1","pagination_type":"load-more","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-left","title_lines":"2","excerpt_length":13,"media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"573220b8","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"a768ab0","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-top","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33,"submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"7134a822","settings":{"wp":{"title":"We Are Social","style":"c-2","counters":"","social":["facebook","twitter","instagram","youtube","tiktok","telegram"]}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"42ba89bc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#121418","margin":{"unit":"px","top":"70","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"55","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1afe3f64","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"90224f","settings":{"heading":"Featured Videos","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":5,"sizes":[]},"css_bhead_color":"#EFEFEF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5c531ebb","settings":{"posts":1,"scheme":"dark","space_below":"none","excerpts":"","media_pos":"right","media_width":62,"media_ratio":"16-9","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_padding":{"unit":"%","top":"3","right":"0","bottom":"5","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"grid_on_sm":"1","css_title_typo_font_size_tablet":{"unit":"px","size":27,"sizes":[]},"content_vcenter":"1","css_content_pad_tablet":{"unit":"%","top":"2","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_pad_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_title_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"5bcd8a12","settings":{"posts":3,"scheme":"dark","style":"stylish","columns":"3","space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","media_ratio":"3-2","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"offset":1,"css_title_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"608ed19b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"dc60bad","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"4e9e206f","settings":{"heading":"Top Programs","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"209570eb","settings":{"gutter":"default","gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"456c4b3d","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":60,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"187ea8f7","settings":{"posts":1,"style":"stylish","columns":"1","cat_labels":"0","content_center":"1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_above_margins":{"unit":"px","top":"-32","right":"0","bottom":"8","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"space_below":"none","query_type":"section","css_title_typo_font_size_tablet":{"unit":"px","size":25,"sizes":[]},"skip_posts":0,"section_data":{"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"7054be79","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":40},"elements":[{"id":"6a4b1e00","settings":{"space_below":"none","title_lines":"3","excerpts":"","media_pos":"right","media_width":33,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":21,"sizes":[]},"css_media_margin":{"unit":"px","size":21,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":33,"sizes":[]},"query_type":"section","css_title_typo_font_size_tablet":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"skip_posts":1,"section_data":{"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"24fb4bf2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"45","right":0,"bottom":"60","left":0,"isLinked":false},"is_full_xs":"is-full-xs"},"elements":[{"id":"66ddde91","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#000000","background_image":{"url":"https:\/\/smartmag.theme-sphere.com\/fitness\/wp-content\/uploads\/sites\/21\/2021\/11\/jonathan-borba-R0y_bEUjiOM-unsplash-1.jpg","id":3663,"alt":"","source":"library"},"background_position":"top right","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","background_overlay_background":"classic","background_overlay_color":"#100B0B","background_overlay_opacity":{"unit":"px","size":0.66,"sizes":[]},"padding":{"unit":"px","top":"60","right":"30","bottom":"60","left":"40","isLinked":false},"padding_mobile":{"unit":"px","top":"30","right":"25","bottom":"30","left":"25","isLinked":false}},"elements":[{"id":"8b36699","settings":{"headline":"Get our Latest Secret Workouts!","message":"<p>Join us for the latest workout tips from FooBar about nutrition &amp; muscle.\u00a0<\/p>","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","scheme":"dark","fields_style":"inline","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":31,"sizes":[]},"css_message_typo_typography":"custom","css_message_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_disclaimer_typo_typography":"custom","css_disclaimer_typo_font_size":{"unit":"px","size":14,"sizes":[]},"container_width":100,"submit_text":"Subscribe","css_heading_typo_font_size_mobile":{"unit":"px","size":28,"sizes":[]},"css_message_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"74ca705c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"2166f3e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"47563cb0","settings":{"heading":"Fitness Updates","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"20856898","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false}},"elements":[{"id":"1a65303c","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4f6378df","settings":{"posts":5,"pagination":"1","pagination_type":"load-more","space_below":"none","cat_labels":"1","excerpt_length":20,"content_vcenter":"1","media_width":35,"media_ratio":"3-2","read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6c08ce48","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7976056b","settings":{"posts":3,"columns":"1","cat_labels":"0","show_post_formats":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"37": [{"id":"22205561","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F8F8F8","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#E3E3E3","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false}},"elements":[{"id":"4c6bd4b2","settings":{"_column_size":100,"_inline_size":null,"padding":{"unit":"px","top":"28","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[{"id":"6a1b54b8","settings":{"columns":"4","title_lines":"2","media_pos":"right","meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","separators_cols":"1","space_below":"none","media_width":40,"css_media_width":{"unit":"px","size":80,"sizes":[]},"css_media_width_tablet":{"unit":"%","size":"","sizes":[]},"css_media_width_mobile":{"unit":"%","size":"","sizes":[]},"media_ratio":"custom","media_ratio_custom":1.2,"reviews":"none","css_column_gap":{"unit":"px","size":32,"sizes":[]},"css_title_margin":{"unit":"px","top":"7","right":0,"bottom":"7","left":0,"isLinked":false},"columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"237b78b0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"32","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"4538d518","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"5f5dcadd","settings":{"posts":1,"space_below":"none","excerpt_length":45,"media_location":"below","read_more":"btn","meta_items_default":"","meta_below":["cat","author","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-1,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-large","elType":"widget"},{"id":"28467850","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"185efc1","settings":{"space_below":"none","excerpt_length":20,"media_pos":"right","media_width":21,"media_ratio":"custom","media_ratio_custom":1.25,"meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":34,"sizes":[]},"css_content_margin":{"unit":"px","top":"-3","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"-5","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"700","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"50d93f8a","settings":{"_column_size":25,"ts_sticky_col":"ts-sticky-col","add_separator":"el-col-sep","_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"65d086a2","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"heading_type":"none","offset":5,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"71334174","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"51f15381","settings":{"posts":2,"space_below":"none","excerpts":"","show_media":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_content_margin":{"unit":"px","top":"-4","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"offset":6},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"111379dc","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Opinion","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"2c7e4abd","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"2bcb8b23","settings":{"posts":3,"space_below":"none","excerpts":"","show_media":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_content_margin":{"unit":"px","top":"-4","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5ec0f625","settings":{"_column_size":25,"ts_sticky_col":"ts-sticky-col","add_separator":"el-col-sep","_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":50},"elements":[{"id":"43a9ef12","settings":{"posts":5,"space_below":"none","media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Just In","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.35,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"2da5faec","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"67bf93e3","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"heading_type":"none","offset":5,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"12fd9719","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"269f531a","settings":{"posts":2,"space_below":"none","excerpts":"","show_media":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_content_margin":{"unit":"px","top":"-4","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":6},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"39a7964","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"5862ca58","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"385e937","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-times\/wp-content\/uploads\/sites\/30\/2022\/03\/TheSmartTimes-wide-middle.jpg\" width=\"1200\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"53ffda43","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"1bac84d6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"459d9d52","settings":{"heading":"Sports","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"25e9c967","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"650770f9","settings":{"_column_size":50,"_inline_size":74,"space_between_widgets":0,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"645900c8","settings":{"posts":1,"space_below":"none","title_lines":"3","excerpt_length":24,"media_pos":"right","media_width":54,"css_media_max_width":{"unit":"px","size":800,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.75,"read_more":"btn","meta_items_default":"","meta_below":["cat","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":34,"sizes":[]},"css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"-1","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_line_height":{"unit":"em","size":1.35,"sizes":[]},"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"reviews":"none","grid_on_sm":"1","css_title_typo_font_size_mobile":{"unit":"px","size":24,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"730a64c2","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"59e70c60","settings":{"columns":"3","cat_labels":"0","meta_below":["date"],"container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Opinion","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":3,"heading_type":"none","offset":1,"exclude_ids":[],"title_lines":"2","show_media":"","meta_items_default":"","separators_cols":"1","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"54515d6e","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":26,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"59f62087","settings":{"posts":5,"space_below":"none","title_lines":"2","media_pos":"right","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Just In","css_row_gap":{"unit":"px","size":28,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.35,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":4},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"502c02ad","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"2b5798d7","settings":{"_column_size":50,"_inline_size":74,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"37cc7e99","settings":{"heading":"Money","container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"803df49","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"766669e5","settings":{"_column_size":50,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"41a9eac0","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":20,"posts":1,"heading_type":"none","exclude_ids":[],"read_more":"btn","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"8b84efb","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"53e7f9d6","settings":{"columns":"2","cat_labels":"0","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":20,"posts":2,"heading_type":"none","offset":1,"exclude_ids":[],"title_lines":"2","excerpts":"","media_ratio":"4-3","read_more":"none","meta_items_default":"","css_column_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"css_row_gap_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"545fdf1d","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"6d5873c0","settings":{"posts":2,"space_below":"none","title_lines":"2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Just In","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.35,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2c8c3a1","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-times\/wp-content\/uploads\/sites\/30\/2022\/03\/SmartTimes-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":50,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"27bd164e","settings":{"heading":"Tech & Innovation","container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"2a9ad1f8","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"5d9d4e74","settings":{"_column_size":50,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"66a074e5","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"NFL","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":26,"posts":1,"heading_type":"none","exclude_ids":[],"read_more":"btn","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6becfe2c","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"ab13f28","settings":{"space_below":"none","excerpts":"","excerpt_length":20,"media_pos":"right","media_width":40,"css_media_max_width":{"unit":"px","size":124,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.33,"meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":32,"sizes":[]},"css_content_margin":{"unit":"px","top":"-3","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"-5","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"398323f7","settings":{"_column_size":50,"ts_sticky_col":"ts-sticky-native","add_separator":"el-col-sep","_inline_size":26,"space_between_widgets":0,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"57b48e7b","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Editor's Picks","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4c0bab58","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"63d375d8","settings":{"posts":6,"space_below":"none","title_lines":"2","media_pos":"right","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Just In","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.35,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"321b1058","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"50","right":0,"bottom":"60","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"9d0fe6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"624797b2","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-times\/wp-content\/uploads\/sites\/30\/2022\/03\/Single-page-top-01.jpg\" width=\"1240\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6aefea9f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"40","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"54a9dea","settings":{"_column_size":25,"_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"71d8cc17","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Travel","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4e1dedc0","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"31dfab4","settings":{"posts":3,"space_below":"none","excerpts":"","show_media":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_content_margin":{"unit":"px","top":"-4","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":1,"title_lines":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"607d233e","settings":{"_column_size":25,"add_separator":"el-col-sep","_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"407486db","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"UK News","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1fdc123a","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4f323c5d","settings":{"posts":3,"space_below":"none","excerpts":"","show_media":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_content_margin":{"unit":"px","top":"-4","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":1,"title_lines":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"50959957","settings":{"_column_size":25,"add_separator":"el-col-sep","_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"1c2d1a62","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Science","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"27977ad4","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"50c7168d","settings":{"posts":3,"space_below":"none","excerpts":"","show_media":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_content_margin":{"unit":"px","top":"-4","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"offset":1,"title_lines":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"185920d9","settings":{"_column_size":25,"add_separator":"el-col-sep","_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":50},"elements":[{"id":"6b41090c","settings":{"columns":"1","cat_labels":"0","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Economy","space_below":"none","css_title_typo_typography":"custom","pagination_type":"load-more","excerpt_length":12,"posts":1,"exclude_ids":[],"css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"176214d9","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"2bb22c0f","settings":{"posts":3,"space_below":"none","excerpts":"","show_media":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_content_margin":{"unit":"px","top":"-4","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"title_lines":"2","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"38": [{"id":"30de939c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"35","right":0,"bottom":"25","left":0,"isLinked":false}},"elements":[{"id":"7e906abe","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":60},"elements":[{"id":"3b45965c","settings":{"posts":1,"style":"stylish","columns":"1","space_below":"none","excerpt_length":33,"media_ratio":"16-9","read_more":"basic","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"31","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2cbc7f82","settings":{"_column_size":33,"_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":40},"elements":[{"id":"4e7e65a","settings":{"posts":1,"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"500","offset":1,"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7187a193","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":20,"sizes":[]},"color_sd":"#FFFFFF26"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"40731391","settings":{"posts":2,"space_below":"none","title_lines":"2","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":30,"css_media_max_width":{"unit":"px","size":102,"sizes":[]},"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"310ca14","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"35","left":0,"isLinked":false}},"elements":[{"id":"4488ac27","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5344cbbe","settings":{"posts":5,"columns":"5","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","show_post_formats":"","offset":4},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5bebbd1","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"311ba059","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74ccd5db","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-board\/wp-content\/uploads\/sites\/29\/2022\/03\/Wide-fullwidth-002.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"365200b0","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"17c38aa0","settings":{"_column_size":66,"_inline_size":70.665,"space_between_widgets":0,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"41","left":"0","isLinked":false}},"elements":[{"id":"34452620","settings":{"heading":"Politics","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7bbafee0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"40ce0023","settings":{"_column_size":50,"_inline_size":66},"elements":[{"id":"ab8387a","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":25,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"500","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"7da3abbf","settings":{"_column_size":50,"_inline_size":34,"space_between_widgets":0},"elements":[{"id":"75635a30","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7c68ce52","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":12,"sizes":[]},"color_sd":"#FFFFFF26"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"6dc93c91","settings":{"posts":2,"space_below":"none","title_lines":"2","show_media":"","media_width":34,"css_media_width":{"unit":"px","size":102,"sizes":[]},"media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1f6b80a8","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"offset":4},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"12fe7e46","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-board\/wp-content\/uploads\/sites\/29\/2022\/03\/Newsboard-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"4ae06e0a","settings":{"heading":"Technology","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"21216e38","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"60692c6e","settings":{"_column_size":50,"_inline_size":66,"space_between_widgets":0},"elements":[{"id":"799cdad3","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":25,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"500"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4490ee2f","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":12,"sizes":[]},"color_sd":"#FFFFFF26"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"2eabbb34","settings":{"posts":2,"space_below":"none","title_lines":"2","excerpts":"","content_vcenter":"1","media_pos":"right","show_media":"","media_width":30,"css_media_max_width":{"unit":"px","size":102,"sizes":[]},"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":15,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","offset":1,"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2ccebf89","settings":{"_column_size":50,"_inline_size":34,"space_between_widgets":0},"elements":[{"id":"3b34caaa","settings":{"posts":2,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6dbceda8","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","offset":5,"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2fe5bda8","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","add_separator":"el-col-sep","_inline_size":29,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"72a65dc3","settings":{"posts":1,"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Popular","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"500"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1c0edfbe","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#FFFFFF26"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"1f1ab30e","settings":{"posts":3,"space_below":"none","title_lines":"2","media_width":34,"css_media_width":{"unit":"px","size":102,"sizes":[]},"media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":28,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"78a8c632","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-board\/wp-content\/uploads\/sites\/29\/2022\/03\/Newsboard-Sidebar.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5aa27d5d","settings":{"gutter":"xlg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","background_background":"classic","background_color":"#111215","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"22373b63","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3787e6b6","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","media_ratio_custom":1.05,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_overlay_padding":{"unit":"%","top":"0","right":"5","bottom":"8","left":"5","isLinked":false},"css_overlay_padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_overlay_padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"12678acf","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"69e3df4","settings":{"scheme":"dark","columns":"2","space_below":"none","excerpts":"","meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","_padding":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"reviews":"bars","offset":1,"title_lines":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"79bb61b0","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"51187f79","settings":{"_column_size":66,"_inline_size":70.665,"space_between_widgets":0,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"49","left":"0","isLinked":false}},"elements":[{"id":"706e6ff8","settings":{"heading":"Sports","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"299c8cd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"5a75d47","settings":{"_column_size":50,"_inline_size":66},"elements":[{"id":"71bd30d8","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":25,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"500","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"63586ac8","settings":{"_column_size":50,"_inline_size":34,"space_between_widgets":0},"elements":[{"id":"1bfd97b9","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7aba6090","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":12,"sizes":[]},"color_sd":"#FFFFFF26"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"364fec83","settings":{"posts":2,"space_below":"none","title_lines":"2","show_media":"","media_width":34,"css_media_width":{"unit":"px","size":102,"sizes":[]},"media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5bbc61fa","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"offset":4},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4fcdb72f","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-board\/wp-content\/uploads\/sites\/29\/2022\/03\/Newsboard-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"72850f0f","settings":{"heading":"Health","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"503bbd29","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"4e77137a","settings":{"_column_size":50,"_inline_size":66,"space_between_widgets":0},"elements":[{"id":"54e4fa42","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":25,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"500"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"12bf3ca7","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#FFFFFF26"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"535bcefe","settings":{"posts":3,"space_below":"none","title_lines":"2","excerpts":"","media_width":34,"css_media_max_width":{"unit":"px","size":102,"sizes":[]},"meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":28,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","offset":1,"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"142ec6df","settings":{"_column_size":50,"_inline_size":34,"space_between_widgets":0},"elements":[{"id":"11181251","settings":{"posts":3,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","offset":4,"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"21f105a8","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","add_separator":"el-col-sep","_inline_size":29,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"d04a9e2","settings":{"space_below":"none","title_lines":"2","media_width":34,"css_media_width":{"unit":"px","size":102,"sizes":[]},"media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Lifestyle","css_row_gap":{"unit":"px","size":28,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"59156a6a","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33,"message":"<p>Get the latest creative news about art, design and business.<\/p>","submit_text":"Subscribe","style":"c","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_message_typo_typography":"custom","css_message_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_disclaimer_typo_typography":"custom","css_disclaimer_typo_font_size":{"unit":"px","size":11,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"7c8f0400","settings":{"posts":1,"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"500"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1c878328","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#FFFFFF26"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"6a286204","settings":{"posts":3,"space_below":"none","title_lines":"2","media_width":34,"css_media_width":{"unit":"px","size":102,"sizes":[]},"media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Heading","css_row_gap":{"unit":"px","size":28,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"500","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"26bc1e6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"7b80e9b8","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"331a0c7a","settings":{"posts":5,"columns":"5","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Fitness","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"39": [{"id":"2556708d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"35","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"66e56b2","settings":{"_column_size":66,"_inline_size":null,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"7248b0db","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"none","css_media_ratio":1.9,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.4,"sizes":[]},"container_width":66,"heading_type":"none","css_title_typo_lg_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"-18","bottom":"0","left":"-18","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"1c51cdf5","settings":{"posts":5,"columns":"5","space_below":"none","excerpts":"","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"2","exclude_ids":[],"offset":1,"cat_labels":"0","meta_items_default":"","css_column_gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns_mobile":"2","css_row_gap_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6fcbefaf","settings":{"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Geo Politics","space_below":"none","css_title_typo_typography":"custom","css_title_typo_sm_typography":"custom","_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"filters":"category","filters_terms":["607","637","638","664"]},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"},{"id":"4d5249b6","settings":{"posts":2,"space_below":"none","media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Lifestyle","css_column_gap":{"unit":"px","size":36,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"7","left":"0","isLinked":false},"cat_labels":"0","show_post_formats":"","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","views"],"heading_more_text":"More from Lifestyle","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/news-time\/category\/example-2\/"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"3affe11c","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators":"","posts":6,"columns":"2","heading":"Heading","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false},"offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"dfaa61a","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-time\/wp-content\/uploads\/sites\/28\/2022\/03\/yellow-sofa-and-text.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"27","left":"0","isLinked":false},"hide_mobile":"hidden-mobile","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"f1566c1","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators":"","posts":6,"columns":"2","heading":"Media & Culture","_padding":{"unit":"px","top":"0","right":"0","bottom":"6","left":"0","isLinked":false},"heading_more_text":"View More","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/news-time\/category\/example-2\/"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5fb22ed5","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"292bc267","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"d","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators":"","heading":"TOP NEWS","css_meta_below_margins":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_accent":"#D82A50","css_bhead_line_weight":0,"_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"meta_items_default":"","meta_below":["date","views"]},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"319d1158","settings":{"posts":1,"columns":"1","space_below":"sm","excerpts":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Finance"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"41a5f57e","settings":{"posts":3,"space_below":"none","title_lines":"2","media_pos":"right","container_width":33,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators":"","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"3e7df91b","settings":{"posts":2,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":36,"sizes":[]},"carousel":"1","carousel_dots":"","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"carousel_autoplay":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"1e4a3b63","settings":{"posts":3,"columns":"1","space_below":"none","excerpts":"","show_media":"","numbers":"c","reviews":"none","container_width":33,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Top Posts","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"615b9496","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"23b4ed68","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2fcdabfa","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_content_margin":{"unit":"%","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_format_icon_size":1.6,"css_format_icon_size_mobile":0.7},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"109fae1e","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#000000","_inline_size_tablet":100},"elements":[{"id":"1ae8df57","settings":{"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":18,"sizes":[]},"separators":"","posts":5,"scheme":"dark","_padding":{"unit":"px","top":"25","right":"35","bottom":"20","left":"35","isLinked":false},"offset":1,"show_post_formats":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"455503c6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"35","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"373a9155","settings":{"_column_size":66,"_inline_size":null,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"756c7b16","settings":{"posts":6,"space_below":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Health Sciences","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"reviews":"none","heading_more_text":"View More","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/news-time\/category\/example-3\/"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"5d21cbba","settings":{"posts":3,"columns":"3","space_below":"none","cat_labels":"0","media_ratio":"4-3","show_post_formats":"","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Fitness","css_column_gap":{"unit":"px","size":2,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"reviews":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_row_gap_tablet":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"14c3b6d7","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators":"","posts":6,"columns":"2","heading":"Home Decor","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"heading_more_text":"View More","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/news-time\/category\/example-2\/"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"2dae59f5","settings":{"space_below":"none","title_lines":"2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Luxury","heading_more_text":"View More","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/news-time\/category\/example-2\/"},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2b23d26c","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"19e85c59","settings":{"space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","reviews":"none","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Science","css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"285c3e2b","settings":{"wp":{"title":"We Are Social","style":"a-2","counters":"y","social":["facebook","twitter","youtube","tiktok","telegram","whatsapp"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"52f8bbe3","settings":{"posts":1,"columns":"1","space_below":"sm","excerpts":"","container_width":33,"offset":5,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Sports"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4da3f147","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators":"","posts":3,"heading":"TOP NEWS","css_meta_below_margins":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_accent":"#D82A50","css_bhead_line_weight":0,"offset":6,"_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"60507e00","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","icon":"mail-bg","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"423243a5","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"065","left":0,"isLinked":false}},"elements":[{"id":"289ca229","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e6143d8","settings":{"posts":5,"columns":"5","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"2","exclude_ids":[],"media_ratio":"3-2","meta_items_default":"","meta_below":["date"],"heading":"Entertainment","css_column_gap":{"unit":"px","size":20,"sizes":[]},"heading_more_text":"See More Posts >","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/news-time\/category\/example-2\/"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"40": [{"id":"6fda415a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"35","right":0,"bottom":"25","left":0,"isLinked":false},"is_full_xs":"is-full-xs","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"100db686","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"71e06506","settings":{"grid_type":"grid-d","space_below":"none","css_media_ratio":1.45,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_grid_gap":{"unit":"px","size":6,"sizes":[]},"container_width":100,"posts":5,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"css_title_typo_sm_typography":"custom","css_title_typo_md_font_weight":"600","css_title_typo_sm_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_sm_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"css_title_typo_md_typography":"custom","css_title_typo_md_font_size":{"unit":"px","size":18,"sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7f66ff72","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"62569a0","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EDEDED","background_sd_background":"classic","background_sd_color":"#FFFFFF0F","border_sd_border":"solid","border_sd_color":"#FFFFFF21"},"elements":[{"id":"1fc06964","settings":{"posts":3,"columns":"3","space_below":"none","title_lines":"2","media_width":40,"media_pos":"right","meta_items_default":"","meta_above":["cat"],"meta_below":["read_time"],"meta_cat_style":"labels","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":4,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"246a4f52","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","margin_mobile":{"unit":"px","top":"40","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"74c19649","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true}},"elements":[{"id":"1b3ced45","settings":{"posts":3,"columns":"3","space_below":"none","title_lines":"2","media_width":43,"media_pos":"right","media_ratio":"16-9","meta_items_default":"","meta_above":["cat"],"meta_below":["read_time"],"meta_cat_style":"labels","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"offset":4,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"ba6bf04","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"4e82b6ce","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7fab49c0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/tech-drop\/wp-content\/uploads\/sites\/33\/2022\/10\/Wide-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2c054bf3","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"5e8c7272","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"62339fe5","settings":{"space_below":"md","excerpt_length":23,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","exclude_ids":[],"posts":1,"content_vcenter":"1","media_width":50,"css_media_max_width":{"unit":"px","size":433,"sizes":[]},"read_more":"basic","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","cat_labels":"0","grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"a02abf1","settings":{"style":"sm","columns":"3","excerpts":"","meta_below":["date"],"container_width":66,"post_ids":[],"tax_ids":[],"heading_type":"none","heading_colors":"force","heading":"*Editors'* Choice","exclude_ids":[],"posts":3,"space_below":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"600","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7c5d9706","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"384358b0","settings":{"columns":"1","space_below":"md","excerpt_length":13,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel":"1","carousel_dots":"","carousel_autoplay":"1","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"414b7de1","settings":{"wp":{"title":"","style":"c-2","counters":"","social":["facebook","twitter","pinterest","instagram","youtube","vimeo"]},"container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7ae2092a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#262C45","background_color_b":"#020203","background_gradient_angle":{"unit":"deg","size":170,"sizes":[]},"is_dark_section":"s-dark","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4167203f","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"49ff829a","settings":{"heading":"Trending Videos","css_bhead_color":"#FFFFFF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"4a7fde17","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"fad08ab","settings":{"_column_size":50,"_inline_size":65.047},"elements":[{"id":"4df4c310","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"16-9","media_ratio_custom":2.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"30126a2f","settings":{"_column_size":50,"_inline_size":34.953},"elements":[{"id":"71e3e2a6","settings":{"space_below":"none","excerpt_length":21,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","cat_labels_pos":"top-right","title_lines":"2","excerpts":"","media_pos":"right","media_width":30,"media_ratio":"3-2","meta_cat_style":"labels","exclude_ids":[],"heading_type":"none","css_row_gap":{"unit":"px","size":39,"sizes":[]},"css_title_typo_typography":"custom","scheme":"dark","post_formats_pos":"center","meta_author_img":"","css_format_icon_size":0.8,"separators":"","cat_labels":"0","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5e44f844","settings":{"columns":"5","excerpts":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_type":"none","heading_colors":"force","heading":"*Editors'* Choice","exclude_ids":[],"scheme":"dark","cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"0","right":"3","bottom":"0","left":"0","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"posts":5,"style":"sm","offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6690a23f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"20030fb3","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"166f6d52","settings":{"space_below":"sm","excerpt_length":21,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"*Latest* Posts","exclude_ids":[],"posts":3,"cat_labels_pos":"bot-left","content_vcenter":"1","media_width":40,"meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"meta_cat_style":"labels","meta_author_img":"","separators":"","cat_labels":"0","grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"58a09f33","settings":{"posts":1,"columns":"1","space_below":"sm","cat_labels":"0","media_ratio":"custom","media_ratio_custom":2.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":66,"offset":3,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Large post","css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"6aef0b2c","settings":{"space_below":"sm","excerpt_length":21,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","cat_labels":"0","exclude_ids":[],"posts":3,"pagination":"1","pagination_type":"load-more","cat_labels_pos":"bot-left","content_vcenter":"1","media_width":40,"read_more":"none","meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"meta_cat_style":"labels","meta_author_img":"","offset":4,"heading_type":"none","separators":"","grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1a14e148","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"15c381be","settings":{"columns":"1","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*Top* Picks","posts":3,"space_below":"sm","meta_cat_style":"labels","exclude_ids":[],"cat_labels_pos":"bot-left","numbers":"a"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7ce84f50","settings":{"headline":"Subscribe to Updates","message":"<p>Get the latest creative news from SmartMag about art &amp; design.<\/p>","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","container_width":33,"submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"d156bec","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"55","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"exclude_ids":[],"background_background":"gradient","background_color":"#262C45","background_color_b":"#020203","background_gradient_angle":{"unit":"deg","size":170,"sizes":[]}},"elements":[{"id":"4746e98a","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"15109b15","settings":{"type":"e","heading":"Editor's Choice","align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_line_weight":2,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":100,"css_bhead_space_below":{"unit":"px","size":31,"sizes":[]},"__globals__":{"css_bhead_line_color":""},"css_bhead_color":"#FFFFFF","css_bhead_line_color":"#323E60"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"420e5fee","settings":{"gutter":"sm","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"2d83e70e","settings":{"_column_size":25,"_inline_size":50,"_inline_size_tablet":100,"column_order_tablet":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":2},"elements":[{"id":"55ee2f24","settings":{"posts":1,"columns":"1","media_ratio":"16-9","meta_items_default":"","meta_below":["author","date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"cat_labels":"0","meta_above":["cat"],"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2e2f3955","settings":{"_column_size":25,"_inline_size":25,"_inline_size_tablet":50,"column_order_tablet":2,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":1},"elements":[{"id":"197145b3","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","media_ratio":"4-3","media_ratio_custom":1.15,"container_width":33,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"70df4c1d","settings":{"_column_size":50,"_inline_size":25,"column_order_tablet":3,"_inline_size_tablet":50,"column_order":3},"elements":[{"id":"139ecab0","settings":{"posts":1,"columns":"1","excerpts":"","media_ratio":"4-3","media_ratio_custom":1.15,"container_width":50,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"offset":2,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"62a1bc50","settings":{"columns":"5","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"space_below":"none","pagination_type":"load-more","title_lines":"2","media_ratio":"3-2","column_gap":"sm","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"offset":3,"scheme":"dark","exclude_ids":[],"posts":5,"css_column_gap":{"unit":"px","size":26,"sizes":[]},"style":"sm","heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"40cb251f","settings":{"gutter":"default","gap":"no","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true},"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"hide_mobile":"hidden-mobile"},"elements":[{"id":"6bbaece6","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"144f070a","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\"><img src=\"https:\/\/smartmag.theme-sphere.com\/tech-drop\/wp-content\/uploads\/sites\/33\/2022\/10\/Wide-bottom.jpg\" width=\"1200\" height=\"250\" \/><\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"245b7523","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"7e2382fe","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"757189ec","settings":{"heading":"Innovation","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"430cd69a","settings":{"gutter":"xlg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin_mobile":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"23ac93ca","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"13f03583","settings":{"excerpt_length":21,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","exclude_ids":[],"posts":5,"pagination_type":"load-more","excerpts":"","content_vcenter":"1","media_width":40,"meta_items_default":"","meta_below":["date","author"],"meta_author_img":"","heading_type":"none","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio":"16-9","meta_cat_style":"labels","space_below":"none","css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"4826d986","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"10401561","settings":{"space_below":"none","excerpt_length":21,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","exclude_ids":[],"posts":5,"pagination_type":"load-more","excerpts":"","content_vcenter":"1","media_width":40,"meta_items_default":"","meta_below":["date","author"],"meta_author_img":"","heading_type":"none","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio":"16-9","meta_cat_style":"labels","offset":5,"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"_margin_mobile":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1c4fb110","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"208d1083","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"dc030e2","settings":{"columns":"5","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"1-1","numbers":"c","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Top* Posts","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_column_gap":{"unit":"px","size":4,"sizes":[]},"css_content_margin":{"unit":"%","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"meta_items_default":"","meta_below":["author"],"posts":5},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"41": [{"id":"51645547","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F8F8F8","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#E4E4E4","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"28","right":"0","bottom":"28","left":"0","isLinked":false},"background_sd_background":"classic","background_sd_color":"#FFFFFF05","border_sd_border":"solid","border_sd_width":{"unit":"px","top":"00","right":"0","bottom":"1","left":"0","isLinked":false},"border_sd_color":"#FFFFFF0D"},"elements":[{"id":"771a8330","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"225a5ff1","settings":{"columns":"4","space_below":"none","title_lines":"2","media_width":40,"css_media_width":{"unit":"px","size":80,"sizes":[]},"media_pos":"right","media_ratio":"1-1","reviews":"none","meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":32,"sizes":[]},"separators":"","separators_cols":"1","css_media_radius":45,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"500","css_content_pad":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"columns_tablet":"2","columns_mobile":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"24f32274","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"466268e3","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"3f2ba7de","settings":{"posts":1,"space_below":"none","excerpts":"","content_vcenter":"1","media_width":72,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":2.05,"meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#293462","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"scheme":"dark","media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]},"media_ratio_custom_mobile":1.5,"_background_sd_background":"classic","_background_sd_color":"#FFFFFF0F"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"59910410","settings":{"posts":5,"columns":"5","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"show_post_formats":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"29bba5af","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"35228018","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5057aac0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Top-Under-Header.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"34b2f00b","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"415e4b4a","settings":{"_column_size":66,"_inline_size":72.665,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"25065f25","settings":{"heading":"Health","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"8493666","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"7893b358","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"5499db05","settings":{"posts":1,"columns":"1","media_ratio":"1-1","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"heading_type":"none","css_title_typo_font_weight":"400","meta_cat_style":"text","meta_above":["cat"],"meta_below":["author","date"],"meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"30212612","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"5006fbbb","settings":{"posts":3,"columns":"1","title_lines":"3","media_width":40,"css_media_width":{"unit":"px","size":124,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.1,"meta_below":["date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"323b6084","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Top-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"cbab1fc","settings":{"heading":"Technology","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"18e8ca09","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"4bd218ec","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"28345239","settings":{"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"16-9","media_ratio_custom":1.65,"meta_items_default":"","meta_below":["date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Heading","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_color_sd":"#C13163","posts":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5258b9d1","settings":{"columns":"1","title_lines":"3","media_width":35,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","media_ratio_custom":1.65,"meta_items_default":"","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":30,"sizes":[]},"separators":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_background_color":"#F5F2EE","heading_type":"none","css_title_typo_line_height":{"unit":"em","size":1.3,"sizes":[]},"posts":3,"meta_below":["date"],"offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"63c2ea7d","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"184d4dd9","settings":{"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"16-9","media_ratio_custom":1.65,"meta_items_default":"","meta_below":["date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Heading","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_color_sd":"#C13163","posts":1,"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"548b5c01","settings":{"columns":"1","title_lines":"3","media_width":35,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","media_ratio_custom":1.65,"meta_items_default":"","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":30,"sizes":[]},"separators":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_background_color":"#F5F2EE","heading_type":"none","css_title_typo_line_height":{"unit":"em","size":1.3,"sizes":[]},"posts":3,"meta_below":["date"],"offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"1159b4a3","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","_inline_size":27,"space_between_widgets":0,"_inline_size_tablet":100,"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"7b229764","settings":{"wp":{"title":"Social","style":"b-2","counters":"n","social":["facebook","twitter","pinterest","instagram","reddit","vimeo"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"17e1385e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F5F2EE","background_sd_background":"classic","background_sd_color":"#FFFFFF12","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"aa41b7d","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6331917c","settings":{"posts":3,"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"numbers":"b","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending","css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"25","right":"25","bottom":"30","left":"25","isLinked":false},"_background_background":"classic","css_row_gap":{"unit":"px","size":30,"sizes":[]},"meta_items_default":"","heading_type":"b"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4c5f9e3d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#F5F2EE","background_color_stop":{"unit":"%","size":15,"sizes":[]},"background_color_b":"#293462","background_color_b_stop":{"unit":"%","size":15,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"55","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"b87dca6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"790f479d","settings":{"scheme":"dark","columns":"4","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Fitness","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_bhead_color_sd":"#C13163"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"37203d29","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#F5F2EE","background_color_stop":{"unit":"%","size":35,"sizes":[]},"background_color_b":"#293462","background_color_b_stop":{"unit":"%","size":35,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"55","left":"0","isLinked":false},"hide_mobile":"hidden-mobile","background_sd_background":"gradient","background_sd_color":"#FFFFFF14","background_sd_color_stop":{"unit":"%","size":35,"sizes":[]},"background_sd_color_b":"#0000000F","background_sd_color_b_stop":{"unit":"%","size":35,"sizes":[]}},"elements":[{"id":"151bb99b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"60773f48","settings":{"scheme":"dark","columns":"4","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Fitness","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_color_sd":"#C13163","css_title_typo_font_weight":"400","heading_type":"b"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3189544d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"194fb1f7","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"21495df6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","background_background":"classic","background_image":{"url":"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/image-magazine-bg.jpg","id":3954,"alt":"","source":"library"},"background_sd_background":"classic","background_sd_color":"#293462","background_sd_image":{"url":"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/javier-miranda-6Pou6SeJ6cY-unsplash.jpg","id":4048,"alt":"","source":"library"}},"elements":[{"id":"349f84e1","settings":{"_column_size":50,"_inline_size":40,"padding":{"unit":"px","top":"75","right":"75","bottom":"75","left":"75","isLinked":true},"padding_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding_mobile":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true}},"elements":[{"id":"12bca245","settings":{"editor":"<h2>Subscribe now and get unlimited access to <span style=\"color: #c13163;\">Blogger.<\/span> &amp; more!<\/h2>","typography_typography":"custom","typography_font_family":"Zilla Slab","typography_font_size":{"unit":"px","size":17,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"text-editor","elType":"widget"},{"id":"43387fe2","settings":{"icon_list":[{"text":"Blogger Digital Content","selected_icon":{"value":"fas fa-check-circle","library":"fa-solid"},"_id":"b01ae09"},{"text":"Insider News in Newsletter","selected_icon":{"value":"fas fa-check-circle","library":"fa-solid"},"_id":"3195d70"},{"text":"Special Discounts at Store Purchases","selected_icon":{"value":"fas fa-check-circle","library":"fa-solid"},"_id":"bb6c847"}],"icon_color":"#BD2A5E","icon_color_sd":"#FFACC9","text_color":"#484B4E","icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":15,"sizes":[]},"icon_typography_font_weight":"400","icon_typography_line_height":{"unit":"em","size":1.9,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"text_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"icon-list","elType":"widget"},{"id":"28a2315d","settings":{"text":"SUBSCRIBE NOW","align":"justify","typography_typography":"custom","typography_font_size":{"unit":"px","size":12,"sizes":[]},"typography_font_weight":"600","typography_letter_spacing":{"unit":"px","size":0.7,"sizes":[]},"background_color":"#BD2A5E","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true}},"elements":[],"isInner":false,"widgetType":"button","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"4b5b9e52","settings":{"_column_size":50,"_inline_size":60},"elements":[{"id":"71ed2a5a","settings":{"image":{"url":"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/newsletter-image-01.png","id":3953,"alt":"","source":"library"},"image_size":"custom","image_custom_dimension":{"width":"610","height":"462"}},"elements":[],"isInner":false,"widgetType":"image","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"688f0205","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3b8d606b","settings":{"_column_size":66,"_inline_size":72.665,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"2ff143db","settings":{"heading":"TV & Drama","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5269e01c","settings":{"posts":1,"space_below":"none","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":68,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.95,"meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#F2F1ED","heading_type":"none","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_background_sd_background":"classic","_background_sd_color":"#FFFFFF0D"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"7958cdd3","settings":{"posts":3,"columns":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":1,"heading_type":"none","meta_below":["author"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"264b9337","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Top-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"547522de","settings":{"columns":"4","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Relationships","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"space_below":"sm","heading_more_text":"View More Posts","meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4fffe3b3","settings":{"posts":3,"columns":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":4,"heading_type":"none","space_below":"md","meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"67916dd6","settings":{"heading":"Food","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"1d1d4f7d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"68d23de2","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2c551c18","settings":{"posts":1,"columns":"1","media_ratio":"1-1","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"heading_type":"none","css_title_typo_font_weight":"400","css_content_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"meta_cat_style":"text","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"7e4c2744","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"691c5927","settings":{"title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"heading_type":"none","space_below":"md","meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"6e49d31a","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","_inline_size":27,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"5bb85359","settings":{"heading":"Finance","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"4d9bec00","settings":{"posts":1,"columns":"1","media_ratio":"custom","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"heading_type":"none","space_below":"none","media_ratio_custom":0.99,"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"meta_items_default":"","meta_below":["date"]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"6c5685ba","settings":{"columns":"1","space_below":"none","title_lines":"3","media_width":35,"css_media_width":{"unit":"px","size":80,"sizes":[]},"media_pos":"right","media_ratio":"1-1","media_ratio_custom":1.65,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_background_color":"#F5F2EE","heading_type":"none","css_title_typo_line_height":{"unit":"em","size":1.3,"sizes":[]},"offset":1,"css_row_gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"99cd2a1","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Smart-Woman.jpg\" width=\"336\" height=\"280\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"59070ef4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#F5F2EE","background_color_stop":{"unit":"%","size":18,"sizes":[]},"background_color_b":"#293462","background_color_b_stop":{"unit":"%","size":18,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"55","left":"0","isLinked":false},"background_sd_background":"gradient","background_sd_color":"#FFFFFF14","background_sd_color_stop":{"unit":"%","size":18,"sizes":[]},"background_sd_color_b":"#0000000D","background_sd_color_b_stop":{"unit":"%","size":18,"sizes":[]}},"elements":[{"id":"76ca66a9","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"text_align":"center"},"elements":[{"id":"6a64481f","settings":{"posts":1,"columns":"1","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"text","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Pets & Pet Care","css_content_margin":{"unit":"%","top":"0","right":"20","bottom":"5","left":"20","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"space_below":"none","media_ratio_custom":2.33,"media_ratio_custom_tablet":1.75,"media_ratio_custom_mobile":1,"heading_type":"b","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"74f4513e","settings":{"posts":10,"scheme":"dark","columns":"5","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"carousel":"1","carousel_dots":"","_margin":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"_margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"offset":1,"heading_type":"none","css_title_typo_font_weight":"400","carousel_autoplay":"1","css_title_color_sd":"#FFFFFF","css_title_hov_color_sd":"#EAEAEA","meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4765452b","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"75","left":0,"isLinked":false}},"elements":[{"id":"30eaabcd","settings":{"_column_size":66,"_inline_size":72.665,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"5e036e82","settings":{"heading":"Culture","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"15c143dc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"19d4584","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"4c5e5af6","settings":{"posts":1,"columns":"1","media_ratio":"1-1","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"heading_type":"none","css_title_typo_font_weight":"400","css_content_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"meta_cat_style":"text","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3377e0da","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"8f0378a","settings":{"posts":3,"columns":"1","title_lines":"3","media_width":40,"css_media_width":{"unit":"px","size":124,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.1,"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"23593ad9","settings":{"heading":"Home D\u00e9cor","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"4559d947","settings":{"posts":1,"space_below":"none","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":68,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.95,"meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#F2F1ED","heading_type":"none","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_background_sd_background":"classic","_background_sd_color":"#FFFFFF0D"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"14ae543","settings":{"posts":3,"columns":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"146d0989","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Top-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"055","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"2397a03f","settings":{"heading":"Travel & Tourism","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"3e5f4174","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"7bd2fd74","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"63597a09","settings":{"posts":1,"columns":"1","media_ratio":"1-1","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"heading_type":"none","css_title_typo_font_weight":"400","css_content_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"meta_cat_style":"text","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6f200098","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"7e1c1a4a","settings":{"title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"heading_type":"none","space_below":"none","meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"b1b0309","settings":{"_column_size":33,"_inline_size":27,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100},"elements":[{"id":"4b428697","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"54bf0812","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"container_width":33,"message":"","submit_text":"Subscribe","style":"c","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"42": [{"id":"3b1379e","settings":{"gap":"custom","gap_columns_custom":{"unit":"px","size":2,"sizes":[]},"post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"25","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false}},"elements":[{"id":"6a7d2dd9","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"362f0249","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"16-9","media_ratio_custom":2.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"meta_author_img":"1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"meta_cat_style":"text","show_post_formats":"","heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"css_media_height_mobile":{"unit":"px","size":285,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"6ef2d0c9","settings":{"posts":2,"columns":"2","space_below":"none","media_ratio":"3-2","media_ratio_custom":2.15,"meta_items_default":"","meta_above":["cat"],"meta_author_img":"","container_width":50,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_cat_style":"text","css_column_gap":{"unit":"px","size":4,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"show_post_formats":"","heading_type":"none","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6e44a5ca","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"1cd98ba7","settings":{"posts":2,"columns":"2","space_below":"none","media_ratio":"3-2","media_ratio_custom":2.15,"meta_items_default":"","meta_above":["cat"],"meta_author_img":"","container_width":50,"offset":3,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_cat_style":"text","css_column_gap":{"unit":"px","size":4,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"03","left":"0","isLinked":false},"show_post_formats":"","heading_type":"none","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"1450c904","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"16-9","media_ratio_custom":2.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"meta_author_img":"1","container_width":50,"offset":5,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"meta_cat_style":"text","show_post_formats":"","heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7c056c41","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3bf0f877","settings":{"_column_size":66,"_inline_size":null,"space_between_widgets":0,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"5ba844a6","settings":{"heading":"Most Recent","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"3bd8b6a4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"59fe162","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"426bab34","settings":{"columns":"1","space_below":"sm","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","posts":1,"heading_type":"none","meta_items_default":"","meta_below":["author","date"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"7c84e09c","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"2b2937b0","settings":{"columns":"2","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","heading_colors":"none","heading":"Editors' Choice","exclude_ids":[],"cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"posts":2,"space_below":"none","offset":1,"column_gap":"sm","reviews":"bars"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7d86abb4","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#444444"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"39566059","settings":{"columns":"1","title_lines":"2","media_width":50,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"4-3","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Block","separators":"","posts":2,"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7ce45460","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/digi-tech\/wp-content\/uploads\/sites\/32\/2022\/10\/Top-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"6ee8e557","settings":{"posts":6,"columns":"2","media_width":50,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"4-3","meta_items_default":"","meta_below":["date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Gear","separators":""},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"47b2326d","settings":{"posts":3,"columns":"3","space_below":"sm","media_ratio":"3-2","media_ratio_custom":2.15,"meta_items_default":"","meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"title_lines":"2","heading":"Featured Videos","carousel_dots":"","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"css_column_gap":{"unit":"px","size":3,"sizes":[]},"post_formats_pos":"top-right"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"36d2b7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true}},"elements":[{"id":"2fb05e0a","settings":{"_column_size":50,"ts_sticky_col":"ts-sticky-native","_inline_size":35},"elements":[{"id":"7dd335e0","settings":{"columns":"1","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Editor's Choice","exclude_ids":[],"cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"posts":3,"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"562aaa8a","settings":{"_column_size":50,"_inline_size":65,"ts_sticky_col":"ts-sticky-native","margin_mobile":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"62d84d3a","settings":{"space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","exclude_ids":[],"cat_labels_pos":"bot-left","content_vcenter":"1","media_width":32,"read_more":"none","meta_items_default":"","meta_below":["cat","date"],"meta_author_img":"","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"posts":5,"title_lines":"2","media_pos":"right","css_media_max_width":{"unit":"px","size":160,"sizes":[]},"media_ratio":"4-3","css_row_gap":{"unit":"px","size":36,"sizes":[]},"css_cat_labels_bg":"#000000","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"-7","left":"0","isLinked":false},"excerpt_length":6,"media_ratio_custom":1.25},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"2fe4cff0","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"3ab6a271","settings":{"posts":2,"space_below":"none","media_ratio":"3-2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending","css_column_gap":{"unit":"px","size":36,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"columns":"1","meta_items_default":"","carousel":"1","carousel_dots":"","carousel_autoplay":"1","meta_above":["cat"],"meta_cat_style":"text"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"6effea6","settings":{"columns":"1","excerpts":"","show_media":"","numbers":"c","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Top Posts","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"space_below":"none","css_meta_below_margins":{"unit":"px","top":"-3","right":"0","bottom":"0","left":"0","isLinked":false},"css_row_gap":{"unit":"px","size":30,"sizes":[]},"title_lines":"2","posts":3,"meta_items_default":"","meta_below":["date","views"],"sort_by":"views","sort_order":"desc"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"34e22fc","settings":{"wp":{"title":"We Are Social!","style":"a-2","counters":"","social":["facebook","youtube","tiktok","whatsapp","twitter","instagram"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"48164125","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/digi-tech\/wp-content\/uploads\/sites\/32\/2022\/10\/sidebar-tall.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3b1755db","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"is_full_xs":"is-full-xs"},"elements":[{"id":"5751c98c","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"background_background":"gradient","background_color":"#7E5E81","background_color_b":"#1D2B64","background_gradient_angle":{"unit":"deg","size":150,"sizes":[]},"border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E6E6E6","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.23)"},"padding":{"unit":"px","top":"25","right":"35","bottom":"35","left":"35","isLinked":false}},"elements":[{"id":"1bc7765e","settings":{"heading":"Today's Picks","container_width":100,"type":"b","css_bhead_typo_typography":"custom","css_bhead_typo_text_transform":"none","css_bhead_color":"#FFFFFF","css_bhead_line_color":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7217a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"24de1662","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"55a8ffbf","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"16-9","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"text","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":19,"sizes":[]},"query_type":"section","css_media_height_mobile":{"unit":"px","size":300,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"28118362","settings":{"posts":2,"columns":"2","space_below":"none","excerpts":"","container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"2","media_ratio":"16-9","meta_items_default":"","exclude_ids":[],"scheme":"dark","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1a965e86","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7a74cb07","settings":{"posts":3,"pagination_type":"load-more","media_width":42,"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","meta_below":["date"],"space_below":"sm","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":30,"sizes":[]},"content_vcenter":"1","media_ratio":"3-2","title_lines":"2","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"media_pos":"right","separators":"","scheme":"dark","excerpt_length":13,"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"a16a31a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"6686a630","settings":{"_column_size":66,"_inline_size":null,"space_between_widgets":0,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"25864d87","settings":{"heading":"Culture","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7c2d557a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"5fafd7c4","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"758774f8","settings":{"columns":"1","space_below":"sm","cat_labels_pos":"top-right","excerpt_length":22,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","posts":1,"heading_type":"none","meta_items_default":"","meta_below":["author","date"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"ddc9f1a","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"1997f4c3","settings":{"columns":"2","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","heading_colors":"none","heading":"Editors' Choice","exclude_ids":[],"cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"posts":2,"space_below":"none","offset":1,"column_gap":"sm","reviews":"radial"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5cd16e6","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#444444"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"15f3dae6","settings":{"columns":"1","title_lines":"2","media_width":50,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"4-3","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Block","separators":"","posts":2,"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"4e13a4b6","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/digi-tech\/wp-content\/uploads\/sites\/32\/2022\/10\/Bottom-mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"3609b78c","settings":{"columns":"2","space_below":"sm","media_ratio":"3-2","media_ratio_custom":2.15,"meta_items_default":"","meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"title_lines":"2","heading":"Product Reviews","carousel_dots":"","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"css_column_gap":{"unit":"px","size":3,"sizes":[]},"carousel":"1","meta_below":["author","date"]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"24b408c4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"432ff7e4","settings":{"_column_size":50,"ts_sticky_col":"ts-sticky-col","_inline_size":72},"elements":[{"id":"729d87d8","settings":{"space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"heading":"Digital Classics","exclude_ids":[],"cat_labels_pos":"bot-left","content_vcenter":"1","media_width":35,"read_more":"none","reviews":"radial","meta_items_default":"","meta_below":["cat","date"],"meta_author_img":"","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"posts":5,"title_lines":"2","css_media_max_width":{"unit":"px","size":304,"sizes":[]},"media_ratio":"4-3","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_cat_labels_bg":"#000000","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"-7","left":"0","isLinked":false},"pagination":"1","pagination_type":"load-more","excerpt_length":13,"media_ratio_custom":1.25,"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3b5f2f9d","settings":{"_column_size":50,"ts_sticky_col":"ts-sticky-native","_inline_size":28},"elements":[{"id":"1f8846a9","settings":{"columns":"1","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Longreads","exclude_ids":[],"cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"space_below":"none","css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_meta_below_margins":{"unit":"px","top":"-3","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"11120fb9","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"48b9a6c9","settings":{"columns":"1","space_below":"sm","cat_labels_pos":"top-right","excerpt_length":13,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Security","posts":1,"meta_items_default":"","meta_below":["author","date"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"40067468","settings":{"columns":"1","title_lines":"2","media_width":50,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"4-3","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Block","separators":"","posts":3,"media_pos":"right","show_post_formats":"1","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"51c67f12","settings":{"columns":"2","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Gaming Tech","exclude_ids":[],"cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"space_below":"none","media_ratio":"3-2","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"column_gap":"sm","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"29deea04","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"43fc52e1","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"75","left":0,"isLinked":false}},"elements":[{"id":"6a57b574","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f078ddc","settings":{"posts":5,"columns":"5","media_ratio":"1-1","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":3,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"heading":"Tech & Work","title_lines":"3","meta_above":["cat"],"meta_cat_style":"text","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"43": [{"id":"54ae6587","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"30","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"6d43a0d7","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"65e75151","settings":{"posts":5,"space_below":"none","css_media_ratio":1.2,"cat_labels_pos":"top-left","show_post_formats":"","meta_items_default":"","meta_above":["cat"],"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_below_margins":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_sm_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":32,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.4,"sizes":[]},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"901e4ff","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"7834d215","settings":{"_column_size":66,"_inline_size":69.665,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"2d801c4c","settings":{"cat_labels":"0","excerpt_length":18,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"\u062c\u062f\u064a\u062f \u0627\u0644\u0623\u062e\u0628\u0627\u0631","separators":"1","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_weight":"800","css_title_typo_sm_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_sm_font_weight":"700","heading_colors":"force","filters":"category","filters_terms":["1","2","10"]},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"},{"id":"24b946fd","settings":{"posts":6,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":" \u0627\u0644\u0639\u0631\u0628 \u0648\u0627\u0644\u0639\u0627\u0644\u0645","css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":1,"spread":0,"color":"rgba(240.00000000000003, 240.00000000000003, 240.00000000000003, 0.5)"},"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"space_below":"none","heading_colors":"force","separators":"1","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7018ea1d","settings":{"_column_size":33,"_inline_size":30,"space_between_widgets":0,"add_separator":"el-col-sep","_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_tablet":{"unit":"%","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"53da65ed","settings":{"accent_colors":"force","heading":"\u0625\u062a\u0628\u0639\u0646\u0627","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5822b59b","settings":{"wp":{"title":"","style":"b-2","counters":"","social":["facebook","twitter","pinterest","instagram","youtube","whatsapp"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"6317ac40","settings":{"columns":"1","meta_below":["cat","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","posts":3,"pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"\u0627\u0644\u0623\u0643\u062b\u0631 \u0642\u0631\u0627\u0621\u0629","meta_items_default":"","media_ratio":"16-9","numbers":"a","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"2","style":"sm","css_row_gap":{"unit":"px","size":36,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"41d07c45","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":35,"sizes":[]},"background_color_b":"#000000","background_color_b_stop":{"unit":"%","size":35,"sizes":[]},"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"30b05ef1","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6a8408ef","settings":{"columns":"4","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"700","style":"card","title_lines":"2","meta_above":["cat","date"],"heading":"\u0643\u0631\u0629 \u0627\u0644\u0642\u062f\u0645","css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0)"},"css_column_gap":{"unit":"px","size":30,"sizes":[]},"heading_colors":"force","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"css_l_post_border_color":"#93C669"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"74693ac8","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F7F7F9","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"7471c72f","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"243ea60d","settings":{"columns":"3","space_below":"none","excerpts":"","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"700","style":"card","title_lines":"2","meta_above":["cat","date"],"heading":"\u0627\u0644\u062a\u0643\u0646\u0648\u0644\u0648\u062c\u064a\u0627","css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0)"},"css_column_gap":{"unit":"px","size":30,"sizes":[]},"heading_colors":"force","css_bhead_bg":"#02010100","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"css_l_post_border_color":"#A462BE","posts":3,"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"offset":1,"css_bhead_color":"#A462BE"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6932cc60","settings":{"media_width":44,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","space_below":"none","title_lines":"3","_padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"posts":3,"meta_items_default":"","columns":"3","media_ratio":"3-2","meta_above":["cat"],"css_column_gap":{"unit":"px","size":30,"sizes":[]},"offset":4,"css_bhead_bg":"#F0F1F5","heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"36292407","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/rtl\/wp-content\/uploads\/sites\/34\/2022\/11\/Wide-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"3e0cf5ee","settings":{"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"title_lines":"3","excerpt_length":13,"meta_items_default":"","heading":"\u0625\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0645\u062d\u0631\u0631","css_title_typo_font_weight":"700","pagination_type":"load-more","media_width":40,"cat_labels_pos":"top-left","meta_author_img":"","content_vcenter":"1","read_more":"none","excerpts":"","space_below":"none","css_row_gap":{"unit":"px","size":40,"sizes":[]},"css_media_max_width":{"unit":"px","size":632,"sizes":[]},"posts":6,"columns":"2","meta_above":["cat","date"],"css_column_gap":{"unit":"px","size":40,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"heading_colors":"force","filters":"category","filters_terms":["2","3","6"],"css_bhead_bg":"#F0F1F5"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"58528549","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_image":{"id":7006,"url":"https:\/\/smartmag.theme-sphere.com\/rtl\/wp-content\/uploads\/sites\/34\/2022\/11\/BG-wide.jpg","alt":"","source":"library"},"background_position":"center center","background_repeat":"no-repeat","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false},"background_size":"cover"},"elements":[{"id":"4ac36d88","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72add35e","settings":{"columns":"4","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"700","style":"card","title_lines":"2","meta_above":["cat","date"],"heading":"\u0627\u0633\u062a\u0643\u0634\u0627\u0641","css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0)"},"css_column_gap":{"unit":"px","size":30,"sizes":[]},"heading_colors":"force","css_bhead_bg":"#02010100","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"css_l_post_border_color":"#5FC5CF","css_bhead_color":"#FFFFFF","css_bhead_color_sd":"#FFFFFF","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"64638b7a","settings":{"text":"\u0627\u0638\u0647\u0631 \u0627\u0644\u0645\u0632\u064a\u062f","align":"left","typography_typography":"custom","typography_font_family":"Noto Kufi Arabic","typography_font_size":{"unit":"px","size":12,"sizes":[]},"typography_font_weight":"600","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_radius":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"__globals__":{"background_color":"globals\/colors?id=smartmag","border_color":"globals\/colors?id=smartmag"},"link":{"url":"https:\/\/smartmag.theme-sphere.com\/rtl\/category\/mix\/","is_external":"","nofollow":"","custom_attributes":""},"button_background_hover_color":"#B4201F","button_hover_border_color":"#B4201F","border_color":"var(--c-main)"},"elements":[],"isInner":false,"widgetType":"button","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5ebf5723","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"292ea7fe","settings":{"_column_size":66,"_inline_size":69.665,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"4a624708","settings":{"space_below":"none","excerpt_length":20,"content_vcenter":"1","media_width":40,"media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"\u0645\u0646\u0648\u0639\u0627\u062a","css_row_gap":{"unit":"px","size":50,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_weight":"800","pagination":"1","pagination_type":"load-more","heading_colors":"force","posts":5,"meta_items_default":"","meta_above":["cat","date"],"offset":2,"grid_on_sm":"1","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"187e8b24","settings":{"_column_size":33,"_inline_size":30,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-col","add_separator":"el-col-sep","_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"31efd79","settings":{"space_below":"none","excerpts":"","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"\u0627\u0644\u0627\u0642\u062a\u0635\u0627\u062f","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"700","title_lines":"3","media_ratio":"3-2","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","heading_colors":"force","css_title_typo_line_height":{"unit":"em","size":1.5,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7602ab82","settings":{"headline":"\u0645\u0639 \u0643\u0644 \u0645\u062a\u0627\u0628\u0639\u0629 \u062c\u062f\u064a\u062f\u0629","disclaimer":"","container_width":33,"icon":"mail-top","message":"<p>\u0627\u0634\u062a\u0631\u0643 \u0641\u064a \u0646\u0634\u0631\u062a\u0646\u0627 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u0645\u062c\u0627\u0646\u0627\u064b<\/p>","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_message_typo_typography":"custom","css_disclaimer_typo_typography":"custom","css_disclaimer_typo_font_size":{"unit":"px","size":11,"sizes":[]},"submit_text":"\u0625\u0634\u062a\u0631\u0643","checkbox":"","css_message_typo_font_family":"Noto Kufi Arabic","css_message_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_message_typo_font_weight":"800","css_message_typo_letter_spacing":{"unit":"px","size":-2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5c32abde","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"10f40a4e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3a19bc78","settings":{"columns":"4","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"700","style":"card","title_lines":"2","meta_above":["cat","date"],"heading":"\u0635\u062d\u062a\u0643 \u0648\u062c\u0645\u0627\u0644\u0643","css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0)"},"css_column_gap":{"unit":"px","size":30,"sizes":[]},"heading_colors":"force","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"css_l_post_border_color":"#017A97","css_l_post_bg":"#F1F5F8A3","css_bhead_color":"#017A97","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"44": [{"id":"1659a09b","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"44","right":0,"bottom":"50","left":0,"isLinked":false},"structure":"20","query_type":"custom","margin_mobile":{"unit":"px","top":"20","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[{"id":"d222e89","settings":{"_column_size":50,"_inline_size":69.194,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"71c56aab","settings":{"css_media_ratio":1,"meta_below":["date"],"post_ids":[],"tax_ids":[],"css_grid_gap":{"unit":"px","size":2,"sizes":[]},"container_width":50,"space_below":"none","cat_labels_pos":"top-left","posts":1,"css_title_typo_lg_typography":"custom","show_post_formats":"","css_title_typo_sm_font_size":{"unit":"px","size":1,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.45,"sizes":[]},"exclude_ids":[],"grid_type":"grid-eq1","css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_lg_font_size":{"unit":"px","size":29,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"34","left":"0","isLinked":false},"title_style":"bg","meta_author_img":"1","css_title_typo_lg_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"has_ratio":"","css_media_height_eq":{"unit":"px","size":480,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":350,"sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"55d937d4","settings":{"posts":2,"style":"card","columns":"2","excerpts":"","media_ratio":"custom","media_ratio_custom":1.85,"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_media_radius":10,"css_l_post_radius":10,"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_content_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0)"},"space_below":"none","cat_labels":"1","cat_labels_pos":"bot-left","css_column_gap":{"unit":"px","size":32,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_cat_labels_margins":{"unit":"px","top":"0","right":"0","bottom":"-2","left":"25","isLinked":false},"title_lines":"3","css_title_margin":{"unit":"px","top":"15","right":0,"bottom":"15","left":0,"isLinked":true},"css_content_pad_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_cat_labels_margins_mobile":{"unit":"px","top":"0","right":"0","bottom":"-2","left":"20","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"9d0e09","settings":{"_column_size":50,"_inline_size":30.806452,"space_between_widgets":0,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"42","isLinked":false},"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"10","bottom":"0","left":"10","isLinked":false}},"elements":[{"id":"5ec6cdda","settings":{"posts":5,"title_lines":"3","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":30,"css_media_max_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","read_time"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":38,"sizes":[]},"css_media_radius":999,"css_media_margin":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_cat_labels_typo_typography":"custom","show_post_formats":"","css_content_margin":{"unit":"px","top":"-6","right":"0","bottom":"-3","left":"0","isLinked":false},"css_title_margin":{"unit":"px","top":"12","right":0,"bottom":"12","left":0,"isLinked":true},"media_vpos":"center","css_title_typo_font_weight":"700","space_below":"none","cat_labels":"0","heading_type":"c","heading":"People's Favorite","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":32,"sizes":[]},"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"48753000","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"55","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"3eadcf7e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1fa0b3a9","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/tech-drop\/wp-content\/uploads\/sites\/33\/2022\/10\/Wide-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","label":"Sponsored","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"452e8e1d","settings":{"columns":"4","space_below":"none","cat_labels":"1","title_lines":"3","excerpts":"","media_ratio":"3-2","numbers":"b","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"heading_type":"e3","heading_align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":38,"sizes":[]},"css_column_gap":{"unit":"px","size":32,"sizes":[]},"css_bhead_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1c24d917","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#191A3E","background_color_b":"#020203","background_gradient_angle":{"unit":"deg","size":170,"sizes":[]},"is_dark_section":"s-dark","margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"65","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"7577f1f3","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"1e737a56","settings":{"heading":"Trending Videos","css_bhead_color":"#FFFFFF","container_width":100,"type":"e3","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_bhead_typo_font_weight":"600","css_bhead_space_below":{"unit":"px","size":36,"sizes":[]},"css_bhead_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"4340cc7e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"5ca02541","settings":{"_column_size":50,"_inline_size":65.047,"_inline_size_tablet":50},"elements":[{"id":"153276e4","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"custom","media_ratio_custom":1.75,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"heading_type":"none","title_style":"bg","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"media_ratio_custom_tablet":0.85,"css_title_typo_font_size_tablet":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6d383706","settings":{"_column_size":50,"_inline_size":34.953,"_inline_size_tablet":50},"elements":[{"id":"140c2e97","settings":{"space_below":"none","excerpt_length":21,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","cat_labels_pos":"top-right","title_lines":"2","excerpts":"","media_pos":"right","media_width":30,"media_ratio":"3-2","meta_cat_style":"labels","exclude_ids":[],"heading_type":"none","css_row_gap":{"unit":"px","size":39,"sizes":[]},"css_title_typo_typography":"custom","scheme":"dark","post_formats_pos":"center","meta_author_img":"","css_format_icon_size":0.8,"separators":"","cat_labels":"0","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"offset":5,"css_title_typo_font_weight":"600","css_row_gap_tablet":{"unit":"px","size":24,"sizes":[]},"css_title_typo_font_size_tablet":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6abae263","settings":{"scheme":"dark","style":"stylish","columns":"4","space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","media_ratio":"3-2","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"offset":1,"css_title_color_sd":"#FFFFFF","css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_content_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7c9d8c8e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"28","right":0,"bottom":"50","left":0,"isLinked":false},"structure":"22"},"elements":[{"id":"55d442eb","settings":{"_column_size":66,"_inline_size":null,"is_main":"main-content","_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"1bd84308","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"1c6bba26","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"fc2bb29","settings":{"posts":1,"space_below":"none","cat_labels":"1","cat_labels_pos":"bot-left","content_vcenter":"1","media_width":50,"css_media_max_width":{"unit":"%","size":50,"sizes":[]},"css_media_max_width_tablet":{"unit":"%","size":"","sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":"","sizes":[]},"read_more":"basic","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"meta_author_img":"1","separators":"","media_ratio":"3-2","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"grid_on_sm":"1","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_type":"e3","heading_colors":"none","heading_more_text":"See All >","heading_more":"b","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"458943e0","settings":{"posts":6,"columns":"2","space_below":"none","cat_labels":"0","cat_labels_pos":"bot-left","excerpts":"","content_vcenter":"1","media_width":24,"css_media_max_width":{"unit":"px","size":100,"sizes":[]},"css_media_max_width_tablet":{"unit":"%","size":"","sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":"","sizes":[]},"media_ratio":"custom","media_ratio_custom":1.3,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"separators":"","css_media_margin":{"unit":"px","size":20,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"offset":1,"heading_type":"none","reviews":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"3bd42070","settings":{"gutter":"default","gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"140cdfb0","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"73bc531b","settings":{"posts":2,"space_below":"sm","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"title_style":"bg","cat_labels":"0","title_lines":"2","post_formats_pos":"top-right","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_column_gap":{"unit":"px","size":34,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"skip_posts":0,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_type":"e3","heading_colors":"none","heading_more_text":"See All >","heading_more":"b","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"3cb9b9d1","settings":{"posts":6,"columns":"2","space_below":"none","cat_labels":"0","cat_labels_pos":"bot-left","excerpts":"","content_vcenter":"1","media_width":24,"css_media_max_width":{"unit":"%","size":100,"sizes":[]},"css_media_max_width_tablet":{"unit":"%","size":"","sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":"","sizes":[]},"media_ratio":"custom","media_ratio_custom":1.3,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":26,"sizes":[]},"separators":"","css_media_margin":{"unit":"px","size":19,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_column_gap":{"unit":"px","size":34,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"skip_posts":2,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"7470df0a","settings":{"_column_size":33,"_inline_size":null,"space_between_widgets":0,"is_sidebar":"main-sidebar","_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"4b9ba136","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-top","_border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_bradius":""},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"7fc0c0a2","settings":{"style":"sm","columns":"1","excerpts":"","show_media":"","numbers":"c","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_weight":"600","meta_items_default":"","meta_below":["author","date","views"],"posts":5,"space_below":"none","heading":"Popular Now","heading_colors":"none","sort_by":"views"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"36a0312f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"98e690f","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"76075d58","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/tech-drop\/wp-content\/uploads\/sites\/33\/2022\/10\/Wide-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","label":"Sponsored","_margin":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"4a6195aa","settings":{"type":"e3","heading":"Featured Reviews","align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":36,"sizes":[]},"container_width":100,"css_bhead_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"1e7dcfa9","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":50.25,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.4,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"34","left":"0","isLinked":false},"grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"media_ratio_custom_mobile":1.5,"excerpt_length":17,"meta_cat_style":"labels","meta_author_img":"1","heading_type":"none","css_l_post_bg":"#0D0D25","css_content_pad":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"css_title_margin":{"unit":"px","top":"15","right":0,"bottom":"15","left":0,"isLinked":true},"heading_align":"center","css_bhead_typo_font_size":{"unit":"px","size":26,"sizes":[]},"css_bhead_typo_font_weight":"600","_border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":12,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"scheme":"dark","css_l_post_radius":10,"cat_labels":"0","media_ratio_custom_tablet":1.05,"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"reviews":"radial","css_title_color_sd":"#FFFFFF","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"20f422c3","settings":{"columns":"4","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":24,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"show_post_formats":"","style":"card","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-left","css_l_post_radius":10,"css_title_margin":{"unit":"px","top":"15","right":0,"bottom":"16","left":0,"isLinked":false},"css_cat_labels_margins":{"unit":"px","top":"0","right":"0","bottom":"-1","left":"24","isLinked":false},"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_type":"none","reviews":"radial","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"37e32efb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"70","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"3e446f4","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":34},"elements":[{"id":"52b38708","settings":{"pagination_type":"load-more","cat_labels":"1","cat_labels_pos":"bot-left","excerpt_length":22,"content_vcenter":"1","grid_on_sm":"1","media_width":36,"media_ratio":"custom","media_ratio_custom":1.3,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Articles","separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_l_post_radius":10,"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":32,"sizes":[]},"posts":3,"style":"card","css_row_gap":{"unit":"px","size":30,"sizes":[]},"space_below":"none","heading_type":"e3","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"69d77a0f","settings":{"posts":1,"columns":"1","space_below":"none","title_style":"bg","media_ratio":"custom","media_ratio_custom":1.95,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"cat_labels":"0","offset":3,"css_content_pad":{"unit":"px","top":"27","right":"45","bottom":"27","left":"27","isLinked":false},"media_ratio_custom_mobile":1,"css_content_pad_mobile":{"unit":"px","top":"18","right":"18","bottom":"18","left":"18","isLinked":true},"css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"6299030c","settings":{"pagination":"1","pagination_type":"load-more","cat_labels":"1","cat_labels_pos":"bot-left","excerpt_length":22,"content_vcenter":"1","grid_on_sm":"1","media_width":36,"media_ratio":"custom","media_ratio_custom":1.3,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_l_post_radius":10,"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":32,"sizes":[]},"style":"card","css_row_gap":{"unit":"px","size":30,"sizes":[]},"offset":4,"space_below":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4edc393d","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"4fe438a5","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"border_radius":{"unit":"px","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":12,"spread":-1,"color":"rgba(0, 0, 0, 0.08)"},"margin":{"unit":"px","top":"12","right":0,"bottom":"45","left":0,"isLinked":false},"padding":{"unit":"px","top":"30","right":"28","bottom":"38","left":"28","isLinked":false},"background_background":"gradient","background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":50,"sizes":[]},"background_color_b":"#FBFBFF","background_gradient_angle":{"unit":"deg","size":135,"sizes":[]},"background_gradient_position":"top left","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#0000000F","__globals__":{"border_color":""},"background_sd_background":"gradient","background_sd_color":"#000000","background_sd_color_b":"#2A2A2A","background_sd_gradient_angle":{"unit":"deg","size":135,"sizes":[]}},"elements":[{"id":"378be689","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"581101","settings":{"type":"c2","heading":"We're Social","align":"center","container_width":33,"css_bhead_line_weight":2},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"6031e85c","settings":{"wp":{"title":"","style":"c-2-split","counters":"","social":["facebook","twitter","pinterest","instagram","telegram","whatsapp"]}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"14dd2c35","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","excerpts":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","heading":"Gaming Zone","heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6f567ad6","settings":{"text":"Divider","color":"#E2E2E2","color_sd":"#232323","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5441bc26","settings":{"title_lines":"3","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":30,"css_media_max_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"custom","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_media_margin":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_weight":"600","media_ratio_custom":1.2,"cat_labels":"0","offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"45": 
	[{"id":"56b604bc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"35","right":0,"bottom":"30","left":0,"isLinked":false},"is_full_xs":"is-full-xs","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"72d1bb3e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4b5ba5f","settings":{"grid_type":"grid-d","space_below":"none","css_media_ratio":1.25,"meta_items_default":"","meta_above":["cat"],"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_overlay_pad_lg":{"unit":"px","top":"0","right":"50","bottom":"35","left":"35","isLinked":false},"css_overlay_pad_md":{"unit":"px","top":"0","right":"40","bottom":"35","left":"30","isLinked":false},"css_title_typo_md_typography":"custom","css_title_typo_lg_typography":"custom","container_width":100,"css_title_typo_sm_typography":"custom","css_title_typo_sm_line_height":{"unit":"em","size":1.3,"sizes":[]},"css_title_typo_md_line_height":{"unit":"em","size":1.3,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.3,"sizes":[]},"css_title_typo_md_font_weight":"500","css_title_typo_sm_font_weight":"500","css_title_typo_lg_font_weight":"500","css_title_typo_lg_font_size_mobile":{"unit":"px","size":26,"sizes":[]},"css_overlay_pad_lg_mobile":{"unit":"px","top":"0","right":"20","bottom":"20","left":"16","isLinked":false},"css_overlay_pad_md_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1c76135c","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"exclude_ids":[],"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"20","left":0,"isLinked":false}},"elements":[{"id":"59ad8d52","settings":{"_column_size":100,"_inline_size":null,"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E8E8E8","padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"border_sd_border":"solid","border_sd_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_sd_color":"#FFFFFF21"},"elements":[{"id":"552790ed","settings":{"posts":9,"columns":"4","media_ratio":"1-1","container_width":66,"post_ids":[],"tax_ids":[],"separators":"","carousel":"1","space_below":"none","media_width":31,"media_pos":"right","meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"css_media_radius":50,"css_content_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"-5","right":"0","bottom":"-5","left":"0","isLinked":false},"carousel_dots":"","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"title_lines":"3","carousel_autoplay":"1","css_carousel_nav_spacing_mobile":20},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"d012b01","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"f70391c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3518c272","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/discover\/wp-content\/uploads\/sites\/38\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"b6a6809","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","query_type":"custom"},"elements":[{"id":"7b0961a1","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"1c78f324","settings":{"heading":"Featured Stories","container_width":66,"more_text":"View More","more":"b","more_link":"https:\/\/smartmag.theme-sphere.com\/discover\/category\/example-1\/"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5787c881","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"33a518f4","settings":{"_column_size":50,"_inline_size":58,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":48},"elements":[{"id":"48d78108","settings":{"columns":"1","meta_above":["cat"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"space_below":"none","heading_type":"none","posts":1,"media_ratio":"4-3","excerpt_length":20,"media_ratio_custom":1.85,"meta_items_default":"","meta_below":["author","date","views"],"heading":"Top Story","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_text_transform":"none","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"meta_cat_style":"labels","css_cat_labels_typo_font_size":{"unit":"px","size":12,"sizes":[]},"read_more":"basic","offset":1,"css_content_margin":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"-33","right":"0","bottom":"0","left":"0","isLinked":false},"css_cat_labels_typo_typography":"custom","css_cat_labels_typo_font_weight":"500","css_cat_labels_bg":"#FB3158","css_cat_labels_color":"#FFFFFF","css_cat_labels_pad":{"unit":"px","top":"5","right":"15","bottom":"5","left":"15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":25,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2ae60477","settings":{"_column_size":50,"_inline_size":42,"_inline_size_tablet":50},"elements":[{"id":"317e2e9d","settings":{"columns":"2","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"space_below":"none","heading_type":"none","posts":6,"media_ratio":"3-2","excerpt_length":36,"media_ratio_custom":1.85,"meta_items_default":"","heading":"Top Story","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_text_transform":"none","excerpts":"","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"3","css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"-5","left":"0","isLinked":false},"css_column_gap":{"unit":"px","size":20,"sizes":[]},"style":"sm","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"252a5358","settings":{"columns":"4","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":66,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Related Posts","style":"sm","query_type":"section","skip_posts":7,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6b032a0b","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"34022c03","settings":{"columns":"1","meta_above":["cat","views"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","space_below":"none","posts":5,"media_ratio":"3-2","excerpt_length":18,"media_ratio_custom":1.85,"excerpts":"","show_media":"","numbers":"b","heading":"Trending Now","css_row_gap":{"unit":"px","size":27,"sizes":[]},"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_l_post_border_color":"#E8E8E8","css_l_post_pad":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_text_transform":"none","css_bhead_line_weight":4,"css_bhead_line_color":"#000000","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"-5","left":"0","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","sort_by":"views","css_l_post_border_color_dark":"#FFFFFF21"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5078fb64","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/discover\/wp-content\/uploads\/sites\/38\/2023\/03\/Woman-Square.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5eb591be","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"740cf40e","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_image":{"url":"","id":"","size":"","alt":"","source":"library"},"background_color":"#B8C2D8","background_sd_background":"classic","background_sd_color":"#202631BA"},"elements":[{"id":"404203b8","settings":{"posts":1,"scheme":"dark","space_below":"none","excerpts":"","content_vcenter":"1","media_width":50,"css_media_max_width":{"unit":"px","size":900,"sizes":[]},"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"meta_below":["author","views"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"40","right":"40","bottom":"10","left":"40","isLinked":false},"meta_cat_style":"labels","css_cat_labels_bg":"#FFFFFF","css_cat_labels_color":"#000000","css_l_post_bg":"#081838","css_content_pad":{"unit":"px","top":"0","right":"30","bottom":"0","left":"10","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"10","bottom":"15","left":"10","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":24,"sizes":[]},"_padding_mobile":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_tablet":{"unit":"px","size":24,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"35a1f9a2","settings":{"scheme":"dark","columns":"4","space_below":"none","title_lines":"2","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","column_gap":"sm","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.08)"},"css_content_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.18)"},"css_meta_above_margins":{"unit":"px","top":"-27","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"8","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"40","bottom":"40","left":"40","isLinked":false},"meta_cat_style":"labels","css_cat_labels_bg":"#FFFFFF","css_cat_labels_color":"#000000","css_l_post_bg":"#263344","css_content_pad":{"unit":"px","top":"0","right":"20","bottom":"20","left":"20","isLinked":false},"style":"sm","_padding_mobile":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7c8800bf","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"32ee9fc8","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"283dfd07","settings":{"heading":"Technology","container_width":66,"more_text":"View All In Tech","more":"b","more_link":"https:\/\/smartmag.theme-sphere.com\/discover\/category\/example-4\/"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5c3e778c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"26d6100d","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"6771b74c","settings":{"columns":"1","meta_above":["cat"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"space_below":"none","heading_type":"none","posts":1,"media_ratio":"3-2","excerpt_length":21,"media_ratio_custom":1.85,"meta_items_default":"","meta_below":["author","date","views"],"heading":"Top Story","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_text_transform":"none","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"meta_cat_style":"labels","css_cat_labels_typo_font_size":{"unit":"px","size":12,"sizes":[]},"offset":1,"css_content_margin":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"-33","right":"0","bottom":"0","left":"0","isLinked":false},"css_cat_labels_typo_typography":"custom","css_cat_labels_typo_font_weight":"500","css_cat_labels_bg":"#FB3158","css_cat_labels_color":"#FFFFFF","css_cat_labels_pad":{"unit":"px","top":"5","right":"15","bottom":"5","left":"15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"98923c5","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"7b5df39f","settings":{"title_lines":"3","excerpts":"","media_width":35,"css_media_max_width":{"unit":"px","size":96,"sizes":[]},"media_ratio":"1-1","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"space_below":"none","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5029063a","settings":{"posts":8,"columns":"4","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":66,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Related Posts","space_below":"none","style":"sm","query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3ebfe73","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"text_align":"center","ts_sticky_col":"ts-sticky-col","space_between_widgets":0},"elements":[{"id":"2f6f4ff6","settings":{"wp":{"title":"Follow Us!","style":"b-2","counters":"","social":["facebook","twitter","instagram","youtube","tiktok","telegram"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"78f08c2a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"border_radius":{"unit":"px","top":"4","right":"4","bottom":"4","left":"4","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":12,"spread":-1,"color":"rgba(0, 0, 0, 0.08)"},"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"30","right":"28","bottom":"38","left":"28","isLinked":false},"background_background":"gradient","background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":50,"sizes":[]},"background_color_b":"#FBFBFF","background_gradient_angle":{"unit":"deg","size":135,"sizes":[]},"background_gradient_position":"top left","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#0000000F","__globals__":{"border_color":""},"background_sd_background":"gradient","background_sd_color":"#000000","background_sd_color_b":"#2A2A2A","background_sd_gradient_angle":{"unit":"deg","size":135,"sizes":[]}},"elements":[{"id":"2b2be5de","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5952a13f","settings":{"title_lines":"3","media_width":35,"media_ratio":"custom","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_pos":"right","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"heading_type":"c2","space_below":"none","css_media_width":{"unit":"px","size":75,"sizes":[]},"css_row_gap":{"unit":"px","size":40,"sizes":[]},"media_ratio_custom":1.85,"show_media":"","meta_items_default":"","meta_above":["cat","date"],"heading":"Editor's Picks","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_l_post_border_color":"#E8E8E8","css_l_post_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"heading_align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_font_weight":"700","css_bhead_typo_text_transform":"none","css_bhead_space_below":{"unit":"px","size":34,"sizes":[]},"css_bhead_line_weight":2,"_border_width":{"unit":"px","top":"0","right":"1","bottom":"1","left":"1","isLinked":false},"_border_color":"#E8E8E8","_box_shadow_box_shadow":{"horizontal":3,"vertical":3,"blur":5,"spread":0,"color":"rgba(0, 0, 0, 0.05)"},"posts":5,"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5cf84aa9","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_image":{"url":"","id":"","size":"","alt":"","source":"library"},"background_position":"center center","background_repeat":"no-repeat","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"content_width":{"unit":"px","size":1340,"sizes":[]},"gutter":"default"},"elements":[{"id":"7a71ea9b","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"border_width":{"unit":"px","top":"4","right":"4","bottom":"4","left":"4","isLinked":true}},"elements":[{"id":"1c785154","settings":{"columns":"4","media_ratio":"custom","show_post_formats":"","meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"space_below":"none","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"media_ratio_custom":0.85,"css_column_gap":{"unit":"px","size":1,"sizes":[]},"heading":"Don't Miss!","css_title_typo_font_weight":"500","heading_align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":26,"sizes":[]},"css_bhead_typo_font_weight":"800","css_bhead_typo_font_style":"italic","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"f46353d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"587541a3","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"4a081ae8","settings":{"heading":"Celebrities","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"79a82b38","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"4bfc6ed3","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"6c68421d","settings":{"columns":"1","meta_above":["cat"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"space_below":"none","heading_type":"none","posts":1,"media_ratio":"3-2","excerpt_length":21,"media_ratio_custom":1.85,"meta_items_default":"","meta_below":["author","date","views"],"heading":"Top Story","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_text_transform":"none","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"meta_cat_style":"labels","css_cat_labels_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_content_margin":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"-33","right":"0","bottom":"0","left":"0","isLinked":false},"css_cat_labels_typo_typography":"custom","css_cat_labels_typo_font_weight":"500","css_cat_labels_bg":"#FB3158","css_cat_labels_color":"#FFFFFF","css_cat_labels_pad":{"unit":"px","top":"5","right":"15","bottom":"5","left":"15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"5d27c4df","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"bc01338","settings":{"columns":"1","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"space_below":"none","heading_type":"none","posts":1,"excerpt_length":21,"media_ratio_custom":1.85,"meta_items_default":"","meta_below":["author","date"],"heading":"Top Story","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_text_transform":"none","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"offset":1,"css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"-5","left":"0","isLinked":false},"excerpts":"","css_column_gap":{"unit":"px","size":20,"sizes":[]},"css_row_gap":{"unit":"px","size":25,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"62ff586","settings":{"columns":"2","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"space_below":"none","heading_type":"none","posts":2,"media_ratio":"3-2","excerpt_length":36,"media_ratio_custom":1.85,"meta_items_default":"","heading":"Top Story","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_text_transform":"none","excerpts":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"3","css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"-5","left":"0","isLinked":false},"css_column_gap":{"unit":"px","size":20,"sizes":[]},"offset":2,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"b086156","settings":{"style":"sm","columns":"4","space_below":"none","excerpts":"","meta_items_default":"","container_width":66,"offset":4,"post_ids":[],"exclude_ids":[],"tax_ids":[],"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"24883dcc","settings":{"heading":"Travel & Tourism","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5d0f1b9a","settings":{"posts":1,"scheme":"dark","space_below":"none","excerpts":"","content_vcenter":"1","media_width":63,"css_media_max_width":{"unit":"px","size":900,"sizes":[]},"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"meta_cat_style":"labels","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.48)"},"css_l_post_bg":"#081838","css_content_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":61,"spread":35,"color":"rgba(0,0,0,0.5)"},"css_cat_labels_bg":"#000000","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.07)"},"grid_on_sm":"1","css_content_pad":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_weight":"500","css_content_pad_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"d644d18","settings":{"columns":"4","excerpts":"","media_ratio":"1-1","meta_items_default":"","container_width":66,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Related Posts","space_below":"none","title_lines":"3","heading_type":"none","css_column_gap":{"unit":"px","size":20,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"style":"sm","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1e52ea29","settings":{"pagination_type":"load-more","cat_labels":"0","cat_labels_pos":"bot-left","excerpt_length":22,"content_vcenter":"1","grid_on_sm":"1","media_width":40,"media_ratio":"3-2","media_ratio_custom":1.45,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"More Top Stories","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":32,"sizes":[]},"css_row_gap":{"unit":"px","size":40,"sizes":[]},"space_below":"none","heading_type":"e3","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"pagination":"1","css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"341e78e8","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"text_align":"center","ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"13a16ad8","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/discover\/wp-content\/uploads\/sites\/38\/2023\/03\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"52dab8b2","settings":{"headline":"Subscribe to Updates","message":"","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","icon":"mail","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"46": 
	[{"id":"aa9176","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"25","right":0,"bottom":"30","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"25","right":0,"bottom":"30","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"6e766191","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"55b96b39","settings":{"posts":6,"columns":"6","space_below":"none","title_lines":"3","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":1,"sizes":[]},"css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","css_content_pad":{"unit":"px","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_content_margin":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_meta_below_margins":{"unit":"px","top":"12","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","skip_posts":0,"section_data":{"query_type":"none","terms":[],"post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"content_center":"1","meta_items_default":"","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"columns_tablet":"3","css_row_gap_tablet":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"70592d30","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"266fcf8a","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"46b1dc2","settings":{"posts":5,"grid_type":"grid-b","space_below":"none","post_ids":[],"exclude_ids":[],"tax_ids":[],"_margin":{"unit":"px","top":"0","right":"-26","bottom":"0","left":"-26","isLinked":false},"container_width":100,"css_title_typo_md_typography":"custom","css_title_typo_md_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":35,"sizes":[]},"css_title_typo_md_font_weight":"700","css_title_typo_lg_font_weight":"700","css_title_typo_md_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_title_typo_lg_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"619edaf4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"3cc53f0f","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"48538bd","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-post\/wp-content\/uploads\/sites\/37\/2023\/03\/SmartPostTop.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3c1e61ca","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"a5c78b5","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0,"margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5181ff67","settings":{"columns":"2","meta_below":["author","date","views"],"container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Editor's Picks","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"meta_items_default":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"2","heading_type":"i","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E0E0E0","posts":6,"css_row_gap":{"unit":"px","size":35,"sizes":[]},"css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5e686e09","settings":{"columns":"2","space_below":"none","media_width":32,"media_ratio_custom":1.15,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Opinion","column_gap":"lg","css_row_gap":{"unit":"px","size":35,"sizes":[]},"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-5","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.3,"sizes":[]},"heading_align":"center","css_bhead_space_below":{"unit":"px","size":33,"sizes":[]},"css_bhead_accent":"#000000","css_bhead_line_weight":3,"_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding":{"unit":"px","top":"25","right":"25","bottom":"35","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#F7E6E7","meta_items_default":"","meta_below":["author"],"meta_author_img":""},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"3a320090","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels_pos":"bot-left","meta_items_default":"","meta_above":["cat","date"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"css_cat_labels_typo_font_size":{"unit":"px","size":11,"sizes":[]},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_color":"#F32658","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"media_ratio":"16-9","css_cat_labels_typo_text_transform":"uppercase","heading_type":"i","heading":"Travel & Tourism","css_content_pad":{"unit":"px","top":"0","right":"90","bottom":"0","left":"0","isLinked":false},"excerpt_length":35,"css_content_pad_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3286165a","settings":{"columns":"3","container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"media_ratio":"3-2","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"2","offset":1,"heading_type":"none","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_row_gap":{"unit":"px","size":36,"sizes":[]},"css_content_margin":{"unit":"px","top":"-6","right":"0","bottom":"0","left":"0","isLinked":false},"posts":6,"meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"51123c58","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"37049974","settings":{"posts":6,"title_lines":"3","media_width":42,"media_pos":"right","media_ratio":"3-2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Most Read","css_content_margin":{"unit":"px","top":"0","right":"-10","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"sort_by":"views","meta_items_default":"","meta_below":["views"],"css_title_typo_font_size_tablet":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"5b212e8a","settings":{"accent_colors":"force","heading":"Share It!","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"37e61b1a","settings":{"wp":{"title":"","style":"c-2-split","counters":"y","social":["facebook","twitter","pinterest","instagram","youtube","whatsapp"]}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7f0a671a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"4ad3a86","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"14db448a","settings":{"posts":1,"space_below":"none","excerpts":"","content_vcenter":"1","media_width":62.5,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"meta_below":["date","views"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"-26","bottom":"0","left":"-26","isLinked":false},"_background_color":"#E4D5C6","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]},"media_ratio_custom_mobile":1.5,"_background_color_b":"#080b0e","_background_color_b_stop":{"unit":"%","size":36,"sizes":[]},"_background_gradient_angle":{"unit":"deg","size":90,"sizes":[]},"heading_type":"i","heading":"Soccer","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"scheme":"dark","heading_colors":"none","css_l_post_bg":"#23151B","css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"0","left":"30","isLinked":false},"css_bhead_color":"#000000","_padding":{"unit":"px","top":"35","right":"26","bottom":"40","left":"26","isLinked":false},"_background_background":"classic","meta_cat_style":"labels","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"5d74550a","settings":{"columns":"4","meta_below":["date","views"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"2","offset":1,"heading_type":"none","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"media_ratio":"3-2","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"_margin":{"unit":"px","top":"0","right":"-26","bottom":"0","left":"-26","isLinked":false},"_padding":{"unit":"px","top":"0","right":"26","bottom":"40","left":"26","isLinked":false},"_background_background":"classic","_background_color":"#E4D5C6","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"33f94266","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"1d1e9321","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"18ccaf4d","settings":{"posts":6,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"i","heading":"World News","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E0E0E0","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","filters":"","filters_terms":["3","10"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"2185218b","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-post\/wp-content\/uploads\/sites\/37\/2023\/03\/SmartPostMid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"4072bc1f","settings":{"columns":"3","meta_below":["author"],"container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Features","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","media_ratio":"3-2","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"2","heading_type":"i","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_row_gap":{"unit":"px","size":36,"sizes":[]},"css_content_margin":{"unit":"px","top":"-6","right":"0","bottom":"0","left":"0","isLinked":false},"posts":6,"filters":"category","filters_terms":["7","8","9"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"42b2917f","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"48a046f0","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Featured","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"meta_items_default":"","media_ratio":"1-1","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","posts":3,"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_space_below":{"unit":"px","size":3,"sizes":[]},"carousel":"1","carousel_autoplay":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"60580472","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"46a2a3a5","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6243a854","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","scheme":"dark","fields_style":"inline","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_heading_typo_font_weight":"700","container_width":100,"css_bg_color_sd":"#0F161E"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"20d7c179","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"259b3261","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"3524e4a3","settings":{"columns":"4","meta_below":["author","date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Health & Fitness","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"meta_items_default":"","media_ratio":"1-1","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"2","heading_type":"i","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"189dca95","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"72678840","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#F0F8FF","padding":{"unit":"px","top":"40","right":"30","bottom":"40","left":"30","isLinked":false}},"elements":[{"id":"1317dab9","settings":{"posts":6,"columns":"3","space_below":"none","title_lines":"3","media_width":32,"media_ratio_custom":1.15,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Trending Now","column_gap":"lg","css_row_gap":{"unit":"px","size":55,"sizes":[]},"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-5","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.3,"sizes":[]},"heading_align":"center","css_bhead_space_below":{"unit":"px","size":33,"sizes":[]},"css_bhead_accent":"#000000","css_bhead_line_weight":3},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"26ce171f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"18070835","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"39943ae4","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":50,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.25,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"-26","bottom":"35","left":"-26","isLinked":false},"grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]},"media_ratio_custom_mobile":1.5,"_background_color_b":"#080b0e","_background_color_b_stop":{"unit":"%","size":36,"sizes":[]},"_background_gradient_angle":{"unit":"deg","size":90,"sizes":[]},"heading_type":"none","heading":"Soccer","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"10","left":"0","isLinked":false},"scheme":"dark","heading_colors":"none","css_l_post_bg":"#002759","css_content_pad":{"unit":"px","top":"0","right":"35","bottom":"0","left":"35","isLinked":false},"css_bhead_color":"#000000","_background_background":"classic","meta_cat_style":"labels","excerpt_length":20,"css_cat_labels_bg":"#000000","css_title_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"27c6a2e0","settings":{"columns":"4","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","media_ratio":"custom","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"3","offset":1,"heading_type":"none","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_column_gap":{"unit":"px","size":30,"sizes":[]},"media_ratio_custom":1.55,"css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"11fb251b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"2bbbb22b","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"1c85051c","settings":{"pagination_type":"load-more","cat_labels_pos":"bot-left","excerpt_length":18,"content_vcenter":"1","grid_on_sm":"1","media_width":42,"media_ratio":"3-2","media_ratio_custom":1.3,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Articles","separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"posts":2,"css_row_gap":{"unit":"px","size":36,"sizes":[]},"space_below":"none","heading_type":"i","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"meta_items_default":"","meta_above":["cat"],"meta_below":["date","read_time"]},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"68d311dd","settings":{"posts":1,"columns":"1","space_below":"none","title_style":"bg","media_ratio":"custom","media_ratio_custom":1.95,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"cat_labels":"0","offset":2,"css_content_pad":{"unit":"px","top":"27","right":"45","bottom":"27","left":"27","isLinked":false},"media_ratio_custom_mobile":1,"css_content_pad_mobile":{"unit":"px","top":"18","right":"18","bottom":"18","left":"18","isLinked":true},"css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"3f3f71b1","settings":{"pagination_type":"load-more","cat_labels_pos":"top-left","excerpt_length":18,"content_vcenter":"1","grid_on_sm":"1","media_width":42,"media_ratio":"3-2","media_ratio_custom":1.3,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Articles","separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_row_gap":{"unit":"px","size":36,"sizes":[]},"space_below":"none","heading_type":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"pagination":"1","meta_items_default":"","meta_above":["cat"],"meta_below":["date","read_time"],"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"e144a9d","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"721ff824","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"force","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Top Rated","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"3","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_column_gap":{"unit":"px","size":30,"sizes":[]},"media_ratio_custom":1.55,"css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"posts":3,"numbers":"c","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1acafe3a","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-post\/wp-content\/uploads\/sites\/37\/2023\/03\/sidebar-tall-1.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"47": 
	[{"id":"1046f1d9","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"30","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"28ab9ef3","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"48660f09","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"38","left":0,"isLinked":false}},"elements":[{"id":"7f66d392","settings":{"_column_size":50,"_inline_size":64.966},"elements":[{"id":"2f4ff39b","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_pad":{"unit":"%","top":"5","right":"18","bottom":"5","left":"5","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"css_title_typo_font_weight":"500","skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"media_ratio_custom_tablet":1.25,"media_ratio_custom_mobile":0.85,"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"36","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":27,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"32e64db0","settings":{"_column_size":50,"_inline_size":35.034},"elements":[{"id":"524b598f","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","media_ratio_custom":0.86,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":50,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_pad":{"unit":"%","top":"5","right":"25","bottom":"10","left":"5","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_font_weight":"500","skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"media_ratio_custom_tablet":0.64,"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1148a0d","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_l_post_radius":6,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"media_ratio":"3-2","style":"card","offset":2,"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4403ebe1","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"3276d813","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4f1eaba0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/friday-mag\/wp-content\/uploads\/sites\/36\/2023\/03\/FridayMag-top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"31ec443f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"main-custom"},"elements":[{"id":"16cc5e47","settings":{"_column_size":100,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"32d1e278","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"69bfbc41","settings":{"_column_size":50,"_inline_size":64,"_inline_size_tablet":100},"elements":[{"id":"3e84266","settings":{"pagination_type":"load-more","media_width":40,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"Latest Posts","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":35,"sizes":[]},"content_vcenter":"1","media_ratio":"4-3","title_lines":"3","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"excerpt_length":17,"meta_above":["cat","date","views"],"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"filters":"category","posts":2,"style":"card","css_l_post_radius":6,"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"heading_more_text":"View More","heading_more":"b","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_colors":"none","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/friday-mag\/category\/example-3\/","filters_terms":["2","3"],"grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"40d9ed5d","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","media_ratio_custom":1.95,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","views"],"meta_author_img":"1","container_width":50,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_typo_font_weight":"500","title_style":"bg","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"media_ratio_custom_tablet":1.15,"media_ratio_custom_mobile":0.85,"css_title_typo_font_size_mobile":{"unit":"px","size":24,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"43c4cc94","settings":{"pagination_type":"load-more","media_width":40,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":35,"sizes":[]},"content_vcenter":"1","media_ratio":"4-3","offset":3,"title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"excerpt_length":17,"pagination":"1","meta_above":["cat","date","views"],"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"filters":"category","filters_terms":["6","7","8"],"posts":3,"style":"card","heading_type":"none","css_l_post_radius":6,"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"grid_on_sm":"1","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"56779ac4","settings":{"_column_size":50,"_inline_size":36,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-col","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#D22222","_inline_size_tablet":100},"elements":[{"id":"1d24ce5d","settings":{"pagination_type":"load-more","media_width":44,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"Most Read","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"meta_items_default":"","space_below":"sm","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":36,"sizes":[]},"content_vcenter":"1","title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"excerpt_length":22,"posts":7,"excerpts":"","meta_above":["date","views"],"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-8","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"-6","left":"0","isLinked":false},"_padding":{"unit":"px","top":"18","right":"25","bottom":"15","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#EAEAEA","_border_radius":{"unit":"px","top":"6","right":"6","bottom":"6","left":"6","isLinked":false},"_margin":{"unit":"px","top":"-14","right":"0","bottom":"0","left":"0","isLinked":false},"sort_by":"views","css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_margin_tablet":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6bdc836d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"55","left":"0","isLinked":false},"exclude_ids":[],"background_background":"gradient","background_color":"#0A0F15","background_color_stop":{"unit":"%","size":25,"sizes":[]},"background_color_b":"#181F2A","background_color_b_stop":{"unit":"%","size":25,"sizes":[]},"background_sd_background":"gradient","background_sd_color":"#FFFFFF14","background_sd_color_stop":{"unit":"%","size":18,"sizes":[]},"background_sd_color_b":"#0000000D","background_sd_color_b_stop":{"unit":"%","size":18,"sizes":[]},"query_type":"custom"},"elements":[{"id":"74a322a","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"3935046f","settings":{"type":"b","heading":"Physical Fitness","align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_bhead_typo_font_weight":"500","css_bhead_line_weight":2,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":100,"css_bhead_space_below":{"unit":"px","size":25,"sizes":[]},"__globals__":{"css_bhead_line_color":""},"css_bhead_color":"#FFFFFF","css_bhead_line_color":"#000000"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"48b207a2","settings":{"gutter":"sm","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"1201daa","settings":{"_column_size":25,"_inline_size":50,"_inline_size_tablet":100,"column_order_tablet":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"4f208348","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","container_width":"50","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","style":"card","exclude_ids":[],"css_l_post_radius":6,"css_title_typo_font_weight":"500"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6777b7a0","settings":{"_column_size":25,"_inline_size":25,"_inline_size_tablet":50,"column_order_tablet":2,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"248cd03d","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":33,"post_ids":[],"tax_ids":[],"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"css_l_post_radius":6,"css_l_post_bg":"#000000","css_content_margin":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"77818094","settings":{"_column_size":50,"_inline_size":25,"column_order_tablet":3,"_inline_size_tablet":50},"elements":[{"id":"7618c5f2","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":50,"post_ids":[],"tax_ids":[],"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"css_l_post_radius":6,"css_l_post_bg":"#000000","css_content_margin":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5ba9dad0","settings":{"columns":"4","cat_labels":"1","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"space_below":"none","pagination_type":"load-more","cat_labels_pos":"bot-center","title_lines":"2","content_center":"1","column_gap":"sm","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":3,"scheme":"dark","media_ratio_custom":1.15,"exclude_ids":[],"css_l_post_radius":6,"css_l_post_bg":"#000000","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"style":"card","query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"tax_ids":[],"exclude_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5c15275a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"5824b8cc","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"f04d43c","settings":{"posts":2,"columns":"2","space_below":"none","excerpt_length":40,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat","date","author"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","heading":"Health & Well-Being","column_gap":"sm","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"49182d77","settings":{"pagination_type":"load-more","media_width":38.5,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_items_default":"","space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":42,"sizes":[]},"content_vcenter":"1","media_ratio":"4-3","offset":2,"title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"excerpt_length":22,"meta_above":["cat"],"css_excerpt_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"posts":6,"columns":"2","excerpts":"","heading_type":"none","filters":"category","filters_terms":["2","3","8"],"column_gap":"sm","_background_background":"classic","_background_color":"#FFFFFF","grid_on_sm":"1","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"7a295b65","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Top-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"6b165e34","settings":{"heading":"Technology","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"69b889c3","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"3b57d5dc","settings":{"_column_size":50,"ts_sticky_col":"ts-sticky-col","_inline_size":null,"space_between_widgets":0},"elements":[{"id":"73e6e688","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"text","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"css_title_typo_font_weight":"500","show_post_formats":"","post_formats_pos":"top-left","media_ratio_custom":0.92,"title_style":"bg","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"78785e4e","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"37cf7fc7","settings":{"pagination_type":"load-more","media_width":38.5,"container_width":33,"post_ids":[],"tax_ids":[],"heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_items_default":"","space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":40,"sizes":[]},"content_vcenter":"1","media_ratio":"4-3","offset":1,"title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"excerpt_length":22,"meta_above":["cat"],"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"-6","left":"0","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"posts":3,"columns":"1","excerpts":"","heading_type":"none","filters":"category","filters_terms":["2","3","8"],"column_gap":"lg","_background_background":"classic","_background_color":"#FFFFFF","grid_on_sm":"1","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"bcdcd59","settings":{"posts":6,"columns":"3","space_below":"none","excerpt_length":40,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat","date","author"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"excerpts":"","heading":"Gaming","column_gap":"sm","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5ab6d3f3","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-col","is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"2f9d2eb","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-top","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":22,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33,"css_bradius":6},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"3ed51d1c","settings":{"posts":3,"columns":"1","space_below":"none","excerpt_length":40,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date","author"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","content_center":"1","heading":"Featured","carousel":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3037e82c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#090F14","background_color_stop":{"unit":"%","size":15,"sizes":[]},"background_color_b":"#FFFFFF","background_color_b_stop":{"unit":"%","size":15,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"custom"},"elements":[{"id":"e131159","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"a90c104","settings":{"pagination_type":"load-more","media_width":50,"container_width":100,"post_ids":[],"tax_ids":[],"heading":"TV & Drama","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"meta_items_default":"","space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":50,"sizes":[]},"content_vcenter":"1","media_ratio":"custom","title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"excerpt_length":25,"meta_above":["cat"],"css_meta_above_margins":{"unit":"px","top":"-10","right":"0","bottom":"5","left":"0","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"15","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_weight":"500","filters":"","filters_terms":["6","7","8"],"posts":1,"scheme":"dark","css_media_max_width":{"unit":"px","size":800,"sizes":[]},"media_ratio_custom":1.35,"meta_below":["author","date"],"meta_cat_style":"labels","meta_author_img":"1","css_l_post_radius":6,"css_l_post_bg":"#172029","style":"card","heading_colors":"none","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":35,"color":"rgba(0, 0, 0, 0.63)"},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_margin":{"unit":"px","top":"0","right":"0","bottom":"040","left":"0","isLinked":false},"_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.07)"},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_more_text":"More from TV & Drama","css_bhead_color":"#FFFFFF","css_bhead_color_sd":"#FFFFFF","grid_on_sm":"1","css_title_typo_font_size_tablet":{"unit":"px","size":25,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"38c64f7a","settings":{"columns":"4","space_below":"none","title_lines":"2","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_l_post_radius":6,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"media_ratio":"3-2","heading_type":"none","heading":"Hello","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"style":"card","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6ed93f6","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/friday-mag\/wp-content\/uploads\/sites\/36\/2023\/03\/FridayMag-top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"2d895e79","settings":{"pagination_type":"load-more","media_width":38.5,"container_width":100,"post_ids":[],"tax_ids":[],"heading":"From *Lifestyle*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"meta_items_default":"","space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":42,"sizes":[]},"content_vcenter":"1","media_ratio":"3-2","title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"excerpt_length":22,"meta_above":["cat","date","author"],"css_excerpt_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"columns":"2","excerpts":"","filters":"category","filters_terms":["2","3","8"],"column_gap":"lg","_background_background":"classic","_background_color":"#FFFFFF","grid_on_sm":"1","posts":8},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"71e2e5f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"527c0c70","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"452d439","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_l_post_radius":6,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"posts":8,"numbers":"b","heading":"Trending Now"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"48": [{"id":"2ecfe376","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"30","right":0,"bottom":"30","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"534d63db","settings":{"_column_size":66,"_inline_size":69,"_inline_size_tablet":100},"elements":[{"id":"68fd8bfe","settings":{"posts":1,"style":"stylish","columns":"1","cat_labels":"0","cat_labels_pos":"bot-left","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","content_center":"1","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"heading_type":"none","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_content_pad_mobile":{"unit":"px","top":"10","right":"5","bottom":"10","left":"5","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4d06ec40","settings":{"_column_size":33,"_inline_size":31,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"25","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"c615d85","settings":{"posts":2,"columns":"1","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","content_center":"1","meta_items_default":"","heading_type":"none","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"columns_tablet":"2","css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"c64422b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"4055a2dd","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d534d2d","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-post\/wp-content\/uploads\/sites\/37\/2023\/03\/SmartPostTop.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2674ff73","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"50","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"36cf25f","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4c8c1ecf","settings":{"columns":"2","title_lines":"2","excerpt_length":13,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Lifestyle","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","posts":6,"pagination_type":"load-more","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","column_gap":"sm","filters":"category","filters_terms":["1","3","10"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4061db78","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-col","is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"77ee0bec","settings":{"wp":{"title":"Social","style":"b-2-split","counters":"","social":["facebook","twitter","pinterest","instagram","youtube","vimeo"]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"f5920c2","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":24,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","posts":3,"meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"meta_above":["cat"],"css_l_post_border_border":"solid","css_l_post_radius":4,"css_content_border_border":"solid","excerpts":"","content_center":"1","carousel":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"50d0cf9d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"35","right":"0","bottom":"35","left":"0","isLinked":false},"exclude_ids":[],"background_background":"classic","background_color":"#F7F5F5","background_sd_background":"classic","background_sd_color":"#383838"},"elements":[{"id":"254a77c","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"573a83d9","settings":{"columns":"5","title_lines":"3","excerpts":"","excerpt_length":13,"media_ratio":"1-1","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","posts":5,"space_below":"none","meta_items_default":"","css_media_radius":300,"numbers":"b","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"columns_mobile":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"39ab4f22","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"4250af82","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"5a5aa22c","settings":{"posts":6,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"News Focus","filters":"","filters_terms":["1","2"],"columns":"2","columns_tablet":"2","space_below":"none","heading_colors":"none","exclude_ids":[],"css_title_typo_typography":"custom","column_gap":"sm","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"heading_more_text":"View More","heading_more":"b","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/smart-life\/category\/example-1\/"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"3906df7c","settings":{"pagination_type":"load-more","excerpt_length":24,"media_width":45,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"From *Block*","meta_items_default":"","meta_below":["date","views"],"space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":40,"sizes":[]},"content_vcenter":"1","meta_above":["cat"],"posts":6,"pagination":"1","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"29348a2","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-col","is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7a283bc0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-life\/wp-content\/uploads\/sites\/40\/2023\/06\/Woman-Square.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"ecda9fa","settings":{"columns":"2","title_lines":"3","excerpt_length":13,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"New Workouts","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","pagination_type":"load-more","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","style":"sm","media_ratio":"3-2","meta_items_default":"","column_gap":"sm","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3b2aed81","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-top","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_message_typo_typography":"custom","container_width":33,"css_bradius":8,"css_disclaimer_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"45f3271c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"161fd6be","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7be4a84","settings":{"columns":"3","title_lines":"3","excerpts":"","excerpt_length":13,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Our Picks","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","space_below":"none","column_gap":"sm","posts":6,"style":"stylish","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"49": [{"id":"1a641449","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"35","right":0,"bottom":"55","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"62906c11","settings":{"_column_size":66,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"405549ac","settings":{"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"*Latest In* Tech","css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"pagination_type":"load-more","meta_author_img":"","container_width":"66","exclude_ids":[],"posts":1,"pagination_links":"","columns":"1","space_below":"none","excerpt_length":32,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","views"],"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1c896a64","settings":{"text":"Divider","color":"#E8E8E8","_padding":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"6c3d5c99","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_radius":8,"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"_margin":{"unit":"px","top":"6","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2d22aef7","settings":{"_column_size":33,"_inline_size":null,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native","margin_mobile":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"2c9f5812","settings":{"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"*Latest In* Tech","css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"pagination_type":"load-more","meta_cat_style":"plain","meta_author_img":"","container_width":33,"exclude_ids":[],"posts":1,"pagination_links":"","columns":"1","space_below":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"meta_items_default":"","meta_below":["date","views"],"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_tablet":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"703cbd2e","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"6e3e5c71","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","heading":"*Latest In* Tech","container_width":33,"cat_labels_pos":"top-right","media_pos":"right","exclude_ids":[],"meta_items_default":"","meta_above":["cat","views"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"posts":3,"title_lines":"2","excerpts":"","media_width":26,"media_ratio":"1-1","css_row_gap":{"unit":"px","size":26,"sizes":[]},"query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_content_margin":{"unit":"px","top":"0","right":"-7","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3facd5a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F2F3FD","padding":{"unit":"px","top":"25","right":"0","bottom":"30","left":"0","isLinked":false},"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"background_sd_background":"classic","background_sd_color":"#333333","query_type":"custom"},"elements":[{"id":"350db46a","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"39a1cb68","settings":{"posts":3,"columns":"3","space_below":"none","media_ratio":"1-1","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"h","heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"heading_align":"center","meta_items_default":"","meta_above":["views"],"meta_below":["date"],"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"48682aad","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"2e2a5473","settings":{"_column_size":66,"_inline_size":null,"space_between_widgets":0,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"58d55d54","settings":{"heading":"Sports","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"6887b98a","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"21335067","settings":{"_column_size":50,"_inline_size":66},"elements":[{"id":"68e0b240","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","meta_items_default":"","meta_below":["author","date","views"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Heading","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"030","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"74a1f74c","settings":{"_column_size":50,"_inline_size":33.999},"elements":[{"id":"1f5f9af7","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["views"],"meta_below":["author","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Heading","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"25fd533d","settings":{"text":"Divider","color":"#E8E8E8","_padding":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"46259687","settings":{"columns":"4","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["views"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"offset":2,"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"49d91b00","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading":"Don't Miss!","container_width":66,"cat_labels_pos":"top-right","exclude_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","read_time"],"excerpt_length":11,"content_vcenter":"1","media_ratio_custom":1.55,"grid_on_sm":"1","css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5674e265","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"782bdd31","settings":{"post_ids":[],"tax_ids":[],"heading":"Editor's Picks","pagination_type":"load-more","meta_cat_style":"plain","meta_author_img":"","container_width":33,"exclude_ids":[],"posts":3,"pagination_links":"","columns":"1","space_below":"none","media_ratio":"3-2","carousel":"1","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"heading_type":"g","carousel_autoplay":"1","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"62ef8366","settings":{"wp":{"title":"Social","style":"c-2","counters":"y","social":["facebook","twitter","pinterest","instagram","reddit","vimeo"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"76172a35","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"ae21454","settings":{"columns":"2","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"css_row_gap":{"unit":"px","size":25,"sizes":[]},"style":"sm","columns_mobile":"2","css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"33a7383e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#1C2233","background_color_stop":{"unit":"%","size":18,"sizes":[]},"background_color_b":"#F2F3FD","background_color_b_stop":{"unit":"%","size":18,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"55","left":"0","isLinked":false},"background_sd_background":"gradient","background_sd_color":"#FFFFFF14","background_sd_color_stop":{"unit":"%","size":18,"sizes":[]},"background_sd_color_b":"#0000000D","background_sd_color_b_stop":{"unit":"%","size":18,"sizes":[]},"query_type":"custom","offset":1},"elements":[{"id":"3c382c","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"text_align":"center"},"elements":[{"id":"7b930e53","settings":{"posts":1,"columns":"1","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Style & Fashion","heading_type":"b","css_content_margin":{"unit":"%","top":"0","right":"20","bottom":"5","left":"20","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"space_below":"none","media_ratio_custom":2.33,"media_ratio_custom_tablet":1.75,"media_ratio_custom_mobile":1,"_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"css_bhead_color":"#FFFFFF","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":1,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"3945bf4e","settings":{"posts":10,"columns":"5","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"carousel":"1","carousel_dots":"","_margin":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"_margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"heading_type":"none","carousel_autoplay":"1","css_title_color_sd":"#FFFFFF","css_title_hov_color_sd":"#EAEAEA","meta_items_default":"","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":1,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"28f80597","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"4324cffd","settings":{"_column_size":66,"_inline_size":null,"space_between_widgets":0,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"51f3e812","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"42cd55e0","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"74d3d60e","settings":{"heading":"Diet & Health","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"2b4291f6","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","container_width":"50","cat_labels_pos":"top-right","exclude_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","read_time"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"posts":1,"excerpt_length":18,"content_vcenter":"1","media_width":65.5,"media_ratio":"3-2","css_l_post_bg":"#252424","css_content_pad":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"scheme":"dark","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_color":"#E8E8E8","css_l_post_radius":8,"_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"heading_type":"none","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false},"css_excerpt_visible_tablet":"none","css_excerpt_visible_mobile":"block","css_excerpt_visible_tablet_extra":"none","css_media_max_width":{"unit":"%","size":65.5,"sizes":[]},"css_media_max_width_tablet_extra":{"unit":"%","size":"","sizes":[]},"css_media_max_width_tablet":{"unit":"%","size":"","sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":"","sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"2aa4c8c4","settings":{"columns":"4","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"offset":1,"css_title_typo_font_size_tablet":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"51990a3f","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","container_width":66,"cat_labels_pos":"top-right","exclude_ids":[],"meta_items_default":"","meta_below":["date"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"columns":"2","excerpt_length":11,"content_vcenter":"1","media_width":29,"posts":6,"excerpts":"","media_ratio":"4-3","css_row_gap":{"unit":"px","size":36,"sizes":[]},"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-5","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"52","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"26660746","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"6bd35d15","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"1f8fd8b3","settings":{"posts":2,"columns":"2","space_below":"none","excerpts":"","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Lifestyle","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"205a1829","settings":{"text":"Divider","color":"#E8E8E8","_padding":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"3e2f382e","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":2,"_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"29acb31e","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"4ba532fb","settings":{"columns":"1","excerpts":"","numbers":"b","container_width":"33","post_ids":[],"tax_ids":[],"heading":"Popular Posts","space_below":"none","exclude_ids":[],"posts":3,"heading_type":"g"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"f50da39","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_image":{"id":6973,"url":"https:\/\/smartmag.theme-sphere.com\/magazine-co\/wp-content\/uploads\/sites\/39\/2023\/06\/brian-mcgowan-0A450BR1JWk-unsplash.jpg","alt":"","source":"library","size":""},"background_position":"center center","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"cover","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"155049ea","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"465b0371","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"48d680","settings":{"_column_size":50,"_inline_size":71.808},"elements":[{"id":"34a8aa7","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","scheme":"dark","fields_style":"inline","align":"left","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":42,"sizes":[]},"css_heading_typo_font_weight":"500","container_width":50,"css_heading_typo_line_height":{"unit":"em","size":1.7,"sizes":[]},"css_heading_typo_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"446b4b3d","settings":{"_column_size":50,"_inline_size":28.192,"space_between_widgets":0},"elements":[{"id":"2b48aa2d","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/magazine-co\/wp-content\/uploads\/sites\/39\/2023\/06\/smartmag-sports.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":50,"_padding_mobile":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"78ad9f25","settings":{"title":"Advertisement","align":"center","title_color":"#DADADA","typography_typography":"custom","typography_font_size":{"unit":"px","size":12,"sizes":[]},"typography_font_weight":"400","typography_font_style":"italic","_margin":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"754fd016","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"25","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"25ed43ab","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"20a6333c","settings":{"columns":"4","excerpts":"","media_ratio":"3-2","space_below":"none","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading":"Celebs News","title_lines":"2","css_title_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"posts":8,"exclude_ids":[],"css_column_gap":{"unit":"px","size":1,"sizes":[]},"css_l_post_bg":"#F2F3FD","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"carousel":"1","css_l_post_radius":8,"css_l_post_bg_sd":"#252323","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_more_text":"View More","heading_more":"b","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/magazine-co\/category\/example-2\/celebs\/"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"78552cfd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"5dc66344","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4a53e0ce","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading":"Latest Posts","container_width":66,"cat_labels_pos":"top-right","exclude_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","read_time"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"excerpt_length":11,"content_vcenter":"1","media_ratio":"3-2","posts":5,"pagination":"1","pagination_type":"load-more","grid_on_sm":"1","css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2ffebc3a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"21759bad","settings":{"post_ids":[],"tax_ids":[],"heading":"Health","css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"pagination_type":"load-more","meta_cat_style":"plain","meta_author_img":"","container_width":33,"exclude_ids":[],"posts":1,"pagination_links":"","columns":"1","space_below":"none","heading_type":"g"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"71944bc8","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"60f15efa","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","heading":"*Latest In* Tech","container_width":33,"cat_labels_pos":"top-right","media_pos":"right","exclude_ids":[],"meta_items_default":"","meta_above":["cat"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"posts":3,"title_lines":"2","excerpts":"","media_width":26,"media_ratio":"1-1","css_row_gap":{"unit":"px","size":20,"sizes":[]},"offset":1,"css_title_typo_font_size_tablet":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"50": [{"id":"1473e857","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"4adae371","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"71b6e4c8","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","media_ratio_custom":2.35,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"98","left":"114","isLinked":false},"css_content_margin_tablet":{"unit":"px","top":"0","right":"38","bottom":"100","left":"38","isLinked":false},"css_content_margin_mobile":{"unit":"px","top":"0","right":"5","bottom":"45","left":"5","isLinked":false},"css_meta_below_margins":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_below_margins_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_below_margins_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":36,"sizes":[]},"css_media_radius":0,"heading_type":"none","css_media_height_tablet":{"unit":"px","size":500,"sizes":[]},"css_media_height_mobile":{"unit":"px","size":450,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_margin_mobile":{"unit":"%","top":"","right":0,"bottom":"","left":0,"isLinked":true},"css_title_margin":{"unit":"%","top":"","right":0,"bottom":"","left":0,"isLinked":true},"css_title_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_padding":{"unit":"%","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"css_title_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_title_padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"463fa788","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"-90","right":0,"bottom":"55","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-32","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"44d5ee0f","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.06)"},"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"border_color":"#DEDEDE","border_radius":{"unit":"px","top":"6","right":"6","bottom":"6","left":"6","isLinked":true},"background_sd_background":"classic","background_sd_color":"#111111","padding_tablet":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"border_sd_border":"solid","border_sd_color":"#363636"},"elements":[{"id":"cfe8a5b","settings":{"pagination_type":"load-more","cat_labels":"0","cat_labels_pos":"bot-left","excerpt_length":22,"content_vcenter":"1","grid_on_sm":"1","media_width":30,"media_ratio_custom":1.5,"meta_author_img":"1","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_row_gap":{"unit":"px","size":50,"sizes":[]},"space_below":"none","heading_type":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"posts":2,"columns":"2","excerpts":"","meta_items_default":"","meta_above":["cat"],"column_gap":"sm","css_content_margin":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","offset":1,"css_media_max_width_tablet":{"unit":"%","size":"","sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":"","sizes":[]},"media_ratio":"custom","media_ratio_custom_tablet":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"38c44d35","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"24133f65","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74487bef","settings":{"selected_icon":{"value":"fas fa-stream","library":"fa-solid"},"title_text":"Trending Posts","description_text":"","position":"left","primary_color":"#F80759","icon_size":{"unit":"px","size":18,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"title_typography_font_weight":"bold","title_typography_line_height":{"unit":"em","size":0.9,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"icon-box","elType":"widget"},{"id":"741033ca","settings":{"columns":"4","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"css_title_typo_typography":"custom","meta_items_default":"","space_below":"none","title_lines":"3","heading_type":"none","media_ratio_custom":1.45,"media_ratio_custom_mobile":1.5,"column_gap":"sm","css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","css_l_post_shadow_box_shadow_type":"yes","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"style":"sm","css_l_post_border_color_dark":"#151515"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6bbf8cac","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"1664f8fc","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"7f5d9920","settings":{"heading":"World News","container_width":66,"more_text":"View More","more":"b","more_link":"https:\/\/smartmag.theme-sphere.com\/everyday-news\/category\/example-2\/","css_view_more_pad":{"unit":"px","top":"8","right":"14","bottom":"8","left":"14","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"1c10d0ae","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"62cab56a","settings":{"_column_size":50,"_inline_size":61},"elements":[{"id":"4ea5ada9","settings":{"columns":"1","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"space_below":"none","heading_type":"none","posts":1,"excerpt_length":30,"media_ratio_custom":1.85,"meta_items_default":"","meta_below":["author","date"],"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_typo_text_transform":"none","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_cat_style":"labels","css_cat_labels_bg":"#FB3158","css_cat_labels_color":"#FFFFFF","style":"card","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.06)"},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":13,"sizes":[]},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"5f56ed70","settings":{"_column_size":50,"_inline_size":39},"elements":[{"id":"60f37db2","settings":{"columns":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"space_below":"none","heading_type":"none","posts":2,"excerpt_length":21,"media_ratio_custom":1.73,"meta_below":["author","date"],"css_bhead_typo_text_transform":"capitalize","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","css_row_gap":{"unit":"px","size":18,"sizes":[]},"style":"card","media_ratio":"custom","media_ratio_custom_mobile":1.5,"meta_items_default":"","column_gap":"sm","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"48b68e0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/everyday-news\/wp-content\/uploads\/sites\/44\/2023\/11\/newstime-mid-blue.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"container_width":66,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"16f2d88a","settings":{"posts":3,"style":"card","space_below":"none","excerpt_length":10,"media_width":40,"media_ratio_custom":1.55,"media_ratio_custom_mobile":1.5,"meta_items_default":"","meta_above":["cat"],"meta_below":["date","read_time","views"],"container_width":66,"offset":3,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":30,"sizes":[]},"separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_l_post_radius":6,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"311ed70d","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"672c749c","settings":{"posts":2,"columns":"1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"g","heading":"Featured Posts","css_cat_labels_bg":"#FB3158","carousel":"1","carousel_dots":"","carousel_autoplay":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"423b4410","settings":{"pagination_type":"load-more","cat_labels":"0","cat_labels_pos":"bot-left","excerpt_length":22,"grid_on_sm":"1","media_width":25,"media_ratio":"1-1","media_ratio_custom":1.65,"meta_author_img":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Don't Miss!","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_row_gap":{"unit":"px","size":29,"sizes":[]},"space_below":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"columns":"1","excerpts":"","meta_items_default":"","column_gap":"sm","css_content_margin":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"-13","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","content_vcenter":"1","heading_type":"g"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3d39a4ac","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#D5E6CE","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"65","left":"0","isLinked":false},"background_sd_background":"classic","background_sd_color":"#0E1B09"},"elements":[{"id":"7073dc71","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"6013c63b","settings":{"type":"b","heading":"Fashion Trends","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"4995449c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"613fc9c0","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"298dd3cd","settings":{"posts":1,"columns":"1","space_below":"none","title_style":"bg","media_ratio":"1-1","media_ratio_custom":1.95,"meta_items_default":"","meta_below":["author","date"],"meta_author_img":"1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"cat_labels":"0","css_content_pad":{"unit":"%","top":"0","right":"12","bottom":"8","left":"05","isLinked":false},"media_ratio_custom_mobile":1,"css_content_pad_mobile":{"unit":"px","top":"18","right":"18","bottom":"18","left":"18","isLinked":true},"css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"heading_type":"none","css_media_height_tablet":{"unit":"px","size":400,"sizes":[]},"css_title_typo_font_size_tablet":{"unit":"px","size":25,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"35510d16","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"aa12239","settings":{"columns":"2","container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","space_below":"none","title_lines":"3","heading_type":"none","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"76481285","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"5c39c2ba","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"7e6764d7","settings":{"heading":"World Politics","container_width":66,"more_text":"View More","more":"b","more_link":"https:\/\/smartmag.theme-sphere.com\/everyday-news\/category\/example-2\/","css_view_more_pad":{"unit":"px","top":"8","right":"14","bottom":"8","left":"14","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5e991681","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"6e83dc7b","settings":{"_column_size":50,"_inline_size":61},"elements":[{"id":"539cd904","settings":{"columns":"1","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"space_below":"none","heading_type":"none","posts":1,"excerpt_length":30,"media_ratio_custom":1.85,"meta_items_default":"","meta_below":["author","date"],"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_typo_text_transform":"none","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_cat_style":"labels","css_cat_labels_bg":"#FB3158","css_cat_labels_color":"#FFFFFF","style":"card","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.06)"},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":13,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6485776","settings":{"_column_size":50,"_inline_size":39},"elements":[{"id":"796b49fc","settings":{"columns":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"space_below":"none","heading_type":"none","posts":2,"excerpt_length":21,"media_ratio_custom":1.73,"meta_below":["author","date"],"css_bhead_typo_text_transform":"capitalize","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","css_row_gap":{"unit":"px","size":18,"sizes":[]},"style":"card","media_ratio":"custom","media_ratio_custom_mobile":1.5,"meta_items_default":"","column_gap":"sm","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6e41e997","settings":{"columns":"3","container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"meta_items_default":"","space_below":"none","title_lines":"3","media_ratio_custom":1.45,"media_ratio_custom_mobile":1.5,"column_gap":"sm","css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","posts":6,"css_l_post_shadow_box_shadow_type":"yes","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"offset":3,"heading_type":"none","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"style":"sm","css_l_post_border_color_dark":"#151515"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"35d0a546","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/everyday-news\/wp-content\/uploads\/sites\/44\/2023\/11\/newstime-mid-blue.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"container_width":66,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"6ecb234","settings":{"columns":"3","container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"The Lifestyle","meta_items_default":"","space_below":"none","title_lines":"3","media_ratio_custom":1.45,"media_ratio_custom_mobile":1.5,"column_gap":"sm","css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","posts":6,"css_l_post_shadow_box_shadow_type":"yes","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"style":"sm","css_l_post_border_color_dark":"#151515"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"348cd2f4","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"6786b7c9","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/everyday-news\/wp-content\/uploads\/sites\/44\/2023\/11\/Woman-Square.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"ab334b3","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Most Viewed","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_items_default":"","media_ratio":"3-2","space_below":"none","title_lines":"3","heading_type":"g","media_ratio_custom":1.45,"media_ratio_custom_mobile":1.5,"column_gap":"sm","css_row_gap":{"unit":"px","size":8,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","posts":5,"show_media":"","numbers":"a","meta_below":["date","read_time"],"css_l_post_shadow_box_shadow_type":"yes","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"35","isLinked":false},"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"15","isLinked":false},"css_l_post_border_color_dark":"#151515"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7c1612fb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#D4E7F5","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"65","left":"0","isLinked":false},"background_sd_background":"classic","background_sd_color":"#0E1F2C","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"388e6f6e","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"5e9ef3ee","settings":{"type":"b","heading":"Featured Videos","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7995622f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"7dcc9115","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"6701d123","settings":{"columns":"1","container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"space_below":"none","heading_type":"none","posts":1,"media_ratio":"16-9","excerpt_length":33,"media_ratio_custom":1.85,"meta_items_default":"","meta_below":["author","date"],"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_cat_style":"labels","css_cat_labels_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_content_margin":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"css_cat_labels_typo_typography":"custom","css_cat_labels_typo_font_weight":"500","css_cat_labels_bg":"#FB3158","css_cat_labels_color":"#FFFFFF","excerpts":"","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","post_formats_pos":"bot-left","css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"208d29c0","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"720c2892","settings":{"pagination_type":"load-more","cat_labels":"0","cat_labels_pos":"bot-left","excerpt_length":22,"grid_on_sm":"1","media_width":39,"media_ratio":"custom","media_ratio_custom":1.65,"meta_author_img":"1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Articles","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_row_gap":{"unit":"px","size":19,"sizes":[]},"space_below":"none","heading_type":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"posts":6,"columns":"1","title_lines":"3","excerpts":"","meta_items_default":"","column_gap":"sm","separators":"","css_content_margin":{"unit":"px","top":"-7","right":"-15","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","media_pos":"right","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_media_max_width_tablet":{"unit":"%","size":35,"sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":"","sizes":[]},"media_ratio_custom_tablet":1.9,"css_row_gap_mobile":{"unit":"px","size":35,"sizes":[]},"css_content_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_title_typo_font_size_tablet":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1e200dc8","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"e2ff4c","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"7988af83","settings":{"pagination_type":"load-more","cat_labels_pos":"bot-left","excerpt_length":10,"content_vcenter":"1","grid_on_sm":"1","media_width":40,"media_ratio":"3-2","media_ratio_custom":1.3,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Everyday News","separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_row_gap":{"unit":"px","size":30,"sizes":[]},"space_below":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"meta_items_default":"","meta_above":["cat"],"meta_below":["date","read_time","views"],"style":"card","heading_more_text":"View More","heading_more":"b","pagination":"1","css_l_post_radius":6,"heading_link":"https:\/\/smartmag.theme-sphere.com\/everyday-news\/category\/example-2\/","css_bhead_more_pad":{"unit":"px","top":"8","right":"14","bottom":"8","left":"14","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3453339","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"1da37bf8","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"g","heading":"Our Picks","css_cat_labels_bg":"#FB3158"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"67614eaf","settings":{"text":"Divider","color":"#E8E8E8","_margin_mobile":{"unit":"px","top":"10","right":"0","bottom":"10","left":"0","isLinked":false},"color_sd":"#151515"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5e5a682c","settings":{"pagination_type":"load-more","cat_labels":"0","cat_labels_pos":"bot-left","excerpt_length":22,"grid_on_sm":"1","media_width":25,"media_ratio":"1-1","media_ratio_custom":1.65,"meta_author_img":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_row_gap":{"unit":"px","size":29,"sizes":[]},"space_below":"none","heading_type":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"columns":"1","excerpts":"","meta_items_default":"","column_gap":"sm","css_content_margin":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"-13","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","posts":2,"content_vcenter":"1","offset":1,"css_row_gap_mobile":{"unit":"px","size":40,"sizes":[]},"css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"214379fd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[{"id":"596c5542","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#F4F4F4","border_radius":{"unit":"px","top":"6","right":"6","bottom":"6","left":"6","isLinked":true},"padding":{"unit":"px","top":"42","right":"0","bottom":"42","left":"0","isLinked":false},"background_sd_background":"classic","background_sd_color":"#3A3A3A"},"elements":[{"id":"327dccb7","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=https:\/\/smartmag.theme-sphere.com\/everyday-news\/wp-content\/uploads\/sites\/44\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"499a373","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"390b7d89","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5c13fdaf","settings":{"selected_icon":{"value":"fas fa-stream","library":"fa-solid"},"title_text":"Technology","description_text":"","position":"left","primary_color":"#F80759","icon_size":{"unit":"px","size":18,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"title_typography_font_weight":"bold","title_typography_line_height":{"unit":"em","size":0.9,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"icon-box","elType":"widget"},{"id":"19a3815e","settings":{"columns":"3","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"css_title_typo_typography":"custom","meta_items_default":"","media_ratio":"custom","space_below":"none","title_lines":"3","heading_type":"none","media_ratio_custom":1.69,"media_ratio_custom_mobile":1.5,"column_gap":"sm","css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","posts":3,"meta_below":["date","read_time"],"css_l_post_shadow_box_shadow_type":"yes","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_l_post_border_color_dark":"#151515"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"43028222","settings":{"columns":"4","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"meta_items_default":"","space_below":"none","title_lines":"3","heading_type":"none","media_ratio_custom":1.45,"media_ratio_custom_mobile":1.5,"column_gap":"sm","css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.06)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_border_weight":2,"css_bhead_border_color":"#000000","css_l_post_shadow_box_shadow_type":"yes","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#EFEFEF","css_l_post_radius":6,"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"style":"sm","css_l_post_border_color_dark":"#151515"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"51": [{"id":"132127b7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"30","right":0,"bottom":"30","left":0,"isLinked":true},"query_type":"custom","margin_mobile":{"unit":"px","top":"15","right":0,"bottom":"15","left":0,"isLinked":true}},"elements":[{"id":"15aacf4d","settings":{"_column_size":100,"_inline_size":null,"background_background":"gradient","background_color":"#EC5F45","background_color_b":"#141993","background_gradient_angle":{"unit":"deg","size":90,"sizes":[]},"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#111463","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false}},"elements":[{"id":"43817c63","settings":{"posts":8,"media_pos":"right","container_width":100,"post_ids":[],"tax_ids":[],"heading_type":"none","space_below":"none","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","columns":"4","title_lines":"3","media_width":30,"meta_items_default":"","reviews":"none","exclude_ids":[],"separators":"","css_media_radius":100,"css_content_margin":{"unit":"px","top":"3","right":"-10","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_font_weight":"600","carousel":"1","carousel_dots":"","carousel_autoplay":"1","carousel_play_speed":7000},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5254d09","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom","margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"5f61850d","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":60},"elements":[{"id":"4708c528","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":34,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":42,"sizes":[]},"heading_type":"none","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpt_length":36,"exclude_ids":[],"css_title_typo_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"8263348","settings":{"posts":3,"columns":"3","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"offset":4,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"space_below":"none","excerpts":"","content_center":"1","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"61a25e5b","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":40},"elements":[{"id":"865f0a0","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"offset":3,"exclude_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1a2928e6","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"container_width":33,"weight":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"71a29e63","settings":{"posts":5,"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","space_below":"none","query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"exclude_ids":[],"separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"33476cef","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[{"id":"46deac28","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6b339c75","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/discover\/wp-content\/uploads\/sites\/38\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"46184713","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false}},"elements":[{"id":"a015891","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"2132b9c2","settings":{"heading":"World News","container_width":66,"more_text":"View More","more":"b","css_view_more_typo_typography":"custom","css_view_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_view_more_typo_font_weight":"600","css_view_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"more_link":"https:\/\/smartmag.theme-sphere.com\/world-mag\/category\/example-3\/"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"25516e8c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7144154b","settings":{"_column_size":50,"_inline_size":65},"elements":[{"id":"1bfeb02e","settings":{"columns":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"custom","meta_items_default":"","offset":2,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"media_ratio_custom":1.54,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_l_post_radius":2,"css_content_pad":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"posts":1,"space_below":"none","excerpt_length":27,"media_location":"below","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_excerpt_margin":{"unit":"px","top":"-10","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3a0778f6","settings":{"_column_size":50,"_inline_size":35},"elements":[{"id":"2220309d","settings":{"columns":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"3-2","meta_items_default":"","offset":4,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"excerpts":"","media_ratio_custom":0.85,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_l_post_radius":2,"posts":2,"space_below":"none","css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"3e40c4a0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/world-mag\/wp-content\/uploads\/sites\/43\/2023\/11\/Bottom-mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":66,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"4d332c57","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_margin":{"unit":"%","top":"0","right":"15","bottom":"4","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"14","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":34,"sizes":[]},"media_ratio_custom":1.65,"meta_cat_style":"text","css_title_typo_font_weight":"bold","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"heading_type":"b","heading":"WMag *Mornings*","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_font_weight":"800","css_media_height_mobile":{"unit":"px","size":370,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"c12fe86","settings":{"posts":3,"columns":"3","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"offset":1,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"space_below":"none","excerpts":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7e4347d1","settings":{"posts":3,"space_below":"none","content_vcenter":"1","media_width":32,"media_ratio":"4-3","media_ratio_custom":0.85,"meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_media_max_width":{"unit":"px","size":228,"sizes":[]},"heading":"The Lifestyle","heading_more_text":"View More","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"heading_more_link":"https:\/\/smartmag.theme-sphere.com\/world-mag\/category\/example-2\/","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"272ff011","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"7b40c9c","settings":{"media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Don't Miss!","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"meta_items_default":"","meta_below":["views"],"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"7c367d18","settings":{"columns":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"16-9","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","media_ratio_custom":0.85,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"posts":3,"space_below":"none","css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"numbers":"c","heading":"Top Stories","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"f0c489","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/world-mag\/wp-content\/uploads\/sites\/43\/2023\/11\/CityToday-Side.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3b4908e2","settings":{"gutter":"default","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","background_background":"gradient","background_color":"#5F1D13","background_color_b":"#090620","background_color_b_stop":{"unit":"%","size":50,"sizes":[]},"background_gradient_angle":{"unit":"deg","size":330,"sizes":[]},"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"60","right":"0","bottom":"45","left":"0","isLinked":false},"gap":"no","background_overlay_image":{"url":"","id":"","size":"","alt":"","source":"library"},"background_overlay_position":"center right","background_overlay_repeat":"no-repeat","background_overlay_size":"cover"},"elements":[{"id":"684531a0","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"1c479033","settings":{"title":"Our Newsletter","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":42,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_weight":"bold","typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"6831ca9b","settings":{"text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":26,"sizes":[]},"typography_font_weight":"bold","editor":"<p>Get the latest hand selected news from FooBar about art, design, politics and business.<\/p>","typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"text-editor","elType":"widget"},{"id":"2ba31bd8","settings":{"width":{"unit":"%","size":10,"sizes":[]},"text":"Divider","weight":{"unit":"px","size":2,"sizes":[]},"gap":{"unit":"px","size":18,"sizes":[]},"color":"#FFFFFF","_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"31ba0ef3","settings":{"editor":"<p>We do not spam and\/or send unsolicited emails.\u00a0<\/p>","text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":17,"sizes":[]},"typography_font_weight":"400"},"elements":[],"isInner":false,"widgetType":"text-editor","elType":"widget"},{"id":"6906e354","settings":{"headline":"","message":"","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","scheme":"dark","fields_style":"inline","container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"76837484","settings":{"_column_size":50,"_inline_size":null,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"15","isLinked":false},"space_between_widgets":0},"elements":[{"id":"701b8b0b","settings":{"image":{"id":7093,"url":"https:\/\/smartmag.theme-sphere.com\/world-mag\/wp-content\/uploads\/sites\/43\/2023\/11\/team.png","alt":"","source":"library","size":""},"image_size":"full"},"elements":[],"isInner":false,"widgetType":"image","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"75aff3c8","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false}},"elements":[{"id":"3ba1eb61","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7e2f192f","settings":{"posts":5,"columns":"5","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"scheme":"dark","space_below":"none","excerpts":"","media_ratio_custom":1.15,"css_column_gap":{"unit":"px","size":0,"sizes":[]},"css_l_post_bg":"#090F1A","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"30","left":"15","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_weight":"600","heading_type":"none","css_row_gap_mobile":{"unit":"px","size":0,"sizes":[]},"css_row_gap_tablet":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2848fe44","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"1d5eb78a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"6e5ccbfc","settings":{"columns":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"16-9","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"media_ratio_custom":1.54,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_l_post_radius":2,"posts":1,"space_below":"none","excerpt_length":26,"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_excerpt_margin":{"unit":"px","top":"10","right":"25","bottom":"0","left":"0","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"heading":"Travel & Tourism","css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"54630279","settings":{"posts":3,"columns":"3","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"offset":1,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"space_below":"none","excerpts":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"424f6dfd","settings":{"posts":6,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Science & Tech","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"64c860c6","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/world-mag\/wp-content\/uploads\/sites\/43\/2023\/11\/Bottom-Left.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":66,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"1ea8e08c","settings":{"heading":"Sports","container_width":66,"more_text":"View More","more":"b","css_view_more_typo_typography":"custom","css_view_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_view_more_typo_font_weight":"600","css_view_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"more_link":"https:\/\/smartmag.theme-sphere.com\/world-mag\/category\/example-4\/"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"f0fbb4b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"3a6d3b20","settings":{"_column_size":50,"_inline_size":65},"elements":[{"id":"732649d2","settings":{"columns":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"custom","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"media_ratio_custom":1.54,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_content_pad":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"posts":1,"space_below":"none","excerpt_length":27,"media_location":"below","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_excerpt_margin":{"unit":"px","top":"-10","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2efccc0c","settings":{"_column_size":50,"_inline_size":35},"elements":[{"id":"74c71c74","settings":{"columns":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"3-2","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"excerpts":"","media_ratio_custom":0.85,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_l_post_radius":2,"posts":2,"space_below":"none","css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"10fcc333","settings":{"posts":2,"columns":"2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"space_below":"none","excerpts":"","heading":"Startup Life","heading_more_text":"View more","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"600","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"heading_more_link":"https:\/\/smartmag.theme-sphere.com\/world-mag\/category\/example-1\/"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3125295","settings":{"posts":3,"columns":"3","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"offset":2,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"space_below":"none","excerpts":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1bb248a8","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"161a07d","settings":{"columns":"2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"media_ratio":"3-2","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"excerpts":"","media_ratio_custom":0.85,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_l_post_radius":2,"space_below":"none","css_content_margin":{"unit":"px","top":"-5","right":"8","bottom":"0","left":"0","isLinked":false},"title_lines":"3","heading":"Fitness","css_column_gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"bb05f6e","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/world-mag\/wp-content\/uploads\/sites\/43\/2023\/11\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"69171d84","settings":{"heading":"We Are Social","container_width":33,"more":"b","css_view_more_typo_typography":"custom","css_view_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_view_more_typo_font_weight":"600","css_view_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"fab5d17","settings":{"wp":{"title":"","style":"b-2-split","counters":"","social":["facebook","twitter","instagram","youtube","tiktok","whatsapp"]}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"52": [{"id":"fa51e28","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"35","right":0,"bottom":"50","left":0,"isLinked":false},"structure":"20","query_type":"custom","margin_mobile":{"unit":"px","top":"20","right":0,"bottom":"50","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[{"id":"6712f49c","settings":{"_column_size":50,"_inline_size":69.194,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"738e6b20","settings":{"css_media_ratio":1,"meta_below":["date"],"post_ids":[],"tax_ids":[],"container_width":50,"space_below":"none","cat_labels_pos":"top-left","posts":1,"css_title_typo_lg_typography":"custom","show_post_formats":"","css_title_typo_sm_font_size":{"unit":"px","size":1,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.45,"sizes":[]},"exclude_ids":[],"grid_type":"grid-eq1","css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_lg_font_size":{"unit":"px","size":29,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"34","left":"0","isLinked":false},"title_style":"bg","meta_author_img":"1","css_title_typo_lg_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"has_ratio":"","css_media_height_eq":{"unit":"px","size":480,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":350,"sizes":[]},"heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"5aac9e42","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":3,"title_lines":"3","meta_above":["cat"],"heading_align":"center","content_center":"1","heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"375bf389","settings":{"_column_size":50,"_inline_size":30.806452,"space_between_widgets":0,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"42","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"10","bottom":"0","left":"10","isLinked":false}},"elements":[{"id":"63831d2b","settings":{"title_lines":"3","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":30,"css_media_max_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","read_time"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":38,"sizes":[]},"css_media_radius":999,"css_media_margin":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_cat_labels_typo_typography":"custom","show_post_formats":"","css_content_margin":{"unit":"px","top":"-6","right":"-5","bottom":"-3","left":"0","isLinked":false},"css_title_margin":{"unit":"px","top":"12","right":0,"bottom":"12","left":0,"isLinked":true},"media_vpos":"center","space_below":"none","cat_labels":"0","heading_type":"h","heading":"People's Favorite","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":25,"sizes":[]},"heading_colors":"none","css_bhead_border_weight":2},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"d0f94ba","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile","margin_mobile":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"4c2ba71","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"477d86e4","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/city-today\/wp-content\/uploads\/sites\/41\/2023\/11\/CityToday-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"25e41f8b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"273721c3","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"51ae5106","settings":{"heading":"World News","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"3c06178b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"6edaca36","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"48d1786a","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending Now","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"media_ratio":"3-2","heading_type":"none","content_center":"1","meta_above":["cat"],"css_content_pad":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"heading_align":"center","posts":1,"css_excerpt_margin":{"unit":"px","top":"15","right":"15","bottom":"0","left":"15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"44829d2c","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"3b7e078e","settings":{"space_below":"none","content_vcenter":"1","media_width":33,"media_ratio":"1-1","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Block *Heading*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"excerpt_length":14,"pagination_type":"load-more","meta_below":["author"],"meta_cat_style":"labels","heading_type":"none","heading_colors":"none","excerpts":"","separators":"","posts":3,"css_row_gap":{"unit":"px","size":24,"sizes":[]},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"73325375","settings":{"columns":"2","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Technology","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","content_center":"1","meta_above":["cat"],"css_l_post_bg":"#F4F7FF","css_content_pad":{"unit":"px","top":"3","right":"30","bottom":"30","left":"30","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"posts":2,"_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"37d5ef4","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":3,"title_lines":"2","meta_above":["cat"],"heading_align":"center","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"content_center":"1","heading_type":"none","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5ee9464b","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"","checkbox":"","style":"c","scheme":"dark","fields_style":"inline","_margin":{"unit":"px","top":"0","right":"0","bottom":"060","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#D9E1C8","container_width":66,"css_padding":{"unit":"px","top":"26","right":"60","bottom":"62","left":"60","isLinked":false},"css_bg_image":{"id":8400,"url":"https:\/\/smartmag.theme-sphere.com\/city-today\/wp-content\/uploads\/sites\/41\/2023\/11\/newsletter-bg.jpg","alt":"","source":"library","size":""},"hide_mobile":"hidden-mobile","css_message_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"535cdd3c","settings":{"columns":"2","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Popular Posts","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"media_ratio":"16-9","content_center":"1","meta_above":["cat"],"css_l_post_bg":"#F4F7FF","css_content_pad":{"unit":"px","top":"3","right":"30","bottom":"30","left":"30","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"posts":6},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"60a16561","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"5d28ec63","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"posts":3,"pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Most Read","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_items_default":"","media_ratio":"16-9","numbers":"c","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","title_lines":"2","css_bhead_border_weight":1,"css_bhead_border_color":"#383838"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3db75149","settings":{"wp":{"title":"We Are Social!","style":"b-2","counters":"","social":["facebook","twitter","instagram","youtube","tiktok","whatsapp"]}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7ed9dfb6","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_image":{"id":8401,"url":"https:\/\/smartmag.theme-sphere.com\/city-today\/wp-content\/uploads\/sites\/41\/2023\/11\/bg-006-scaled.jpg","alt":"","source":"library","size":""},"background_position":"center right","background_size":"cover","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"55","right":"0","bottom":"50","left":"0","isLinked":false},"background_overlay_image":{"url":"","id":"","size":"","alt":"","source":"library"},"background_overlay_position":"center right","background_overlay_size":"cover"},"elements":[{"id":"2746bc11","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"292b593e","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Editor's Picks","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","heading_type":"b","content_center":"1","meta_above":["cat"],"css_l_post_bg":"#FFFFFF","css_content_pad":{"unit":"px","top":"3","right":"30","bottom":"30","left":"30","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"heading_align":"center","posts":3,"css_bhead_color":"#FFFFFF","css_bhead_space_below":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"37153219","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"404c579a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"35c6753a","settings":{"css_media_ratio":1,"meta_below":["date"],"post_ids":[],"tax_ids":[],"css_grid_gap":{"unit":"px","size":2,"sizes":[]},"container_width":66,"space_below":"none","cat_labels_pos":"top-left","posts":1,"css_title_typo_lg_typography":"custom","show_post_formats":"","css_title_typo_sm_font_size":{"unit":"px","size":1,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.45,"sizes":[]},"exclude_ids":[],"grid_type":"grid-eq1","css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_lg_font_size":{"unit":"px","size":29,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"title_style":"bg","meta_author_img":"1","css_title_typo_lg_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"has_ratio":"","css_media_height_eq":{"unit":"px","size":480,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":350,"sizes":[]},"heading":"Just In"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"3f39a738","settings":{"space_below":"none","content_vcenter":"1","media_width":45,"meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Block *Heading*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"excerpt_length":16,"pagination_type":"load-more","meta_below":["author","date"],"heading_colors":"none","media_ratio_custom":1.65,"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"posts":5,"css_media_max_width":{"unit":"px","size":355,"sizes":[]},"heading_type":"none","separators":"","offset":1,"css_row_gap":{"unit":"px","size":35,"sizes":[]},"css_l_post_bg":"#F4F7FF","css_content_pad":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"5","right":"20","bottom":"20","left":"20","isLinked":false},"media_ratio":"custom","css_l_post_pad_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"css_l_post_pad_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"1f1e0c69","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/city-today\/wp-content\/uploads\/sites\/41\/2023\/11\/CityToday-Bottom.png\" width=\"745\" height=\"209\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"4e7d0529","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Don't Miss!","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":6,"title_lines":"3","meta_above":["cat"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2cdce2a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"61a2c6c5","settings":{"space_below":"none","cat_labels":"0","title_lines":"3","excerpts":"","reviews":"none","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Health","css_row_gap":{"unit":"px","size":26,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"media_ratio":"3-2","column_gap":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5eee9f5d","settings":{"title_lines":"3","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":30,"css_media_max_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","read_time"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":38,"sizes":[]},"css_media_radius":999,"css_media_margin":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_cat_labels_typo_typography":"custom","show_post_formats":"","css_content_margin":{"unit":"px","top":"-6","right":"0","bottom":"-3","left":"0","isLinked":false},"css_title_margin":{"unit":"px","top":"12","right":0,"bottom":"12","left":0,"isLinked":true},"media_vpos":"center","space_below":"none","cat_labels":"0","heading":"Trending","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":25,"sizes":[]},"heading_colors":"none","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"889cab0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/city-today\/wp-content\/uploads\/sites\/41\/2023\/11\/CityToday-Side.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1b01cea7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"4431f8b0","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"37a84354","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Lifestyle ","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","media_ratio":"16-9","content_center":"1","meta_above":["cat"],"css_l_post_bg":"#F4F7FF","css_content_pad":{"unit":"px","top":"3","right":"30","bottom":"30","left":"30","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"heading_align":"center","posts":3,"_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4d7ab333","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","heading_type":"none","title_lines":"3","content_center":"1","heading_align":"center","media_ratio":"16-9","meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"53": [{"id":"2e28a7c2","settings":{"gutter":"xlg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"45","right":0,"bottom":"70","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"77dbb0f0","settings":{"_column_size":66,"_inline_size":60,"_inline_size_tablet":100},"elements":[{"id":"405ef56f","settings":{"posts":1,"columns":"1","cat_labels":"0","cat_labels_pos":"bot-left","meta_items_default":"","meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":50,"sizes":[]},"heading_type":"none","excerpts":"","media_ratio":"4-3","css_content_pad":{"unit":"%","top":"0","right":"7","bottom":"0","left":"0","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_border_box_border_type":"yes","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"3","isLinked":false},"css_title_typo_font_family":"Anton","css_title_typo_font_weight":"500","css_title_typo_line_height":{"unit":"em","size":1.25,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":1,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":43,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"403f059a","settings":{"_column_size":33,"_inline_size":40,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"eee5d2d","settings":{"pagination_type":"load-more","excerpt_length":24,"media_width":26,"container_width":33,"post_ids":[],"tax_ids":[],"heading":"*News* Just In","meta_items_default":"","meta_below":["date","views"],"space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":40,"sizes":[]},"content_vcenter":"1","meta_above":["cat"],"css_title_typo_typography":"custom","media_pos":"right","media_ratio":"1-1","css_media_radius":100,"title_lines":"2","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_size_tablet":{"unit":"px","size":21,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"389c7aae","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"4807c953","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7ee7c280","settings":{"columns":"3","title_lines":"2","excerpt_length":13,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Mobile Phones","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","posts":3,"pagination_type":"load-more","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","css_l_post_shadow_box_shadow":{"horizontal":10,"vertical":10,"blur":0,"spread":-4,"color":"#FF9090"},"css_l_post_shadow_box_shadow_position":"inset","css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"20","left":"0","isLinked":false},"css_content_shadow_box_shadow_type":"yes","css_content_shadow_box_shadow":{"horizontal":9,"vertical":9,"blur":0,"spread":-5,"color":"#00E29E"},"heading_more_text":"More from Mobiles","heading_more":"b","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/digital-hub\/category\/example-3\/","css_bhead_more_typo_typography":"custom","css_bhead_more_pad":{"unit":"px","top":"9","right":"15","bottom":"9","left":"15","isLinked":false},"css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2d4ab08e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[{"id":"7471a3dd","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6b78839e","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/digital-hub\/wp-content\/uploads\/sites\/42\/2023\/11\/DigitalHub-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"52f23e71","settings":{"gutter":"xlg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"30","right":0,"bottom":"70","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"50","right":0,"bottom":"20","left":0,"isLinked":false}},"elements":[{"id":"29860839","settings":{"_column_size":66,"_inline_size":60,"_inline_size_tablet":100,"padding":{"unit":"px","top":"25","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4c9e8d66","settings":{"pagination_type":"load-more","excerpt_length":24,"media_width":20,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Science & Innovation","meta_items_default":"","meta_below":["date","views"],"space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":45,"sizes":[]},"content_vcenter":"1","meta_above":["cat"],"css_title_typo_typography":"custom","media_pos":"right","media_ratio":"1-1","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_font_weight":"bold","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":21,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"15708225","settings":{"_column_size":33,"_inline_size":40,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"6e873dd4","settings":{"columns":"1","title_lines":"3","excerpt_length":13,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Most Read* Posts","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","posts":5,"pagination_type":"load-more","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","show_media":"","numbers":"b","css_meta_typography_typography":"custom","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_background_color":"#3EFFC5","_background_color_b":"#00E29E","_background_gradient_angle":{"unit":"deg","size":90,"sizes":[]},"_border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"meta_items_default":"","css_row_gap":{"unit":"px","size":20,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"20","left":"39","isLinked":false},"css_content_border_box_border_type":"yes","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E8E8E8","css_bhead_border_weight":2,"_border_border":"solid","_border_width":{"unit":"px","top":"2","right":"2","bottom":"2","left":"2","isLinked":true},"_border_color":"#00E29E","css_content_border_color_dark":"#3A3A3A"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"67a2abb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"query_type":"custom","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"1c4e1ce0","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5f8a056b","settings":{"scheme":"dark","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"4-3","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Trending Now","column_gap":"lg","css_title_typo_typography":"custom","css_title_typo_font_family":"Anton","css_title_typo_font_size":{"unit":"px","size":44,"sizes":[]},"css_title_typo_font_weight":"500","css_title_typo_sm_typography":"custom","css_title_typo_sm_font_family":"DM Sans","css_title_typo_sm_font_size":{"unit":"px","size":19,"sizes":[]},"css_title_typo_sm_font_weight":"600","heading_align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_family":"Anton","css_bhead_typo_font_size":{"unit":"px","size":40,"sizes":[]},"css_bhead_typo_font_weight":"500","css_bhead_typo_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"-50","bottom":"0","left":"-50","isLinked":false},"_padding":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_background_background":"gradient","_background_color":"#71B280","_background_color_b":"#134E5E","_border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_title_typo_letter_spacing":{"unit":"px","size":0.6,"sizes":[]},"css_title_typo_sm_letter_spacing":{"unit":"px","size":-0.5,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_tablet":{"unit":"px","size":32,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_sm_font_size_tablet":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4e5fae1f","settings":{"gutter":"xlg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"30","right":0,"bottom":"70","left":0,"isLinked":false},"query_type":"custom","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"669203d9","settings":{"_column_size":66,"_inline_size":60,"_inline_size_tablet":100,"padding":{"unit":"px","top":"25","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f11778b","settings":{"posts":1,"columns":"1","cat_labels":"0","cat_labels_pos":"bot-left","meta_items_default":"","meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":44,"sizes":[]},"excerpts":"","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_family":"Anton","offset":6,"heading":"Technology News","css_title_typo_font_weight":"500","css_title_typo_line_height":{"unit":"em","size":1.25,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":1,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_tablet":{"unit":"px","size":34,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":28,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"55e18fda","settings":{"align":"center","text":"Divider","color":"#00E29E","gap":{"unit":"px","size":4,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5f76a200","settings":{"pagination_type":"load-more","excerpt_length":24,"media_width":38,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"From *Block*","meta_items_default":"","meta_below":["date","views"],"space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":45,"sizes":[]},"content_vcenter":"1","meta_above":["cat"],"posts":6,"pagination":"1","css_title_typo_typography":"custom","media_pos":"right","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_font_weight":"bold","heading_type":"none","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":21,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"32df16d7","settings":{"_column_size":33,"_inline_size":40,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"4c423134","settings":{"columns":"2","title_lines":"3","excerpt_length":13,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Gaming News","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","pagination_type":"load-more","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","css_meta_typography_typography":"custom","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding":{"unit":"px","top":"25","right":"25","bottom":"20","left":"25","isLinked":false},"_background_color":"#3EFFC5","_background_color_b":"#00E29E","_background_gradient_angle":{"unit":"deg","size":90,"sizes":[]},"_border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"meta_items_default":"","css_row_gap":{"unit":"px","size":20,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#363636","css_bhead_border_weight":2,"_border_border":"solid","_border_width":{"unit":"px","top":"2","right":"2","bottom":"2","left":"2","isLinked":true},"_border_color":"#00E29E","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3d62593e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"query_type":"custom","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"6b3d64e0","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"227b3d9c","settings":{"columns":"3","title_lines":"2","excerpt_length":13,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","posts":3,"pagination_type":"load-more","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","css_l_post_shadow_box_shadow":{"horizontal":10,"vertical":10,"blur":0,"spread":-4,"color":"#FF9090"},"css_l_post_shadow_box_shadow_position":"inset","css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"20","left":"0","isLinked":false},"css_content_shadow_box_shadow_type":"yes","css_content_shadow_box_shadow":{"horizontal":9,"vertical":9,"blur":0,"spread":-5,"color":"#00E29E"},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5d64c9d1","settings":{"columns":"4","title_lines":"3","excerpt_length":13,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"New Workouts","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","pagination_type":"load-more","cat_labels_pos":"bot-left","space_below":"none","excerpts":"","css_l_post_shadow_box_shadow":{"horizontal":10,"vertical":10,"blur":0,"spread":-4,"color":"#FF9090"},"css_l_post_shadow_box_shadow_position":"inset","css_content_shadow_box_shadow":{"horizontal":9,"vertical":9,"blur":0,"spread":-5,"color":"#00E29E"},"meta_items_default":"","meta_below":["date"],"heading_type":"none","query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"54": [{"id":"2cc735e2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_image":{"id":8651,"url":"https:\/\/smartmag.theme-sphere.com\/news-mag\/wp-content\/uploads\/sites\/45\/2024\/03\/bg-light-line-04-2.png","alt":"","source":"library","size":""},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_tablet":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1cae1b51","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7541a10a","settings":{"space_below":"none","content_vcenter":"1","media_width":56,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Block Heading","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":47,"sizes":[]},"posts":1,"media_pos":"right","css_media_max_width":{"unit":"px","size":800,"sizes":[]},"media_ratio_custom":1.35,"css_title_typo_letter_spacing":{"unit":"px","size":-1,"sizes":[]},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":16,"sizes":[]},"grid_on_sm":"1","css_content_pad_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":35,"sizes":[]},"css_title_typo_letter_spacing_tablet":{"unit":"px","size":-1,"sizes":[]},"css_title_typo_letter_spacing_mobile":{"unit":"px","size":-1,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"15","right":"25","bottom":"0","left":"0","isLinked":false},"css_title_typo_line_height":{"unit":"em","size":1.2,"sizes":[]},"css_title_typo_font_size_tablet_extra":{"unit":"px","size":38,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5683dcd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"a703dbf","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6661ae85","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Featured *Now*","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"media_ratio":"1-1","style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"285798a5","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"a62def5","settings":{"_column_size":66,"_inline_size":null,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"221c2801","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"none","css_media_ratio":1.65,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":30,"sizes":[]},"container_width":66,"heading":"Latest Articles","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"css_title_typo_lg_font_size_mobile":{"unit":"px","size":24,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"7ba0b0eb","settings":{"posts":3,"space_below":"none","content_vcenter":"1","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Block *Heading*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"excerpt_length":18,"pagination_type":"load-more","heading_type":"none","heading_colors":"none","css_media_max_width":{"unit":"px","size":300,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3c008b78","settings":{"_column_size":33,"_inline_size":null,"is_sidebar":"main-sidebar","_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"739ee3b4","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"posts":3,"pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Top Posts","meta_items_default":"","numbers":"c","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","title_lines":"2","css_bhead_border_weight":1,"css_bhead_border_color":"#383838","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"31fa133a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"4bbfa22c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2a619fa8","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true}},"elements":[{"id":"297698e5","settings":{"_column_size":50,"_inline_size":37.545,"background_background":"classic","background_image":{"id":7987,"url":"https:\/\/smartmag.theme-sphere.com\/news-mag\/wp-content\/uploads\/sites\/45\/2023\/11\/magicpattern-KfFmwa7m5VQ-unsplash-1-e1709320520838.jpg","alt":"","source":"library","size":""},"background_position":"top center","background_repeat":"no-repeat","background_size":"cover","content_position":"space-around"},"elements":[{"id":"4dee8d2e","settings":{"selected_icon":{"value":"far fa-envelope","library":"fa-regular"},"view":"framed","shape":"square","primary_color":"#e3ccbb"},"elements":[],"isInner":false,"widgetType":"icon","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3ffdaaf5","settings":{"_column_size":50,"_inline_size":62.455,"background_background":"classic","background_color":"#F6EDE8"},"elements":[{"id":"5ce1263e","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"","checkbox":"","style":"a","fields_style":"inline","container":"lg","align":"left","css_padding":{"unit":"px","top":"45","right":"50","bottom":"62","left":"50","isLinked":false},"css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":32,"sizes":[]},"css_heading_typo_font_weight":"700","container_width":50,"css_message_typo_typography":"custom","css_message_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_heading_color":"#DE5C16","css_padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1eaa674d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"21be547e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4973a02b","settings":{"type":"e2","heading":"WORLD NEWS","align":"center","css_bhead_typo_font_family":"Poppins","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"20ec143b","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"12bf9739","settings":{"_column_size":50,"_inline_size":40,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"20853812","settings":{"space_below":"none","content_vcenter":"1","media_width":33,"media_ratio":"3-2","meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Block *Heading*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"excerpt_length":14,"pagination_type":"load-more","meta_below":["author"],"meta_cat_style":"labels","heading_type":"none","heading_colors":"none","excerpts":"","separators":"","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-5","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"48663da0","settings":{"_column_size":50,"_inline_size":60,"column_order":1},"elements":[{"id":"4d0e1c7f","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","meta_below":["author","date"],"skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"media_ratio":"3-2","posts":1,"meta_above":["cat"],"heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"674d3a8c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_image":{"id":7994,"url":"https:\/\/smartmag.theme-sphere.com\/news-mag\/wp-content\/uploads\/sites\/45\/2023\/11\/bg-005-scaled.jpg","alt":"","source":"library","size":""},"background_position":"center right","background_size":"cover","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"55","right":"0","bottom":"85","left":"0","isLinked":false},"background_repeat":"no-repeat"},"elements":[{"id":"42116b2f","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"10f965b","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":40,"css_media_max_width":{"unit":"px","size":390,"sizes":[]},"meta_items_default":"","meta_above":["cat"],"meta_below":["author","updated"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_below_margins":{"unit":"px","top":"2","right":"0","bottom":"2","left":"0","isLinked":false},"css_meta_typography_typography":"custom","css_meta_typography_font_size":{"unit":"px","size":11,"sizes":[]},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":34,"sizes":[]},"excerpt_length":28,"media_ratio":"1-1","css_media_radius":500,"css_l_post_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_l_post_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_l_post_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true},"css_content_margin":{"unit":"px","top":"121","right":"210","bottom":"0","left":"-67","isLinked":false},"css_content_margin_tablet":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_content_bg":"#FFFFFF","grid_on_sm":"1","css_content_pad_tablet":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_content_pad_mobile":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"34ad7368","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"6cc671b6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"510528fd","settings":{"heading":"Health & Fitness","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"34cd8ff","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"77347f5b","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"22355137","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"19b49a1c","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"35a5bbec","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","column_gap":"lg","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"media_ratio":"3-2","posts":1,"heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6f498c07","settings":{"posts":3,"space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3d807c24","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"226e2033","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","meta_below":["author","date"],"skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","column_gap":"lg","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"media_ratio":"3-2","posts":1,"heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"26dc5f49","settings":{"posts":3,"space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"5f740c5c","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"5b674227","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-mag\/wp-content\/uploads\/sites\/45\/2023\/11\/Woman-Square-1.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_border_border":"none","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"43ad5762","settings":{"wp":{"title":"We Are Social!","style":"c-2-split","counters":"","social":["facebook","twitter","instagram","youtube","tiktok","whatsapp"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"e77158b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[{"id":"69611a91","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"55","bottom":"0","left":"55","isLinked":false}},"elements":[{"id":"1a08b3a3","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/news-mag\/wp-content\/uploads\/sites\/45\/2023\/11\/Bottom-End.jpg\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#000000","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2222e1df","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7b4c9547","settings":{"_column_size":50,"_inline_size":60},"elements":[{"id":"336ad7d7","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Sports Roundup","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"media_ratio":"3-2","posts":1,"meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5c5b73d6","settings":{"_column_size":50,"_inline_size":40,"padding":{"unit":"px","top":"36","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"66c5713a","settings":{"space_below":"none","content_vcenter":"1","media_width":33,"media_ratio":"3-2","meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Block *Heading*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"excerpt_length":14,"pagination_type":"load-more","meta_below":["author"],"meta_cat_style":"labels","heading_type":"none","heading_colors":"none","excerpts":"","separators":"","media_pos":"right","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"c830b53","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"1878c534","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4a4d5aaa","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"media_ratio":"1-1","posts":8,"style":"sm","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"55": [{"id":"c758288","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"layout":"full_width"},"elements":[{"id":"4f5e4847","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1e39ca26","settings":{"posts":5,"grid_type":"grid-c","space_below":"none","post_ids":[],"exclude_ids":[],"tax_ids":[],"container_width":100,"css_media_ratio":1.65,"grid_width":"viewport","css_overlay_pad_lg":{"unit":"px","top":"24","right":"24","bottom":"24","left":"24","isLinked":true},"css_overlay_pad_lg_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_overlay_pad_md":{"unit":"px","top":"24","right":"24","bottom":"24","left":"24","isLinked":true},"css_overlay_pad_md_mobile":{"unit":"px","top":"14","right":"14","bottom":"14","left":"14","isLinked":true},"css_title_typo_md_typography":"custom","css_title_typo_md_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_md_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":25,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1c3ea9db","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":false}},"elements":[{"id":"1c452aba","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5126c2ea","settings":{"columns":"5","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Featured *Now*","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"posts":5,"style":"sm","title_lines":"3","meta_above":["cat"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"57ed3650","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/be-the-change\/wp-content\/uploads\/sites\/46\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1f3a051d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"3209d8f3","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"2e16368b","settings":{"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","title_lines":"3","excerpt_length":19,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"heading":"The *World*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"},{"id":"6bab2229","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Editor's *Picks*","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":8,"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E8E8E8","style":"sm","title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7960527e","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"775113a1","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"posts":3,"pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending Now","meta_items_default":"","media_ratio":"16-9","numbers":"c","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","title_lines":"3","css_bhead_border_weight":1,"css_bhead_border_color":"#383838","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"12518491","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"background_background":"classic","background_color":"#270101","padding":{"unit":"px","top":"60","right":"0","bottom":"55","left":"0","isLinked":false},"query_type":"custom"},"elements":[{"id":"1d1f039","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"118c49c3","settings":{"type":"b","heading":"Travel & Tourism","container_width":100,"css_bhead_color":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"dc0e1e6","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":67,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.85,"meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]},"media_ratio_custom_mobile":1.5,"excerpt_length":22,"heading_type":"none","heading":"Trending ","offset":6,"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"title_lines":"4","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"326f2afb","settings":{"columns":"5","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":5,"heading_type":"none","scheme":"dark","offset":9,"style":"sm","query_type":"section","title_lines":"3","meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"62fa0811","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"621d0450","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"673a6dd2","settings":{"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","title_lines":"3","excerpt_length":19,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"heading":"Culture","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"},{"id":"5c74de6","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/be-the-change\/wp-content\/uploads\/sites\/46\/2023\/11\/newstime-mid-blue.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"2ddb77cb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"3266cbde","settings":{"_column_size":50,"_inline_size":74.999},"elements":[{"id":"3c2428fb","settings":{"space_below":"none","content_vcenter":"1","media_width":38,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Don't Miss","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpt_length":14,"pagination":"1","pagination_type":"load-more","meta_below":["author","date"],"meta_cat_style":"labels","heading_colors":"none","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"43aa142d","settings":{"_column_size":50,"_inline_size":25,"margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"3ef4ec5c","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":25,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Top Rated","meta_items_default":"","meta_below":["date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"media_ratio":"4-3","title_lines":"3","excerpts":"","heading_type":"b","css_row_gap":{"unit":"px","size":19,"sizes":[]},"css_bhead_color":"#000000","_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_background_color":"#F0F0F0","_border_border":"solid","_padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"2f9e9a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"13551bb3","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/be-the-change\/wp-content\/uploads\/sites\/46\/2023\/11\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"166d2959","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Celebrities","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","title_lines":"2","carousel":"1","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"content_center":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"71fa804e","settings":{"container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"title_lines":"3","space_below":"md","css_row_gap":{"unit":"px","size":36,"sizes":[]},"show_post_formats":"1","css_media_width":{"unit":"px","size":112,"sizes":[]},"css_meta_below_margins":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"media_width":32,"media_pos":"right","heading":"Most Viewed","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"596d2488","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"is_full_xs":"is-full-xs","margin_tablet":{"unit":"px","top":"50","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"464099be","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#000000"},"elements":[{"id":"67fa110b","settings":{"type":"b","heading":"Featured Videos","css_bhead_space_below":{"unit":"px","size":0,"sizes":[]},"css_bhead_color":"#FFFFFF","css_bhead_pad":{"unit":"px","top":"15","right":"0","bottom":"0","left":"15","isLinked":false},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"3b98088b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"45b3a53d","settings":{"_column_size":50,"_inline_size":67,"_inline_size_tablet":100},"elements":[{"id":"6f480a5c","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"none","css_media_ratio":1.7,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_lg_font_weight":"500","container_width":50,"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3414342f","settings":{"_column_size":50,"_inline_size":33,"_inline_size_tablet":100},"elements":[{"id":"624d0262","settings":{"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"exclude_ids":[],"title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":14,"sizes":[]},"separators":"","posts":5,"scheme":"dark","_padding":{"unit":"px","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"show_post_formats":"1","css_media_width":{"unit":"px","size":112,"sizes":[]},"media_ratio":"3-2","css_meta_below_margins":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"media_width":33,"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4410296d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"5b2fd5fb","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"5b564a31","settings":{"posts":8,"space_below":"none","content_vcenter":"1","media_width":40,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Technology","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"excerpt_length":14,"excerpts":"","meta_below":["date"],"heading_colors":"none","columns":"2","css_row_gap":{"unit":"px","size":36,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"1b838efb","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Top Authors Posts","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":3,"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E8E8E8","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"title_lines":"3","meta_below":["author"],"meta_author_img":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"2889e549","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","meta_items_default":"","meta_below":["author"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"heading_type":"none","style":"sm","offset":3,"title_lines":"3","meta_author_img":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"36e274dd","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"7f9f9e8","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"posts":3,"pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending Trends","meta_items_default":"","media_ratio":"16-9","numbers":"c","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","title_lines":"3","css_bhead_border_weight":1,"css_bhead_border_color":"#383838","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"72ca960a","settings":{"wp":{"title":"","style":"b-2","counters":"","social":["facebook","twitter","instagram","youtube","tiktok","whatsapp"]}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"56": [{"id":"4b92d82e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"20","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"44e0b47f","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100,"is_main":"main-content"},"elements":[{"id":"d0158db","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":30,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","posts":1,"heading_type":"none","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"media_ratio":"16-9","cat_labels":"0","meta_above":["cat"],"css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"25","left":"25","isLinked":false},"meta_cat_style":"labels","css_l_post_bg":"#FFFFFF","css_cat_labels_typo_font_size":{"unit":"px","size":50,"sizes":[]},"css_meta_above_margins":{"unit":"px","top":"5","right":"0","bottom":"10","left":"0","isLinked":false},"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4876f6b","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3739e90","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":18,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","posts":1,"heading_type":"none","meta_items_default":"","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"cat_labels":"0","meta_above":["cat"],"css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"20","left":"25","isLinked":false},"meta_cat_style":"labels","css_l_post_bg":"#FFFFFF","css_cat_labels_typo_font_size":{"unit":"px","size":50,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"excerpts":"","css_meta_above_margins":{"unit":"px","top":"5","right":"0","bottom":"10","left":"0","isLinked":false},"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4f0fdd86","settings":{"posts":2,"excerpts":"","content_vcenter":"1","media_width":32,"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":21,"sizes":[]},"separators":"","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","css_content_margin":{"unit":"px","top":"0","right":"10","bottom":"0","left":"-10","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6f191dd","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"703d102c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"40d23147","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","heading_type":"h","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","column_gap":"sm","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_content_pad":{"unit":"px","top":"5","right":"20","bottom":"15","left":"20","isLinked":false},"css_title_color_sd":"#C9C9C9","style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"735edeed","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"10e25d0","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ee79bdf","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/lazy-busy\/wp-content\/uploads\/sites\/47\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"344e5883","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"1199d4d8","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5f458074","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":30,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Health & Fitness","posts":1,"heading_type":"h","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"media_ratio":"16-9","offset":7,"cat_labels":"0","meta_above":["cat"],"css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"25","left":"25","isLinked":false},"meta_cat_style":"labels","css_l_post_bg":"#FFFFFF","css_cat_labels_typo_font_size":{"unit":"px","size":50,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"5","right":"0","bottom":"10","left":"0","isLinked":false},"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","query_type":"section","css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3c3e2d13","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","heading_type":"none","meta_items_default":"","meta_below":["author","date"],"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","column_gap":"sm","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","css_content_pad":{"unit":"px","top":"0","right":"20","bottom":"15","left":"20","isLinked":false},"css_bhead_border_weight":1,"css_bhead_border_color":"#282828","posts":6,"css_row_gap":{"unit":"px","size":26,"sizes":[]},"style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7db97079","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"529b0c75","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":18,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Our Picks","posts":1,"heading_type":"h","meta_items_default":"","skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"media_ratio":"16-9","cat_labels":"0","meta_above":["cat"],"css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"20","left":"25","isLinked":false},"meta_cat_style":"labels","css_l_post_bg":"#FFFFFF","css_cat_labels_typo_font_size":{"unit":"px","size":50,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"excerpts":"","css_meta_above_margins":{"unit":"px","top":"5","right":"0","bottom":"10","left":"0","isLinked":false},"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7a1b7b06","settings":{"posts":5,"title_lines":"2","media_pos":"right","meta_items_default":"","meta_above":["cat"],"container_width":33,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":15,"sizes":[]},"separators":""},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"361eb81e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"a7ce3cd","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"8422121","settings":{"type":"b","heading":"TV & Drama","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"2baef533","settings":{"posts":1,"pagination_type":"load-more","scheme":"dark","space_below":"none","excerpt_length":33,"content_vcenter":"1","media_pos":"right","media_width":50,"css_media_max_width":{"unit":"px","size":624,"sizes":[]},"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","read_time"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Trending Now","separators":"","css_l_post_bg":"#252525","css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"3","right":"0","bottom":"5","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"grid_on_sm":"1","css_content_pad_tablet":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"4bddef6f","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","heading_type":"none","meta_items_default":"","meta_below":["author","date"],"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpts":"","column_gap":"sm","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_content_pad":{"unit":"px","top":"5","right":"20","bottom":"15","left":"20","isLinked":false},"css_bhead_border_weight":1,"css_bhead_border_color":"#282828","css_title_color_sd":"#C9C9C9","css_bhead_color_sd":"#000000","style":"sm","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"228a9394","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"50e38157","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3ec4750b","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":30,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Latest Articles","posts":1,"heading_type":"h","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"media_ratio":"16-9","cat_labels":"0","meta_above":["cat"],"css_content_pad":{"unit":"px","top":"0","right":"25","bottom":"25","left":"25","isLinked":false},"meta_cat_style":"labels","css_l_post_bg":"#FFFFFF","css_cat_labels_typo_font_size":{"unit":"px","size":50,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"5","right":"0","bottom":"10","left":"0","isLinked":false},"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"629c14fa","settings":{"posts":5,"pagination":"1","pagination_type":"load-more","content_vcenter":"1","meta_items_default":"","meta_above":["cat","read_time"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","space_below":"none","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6fab2a9c","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"41f4e08c","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"posts":3,"pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Most Viewed","meta_items_default":"","media_ratio":"16-9","numbers":"c","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","title_lines":"2","heading_type":"h"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"46fba53b","settings":{"headline":"Subscribe to Updates","message":"","submit_text":"Subscribe","disclaimer":"I agree to the terms & <a href=\"#\">Privacy Policy<\/a> agreement.","image":{"url":"","id":"","size":"","alt":"","source":"library"},"icon":"mail-top","container_width":33,"css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_heading_typo_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"57": [{"id":"dc8b25c","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"background_background":"classic","background_color":"#F0F0F0"},"elements":[{"id":"68b93ee9","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5a3333c0","settings":{"posts":5,"grid_type":"grid-c","space_below":"none","css_media_ratio":1.65,"post_ids":[],"exclude_ids":[],"tax_ids":[],"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"container_width":100,"grid_width":"viewport","css_overlay_pad_lg":{"unit":"px","top":"24","right":"24","bottom":"24","left":"24","isLinked":true},"css_overlay_pad_lg_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_overlay_pad_md":{"unit":"px","top":"24","right":"24","bottom":"24","left":"24","isLinked":true},"css_overlay_pad_md_mobile":{"unit":"px","top":"18","right":"18","bottom":"18","left":"18","isLinked":true},"css_title_typo_sm_typography":"custom","css_title_typo_md_typography":"custom","css_title_typo_md_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_md_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":25,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"635d29b7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"background_background":"classic","background_color":"#F0F0F0"},"elements":[{"id":"496243f7","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3e9cbf","settings":{"columns":"4","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending Now","_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"40106aa8","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/insights-only\/wp-content\/uploads\/sites\/48\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5f44416b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","padding":{"unit":"px","top":"30","right":"0","bottom":"50","left":"0","isLinked":false},"background_background":"classic","background_color":"#F0F0F0"},"elements":[{"id":"71305dee","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"15fee37c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"background_background":"classic","background_color":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true}},"elements":[{"id":"6a64be74","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"297fea68","settings":{"space_below":"none","media_ratio":"3-2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"The World","css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"214b19d9","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","excerpt_length":33,"media_ratio":"16-9","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","css_l_post_bg":"#FFFFFF","css_content_pad":{"unit":"px","top":"10","right":"20","bottom":"20","left":"20","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"10d6a1d","settings":{"media_width":37,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Latest News","pagination_type":"load-more","excerpt_length":19,"content_vcenter":"1","separators":"","cat_labels":"0","meta_items_default":"","meta_above":["cat","date"],"css_row_gap":{"unit":"px","size":20,"sizes":[]},"title_lines":"0","css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"space_below":"none","offset":1,"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"20e92361","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"22","right":"0","bottom":"0","left":"0","isLinked":false},"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"26e75cf0","settings":{"posts":6,"space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Most Viewed","separators":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"7113d00a","settings":{"wp":{"title":"","style":"b-2","counters":"y","social":["facebook","instagram","youtube","tiktok","whatsapp","twitter"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"2e2f6f4c","settings":{"columns":"2","space_below":"none","title_lines":"3","excerpts":"","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"From Tech","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"17e86ac4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F0F0F0","query_type":"custom"},"elements":[{"id":"5a4ef4ae","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"778473bc","settings":{"posts":1,"space_below":"none","excerpts":"","content_vcenter":"1","media_width":70,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":2.05,"meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"media_ratio_custom_mobile":1.5,"css_l_post_bg":"#FFFFFF","css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"25","isLinked":false},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"heading":"The Lifestyle","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"534a89c7","settings":{"columns":"4","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Block One","css_l_post_bg":"#FFFFFF","css_content_pad":{"unit":"px","top":"0","right":"20","bottom":"20","left":"20","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"style":"sm","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"be85e86","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","padding":{"unit":"px","top":"30","right":"0","bottom":"40","left":"0","isLinked":false},"background_background":"classic","background_color":"#F0F0F0"},"elements":[{"id":"4843c78f","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"23f52714","settings":{"media_width":37,"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Posts Just In","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"posts":6,"pagination_type":"load-more","excerpt_length":19,"content_vcenter":"1","separators":"","pagination":"1","cat_labels":"0","meta_items_default":"","meta_above":["cat","date"],"css_row_gap":{"unit":"px","size":20,"sizes":[]},"title_lines":"0","css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"space_below":"none","css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"50b1a35a","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"71fe81ca","settings":{"posts":8,"space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Featured Posts","separators":"","css_l_post_bg":"#FFFFFF","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"624e16df","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"51c065b7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"background_background":"classic","background_color":"#F0F0F0","query_type":"custom"},"elements":[{"id":"65c05be2","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"3d5b1e9c","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Don't Miss","css_l_post_bg":"#FFFFFF","css_content_pad":{"unit":"px","top":"0","right":"20","bottom":"20","left":"20","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"393a675f","settings":{"columns":"4","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Block One","css_l_post_bg":"#FFFFFF","css_content_pad":{"unit":"px","top":"0","right":"20","bottom":"20","left":"20","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"css_l_post_shadow_box_shadow_type":"yes","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":1,"blur":1,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"style":"sm","query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"58": [{"id":"5ce015bc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"35","right":0,"bottom":"0","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"4cccf50b","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"306443b3","settings":{"posts":1,"style":"stylish","columns":"1","space_below":"none","cat_labels":"0","content_center":"1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_above_margins":{"unit":"px","top":"-30","right":"0","bottom":"8","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"excerpt_lines":"3","css_excerpt_lines_mobile":2,"css_title_typo_font_size_mobile":{"unit":"px","size":27,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"b1d7036","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"235c632d","settings":{"excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":35,"sizes":[]},"space_below":"none","title_lines":"2","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_cat_style":"labels","css_title_typo_typography":"custom","cat_labels_pos":"bot-center","content_center":"1","exclude_ids":[],"posts":2,"columns":"1","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2a928bc2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"737b3c25","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"background_background":"classic","background_image":{"id":7939,"url":"https:\/\/smartmag.theme-sphere.com\/cup-of-coffee\/wp-content\/uploads\/sites\/49\/2023\/12\/bg-101.png","alt":"","source":"library","size":""},"background_position":"top left","background_repeat":"no-repeat"},"elements":[{"id":"c2ff470","settings":{"type":"b","heading":"Don't Miss","css_bhead_space_below":{"unit":"px","size":13,"sizes":[]},"css_bhead_color":"#FFFFFF","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"30","isLinked":false},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5352c359","settings":{"title_lines":"3","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Sidebar","separators":"","columns":"3","space_below":"none","media_width":32,"css_media_width":{"unit":"px","size":95,"sizes":[]},"meta_items_default":"","heading_type":"none","reviews":"none","show_post_formats":"1","meta_above":["cat"],"posts":5,"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":19,"sizes":[]},"css_bhead_typo_font_weight":"600","css_bhead_space_below":{"unit":"px","size":15,"sizes":[]},"css_bhead_accent":"#FFFFFF","css_bhead_color":"#FFFFFF","carousel":"1","carousel_dots":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"15","isLinked":false},"_background_background":"classic","_background_color":"#ECECEC","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1d50fe74","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"5a8612f6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4dc40843","settings":{"columns":"4","title_lines":"3","excerpts":"","meta_items_default":"","meta_below":["author","date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Top Posts","space_below":"none","numbers":"c","style":"sm","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4300eca7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"228a8a0f","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5332540","settings":{"excerpts":"","media_ratio":"16-9","container_width":66,"post_ids":[],"tax_ids":[],"space_below":"none","title_lines":"2","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_cat_style":"labels","css_title_typo_typography":"custom","cat_labels_pos":"bot-center","content_center":"1","exclude_ids":[],"posts":1,"columns":"1","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"heading":"Health & Lifestyle","css_meta_above_margins":{"unit":"px","top":"-30","right":"0","bottom":"8","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"css_excerpt_lines_mobile":2,"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"section","css_content_pad":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"251df486","settings":{"columns":"4","title_lines":"3","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Heading","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"space_below":"none","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"40ebf1b6","settings":{"pagination_type":"load-more","media_width":28,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Featured Articles","cat_labels":"0","meta_items_default":"","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":26,"sizes":[]},"content_vcenter":"1","media_ratio":"4-3","show_post_formats":"","space_below":"none","meta_above":["cat","date"],"media_pos":"right","css_meta_typography_typography":"custom","css_cat_labels_bg":"#000000","css_cat_labels_border_radius":3,"excerpt_length":22,"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5057bd0a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"6ec3fee0","settings":{"posts":3,"columns":"1","space_below":"none","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Pets Care","carousel":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"350b2016","settings":{"wp":{"title":"We Are Social!","style":"b-2","counters":"","social":["facebook","youtube","tiktok","whatsapp","twitter","instagram"]}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4cf5c796","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom","background_background":"classic","background_color":"#F8F3F4","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"padding":{"unit":"px","top":"45","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"38664296","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"11f64bee","settings":{"css_media_ratio":1.35,"meta_below":["date"],"post_ids":[],"tax_ids":[],"css_grid_gap":{"unit":"px","size":2,"sizes":[]},"container_width":100,"space_below":"none","css_overlay_pad_lg":{"unit":"px","top":"22","right":"22","bottom":"22","left":"22","isLinked":true},"css_overlay_pad_md":{"unit":"px","top":"15","right":"15","bottom":"20","left":"15","isLinked":false},"css_overlay_pad_sm":{"unit":"px","top":"15","right":"15","bottom":"20","left":"15","isLinked":false},"css_title_size_sm":16,"cat_labels_pos":"top-left","posts":2,"css_title_typo_lg_typography":"custom","show_post_formats":"","css_title_size_lg":28,"css_title_typo_sm_font_size":{"unit":"px","size":1,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.55,"sizes":[]},"exclude_ids":[],"grid_type":"grid-eq2","heading_type":"b","heading":"Featured Tech","css_title_typo_lg_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_overlay_pad_lg_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"css_title_typo_lg_font_size_mobile":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"635d272f","settings":{"columns":"4","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Gamers Den","css_column_gap":{"unit":"px","size":25,"sizes":[]},"heading_type":"none","space_below":"none","style":"sm","query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"23648933","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"75ceb596","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1dcb47bc","settings":{"pagination_type":"load-more","excerpt_length":20,"media_width":37,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"News Just in","cat_labels":"0","meta_items_default":"","meta_below":["author","date","comments"],"exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":20,"sizes":[]},"content_vcenter":"1","media_ratio":"4-3","show_post_formats":"","space_below":"none","meta_above":["cat"],"separators":"","posts":5,"pagination":"1","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"724cc84a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"1176759","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"excerpts":"","heading":"Intl. Politics","title_lines":"3","css_title_typo_sm_letter_spacing":{"unit":"px","size":-0.3,"sizes":[]},"space_below":"none","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"separators":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"1570fe7e","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","icon":"mail-top","container_width":33,"submit_text":"Subscribe","message":""},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6836242e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"10e025fd","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74f995e6","settings":{"columns":"3","title_lines":"2","excerpts":"","meta_items_default":"","meta_below":["author","date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","space_below":"none","posts":3,"_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4297afc2","settings":{"columns":"4","title_lines":"3","excerpts":"","meta_items_default":"","meta_below":["author","date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Heading","space_below":"none","style":"sm","query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"59": [{"id":"65305adc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"30","right":0,"bottom":"30","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"307a7a42","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"c00274a","settings":{"columns":"1","meta_below":["author","date"],"container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_color":"#DD1515","posts":1,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","style":"stylish","content_center":"1","media_ratio":"4-3","meta_above":["cat"],"css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_content_border_box_border_type":"yes","css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7c59bba3","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"5f249350","settings":{"columns":"2","container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","meta_items_default":"","space_below":"none","title_lines":"3","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E2E2E2","posts":2,"filters":"","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","media_ratio":"1-1","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_bhead_color":"#FFFFFF","_margin":{"unit":"px","top":"45","right":"0","bottom":"45","left":"0","isLinked":false},"meta_above":["cat"],"meta_below":["author","date"],"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4254b9c0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[{"id":"7050185c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"545b7089","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/family-mag\/wp-content\/uploads\/sites\/50\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6cf2353a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"64e1377c","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"223fed3a","settings":{"heading":"Technology","container_width":66,"accent_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"72026af7","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"10","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"6e4a7b8d","settings":{"_column_size":50,"_inline_size":66.249},"elements":[{"id":"7e03da00","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_color":"#DD1515","posts":1,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","style":"stylish","content_center":"1","media_ratio":"3-2","meta_above":["cat"],"css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_content_border_box_border_type":"yes","css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"5837cd9c","settings":{"_column_size":50,"_inline_size":33.75},"elements":[{"id":"55ff743a","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":22,"exclude_ids":[],"heading":"Trending","meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E2E2E2","posts":1,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"meta_above":["cat"],"media_ratio":"4-3","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"17d10c87","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"fe63b14","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","media_ratio":"4-3","_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"meta_items_default":"","meta_below":["date"],"offset":2,"style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6d26a409","settings":{"fields_style":"inline","icon":"mail-bg","headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","_margin":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"container_width":66,"style":"a","css_padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#F8E8E4","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""},"scheme":"dark","css_bg_color_sd":"#212020","hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"5f12ee0f","settings":{"columns":"2","meta_below":["author","date"],"container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"TV & Drama","meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_color":"#DD1515","posts":2,"filters":"","column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","style":"stylish","content_center":"1","media_ratio":"3-2","meta_above":["cat"],"css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_content_border_box_border_type":"yes","css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"0","left":"0","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"heading_more_text":"View More >","heading_more":"a","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"35df0e00","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","meta_items_default":"","meta_below":["date"],"offset":2,"media_ratio":"4-3","style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2328a687","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"77946cc4","settings":{"pagination_type":"load-more","media_width":36,"container_width":33,"post_ids":[],"tax_ids":[],"heading":"Trending Now","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"meta_items_default":"","space_below":"sm","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":35,"sizes":[]},"content_vcenter":"1","title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"excerpt_length":22,"posts":7,"excerpts":"","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-8","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"-6","left":"0","isLinked":false},"_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#EAEAEA7D","_border_radius":{"unit":"px","top":"6","right":"6","bottom":"6","left":"6","isLinked":false},"_margin":{"unit":"px","top":"-10","right":"0","bottom":"0","left":"0","isLinked":false},"media_ratio":"4-3","heading_type":"i","css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_meta_above_margins_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6522491c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","background_background":"gradient","background_color":"#090F14","background_color_stop":{"unit":"%","size":50,"sizes":[]},"background_color_b":"#FFFFFF","background_color_b_stop":{"unit":"%","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"6","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"custom"},"elements":[{"id":"6c1b3d46","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"4e35b77","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"text","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_font_weight":"600","show_post_formats":"","post_formats_pos":"top-left","media_ratio_custom":1.95,"title_style":"bg","heading":"Sports Roundup","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"heading_type":"b","css_bhead_color":"#FFFFFF","query_type":"section","heading_more_text":"More from Sports","heading_more":"a","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_media_height_mobile":{"unit":"px","size":300,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1f7587f7","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3256aa70","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_color":"#DD1515","posts":2,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","style":"stylish","content_center":"1","media_ratio":"16-9","css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_content_border_box_border_type":"yes","css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_size_tablet":{"unit":"px","size":14,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"603ee53","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"6e67227","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"75b83f0a","settings":{"title":"Don't Miss","title_color":"#DD1515","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"20c3ef00","settings":{"style":"curved","text":"Divider","gap":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"aae81ad","settings":{"columns":"4","space_below":"none","title_lines":"3","media_width":40,"css_media_width":{"unit":"px","size":97.22,"sizes":[]},"media_ratio":"1-1","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_media_radius":100,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E2E2E2","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4220d85f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"74d64178","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72a8aa59","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/family-mag\/wp-content\/uploads\/sites\/50\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"d1a06b0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"5934038d","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"5270e30b","settings":{"heading":"Celebrities","container_width":66,"accent_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"30f8b4ea","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"10","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"1d0ae8bb","settings":{"_column_size":50,"_inline_size":66.249},"elements":[{"id":"2dbfb602","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_color":"#DD1515","posts":1,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","style":"stylish","content_center":"1","media_ratio":"3-2","meta_above":["cat"],"css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_content_border_box_border_type":"yes","css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6786d643","settings":{"_column_size":50,"_inline_size":33.75},"elements":[{"id":"25a3c310","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":22,"exclude_ids":[],"heading":"Trending","meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E2E2E2","posts":1,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"meta_above":["cat"],"media_ratio":"4-3","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"ef77614","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4b6a5481","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"style":"sm","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"39585929","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-col"},"elements":[{"id":"5dad165","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/family-mag\/wp-content\/uploads\/sites\/50\/2023\/11\/Woman-Square.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"39a29ec7","settings":{"wp":{"title":"We Are Social","style":"b-2","counters":"n","social":["facebook","twitter","pinterest","instagram","reddit","vimeo"]},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6b8f3bba","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_color":"#090F14","background_color_stop":{"unit":"custom","size":"220px","sizes":[]},"background_color_b":"#FFFFFF","background_color_b_stop":{"unit":"%","size":0,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"background_background":"gradient","is_dark_section":"s-dark"},"elements":[{"id":"67e57ea6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5c567b91","settings":{"columns":"5","container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Lifestyle","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_items_default":"","space_below":"none","title_lines":"3","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E2E2E2","posts":5,"filters":"category","filters_terms":["3","10","703"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"b","media_ratio":"1-1","css_bhead_color":"#FFFFFF","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_color":"#4E4E4E"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"48d2e18f","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/family-mag\/wp-content\/uploads\/sites\/50\/2023\/03\/Discover-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"8285aca","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7e882c61","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"106aca32","settings":{"accent_colors":"none","heading":"Posts Just In","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"27ced2ec","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"362bcb02","settings":{"_column_size":50,"_inline_size":66.249},"elements":[{"id":"2667ecc9","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_border_color":"#DD1515","posts":1,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","style":"stylish","content_center":"1","media_ratio":"3-2","meta_above":["cat"],"css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_content_border_box_border_type":"yes","css_meta_above_margins":{"unit":"px","top":"-8","right":"0","bottom":"0","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3ecf62e","settings":{"_column_size":50,"_inline_size":33.75},"elements":[{"id":"522c44b2","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":22,"exclude_ids":[],"heading":"Trending","meta_items_default":"","space_below":"none","title_lines":"2","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E2E2E2","posts":1,"filters":"category","filters_terms":["7","9","10"],"column_gap":"sm","media_ratio_custom":1.65,"media_ratio_custom_mobile":1.5,"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_text_transform":"capitalize","css_bhead_border_weight":2,"css_bhead_border_color":"#000000","heading_type":"none","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"meta_above":["cat"],"media_ratio":"4-3","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7e4989a0","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":9,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"758ca9c0","settings":{"pagination_type":"load-more","media_width":35,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"From *Block*","meta_items_default":"","space_below":"none","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":46,"sizes":[]},"content_vcenter":"1","media_ratio":"3-2","title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"excerpt_length":23,"meta_above":["cat"],"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"filters":"category","heading_more_text":"View More","heading_more":"b","heading_colors":"force","columns":"1","pagination":"1","grid_on_sm":"1","meta_below":["author","date"],"heading_type":"none","query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"409d0ef1","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"6d758982","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-top","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":22,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33,"css_bradius":6},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"7113e830","settings":{"posts":3,"columns":"1","space_below":"none","excerpt_length":40,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat","date","author"],"excerpts":"","content_center":"1","heading":"Featured Now","carousel":"1","heading_colors":"none","carousel_autoplay":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"60": [{"id":"42979f59","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"35","right":0,"bottom":"60","left":0,"isLinked":false},"background_color_stop":{"unit":"%","size":40,"sizes":[]},"background_color_b":"","background_gradient_angle":{"unit":"deg","size":160,"sizes":[]},"query_type":"custom"},"elements":[{"id":"305fafe4","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"18cf42e","settings":{"columns":"1","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"show_post_formats":"","space_below":"none","posts":1,"excerpt_length":36,"content_center":"1","css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":16,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"45c65cab","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5a13b3b2","settings":{"columns":"3","excerpts":"","media_ratio_custom":1.65,"meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":35,"sizes":[]},"show_post_formats":"","posts":3,"space_below":"none","meta_below":["date"],"style":"sm","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"28e17ed0","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"a29c12e","settings":{"columns":"1","excerpts":"","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"show_post_formats":"","space_below":"none","posts":3,"pagination_type":"load-more","heading_type":"i","heading":"Trending Now","css_row_gap":{"unit":"px","size":23,"sizes":[]},"css_l_post_border_box_border_type":"yes","css_bhead_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#D8D8D8","numbers":"b","meta_below":["date"],"css_content_margin":{"unit":"px","top":"0","right":"-8","bottom":"0","left":"0","isLinked":false},"css_bhead_typo_typography":"custom","css_bhead_typo_font_family":"Outfit","css_bhead_space_below":{"unit":"px","size":15,"sizes":[]},"css_bhead_color":"#CF2E2E","_background_background":"gradient","_background_color":"#FFFFFF","_background_color_b":"#FBFBFB","_background_gradient_angle":{"unit":"deg","size":140,"sizes":[]},"_box_shadow_box_shadow":{"horizontal":4,"vertical":4,"blur":5,"spread":-3,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6bc71087","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"528780df","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"46a22c38","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/spotlight\/wp-content\/uploads\/sites\/51\/2024\/01\/spotlight-top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"44f3e114","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"50bf29c6","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"14bbfcb0","settings":{"heading":"Life & Style","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"6b51949f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7da615ad","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"1a650d1","settings":{"columns":"1","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"show_post_formats":"","space_below":"none","posts":1,"excerpt_length":20,"content_center":"1","css_content_pad":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":false},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":16,"sizes":[]},"media_ratio":"1-1","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"12","right":"12","bottom":"12","left":"12","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"45fedcc2","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2a2725f5","settings":{"pagination_type":"load-more","cat_labels_pos":"bot-left","excerpt_length":22,"content_vcenter":"1","grid_on_sm":"1","media_width":45,"media_ratio_custom":0.83,"meta_author_img":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Articles","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_row_gap":{"unit":"px","size":28,"sizes":[]},"space_below":"none","heading_type":"none","meta_items_default":"","meta_above":["cat"],"columns":"1","excerpts":"","css_media_max_width":{"unit":"px","size":140,"sizes":[]},"media_ratio":"4-3","query_type":"section","separators":"","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"css_title_typo_font_family":"Playfair Display","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"title_lines":"3","css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"3abc4ebc","settings":{"columns":"3","excerpts":"","media_ratio_custom":1.65,"meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":35,"sizes":[]},"show_post_formats":"","posts":6,"space_below":"none","meta_below":["date"],"heading":"Our Picks","style":"sm","title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7e419fbe","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"border_color":"#E9E9E9","ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"4fdf301d","settings":{"columns":"1","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"show_post_formats":"","space_below":"none","posts":1,"excerpt_length":32,"content_center":"1","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"excerpts":"","media_ratio":"3-2","heading":"Must Read","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"278f1793","settings":{"posts":3,"space_below":"none","title_lines":"3","media_width":27,"media_pos":"right","container_width":33,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":24,"sizes":[]},"separators":"","css_l_post_border_box_border_type":"yes","css_content_margin":{"unit":"px","top":"0","right":"-8","bottom":"0","left":"0","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_background_color":"#FFFFFF","_background_color_b":"#FBFBFB","_background_gradient_angle":{"unit":"deg","size":140,"sizes":[]},"_border_border":"solid","_box_shadow_box_shadow":{"horizontal":4,"vertical":4,"blur":5,"spread":-3,"color":"rgba(0, 0, 0, 0.1)"},"css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"_margin_tablet":{"unit":"px","top":"45","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"15","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"2750ab87","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/spotlight\/wp-content\/uploads\/sites\/51\/2023\/11\/Woman-Square.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"34c80a11","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"28f20e7e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1d09dfea","settings":{"columns":"2","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"show_post_formats":"","space_below":"none","posts":2,"excerpt_length":32,"content_center":"1","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"scheme":"dark","style":"card","excerpts":"","media_ratio":"16-9","meta_below":["author"],"_margin":{"unit":"px","top":"0","right":"-110","bottom":"0","left":"-110","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"query_type":"section","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1b31ee2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"5a3f894b","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"1a1c5226","settings":{"columns":"3","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"show_post_formats":"","space_below":"none","posts":3,"excerpt_length":32,"content_center":"1","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"style":"card","excerpts":"","media_ratio":"1-1","meta_below":["author"],"query_type":"section","skip_posts":0,"section_data":{"cat":"","post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"heading_colors":"none","heading":"Guides & Advice","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"2b63d8d8","settings":{"container_width":100,"post_ids":[],"tax_ids":[],"space_below":"none","skip_posts":3,"section_data":{"cat":"","post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"exclude_ids":[],"media_width":45,"media_ratio":"4-3","posts":9,"heading":"Block One","meta_items_default":"","css_l_post_border_box_border_type":"yes","_border_border":"solid","meta_below":["date"],"heading_type":"none","separators":"","_background_color":"#FFFFFF","_background_color_b":"#FBFBFB","_background_gradient_angle":{"unit":"deg","size":140,"sizes":[]},"_box_shadow_box_shadow":{"horizontal":4,"vertical":4,"blur":5,"spread":-3,"color":"rgba(0, 0, 0, 0.1)"},"columns":"3","title_lines":"3","css_media_width":{"unit":"px","size":140,"sizes":[]},"query_type":"section","css_row_gap":{"unit":"px","size":35,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"ca4e3e0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"110a15d1","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74449202","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/rtl\/wp-content\/uploads\/sites\/34\/2022\/11\/Wide-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5d819f8","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"78978cef","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"78a783e4","settings":{"pagination_type":"load-more","excerpt_length":20,"content_vcenter":"1","grid_on_sm":"1","media_ratio_custom":1.3,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Articles","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"posts":6,"css_row_gap":{"unit":"px","size":30,"sizes":[]},"space_below":"none","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"meta_items_default":"","meta_below":["date","read_time","views"],"pagination":"1","separators":""},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1fb6cec4","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"5a249624","settings":{"space_below":"none","excerpts":"","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Don't Miss","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"title_lines":"3","media_ratio":"3-2","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","heading_colors":"none","css_title_typo_line_height":{"unit":"em","size":1.5,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"column_gap":"sm","css_row_gap":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"42629598","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-top","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"61": [{"id":"6099953b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"78d473ac","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"73672b46","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/daily-scoop\/wp-content\/uploads\/sites\/52\/2024\/01\/CityToday-Top.jpg\" width=\"970\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"79562325","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom","is_full_xs":"is-full-xs"},"elements":[{"id":"330bb843","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"38d95436","settings":{"posts":5,"grid_type":"grid-d","space_below":"sm","post_ids":[],"exclude_ids":[],"tax_ids":[],"_margin":{"unit":"px","top":"0","right":"-40","bottom":"0","left":"-40","isLinked":false},"container_width":100,"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_md_typography":"custom","css_title_typo_md_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":32,"sizes":[]},"css_title_typo_md_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"css_title_typo_lg_font_size_mobile":{"unit":"px","size":28,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"486d8670","settings":{"columns":"4","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Don't Miss","meta_items_default":"","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","style":"sm","meta_above":["cat","views"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"14e8fee4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"1ea5eff4","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100,"is_main":"main-content","space_between_widgets":0},"elements":[{"id":"6ee368c9","settings":{"heading":"The *World*","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"3c614e1b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"60bacd8f","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"1633cb6a","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":24,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","heading_type":"none","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_content_pad":{"unit":"px","top":"15","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":1,"style":"stylish","media_ratio":"3-2","css_content_margin":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"679fcdf8","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"6106741","settings":{"columns":"1","title_lines":"3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Block","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"space_below":"none","css_row_gap":{"unit":"px","size":35,"sizes":[]},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"-3","left":"0","isLinked":false},"media_pos":"right","css_bhead_border_weight":1,"css_bhead_border_color":"#414141","css_title_typo_line_height":{"unit":"em","size":"","sizes":[]},"query_type":"section","_margin_mobile":{"unit":"px","top":"24","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2b4fcc5e","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"More from *World*","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":6,"css_column_gap":{"unit":"px","size":36,"sizes":[]},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E8E8E8","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"533f9b19","settings":{"heading":"Technology","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5271228","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"query_type":"custom"},"elements":[{"id":"616d5c32","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"6401b4e0","settings":{"columns":"1","title_lines":"3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Block","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"space_below":"none","css_media_width":{"unit":"px","size":95,"sizes":[]},"css_row_gap":{"unit":"px","size":35,"sizes":[]},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"-3","left":"0","isLinked":false},"css_title_typo_typography":"custom","media_pos":"right","css_bhead_border_weight":1,"css_bhead_border_color":"#414141","css_title_typo_line_height":{"unit":"em","size":"","sizes":[]},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"19cbd73c","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"25402d4b","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":26,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","heading_type":"none","meta_items_default":"","meta_below":["author","date"],"skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_content_pad":{"unit":"px","top":"15","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":1,"style":"stylish","media_ratio":"3-2","css_content_margin":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"meta_above":["cat"],"query_type":"section","_margin_mobile":{"unit":"px","top":"41","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"3032da98","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"5cf3349e","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Featured Posts","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","title_lines":"2","carousel":"1","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"511f46b2","settings":{"wp":{"title":"","style":"b-2","counters":"","social":["facebook","twitter","instagram","youtube","tiktok","whatsapp"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"475fe623","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Top Posts","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"excerpts":"","column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":5,"show_media":"","numbers":"b","css_row_gap":{"unit":"px","size":15,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"15","left":"40","isLinked":false},"css_content_border_box_border_type":"yes","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"321158ea","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"is_full_xs":"is-full-xs"},"elements":[{"id":"117eb656","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#000000"},"elements":[{"id":"1c9287e8","settings":{"type":"b","heading":"Featured Videos","css_bhead_space_below":{"unit":"px","size":0,"sizes":[]},"css_bhead_color":"#FFFFFF","css_bhead_pad":{"unit":"px","top":"15","right":"0","bottom":"0","left":"15","isLinked":false},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"73277788","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"8665b93","settings":{"_column_size":50,"_inline_size":67},"elements":[{"id":"5dd271a5","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"none","css_media_ratio":1.7,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":26,"sizes":[]},"container_width":50,"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_lg_font_size_mobile":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1a0007ea","settings":{"_column_size":50,"_inline_size":33},"elements":[{"id":"8663bff","settings":{"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"exclude_ids":[],"title_lines":"2","space_below":"none","css_row_gap":{"unit":"px","size":14,"sizes":[]},"separators":"","posts":5,"scheme":"dark","_padding":{"unit":"px","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"show_post_formats":"1","css_media_width":{"unit":"px","size":112,"sizes":[]},"media_ratio":"3-2","css_meta_below_margins":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"media_width":33,"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5ecb8577","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"4a53006","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100,"is_main":"main-content","space_between_widgets":0},"elements":[{"id":"63160ecb","settings":{"heading":"Sports Roundup","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5bfce307","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7cb479b3","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"7f35527e","settings":{"columns":"1","space_below":"none","cat_labels_pos":"top-right","excerpt_length":26,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","heading_type":"none","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"column_gap":"sm","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_content_pad":{"unit":"px","top":"15","right":"0","bottom":"0","left":"0","isLinked":false},"css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":1,"style":"stylish","media_ratio":"3-2","css_content_margin":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1561186e","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"b3ec6d7","settings":{"columns":"1","title_lines":"3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Block","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"space_below":"none","css_row_gap":{"unit":"px","size":35,"sizes":[]},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"-3","left":"0","isLinked":false},"css_title_typo_typography":"custom","media_pos":"right","css_bhead_border_weight":1,"css_bhead_border_color":"#414141","css_title_typo_line_height":{"unit":"em","size":"","sizes":[]},"query_type":"section","_margin_mobile":{"unit":"px","top":"25","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"4ccfbf9d","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/daily-scoop\/wp-content\/uploads\/sites\/52\/2023\/11\/newstime-mid-blue.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"36d39cb4","settings":{"posts":3,"space_below":"none","content_vcenter":"1","media_width":36,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Lifestyle Trends","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"excerpt_length":19,"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"7e2fd323","settings":{"columns":"2","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"*Editor's* Picks","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":2,"css_column_gap":{"unit":"px","size":36,"sizes":[]},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E8E8E8","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"meta_above":["cat"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"232253ce","settings":{"columns":"3","space_below":"none","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","heading_type":"none","meta_items_default":"","meta_below":["author","date"],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"excerpts":"","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E1E1E1","css_bhead_border_weight":1,"css_title_color_sd":"#C9C9C9","posts":3,"offset":2,"css_column_gap":{"unit":"px","size":36,"sizes":[]},"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E8E8E8","style":"sm","meta_above":["cat"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6ec4448e","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"4b36c674","settings":{"columns":"1","meta_below":["author","date"],"container_width":33,"post_ids":[],"tax_ids":[],"posts":3,"pagination_type":"load-more","excerpt_length":11,"excerpts":"","exclude_ids":[],"heading":"Trending Posts","meta_items_default":"","numbers":"c","_margin":{"unit":"px","top":"0","right":"0","bottom":"045","left":"0","isLinked":false},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#E8E8E8","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DDDDDD","title_lines":"2","heading_type":"h"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"57adf04a","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"35ad15b7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"4dcdac0c","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"7ffc010b","settings":{"heading":"World & Nation","container_width":100,"more_text":"View More","more":"b","css_view_more_typo_typography":"custom","css_view_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_view_more_pad":{"unit":"px","top":"8","right":"14","bottom":"8","left":"14","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7048bbd6","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"70","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"578543f1","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"7512e92e","settings":{"space_below":"none","excerpts":"","content_vcenter":"1","media_width":42,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Block Heading","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_row_gap":{"unit":"px","size":40,"sizes":[]},"title_lines":"3","css_title_typo_font_size_tablet":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"25afb8a2","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"13f8bf15","settings":{"space_below":"none","excerpts":"","content_vcenter":"1","media_width":42,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Block Heading","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_row_gap":{"unit":"px","size":40,"sizes":[]},"title_lines":"3","css_title_typo_font_size_tablet":{"unit":"px","size":17,"sizes":[]},"_margin_mobile":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"62": [{"id":"227e5917","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"21","margin":{"unit":"px","top":"40","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"10ab4fba","settings":{"_column_size":33,"_inline_size":21,"ts_sticky_col":"ts-sticky-native","column_order_mobile":1,"_inline_size_tablet":30},"elements":[{"id":"1d61773","settings":{"posts":9,"space_below":"none","content_vcenter":"1","media_width":32,"media_ratio":"4-3","media_ratio_custom":0.85,"meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_media_max_width":{"unit":"px","size":228,"sizes":[]},"heading":"New Stories","heading_more_text":"View More","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpts":"","show_media":"","meta_below":["date"],"css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_title_color":"#2B2C30","heading_type":"none","title_lines":"3","css_title_typo_font_size_tablet":{"unit":"px","size":12,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"24899612","settings":{"_column_size":66,"_inline_size":78.666,"_inline_size_tablet":70},"elements":[{"id":"33c22ca4","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":40,"sizes":[]},"media_ratio_custom":1.85,"css_title_typo_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"heading_type":"none","heading":"Block *Heading*","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_media_height_tablet":{"unit":"px","size":361,"sizes":[]},"css_media_height_mobile":{"unit":"px","size":390,"sizes":[]},"css_title_typo_font_size_tablet":{"unit":"px","size":30,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":28,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"6b2db6a2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"ab369b","settings":{"_column_size":50,"_inline_size":65.999,"_inline_size_tablet":100},"elements":[{"id":"e1162ea","settings":{"columns":"2","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"column_gap":"sm","css_row_gap":{"unit":"px","size":25,"sizes":[]},"offset":1,"excerpt_length":18,"css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":15,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"22b011c5","settings":{"_column_size":50,"_inline_size":34,"space_between_widgets":0,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"70431dcc","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/morning-post\/wp-content\/uploads\/sites\/53\/2022\/03\/Newsboard-Sidebar.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"305e7f6d","settings":{"columns":"1","excerpts":"","show_media":"","numbers":"c","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending Posts","css_row_gap":{"unit":"px","size":15,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"16","left":"45","isLinked":false},"css_content_border_box_border_type":"yes","css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"css_content_border_color":"#E6E6E6","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_border_border":"solid","space_below":"none","title_lines":"3","meta_items_default":"","meta_below":["date","views"],"css_title_typo_font_size_tablet":{"unit":"px","size":14,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size_tablet":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3b6629c0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"369c6c82","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2017f92f","settings":{"style":"sm","columns":"4","space_below":"none","excerpts":"","meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Don't Miss","heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"16d87cbf","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"21","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"13a29d5b","settings":{"_column_size":33,"_inline_size":72.5,"space_between_widgets":0},"elements":[{"id":"5cfbd392","settings":{"heading":"Technology","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"2fecf976","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"4ccdb030","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"5e208a66","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5446edf","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"41791901","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"show_media":"","heading_type":"none","query_type":"section","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"12815151","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"12ba8da9","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"show_media":"","heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6a2529e","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5cbcf599","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"4443bcad","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"2543a0b1","settings":{"columns":"2","media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Don't Miss","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"posts":2,"space_below":"none","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5f511eb4","settings":{"_column_size":66,"_inline_size":27.5,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"3e07b9","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/morning-post\/wp-content\/uploads\/sites\/53\/2024\/01\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"44ffbff","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","background_background":"classic","background_color":"#404040","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"455431d","settings":{"_column_size":66,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","padding_mobile":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":false}},"elements":[{"id":"68a8e92e","settings":{"posts":1,"columns":"1","space_below":"none","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","meta_items_default":"","meta_above":["cat"],"css_content_pad":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":"","sizes":[]},"heading_type":"b","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpt_length":45,"exclude_ids":[],"scheme":"dark","heading":"Featured Videos","_padding":{"unit":"px","top":"50","right":"0","bottom":"20","left":"0","isLinked":false},"css_title_typo_font_weight":"600","css_title_typo_font_size_mobile":{"unit":"px","size":27,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"57476f21","settings":{"_column_size":33,"_inline_size":null,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":100,"vertical":0,"blur":73,"spread":-60,"color":"rgba(0, 0, 0, 0.37)"},"box_shadow_box_shadow_position":"inset","padding":{"unit":"px","top":"85","right":"0","bottom":"0","left":"40","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"30","left":"15","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"20","bottom":"20","left":"20","isLinked":false}},"elements":[{"id":"3335bdc9","settings":{"posts":6,"scheme":"dark","space_below":"none","media_pos":"right","show_post_formats":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Don't Miss","css_title_typo_typography":"custom","css_title_typo_font_weight":"600","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_tablet":{"unit":"px","size":12,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"762c41f0","settings":{"gap":"custom","gap_columns_custom":{"unit":"px","size":1,"sizes":[]},"post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"4ead2423","settings":{"_column_size":33,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"3c98135a","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"b","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"query_type":"section","posts":1,"excerpt_length":23,"media_ratio":"16-9","heading":"Markets","column_gap":"sm","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6c4f73c6","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":13,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5dfce9b9","settings":{"posts":3,"space_below":"none","media_pos":"right","show_post_formats":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Don't Miss","show_media":"","media_width":30,"media_ratio_custom":0.85,"meta_items_default":"","css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"40","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"a654a24","settings":{"_column_size":33,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"549eb002","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"b","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"query_type":"section","posts":1,"excerpt_length":23,"media_ratio":"16-9","heading":"Business","column_gap":"sm","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"79117641","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":13,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"72d80193","settings":{"posts":3,"space_below":"none","media_pos":"right","show_post_formats":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Don't Miss","show_media":"","media_width":30,"media_ratio_custom":0.85,"meta_items_default":"","css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"40","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7e616713","settings":{"_column_size":33,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"7de9fa9","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"b","skip_posts":8,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"query_type":"section","posts":1,"excerpt_length":23,"media_ratio":"16-9","heading":"Finance","column_gap":"sm","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"694a1e1","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":13,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"44556ba1","settings":{"posts":3,"space_below":"none","media_pos":"right","show_post_formats":"1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Don't Miss","show_media":"","media_width":30,"media_ratio_custom":0.85,"meta_items_default":"","css_row_gap":{"unit":"px","size":18,"sizes":[]},"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"query_type":"section","skip_posts":9,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"90e68d1","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[{"id":"2ba07b28","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5bc6d19","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/morning-post\/wp-content\/uploads\/sites\/53\/2024\/01\/TheSmartTimes-wide-middle.jpg\" width=\"1200\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4da88c78","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"21","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"1e0e57ae","settings":{"_column_size":33,"_inline_size":72.5,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"41fc50e1","settings":{"posts":2,"space_below":"none","content_vcenter":"1","media_width":48,"media_ratio_custom":0.85,"meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"Opinion","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpt_length":26,"media_pos":"right","meta_below":["date","views","read_time"],"_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"excerpt_lines":"3","css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"7075e74d","settings":{"posts":2,"space_below":"none","excerpt_length":20,"meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"More News...","heading_more_text":"View More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1668c566","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"c75c14c","settings":{"columns":"2","media_pos":"right","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Don't Miss","column_gap":"sm","offset":2,"space_below":"none","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"e186458","settings":{"posts":2,"space_below":"none","content_vcenter":"1","media_width":48,"media_ratio_custom":0.85,"meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"World & Nation","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpt_length":26,"media_pos":"right","meta_below":["date","views","read_time"],"css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"35c42e2b","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"51fb5e8a","settings":{"space_below":"none","content_vcenter":"1","media_width":46,"media_ratio_custom":0.85,"meta_items_default":"","container_width":33,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_content_pad":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"New Stories","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"columns":"2","title_lines":"3","excerpts":"","excerpt_length":47,"media_pos":"right","meta_below":["date","views"],"heading_type":"none","column_gap":"sm","css_title_typo_font_size_tablet":{"unit":"px","size":13,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"grid_on_sm":"1","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7c5bab0e","settings":{"_column_size":66,"_inline_size":27.5,"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4b5757e5","settings":{"posts":6,"space_below":"none","media_pos":"right","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":15,"sizes":[]},"title_lines":"3","css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"20797b73","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/morning-post\/wp-content\/uploads\/sites\/53\/2024\/01\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"6a45c5b3","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"5c5137a","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"4dc9f373","settings":{"columns":"3","space_below":"none","container_width":100,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"heading":"Business & World","posts":3,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"excerpt_length":24,"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6780734a","settings":{"columns":"4","space_below":"none","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"css_title_typo_typography":"custom","heading":"World News","heading_type":"none","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"style":"sm","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"63": [{"id":"5dcdb3a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F7F7F7","background_color_stop":{"unit":"%","size":"","sizes":[]},"background_color_b":"","background_color_b_stop":{"unit":"%","size":"","sizes":[]},"margin":{"unit":"px","top":"3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"25","right":"0","bottom":"0","left":"0","isLinked":false},"z_index":1,"hide_mobile":"hidden-mobile"},"elements":[{"id":"3f0efdbf","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"320bd4","settings":{"columns":"4","space_below":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","meta_below":["date","views"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"media_width":21,"media_pos":"right","media_ratio":"1-1","show_media":"","separators_cols":"1","columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3ae8fe48","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"40","background_background":"gradient","background_color":"#F7F7F7","background_color_stop":{"unit":"%","size":16,"sizes":[]},"background_color_b":"#FFFFFF","background_color_b_stop":{"unit":"%","size":16,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"562ce51","settings":{"_column_size":25,"_inline_size":19,"space_between_widgets":0,"column_order_mobile":4,"_inline_size_tablet":50},"elements":[{"id":"51554c4e","settings":{"title":"Popular","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":28,"sizes":[]},"typography_font_weight":"700","typography_letter_spacing":{"unit":"px","size":-1,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"8","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"42032a08","settings":{"title":"BROWSE OUR EDITOR'S HAND PICKED NEWS!","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":12.5,"sizes":[]},"typography_font_weight":"600","typography_letter_spacing":{"unit":"em","size":-0.025,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"50","bottom":"30","left":"0","isLinked":false},"typography_line_height":{"unit":"px","size":18,"sizes":[]},"typography_letter_spacing_tablet":{"unit":"em","size":"","sizes":[]},"typography_letter_spacing_mobile":{"unit":"em","size":"","sizes":[]}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"408e6fe1","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"media_width":21,"media_pos":"right","media_ratio":"1-1","show_media":"","meta_below":["cat","date"],"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"47890063","settings":{"text":"Divider","color":"#E8E8E8"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5a9eec23","settings":{"_column_size":25,"_inline_size":42,"column_order_mobile":1,"_inline_size_tablet":50},"elements":[{"id":"4a3ffae2","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"none","css_media_ratio":0.95,"post_ids":[],"exclude_ids":[],"tax_ids":[],"container_width":33,"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"has_ratio":"","css_media_height_eq":{"unit":"px","size":575,"sizes":[]},"css_media_height_eq_tablet":{"unit":"px","size":460,"sizes":[]},"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size_tablet":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"df11fe0","settings":{"_column_size":25,"_inline_size":20,"column_order_mobile":3,"_inline_size_tablet":50},"elements":[{"id":"719d4229","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"offset":10,"heading_more_text":"Read More","heading_more":"b","style":"sm","excerpts":"","heading_type":"none","posts":2,"media_ratio":"3-2","css_row_gap":{"unit":"px","size":20,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"meta_above":["cat"],"query_type":"section","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4f94f641","settings":{"_column_size":25,"_inline_size":19,"column_order_mobile":2,"_inline_size_tablet":50},"elements":[{"id":"269e8d2c","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"media_width":21,"media_pos":"right","media_ratio":"1-1","show_media":"","meta_below":["cat","date"],"_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.05)"},"query_type":"section","skip_posts":7,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"posts":5},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"600a4017","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"cf2d3bf","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"29dfb67b","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/political\/wp-content\/uploads\/sites\/54\/2024\/06\/Blue-Wide.png\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"621aabad","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"76e1ef93","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"59f36c8d","settings":{"heading":"The News Roundup","css_bhead_typo_text_transform":"none","container_width":100,"more_text":"View More News","more":"b","more_link":"https:\/\/smartmag.theme-sphere.com\/political\/category\/example-1\/"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"fdb39ae","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"5ffb1a4e","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"2ba616f","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"71699a75","settings":{"_column_size":33,"_inline_size":45,"space_between_widgets":0},"elements":[{"id":"4807ea6b","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":40,"media_ratio":"4-3","meta_items_default":"","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_below":["cat","date"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3c5f387d","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4048b8c3","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","media_width":35,"media_ratio":"3-2","meta_below":["date"],"posts":1,"css_media_width":{"unit":"px","size":110,"sizes":[]},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6a5a437c","settings":{"_column_size":33,"_inline_size":24.666,"space_between_widgets":0},"elements":[{"id":"2ad7f1cb","settings":{"columns":"1","space_below":"none","show_media":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","meta_below":["date","views"],"posts":7,"media_width":30,"media_ratio":"3-2","offset":2,"separators_cols":"1","query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6f97e1be","settings":{"_column_size":33,"_inline_size":30,"space_between_widgets":0},"elements":[{"id":"136eb5a6","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":9,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":25,"offset":13,"heading_more_text":"Read More","heading_more":"b","style":"sm","heading_type":"none","posts":1,"media_ratio":"16-9","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators_cols":"1","column_gap":"sm","meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"25f20c74","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"25aca2e2","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","media_width":26,"media_pos":"right","media_ratio":"1-1","posts":3,"css_media_width":{"unit":"px","size":70,"sizes":[]},"query_type":"section","skip_posts":10,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5c6f0eb1","settings":{"columns":"4","space_below":"none","container_width":66,"post_ids":[],"tax_ids":[],"skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","post_type":""},"meta_items_default":"","exclude_ids":[],"heading":"Business & Economy","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","style":"sm","excerpts":"","media_ratio":"3-2","css_row_gap":{"unit":"px","size":20,"sizes":[]},"column_gap":"sm","scheme":"dark","heading_colors":"none","css_l_post_border_border":"none","css_bhead_typo_typography":"custom","css_bhead_typo_font_weight":"600","_padding":{"unit":"px","top":"20","right":"20","bottom":"15","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#3D4752","_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#E8E8E824","css_bhead_color_sd":"#FFFFFF","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/political\/category\/example-2\/"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"166fc444","settings":{"columns":"4","space_below":"none","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":30,"sizes":[]},"meta_items_default":"","media_width":32,"media_ratio":"1-1","show_media":"","meta_below":["date"],"posts":8,"scheme":"dark","title_lines":"2","css_media_width":{"unit":"px","size":70,"sizes":[]},"column_gap":"sm","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_background_background":"classic","_background_color":"#3D4752","offset":4},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"6c14942f","settings":{"heading":"World Politics","css_bhead_typo_text_transform":"none","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"a377e79","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7e4280c0","settings":{"_column_size":33,"_inline_size":45,"space_between_widgets":0,"_inline_size_tablet":60},"elements":[{"id":"17f1db05","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":40,"media_ratio":"4-3","meta_items_default":"","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_below":["cat","date"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"15b72a74","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"51f32a47","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","media_width":35,"media_ratio":"3-2","meta_below":["date"],"posts":1,"css_media_width":{"unit":"px","size":110,"sizes":[]},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"135e6657","settings":{"_column_size":33,"_inline_size":24.666,"space_between_widgets":0,"_inline_size_tablet":40},"elements":[{"id":"3f3b7122","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":25,"offset":13,"heading_more_text":"Read More","heading_more":"b","style":"sm","excerpts":"","heading_type":"none","posts":3,"media_ratio":"16-9","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators_cols":"1","column_gap":"sm","meta_above":["cat"],"query_type":"section","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"658f7906","settings":{"_column_size":33,"_inline_size":30,"space_between_widgets":0,"_inline_size_tablet":100,"align_tablet":"center","margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7f62cb2e","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","media_width":26,"media_pos":"right","media_ratio":"1-1","posts":7,"css_media_width":{"unit":"px","size":70,"sizes":[]},"query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_element_custom_width_tablet":{"unit":"%","size":"","sizes":[]},"_element_custom_width_mobile":{"unit":"%","size":"","sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1581e2da","settings":{"heading":"Sports Roundup","css_bhead_typo_text_transform":"none","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"3fc7b6d2","settings":{"columns":"4","space_below":"none","container_width":66,"post_ids":[],"tax_ids":[],"skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","post_type":""},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","style":"sm","excerpts":"","heading_type":"none","media_ratio":"16-9","css_row_gap":{"unit":"px","size":20,"sizes":[]},"column_gap":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6a339a29","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"1067d303","settings":{"columns":"4","space_below":"none","show_media":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":20,"sizes":[]},"meta_items_default":"","meta_below":["date","views"],"posts":8,"media_width":30,"media_ratio":"3-2","offset":4,"title_lines":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4f3b8c7d","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"3d786631","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","media_width":26,"media_pos":"right","media_ratio":"1-1","meta_below":["cat","date"],"_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.05)"},"posts":8,"css_media_width":{"unit":"px","size":70,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"1075ee23","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","icon":"mail-bg","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"1034e49a","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/political\/wp-content\/uploads\/sites\/54\/2024\/06\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"111b6591","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#EEEEEE","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6b5f2333","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"background_background":"classic","background_color":"#FFFFFF","padding":{"unit":"px","top":"0","right":"20","bottom":"20","left":"20","isLinked":false}},"elements":[{"id":"31ccac","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":72,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":2.05,"meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]},"media_ratio_custom_mobile":1.5,"excerpt_length":40,"heading":"Science & Tech","css_bhead_accent":"#F7F7F7","css_bhead_color":"#000000","heading_type":"f","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_media_max_width_tablet":{"unit":"px","size":350,"sizes":[]},"media_ratio_custom_tablet":1.3},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"1757aa9a","settings":{"posts":6,"columns":"6","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"show_post_formats":"","space_below":"none","style":"sm","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"75d7c4f8","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"3b089342","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"13aeb0d1","settings":{"heading":"Health & Fitness","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1ad13a88","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"6f24ffa5","settings":{"_column_size":50,"_inline_size":74,"space_between_widgets":0,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"45dc6a8e","settings":{"posts":1,"space_below":"none","title_lines":"3","excerpt_length":38,"media_pos":"right","media_width":54,"css_media_max_width":{"unit":"px","size":800,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.75,"read_more":"btn","meta_items_default":"","meta_below":["cat","date"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":34,"sizes":[]},"css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"-1","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_line_height":{"unit":"em","size":1.35,"sizes":[]},"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"reviews":"none","grid_on_sm":"1","css_title_typo_font_size_mobile":{"unit":"px","size":24,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"media_ratio_custom_tablet":1.25,"css_title_typo_font_size_tablet":{"unit":"px","size":24,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"37d5d34b","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"7cf3f207","settings":{"columns":"3","cat_labels":"0","meta_below":["date"],"container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"none","heading":"Opinion","space_below":"none","pagination_type":"load-more","excerpt_length":16,"posts":3,"heading_type":"none","exclude_ids":[],"title_lines":"2","show_media":"","meta_items_default":"","separators_cols":"1","css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"226a154c","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":26,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"7d93ef50","settings":{"posts":5,"space_below":"none","title_lines":"2","media_pos":"right","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Just In","css_row_gap":{"unit":"px","size":28,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.35,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.4,"sizes":[]},"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"322343cc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"50","right":0,"bottom":"60","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"543be32a","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6e9bc1a8","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/smart-times\/wp-content\/uploads\/sites\/30\/2022\/03\/Single-page-top-01.jpg\" width=\"1240\" height=\"125\" alt=\"Demo\" \/>\n<\/a>","container_width":100,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2fe43b89","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"2a45cdb","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"7fa9b906","settings":{"heading":"Middle East News","css_bhead_typo_text_transform":"none","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"40532767","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"3893495a","settings":{"_column_size":50,"_inline_size":66,"space_between_widgets":0},"elements":[{"id":"50d67e5d","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":40,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"411ba9ba","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"271ca46a","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","content_center":"1","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"a163e09","settings":{"_column_size":50,"_inline_size":34,"space_between_widgets":0},"elements":[{"id":"2464034e","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","style":"sm","excerpts":"","heading_type":"none","posts":1,"media_ratio":"16-9","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators_cols":"1","column_gap":"sm","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7c2c4f4","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"221989fc","settings":{"posts":5,"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","space_below":"none","query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"exclude_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"25baa1f9","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/political\/wp-content\/uploads\/sites\/54\/2024\/06\/Blue-Wide.png\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"7ee2b28d","settings":{"heading":"Climate Change","css_bhead_typo_text_transform":"none","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7dfec732","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"query_type":"custom"},"elements":[{"id":"aed08ff","settings":{"_column_size":33,"_inline_size":45,"space_between_widgets":0},"elements":[{"id":"50a7bb31","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":40,"media_ratio":"4-3","meta_items_default":"","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_below":["cat","date"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"d6e68d2","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"635c2a07","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","media_width":35,"media_ratio":"3-2","meta_below":["date"],"posts":1,"css_media_width":{"unit":"px","size":110,"sizes":[]},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"255b5b28","settings":{"_column_size":33,"_inline_size":24.666,"space_between_widgets":0},"elements":[{"id":"b28d0f7","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":27,"sizes":[]},"meta_items_default":"","media_width":32,"media_ratio":"1-1","show_media":"","meta_below":["date"],"posts":6,"css_media_width":{"unit":"px","size":70,"sizes":[]},"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3afcc9c2","settings":{"_column_size":33,"_inline_size":30,"space_between_widgets":0},"elements":[{"id":"744c5e40","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":8,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":16,"heading_more_text":"Read More","heading_more":"b","style":"sm","heading_type":"none","posts":2,"media_ratio":"16-9","css_row_gap":{"unit":"px","size":20,"sizes":[]},"separators_cols":"1","column_gap":"sm","meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"56d46698","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"4f4f4053","settings":{"posts":5,"style":"sm","columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"21-9","numbers":"b","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending Posts","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"a003e39","settings":{"heading":"Follow Us!","css_bhead_typo_text_transform":"none","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5ff027a0","settings":{"wp":{"title":"","style":"b-2","counters":"","social":["facebook","twitter","instagram","youtube","linkedin","whatsapp"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"1992bb70","settings":{"space_below":"none","title_lines":"3","excerpts":"","content_center":"1","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Travel & Tourism","css_row_gap":{"unit":"px","size":24,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"42651115","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"query_type":"custom"},"elements":[{"id":"57a59df8","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"32824af4","settings":{"heading":"Don't Miss It!","css_bhead_typo_text_transform":"none","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"57e18d05","settings":{"columns":"4","space_below":"none","excerpt_length":24,"media_ratio":"16-9","meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","style":"sm","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"38742fd4","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"370d2a10","settings":{"columns":"4","space_below":"none","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":25,"sizes":[]},"meta_items_default":"","media_width":32,"media_ratio":"1-1","show_media":"","meta_below":["date"],"posts":12,"css_media_width":{"unit":"px","size":70,"sizes":[]},"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"64": [{"id":"56d5fa84","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"30","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"53ff0d6b","settings":{"_column_size":66,"_inline_size":74.665,"space_between_widgets":0,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#DBE2EC","padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_inline_size_tablet":100},"elements":[{"id":"670b3817","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"57c3fc84","settings":{"_column_size":50,"_inline_size":75.5,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"420cf633","settings":{"columns":"1","space_below":"none","container_width":"66","post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":38,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","heading_type":"none","css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#C7EAFF","_background_background":"classic","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"cat_labels":"1","cat_labels_pos":"top-left","meta_below":["updated","author"],"css_cat_labels_typo_typography":"custom","css_cat_labels_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_cat_labels_bg":"#CC0000","query_type":"section","css_cat_labels_pad":{"unit":"px","top":"3","right":"10","bottom":"3","left":"12","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3df91141","settings":{"_column_size":50,"_inline_size":24.5,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1cc8681e","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","meta_above":["cat"],"exclude_ids":[],"heading":"World News","posts":2,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","excerpts":"","media_ratio_custom":1.6,"query_type":"section","css_meta_above_margins":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"59599389","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5632bef6","settings":{"columns":"1","space_below":"none","show_media":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Related Posts","css_row_gap":{"unit":"px","size":20,"sizes":[]},"posts":1,"meta_items_default":"","meta_below":["date","views"],"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2033480b","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom","offset":4},"elements":[{"id":"2bb28556","settings":{"_column_size":33,"_inline_size":50,"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"566f959e","settings":{"space_below":"none","content_vcenter":"1","media_width":26,"media_ratio_custom":0.85,"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":13,"sizes":[]},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"New Stories","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"columns":"1","title_lines":"2","excerpts":"","excerpt_length":47,"heading_type":"none","column_gap":"sm","pagination_type":"load-more","media_ratio":"3-2","meta_above":["cat"],"css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#F4C4C4","css_l_post_bg":"#F6F8FA","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":4,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1e6e861f","settings":{"_column_size":33,"_inline_size":24.78,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"60015f2c","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":4,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","meta_above":["cat"],"query_type":"section","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"32c75a95","settings":{"_column_size":33,"_inline_size":24.886,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"2b9f7915","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":4,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5c5641e9","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/new-one24\/wp-content\/uploads\/sites\/56\/2024\/07\/Blue-Wide.png\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"5ebd38d3","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"70c55995","settings":{"_column_size":50,"_inline_size":75.5,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"49defc24","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":62,"media_ratio_custom":1.6,"meta_items_default":"","meta_above":["cat"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"Hand-Picked by Editor","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpt_length":25,"media_pos":"right","meta_below":["date","views","read_time"],"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#0077B6","heading_colors":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"grid_on_sm":"1","media_ratio":"custom","media_ratio_custom_tablet":1.25,"media_ratio_custom_mobile":1.6,"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"967a7ee","settings":{"_column_size":50,"_inline_size":24.5,"background_background":"classic","background_color":"#F6F8FA","margin":{"unit":"px","top":"36","right":"0","bottom":"0","left":"10","isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"14e6204c","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"offset":1,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","excerpts":"","meta_above":["cat"],"css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2b6d7c44","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"31a4f1e3","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","show_media":"","meta_items_default":"","container_width":66,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"separators_cols":"1","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"54166dbd","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"3c6befbf","settings":{"style":"sm","columns":"4","space_below":"none","excerpts":"","meta_items_default":"","container_width":66,"offset":6,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"css_l_post_bg":"#FFF6F2","css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"15","left":"8","isLinked":false},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"52f780bd","settings":{"space_below":"none","content_vcenter":"1","media_width":26,"media_ratio_custom":0.85,"meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"Sports","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"columns":"2","title_lines":"2","excerpts":"","excerpt_length":25,"column_gap":"sm","posts":6,"pagination_type":"load-more","media_ratio":"4-3","meta_above":["cat"],"css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#C1D4FF","css_l_post_bg":"#F6F8FA","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1b4c2033","settings":{"_column_size":33,"_inline_size":25,"space_between_widgets":0,"background_background":"classic","ts_sticky_col":"ts-sticky-native","hide_tablet":"hidden-tablet"},"elements":[{"id":"29284e47","settings":{"posts":8,"columns":"1","space_below":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"More News","media_width":32,"column_gap":"sm","css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#C7EAFF","_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DBE2EC","title_lines":"3","hide_tablet":"hidden-tablet"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"3f7d3b82","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/new-one24\/wp-content\/uploads\/sites\/56\/2024\/07\/CityToday-Side.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"11d94c06","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"27098ccf","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4a22ee36","settings":{"gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","background_background":"gradient","background_color":"#CC0000","background_color_b":"#0C0C0C","background_color_b_stop":{"unit":"%","size":64,"sizes":[]},"background_gradient_angle":{"unit":"deg","size":130,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"35","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"30","bottom":"0","left":"30","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"260ed587","settings":{"_column_size":50,"_inline_size":68,"padding":{"unit":"px","top":"25","right":"0","bottom":"10","left":"0","isLinked":false},"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"25","right":"30","bottom":"0","left":"30","isLinked":false}},"elements":[{"id":"25bccb29","settings":{"posts":1,"columns":"1","space_below":"none","container_width":"66","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","meta_items_default":"","css_content_pad":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":"","sizes":[]},"heading_type":"b","skip_posts":0,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"excerpt_length":46,"exclude_ids":[],"scheme":"dark","heading":"Featured Videos","css_title_typo_font_weight":"600","media_ratio":"16-9","media_ratio_custom":1.6,"query_type":"section","css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height_tablet":{"unit":"px","size":"","sizes":[]},"css_title_typo_line_height_mobile":{"unit":"px","size":"","sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"5fb14d2c","settings":{"_column_size":50,"_inline_size":32,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":100,"vertical":0,"blur":73,"spread":-60,"color":"rgba(255, 255, 255, 0.08)"},"box_shadow_box_shadow_position":"inset","padding":{"unit":"px","top":"60","right":"0","bottom":"0","left":"30","isLinked":false},"_inline_size_tablet":100,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"6cfc71ff","settings":{"posts":7,"scheme":"dark","space_below":"none","media_pos":"right","show_post_formats":"1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Don't Miss","css_title_typo_typography":"custom","css_title_typo_font_weight":"600","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"skip_posts":1,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"query_type":"section","media_width":26,"media_ratio":"3-2","meta_items_default":"","meta_below":["date"],"css_meta_below_margins":{"unit":"px","top":"-5","right":"0","bottom":"0","left":"0","isLinked":false},"title_lines":"2","columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"32b327c1","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"1ec49e98","settings":{"_column_size":66,"_inline_size":74.665,"space_between_widgets":0,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#DBE2EC","padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_inline_size_tablet":100},"elements":[{"id":"2600a613","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"1a5801dc","settings":{"_column_size":50,"_inline_size":75.5,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"2e7ccee8","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":62,"media_ratio_custom":1.6,"meta_items_default":"","meta_above":["cat"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"Business & Economy","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpt_length":25,"meta_below":["date","views","read_time"],"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#0077B6","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-5","isLinked":false},"heading_colors":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"grid_on_sm":"1","css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_media_max_width_tablet":{"unit":"px","size":280,"sizes":[]},"media_ratio":"custom","media_ratio_custom_tablet":1.25,"media_ratio_custom_mobile":1.6,"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"300da3c4","settings":{"_column_size":50,"_inline_size":24.5,"background_background":"classic","background_color":"#F6F8FA","margin":{"unit":"px","top":"36","right":"0","bottom":"0","left":"10","isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"422871f9","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"offset":1,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","excerpts":"","meta_above":["cat"],"css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"496de076","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"74437bb7","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","show_media":"","meta_items_default":"","container_width":66,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"separators_cols":"1","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"32df5b9","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"256713ff","settings":{"style":"sm","columns":"4","space_below":"none","excerpts":"","meta_items_default":"","container_width":66,"offset":6,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"4c345bc6","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/new-one24\/wp-content\/uploads\/sites\/56\/2024\/07\/Blue-Wide.png\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"322c3372","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"3c1bed5e","settings":{"_column_size":50,"_inline_size":75.5,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"415fdbfd","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":62,"media_ratio_custom":1.6,"meta_items_default":"","meta_above":["cat"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"East Asia","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpt_length":25,"media_pos":"right","meta_below":["date","views","read_time"],"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#0077B6","heading_colors":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"grid_on_sm":"1","css_media_max_width_tablet":{"unit":"px","size":280,"sizes":[]},"media_ratio":"custom","media_ratio_custom_tablet":1.25,"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6b93c2df","settings":{"_column_size":50,"_inline_size":24.5,"background_background":"classic","background_color":"#F6F8FA","margin":{"unit":"px","top":"36","right":"0","bottom":"0","left":"10","isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"2c090983","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"offset":1,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","excerpts":"","meta_above":["cat"],"css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"453b7ba","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"64bec8cf","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom","offset":2},"elements":[{"id":"563b2ebb","settings":{"_column_size":33,"_inline_size":50,"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"90c0289","settings":{"space_below":"none","content_vcenter":"1","media_width":26,"media_ratio_custom":0.85,"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":13,"sizes":[]},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"New Stories","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"columns":"1","title_lines":"2","excerpts":"","excerpt_length":47,"heading_type":"none","column_gap":"sm","pagination_type":"load-more","media_ratio":"3-2","meta_above":["cat"],"css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#F4C4C4","css_l_post_bg":"#F6F8FA","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":2,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1ee964d8","settings":{"_column_size":33,"_inline_size":24.78,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6c121935","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":2,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","meta_above":["cat"],"query_type":"section","title_lines":"3","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2f5fe75d","settings":{"_column_size":33,"_inline_size":24.886,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"51ba1b78","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":2,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","meta_above":["cat"],"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"450db70a","settings":{"heading":"You may have missed","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"57f1a83b","settings":{"scheme":"dark","style":"sm","columns":"4","space_below":"none","title_lines":"3","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"css_l_post_bg":"#13181D","css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"15","left":"8","isLinked":false},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"72854a6d","settings":{"_column_size":33,"_inline_size":25,"space_between_widgets":0,"background_background":"classic","ts_sticky_col":"ts-sticky-native","hide_tablet":"hidden-tablet"},"elements":[{"id":"76b8d65f","settings":{"posts":3,"style":"sm","columns":"1","space_below":"none","excerpts":"","numbers":"c","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending News","column_gap":"sm","css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#C7EAFF","_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DBE2EC","hide_tablet":"hidden-tablet"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7565f090","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/new-one24\/wp-content\/uploads\/sites\/56\/2024\/07\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"40a6f302","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_image":{"id":5116,"url":"https:\/\/smartmag.theme-sphere.com\/new-one24\/wp-content\/uploads\/sites\/56\/2024\/07\/Bloque-ancho-Open.jpeg","alt":"","source":"library","size":""},"background_position":"center center","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"cover","margin":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"4dce7c1e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6904fef1","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"541b9782","settings":{"_column_size":50,"_inline_size":74},"elements":[{"id":"73e9b392","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","scheme":"dark","fields_style":"inline","align":"left","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":34,"sizes":[]},"css_heading_typo_font_weight":"600","container_width":50,"css_heading_typo_line_height":{"unit":"em","size":1.7,"sizes":[]},"css_heading_typo_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"140c0e15","settings":{"_column_size":50,"_inline_size":26,"space_between_widgets":0},"elements":[{"id":"f65df2d","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/magazine-co\/wp-content\/uploads\/sites\/39\/2023\/06\/smartmag-sports.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":50,"_padding_mobile":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"465380f4","settings":{"title":"Advertisement","align":"center","title_color":"#DADADA","typography_typography":"custom","typography_font_size":{"unit":"px","size":12,"sizes":[]},"typography_font_weight":"400","typography_font_style":"italic","_margin":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"59008f21","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"79cf9535","settings":{"_column_size":66,"_inline_size":74.665,"space_between_widgets":0,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#DBE2EC","padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_inline_size_tablet":100},"elements":[{"id":"48139980","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"7a7ce72a","settings":{"_column_size":50,"_inline_size":75.5,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6b14c632","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":62,"media_ratio_custom":1.6,"meta_items_default":"","meta_above":["cat"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"Information Tech","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpt_length":25,"meta_below":["date","views","read_time"],"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#0077B6","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-5","isLinked":false},"heading_colors":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"title_lines":"4","grid_on_sm":"1","css_content_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_media_max_width_tablet":{"unit":"px","size":280,"sizes":[]},"media_ratio":"custom","media_ratio_custom_tablet":1.25,"media_ratio_custom_mobile":1.6,"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"34093b55","settings":{"_column_size":50,"_inline_size":24.5,"background_background":"classic","background_color":"#F6F8FA","margin":{"unit":"px","top":"36","right":"0","bottom":"0","left":"10","isLinked":false},"margin_mobile":{"unit":"px","top":"030","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"61b66e84","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"offset":1,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","excerpts":"","meta_above":["cat"],"css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false},"title_lines":"4"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7ace73bd","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"6b37fa21","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","show_media":"","meta_items_default":"","container_width":66,"offset":2,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"separators_cols":"1","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"78c51a88","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"23237b02","settings":{"style":"sm","columns":"4","space_below":"none","excerpts":"","meta_items_default":"","container_width":66,"offset":6,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":20,"sizes":[]},"css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6bfbf907","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/new-one24\/wp-content\/uploads\/sites\/56\/2024\/07\/Blue-Wide.png\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"483997f2","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"f0349c3","settings":{"_column_size":50,"_inline_size":75.5,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"4a951cab","settings":{"posts":1,"space_below":"none","content_vcenter":"1","media_width":62,"media_ratio_custom":1.6,"meta_items_default":"","meta_above":["cat"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"Health Sciences","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"excerpt_length":25,"media_pos":"right","meta_below":["date","views","read_time"],"css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#0077B6","heading_colors":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"title_lines":"4","grid_on_sm":"1","css_media_max_width_tablet":{"unit":"px","size":280,"sizes":[]},"media_ratio":"custom","media_ratio_custom_tablet":1.25,"media_ratio_custom_mobile":1.6,"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"12c752cb","settings":{"_column_size":50,"_inline_size":24.5,"background_background":"classic","background_color":"#F6F8FA","margin":{"unit":"px","top":"36","right":"0","bottom":"0","left":"10","isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"691eb252","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":20,"offset":1,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","excerpts":"","meta_above":["cat"],"css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false},"title_lines":"4"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7cfd72e7","settings":{"text":"Divider","color":"#DBE2EC","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"646ea483","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom","offset":2},"elements":[{"id":"717240f6","settings":{"_column_size":33,"_inline_size":50,"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"27f3a808","settings":{"space_below":"none","content_vcenter":"1","media_width":26,"media_ratio_custom":0.85,"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":13,"sizes":[]},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"New Stories","heading_more":"b","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_font_weight":"700","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"columns":"1","title_lines":"2","excerpts":"","excerpt_length":47,"heading_type":"none","column_gap":"sm","pagination_type":"load-more","media_ratio":"3-2","meta_above":["cat"],"css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#F4C4C4","css_l_post_bg":"#F6F8FA","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":2,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"36ee59d9","settings":{"_column_size":33,"_inline_size":24.78,"padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5e1bea03","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":2,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":17,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","meta_above":["cat"],"query_type":"section","excerpt_lines":"3","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1c566a67","settings":{"_column_size":33,"_inline_size":24.886,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"739de9d4","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":2,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","posts":1,"excerpt_length":17,"heading_more_text":"Read More","heading_more":"b","column_gap":"sm","css_bhead_more_typo_typography":"custom","css_bhead_more_typo_font_size":{"unit":"px","size":12,"sizes":[]},"css_bhead_more_typo_word_spacing":{"unit":"em","size":0.2,"sizes":[]},"css_bhead_more_pad":{"unit":"px","top":"9","right":"18","bottom":"9","left":"18","isLinked":false},"heading_type":"none","style":"sm","meta_above":["cat"],"query_type":"section","title_lines":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"8db896d","settings":{"space_below":"none","content_vcenter":"1","media_width":26,"media_ratio_custom":0.85,"meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.02)"},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_media_max_width":{"unit":"px","size":530,"sizes":[]},"heading":"Lifestyle","heading_more":"a","css_bhead_more_pad":{"unit":"px","top":"10","right":"15","bottom":"10","left":"15","isLinked":false},"columns":"2","title_lines":"2","excerpts":"","excerpt_length":25,"column_gap":"sm","posts":6,"pagination_type":"load-more","media_ratio":"4-3","meta_above":["cat"],"css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"css_l_post_border_color":"#C1D4FF","css_l_post_bg":"#F6F8FA","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"css_excerpt_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"heading_more_text":"More from Lifestyle >","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/new-one24\/category\/example-4\/"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"32df8a91","settings":{"_column_size":33,"_inline_size":25,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native","hide_tablet":"hidden-tablet"},"elements":[{"id":"25e684a2","settings":{"posts":8,"space_below":"none","title_lines":"3","excerpts":"","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Ukraine Conflict","css_column_gap":{"unit":"px","size":12,"sizes":[]},"css_row_gap":{"unit":"px","size":25,"sizes":[]},"css_l_post_border_border":"solid","css_l_post_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"css_l_post_border_color":"#C7EAFF","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#DBE2EC","hide_tablet":"hidden-tablet"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5a4dc538","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/new-one24\/wp-content\/uploads\/sites\/56\/2024\/07\/CityToday-Side.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2a8ec276","settings":{"gutter":"default","gap":"no","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true},"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[]},"elements":[{"id":"47294e20","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#DBE2EC","padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false}},"elements":[{"id":"10995077","settings":{"posts":3,"space_below":"none","cat_labels":"0","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":100,"query_type":"section","post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"post_formats_pos":"center","columns":"3","media_ratio":"3-2","meta_cat_style":"text","exclude_ids":[],"title_lines":"3","heading":"News Roundup","heading_more_text":"More from News >","heading_more":"a","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/new-one24\/category\/example-1\/"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"5521fe6c","settings":{"style":"sm","columns":"5","space_below":"none","cat_labels":"0","excerpts":"","container_width":100,"query_type":"section","post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"2","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":3,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_row_gap_tablet":{"unit":"px","size":30,"sizes":[]},"css_row_gap_mobile":{"unit":"px","size":30,"sizes":[]},"_margin_tablet":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"posts":5,"meta_items_default":"","exclude_ids":[],"title_lines":"4","css_content_margin":{"unit":"px","top":"0","right":"8","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"65": [{"id":"157f0a04","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"20","right":0,"bottom":"20","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"7ee21f39","settings":{"_column_size":50,"_inline_size":14,"space_between_widgets":0,"background_background":"classic","background_color":"#BD0000","padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"15","isLinked":false},"_inline_size_tablet":20,"content_position_tablet":"center"},"elements":[{"id":"6ebc0e97","settings":{"title":"TRENDING NEWS","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"8","left":"0","isLinked":false},"typography_font_size_tablet":{"unit":"px","size":13,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"c39561a","settings":{"_column_size":50,"_inline_size":86,"background_background":"classic","background_color":"#FFFFFF","padding":{"unit":"px","top":"1","right":"0","bottom":"0","left":"20","isLinked":false},"_inline_size_tablet":80,"padding_tablet":{"unit":"px","top":"2","right":"0","bottom":"5","left":"20","isLinked":false}},"elements":[{"id":"736ce68","settings":{"columns":"1","space_below":"none","show_media":"","meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel":"1","carousel_dots":"","carousel_autoplay":"1","columns_tablet":"1","carousel_slides_md":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"1a03e88b","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"5","bottom":"0","left":"5","isLinked":false}},"elements":[{"id":"5229f4ef","settings":{"_column_size":50,"_inline_size":74.35,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"_inline_size_tablet":64,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[{"id":"623e5e92","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"custom","margin_mobile":{"unit":"px","top":"10","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"14dbecdc","settings":{"_column_size":50,"_inline_size":66.9,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"ts_sticky_col":"ts-sticky-native","background_background":"classic","background_color":"#FFFFFF","_inline_size_tablet":100,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"781e94b9","settings":{"text":"Divider","color":"#CE0A0A","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4796dcfa","settings":{"columns":"1","space_below":"none","container_width":"66","post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":36,"heading_more_text":"Read More","heading_more":"b","style":"sm","heading_type":"none","posts":1,"media_ratio":"custom","css_row_gap":{"unit":"px","size":1,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"media_ratio_custom":1.71,"separators_cols":"1","css_l_post_bg":"#FFFFFF","title_lines":"4","meta_cat_style":"labels","media_location":"below","meta_below":["cat","updated"],"css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section","css_title_typo_font_size_mobile":{"unit":"px","size":27,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.25,"sizes":[]},"css_title_margin":{"unit":"px","top":"0","right":0,"bottom":"14","left":0,"isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2ecdd74","settings":{"_column_size":50,"_inline_size":33.1,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"44f84c3b","settings":{"text":"Divider","color":"#0C77E2","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"22c2c343","settings":{"posts":5,"columns":"1","media_width":26,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":1,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"heading":"Related Articles*.*","space_below":"none","show_media":"","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat","date"],"meta_cat_style":"labels","heading_type":"none","separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"327f8fad","settings":{"posts":6,"columns":"6","space_below":"none","title_lines":"3","excerpts":"","media_ratio_custom":1.15,"meta_items_default":"","container_width":50,"offset":6,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","css_row_gap_mobile":{"unit":"px","size":30,"sizes":[]},"css_row_gap_tablet":{"unit":"px","size":22,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5e67c9a0","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom","offset":12},"elements":[{"id":"5e398890","settings":{"_column_size":50,"_inline_size":31,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"475f497a","settings":{"text":"Divider","color":"#0C77E2","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"570aa48e","settings":{"posts":3,"columns":"1","media_width":26,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":1,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"heading":"Related Articles*.*","space_below":"none","show_media":"","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat","date"],"meta_cat_style":"labels","heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"477e1008","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","style":"sm","excerpts":"","heading_type":"none","posts":1,"css_row_gap":{"unit":"px","size":26,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["author","updated"],"separators_cols":"1","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section","css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"27949218","settings":{"posts":12,"columns":"1","media_width":26,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":1,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"heading":"Related Articles*.*","space_below":"none","show_media":"","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat","date"],"meta_cat_style":"labels","heading_type":"none","separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"483a76c5","settings":{"_column_size":50,"_inline_size":69,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_inline_size_tablet":100,"margin_mobile":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"232462f4","settings":{"posts":2,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"section","skip_posts":16,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"6f7e4d2a","settings":{"text":"Divider","color":"#CE940A","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5cbf39eb","settings":{"posts":1,"space_below":"none","excerpt_length":32,"media_width":26,"media_ratio":"3-2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FEF9F5","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"show_media":"","meta_below":["author"],"meta_author_img":"1","query_type":"section","skip_posts":18,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"56e49c7b","settings":{"posts":2,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"section","skip_posts":19,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"601a2be8","settings":{"columns":"2","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":21,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","excerpts":"","heading_type":"none","posts":2,"css_row_gap":{"unit":"px","size":0,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["date"],"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"456a6920","settings":{"posts":1,"space_below":"none","excerpt_length":32,"media_width":26,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#0C77E2","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"show_media":"","meta_below":["date","author"],"scheme":"dark","css_cat_labels_bg":"#175AA4","css_cat_labels_color":"#FFFFFF","query_type":"section","skip_posts":23,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"3b6e97e3","settings":{"posts":3,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":24,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":12,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"36e6c8ae","settings":{"_column_size":50,"_inline_size":25.65,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":36,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"593423b3","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"1-1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"meta_cat_style":"text","meta_items_default":"","meta_below":["author","date","comments"]},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"284fe92e","settings":{"posts":1,"columns":"1","space_below":"none","show_media":"","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat"],"meta_cat_style":"labels","container_width":50,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","excerpt_length":18},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"a08ec51","settings":{"posts":5,"space_below":"none","title_lines":"3","media_width":20,"media_ratio_custom":1.15,"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":1,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"2fac2875","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","css_bg_color":"#FFFFFF","_margin":{"unit":"px","top":"0","right":"0","bottom":"010","left":"0","isLinked":false},"container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"},{"id":"250ff407","settings":{"style":"sm","space_below":"none","title_lines":"3","excerpts":"","media_ratio_custom":1.15,"meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Climate*.*","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":15,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"columns_tablet":"1","css_row_gap_tablet":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2a92af7e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#DAE2EA","padding":{"unit":"px","top":"30","right":"0","bottom":"40","left":"0","isLinked":false},"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"29602bbd","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"30fc0eec","settings":{"type":"b","heading":"Money & Business*.*","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"178d42c","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom","sort_order":"desc"},"elements":[{"id":"73c1037d","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"532669f6","settings":{"columns":"1","space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"desc","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":26,"heading_more_text":"Read More","heading_more":"b","heading_type":"none","posts":1,"css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["date"],"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section","css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"37fffafb","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"margin_mobile":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"60742cf4","settings":{"columns":"2","space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"desc","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","excerpts":"","heading_type":"none","posts":2,"css_row_gap":{"unit":"px","size":0,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["date"],"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6f3b1214","settings":{"posts":2,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"desc","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"736d81c","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"5","bottom":"0","left":"5","isLinked":false}},"elements":[{"id":"3ad1291c","settings":{"_column_size":50,"_inline_size":74.35,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"_inline_size_tablet":70,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"13dfe39f","settings":{"type":"b","heading":"Sports Roundup*.*","container_width":50,"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7e0e3620","settings":{"text":"Divider","color":"#CE0A0A","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"7c511de6","settings":{"posts":1,"space_below":"none","media_pos":"right","media_width":65,"media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat","date"],"meta_below":["updated"],"meta_cat_style":"labels","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":12,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"grid_on_sm":"1","excerpt_length":18,"css_media_max_width_tablet":{"unit":"px","size":213,"sizes":[]},"css_excerpt_visible_tablet":"none","css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"1393791b","settings":{"posts":3,"columns":"3","space_below":"none","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"meta_cat_style":"labels","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"offset":1,"excerpt_length":17,"css_row_gap_tablet":{"unit":"px","size":10,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7573e134","settings":{"posts":6,"columns":"3","space_below":"none","title_lines":"3","media_ratio_custom":1.15,"meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":1,"sizes":[]},"css_row_gap":{"unit":"px","size":1,"sizes":[]},"separators":"","css_l_post_bg":"#DBE5F3","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"offset":4},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"7ee896d1","settings":{"gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"60f34eea","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4822917d","settings":{"columns":"1","space_below":"none","container_width":"50","post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":27,"heading_more_text":"Read More","heading_more":"b","heading_type":"none","posts":1,"css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"media_ratio_custom":1.15,"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"98bf42d","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false}},"elements":[{"id":"48a73b7f","settings":{"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"show_media":"","query_type":"section","skip_posts":1,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"5eadcd28","settings":{"_column_size":50,"_inline_size":25.65,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"f966a5e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"70d5dbd1","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"1702fe6a","settings":{"type":"b","heading":"More Sports*.*","container_width":50,"_margin_mobile":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"3e4fda9e","settings":{"text":"Divider","color":"#CE0A0A","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"332250e5","settings":{"posts":6,"space_below":"none","title_lines":"3","excerpts":"","show_media":"","media_width":26,"media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat","date"],"meta_cat_style":"labels","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":1,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"29b6be4a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"72106850","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7304ed28","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/thevoice-daily\/wp-content\/uploads\/sites\/57\/2024\/07\/Mid-NationalPress.jpg\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3307c172","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"is_full_xs":"is-full-xs"},"elements":[{"id":"797f520c","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"background_background":"classic","background_color":"#0C77E2","padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true}},"elements":[{"id":"779cdf91","settings":{"type":"b","heading":"Crypto Currencies","css_bhead_color":"#FFFFFF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"2d27d5ce","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"3cb53d28","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"background_background":"classic","background_color":"#FFFFFF","margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1f6da853","settings":{"columns":"1","space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":26,"heading_more_text":"Read More","heading_more":"b","heading_type":"none","posts":1,"css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["date"],"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section","css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"79b8bfa1","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"margin_mobile":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"53271c6a","settings":{"columns":"2","space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","excerpts":"","heading_type":"none","posts":2,"css_row_gap":{"unit":"px","size":0,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["date"],"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section","css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"258b119b","settings":{"posts":2,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"grid_on_sm":"1","css_title_typo_font_size_tablet":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"7a4ec214","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"5","bottom":"0","left":"5","isLinked":false}},"elements":[{"id":"ced097","settings":{"_column_size":50,"_inline_size":74.35,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"_inline_size_tablet":70,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"2c097d0a","settings":{"type":"b","heading":"Technology*.*","container_width":50,"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"c369d21","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"custom"},"elements":[{"id":"241164b6","settings":{"_column_size":50,"_inline_size":33.1,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"background_background":"classic","background_color":"#FFFFFF","ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1eff48cf","settings":{"text":"Divider","color":"#0C77E2","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"1c31e821","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","heading_type":"none","posts":1,"css_row_gap":{"unit":"px","size":1,"sizes":[]},"media_ratio_custom":1.15,"separators_cols":"1","css_l_post_bg":"#FFFFFF","title_lines":"3","meta_above":["cat"],"meta_cat_style":"labels","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"14bb3df4","settings":{"_column_size":50,"_inline_size":66.9,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7e4c35d8","settings":{"text":"Divider","color":"#0C77E2A6","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"62ca3639","settings":{"posts":3,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"56c5bf78","settings":{"style":"sm","columns":"4","space_below":"none","title_lines":"3","excerpts":"","media_ratio_custom":1.15,"meta_items_default":"","container_width":50,"offset":4,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3db6a4e6","settings":{"posts":3,"style":"sm","columns":"3","space_below":"none","title_lines":"3","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"meta_cat_style":"labels","container_width":50,"offset":8,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"excerpt_length":18,"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"615e395a","settings":{"_column_size":50,"_inline_size":25.65,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"70cb55c6","settings":{"type":"b","heading":"Tourism*.*","container_width":50,"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"ad63154","settings":{"text":"Divider","color":"#DBE5F3","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"66b399ed","settings":{"posts":1,"columns":"1","space_below":"none","title_lines":"3","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat"],"meta_cat_style":"labels","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":1,"sizes":[]},"separators_cols":"1","css_l_post_bg":"#DBE5F3","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"excerpt_length":18},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3213c32c","settings":{"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#DBE5F3","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"show_media":"","title_lines":"3","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3dc81f6a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6af77165","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"44231265","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/thevoice-daily\/wp-content\/uploads\/sites\/57\/2024\/07\/CityToday-Top.jpg\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"798d4e1b","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#DAE2EA","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"5","bottom":"40","left":"5","isLinked":false}},"elements":[{"id":"12430438","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"594d8679","settings":{"type":"b","heading":"Health & Fitness*.*","container_width":100,"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"54d0add5","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"10","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"71b8e779","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"background_background":"classic","background_color":"#FFFFFF","margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[{"id":"2e733bba","settings":{"columns":"1","space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":47,"heading_more_text":"Read More","heading_more":"b","heading_type":"none","posts":1,"css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["date"],"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"73fc21ea","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"7580072a","settings":{"posts":5,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"3-2","meta_items_default":"","meta_above":["cat","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_tablet":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5d8b9951","settings":{"columns":"5","space_below":"none","container_width":100,"post_ids":[],"tax_ids":[],"skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","post_type":""},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":20,"heading_more_text":"Read More","heading_more":"b","style":"sm","excerpts":"","heading_type":"none","css_row_gap":{"unit":"px","size":0,"sizes":[]},"media_ratio_custom":1.15,"meta_below":["date"],"meta_above":["cat"],"meta_cat_style":"labels","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"posts":5,"title_lines":"3","offset":5,"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"375bc88f","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"5","bottom":"0","left":"5","isLinked":false}},"elements":[{"id":"460eee61","settings":{"_column_size":50,"_inline_size":74.35,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"_inline_size_tablet":70,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"7a783969","settings":{"type":"b","heading":"From around the world*.*","container_width":50,"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"16f08c2d","settings":{"text":"Divider","color":"#CE0A0A","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"54ee8fa2","settings":{"posts":1,"space_below":"none","excerpt_length":30,"media_width":65,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":12,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"media_pos":"right","meta_below":["updated"],"grid_on_sm":"1","css_media_max_width_tablet":{"unit":"px","size":213,"sizes":[]},"css_excerpt_visible_tablet":"none","css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"6cc9dc26","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"custom","offset":1},"elements":[{"id":"748e8581","settings":{"_column_size":50,"_inline_size":33.1,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"5","bottom":"0","left":"0","isLinked":false},"ts_sticky_col":"ts-sticky-native","background_background":"classic","_inline_size_tablet":100,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[{"id":"3ed64e9b","settings":{"columns":"1","space_below":"none","container_width":33,"post_ids":[],"tax_ids":[],"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","offset":1,"sort_by":"","sort_days":30,"sort_order":"","cat":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_items_default":"","exclude_ids":[],"heading":"World News","excerpt_length":18,"heading_more_text":"Read More","heading_more":"b","heading_type":"none","posts":1,"css_row_gap":{"unit":"px","size":1,"sizes":[]},"media_ratio_custom":1.15,"separators_cols":"1","css_l_post_bg":"#FFFFFF","title_lines":"3","meta_above":["cat"],"meta_cat_style":"labels","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"7b615781","settings":{"posts":3,"columns":"1","media_width":26,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":1,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"heading":"Related Articles*.*","space_below":"none","show_media":"","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat","date"],"meta_cat_style":"labels","heading_type":"none","separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":1,"reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"29a94037","settings":{"_column_size":50,"_inline_size":66.9,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_inline_size_tablet":100,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[{"id":"391e76eb","settings":{"posts":2,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":1,"reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"77ec4403","settings":{"text":"Divider","color":"#CE940A","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"73ad1f62","settings":{"posts":1,"space_below":"none","excerpt_length":32,"media_width":26,"media_ratio":"3-2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"excerpts":"","media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FEF9F5","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"show_media":"","meta_below":["author"],"meta_author_img":"1","query_type":"section","skip_posts":6,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":1,"reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"718ef6","settings":{"posts":2,"space_below":"none","excerpt_length":20,"media_width":26,"media_ratio":"4-3","meta_items_default":"","meta_above":["cat","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"media_ratio_custom":1.15,"meta_cat_style":"labels","css_row_gap":{"unit":"px","size":10,"sizes":[]},"separators":"","css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":false},"query_type":"section","skip_posts":7,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":1,"reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"37b4522","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","media_ratio_custom":1.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["date"],"meta_cat_style":"labels","container_width":50,"offset":10,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":10,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_l_post_pad":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"style":"sm","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4c733233","settings":{"_column_size":50,"_inline_size":25.65,"space_between_widgets":0,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"322a81d0","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/thevoice-daily\/wp-content\/uploads\/sites\/57\/2024\/07\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"3d23c938","settings":{"space_below":"none","title_lines":"3","excerpts":"","media_ratio_custom":1.15,"meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Celebrities*.*","css_column_gap":{"unit":"px","size":10,"sizes":[]},"css_row_gap":{"unit":"px","size":15,"sizes":[]},"css_l_post_bg":"#FFFFFF","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#FFFFFF","columns_tablet":"1","css_row_gap_tablet":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"66": [{"id":"5976d42f","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"20","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"41c08429","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"1d9401a4","settings":{"posts":8,"columns":"4","space_below":"none","media_width":25,"media_ratio":"1-1","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_column_gap":{"unit":"px","size":1,"sizes":[]},"css_l_post_pad":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"carousel":"1","carousel_dots":"","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_background_background":"classic","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#D99797","title_lines":"3","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"carousel_slides_md":2,"hide_mobile":"hidden-mobile","css_l_post_border_box_border_type":"yes","css_content_border_box_border_type":"yes","_border_sd_border":"solid","_border_sd_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_sd_color":"#374464","_background_color":"#F9F5F5","_background_sd_background":"classic","_background_sd_color":"#0A1633"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"},{"id":"7ed9357","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"14","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7e999145","settings":{"_column_size":50,"_inline_size":74.922,"_inline_size_tablet":68},"elements":[{"id":"5452903b","settings":{"posts":1,"columns":"1","space_below":"none","title_lines":"5","content_vcenter":"1","media_pos":"right","media_width":67,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"grid_on_sm":"1","css_media_max_width_tablet":{"unit":"px","size":205,"sizes":[]},"css_title_typo_font_size_tablet":{"unit":"px","size":22,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"media_ratio_custom":1.48,"media_ratio_custom_tablet":1,"css_meta_below_margins_tablet":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"css_excerpt_visible_tablet":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"24ea954e","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":25.078,"space_between_widgets":0,"_inline_size_tablet":32},"elements":[{"id":"ada3d93","settings":{"columns":"1","meta_items_default":"","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":1,"space_below":"none","excerpt_length":12,"heading_type":"none","heading":"Featured Posts","css_content_margin":{"unit":"px","top":"-5","right":"0","bottom":"-2","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"title_lines":"3","css_title_typo_typography":"custom","css_title_typo_font_size_tablet":{"unit":"px","size":16,"sizes":[]},"_element_custom_width_tablet":{"unit":"%","size":"","sizes":[]},"_element_custom_width_mobile":{"unit":"%","size":"","sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"321768ca","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#424242","hide_tablet":"hidden-tablet"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"68577d22","settings":{"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_width":27,"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":30,"sizes":[]},"separators_cols":"1","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"-6","left":"-12","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"-7","right":"0","bottom":"-5","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14.5,"sizes":[]},"posts":1,"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_element_custom_width_tablet":{"unit":"%","size":"","sizes":[]},"_element_custom_width_mobile":{"unit":"%","size":"","sizes":[]},"hide_tablet":"hidden-tablet"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1aeb35f5","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"16","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"15","right":0,"bottom":"15","left":0,"isLinked":false}},"elements":[{"id":"4bde99c3","settings":{"_column_size":50,"_inline_size":24.357,"space_between_widgets":0},"elements":[{"id":"76fefcc4","settings":{"text":"Divider","color":"#136DE7","weight":{"unit":"px","size":6,"sizes":[]},"gap":{"unit":"px","size":8,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"87af6c0","settings":{"title":"RELATED NEWS","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"ae510f","settings":{"_column_size":50,"_inline_size":75.643},"elements":[{"id":"8577a63","settings":{"text":"Divider","color":"#E4E4E4","weight":{"unit":"px","size":4,"sizes":[]},"gap":{"unit":"px","size":8,"sizes":[]},"color_sd":"#0A1633"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"79acab44","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"query_type":"custom"},"elements":[{"id":"5570adcc","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12b4e304","settings":{"columns":"4","space_below":"none","title_lines":"3","media_pos":"right","media_ratio":"4-3","container_width":100,"query_type":"section","post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"492e1362","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"568883c6","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"29f9117b","settings":{"columns":"5","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","column_gap":"sm","posts":5,"meta_below":["author","date"],"heading":"News Just In","separators_cols":"1","_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#F3F9FF","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","_background_sd_background":"classic","_background_sd_color":"#0A1633","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"style":"sm","heading_more_text":"View More","heading_more":"b","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/national-press\/category\/example-1\/","_border_sd_border":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4a30fc42","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"26436ad0","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4d596cf8","settings":{"heading":"World Politics","container_width":100,"type":"e2","more_text":"More from Politics","more":"b","more_link":"https:\/\/smartmag.theme-sphere.com\/national-press\/category\/example-1\/"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"2253b4f","settings":{"gutter":"default","gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"133603ad","settings":{"_column_size":33,"_inline_size":36,"space_between_widgets":0,"_inline_size_tablet":50},"elements":[{"id":"538c0420","settings":{"columns":"1","meta_items_default":"","meta_below":["cat","author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":1,"space_below":"none","excerpt_length":30,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_tablet":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"179352ee","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#424242"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"2b376054","settings":{"posts":1,"columns":"1","space_below":"none","title_lines":"4","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":35,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"query_type":"section","skip_posts":1,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"5a755323","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#424242"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"77844ce0","settings":{"posts":1,"columns":"1","space_below":"none","title_lines":"4","excerpt_length":21,"content_vcenter":"1","media_pos":"right","show_media":"","media_width":35,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"media_ratio":"3-2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"query_type":"section","skip_posts":2,"section_data":{"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"5dc9a332","settings":{"columns":"2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","excerpts":"","column_gap":"sm","query_type":"section","skip_posts":3,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"style":"sm","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"48496054","settings":{"_column_size":33,"add_separator":"el-col-sep","_inline_size":37,"space_between_widgets":0,"_inline_size_tablet":50},"elements":[{"id":"6f7aeb5e","settings":{"columns":"1","meta_items_default":"","meta_below":["cat","author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":1,"space_below":"none","excerpt_length":30,"media_location":"below","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"query_type":"section","skip_posts":7,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_tablet":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3180e52","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#424242"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"24f88076","settings":{"posts":2,"columns":"2","space_below":"none","title_lines":"3","excerpts":"","content_vcenter":"1","media_pos":"right","show_media":"","media_width":35,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"media_ratio":"3-2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"query_type":"section","skip_posts":8,"section_data":{"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"7e052ba7","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#424242"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"1919bc26","settings":{"columns":"1","space_below":"none","title_lines":"4","content_vcenter":"1","media_pos":"right","media_width":35,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"excerpt_length":11,"css_row_gap":{"unit":"px","size":40,"sizes":[]},"query_type":"section","skip_posts":10,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"78ec45f7","settings":{"_column_size":33,"add_separator":"el-col-sep","_inline_size":26.664,"space_between_widgets":0,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"37c167cd","settings":{"columns":"1","meta_items_default":"","meta_below":["cat","author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":1,"space_below":"none","excerpt_length":22,"heading_type":"none","heading":"Featured Posts","query_type":"section","skip_posts":14,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"1845d099","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":16,"sizes":[]},"color_sd":"#424242"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"437b0086","settings":{"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_width":27,"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":30,"sizes":[]},"separators_cols":"1","css_content_margin":{"unit":"px","top":"0","right":"-10","bottom":"0","left":"0","isLinked":false},"css_meta_above_margins":{"unit":"px","top":"-7","right":"0","bottom":"-5","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":14.5,"sizes":[]},"media_pos":"right","query_type":"section","skip_posts":15,"section_data":{"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"6f2d87b8","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#424242"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"1076d3d3","settings":{"posts":3,"columns":"1","space_below":"none","title_lines":"4","excerpt_length":14,"content_vcenter":"1","media_pos":"right","show_media":"","media_width":35,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"media_ratio":"3-2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_row_gap":{"unit":"px","size":15,"sizes":[]},"query_type":"section","skip_posts":19,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"5c3a3d79","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"593fab9f","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"8","bottom":"0","left":"8","isLinked":false},"border_color":"#136DE7"},"elements":[{"id":"5f627c39","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"4791bd38","settings":{"_column_size":50,"_inline_size":10},"elements":[{"id":"7212b438","settings":{"text":"Divider","color":"#136DE7","weight":{"unit":"px","size":8,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"7cfd2f86","settings":{"_column_size":50,"_inline_size":90},"elements":[{"id":"1a2830a4","settings":{"width":{"unit":"%","size":75,"sizes":[]},"align":"right","text":"Divider","color":"#136DE7","weight":{"unit":"px","size":8,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5579ed46","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"4bd5cf6e","settings":{"_column_size":50,"_inline_size":40,"space_between_widgets":0},"elements":[{"id":"1bfa6a27","settings":{"title":"Sign up to our daily Newsletter, get the latest news and revies from our specialist writers","typography_typography":"custom","typography_font_size":{"unit":"px","size":24,"sizes":[]},"typography_font_weight":"600","_padding":{"unit":"px","top":"35","right":"25","bottom":"35","left":"25","isLinked":false},"typography_line_height":{"unit":"px","size":28,"sizes":[]},"text_stroke_text_stroke":{"unit":"px","size":1,"sizes":[]},"text_stroke_stroke_color":"#444444"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1e198671","settings":{"_column_size":50,"_inline_size":60,"space_between_widgets":0},"elements":[{"id":"6c8bcc73","settings":{"headline":"","message":"","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","fields_style":"inline","_margin":{"unit":"px","top":"15","right":"25","bottom":"0","left":"0","isLinked":false},"container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1db8e779","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"1c0125dd","settings":{"_column_size":50,"_inline_size":10},"elements":[{"id":"1ba870bb","settings":{"text":"Divider","color":"#136DE7","weight":{"unit":"px","size":8,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"14fbeed2","settings":{"_column_size":50,"_inline_size":90},"elements":[{"id":"51bc86f6","settings":{"width":{"unit":"%","size":75,"sizes":[]},"align":"right","text":"Divider","color":"#136DE7","weight":{"unit":"px","size":8,"sizes":[]},"gap":{"unit":"px","size":0,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3060bacc","settings":{"gap":"no","margin":{"unit":"px","top":"50","right":0,"bottom":"50","left":0,"isLinked":false},"gutter":"default","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"post_ids":[],"tax_ids":[],"structure":"20","query_type":"custom","exclude_ids":[],"background_background":"classic","background_color":"#F3F9FF","background_sd_background":"classic","background_sd_color":"#FFFFFF08"},"elements":[{"id":"27f3d810","settings":{"_column_size":50,"_inline_size":40,"_inline_size_tablet":100},"elements":[{"id":"66b2b4af","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"media_ratio_custom":0.9,"exclude_ids":[],"css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3fb0290c","settings":{"_column_size":50,"_inline_size":60,"_inline_size_tablet":100,"background_background":"classic"},"elements":[{"id":"9659d54","settings":{"excerpts":"","media_ratio":"3-2","container_width":50,"post_ids":[],"tax_ids":[],"space_below":"none","title_lines":"3","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"meta_cat_style":"labels","cat_labels":"0","cat_labels_pos":"bot-center","content_center":"1","exclude_ids":[],"posts":6,"columns":"3","meta_items_default":"","column_gap":"sm","style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3298f8b0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile"},"elements":[{"id":"4aee696c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"514125db","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/national-press\/wp-content\/uploads\/sites\/55\/2024\/07\/Mid-NationalPress.jpg\" width=\"970\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"3abd74ec","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"16dc503e","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"1327313c","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"3c01779c","settings":{"_column_size":50,"_inline_size":70,"space_between_widgets":0},"elements":[{"id":"3b613c2a","settings":{"heading":"Business News","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"47cd4963","settings":{"columns":"1","meta_items_default":"","meta_below":["cat","author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":1,"space_below":"none","excerpt_length":40,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_tablet":{"unit":"px","size":24,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5f5352e9","settings":{"columns":"3","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":3,"space_below":"none","excerpt_length":14,"column_gap":"sm","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"style":"sm","excerpts":"","meta_above":["cat"],"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"cc794f3","settings":{"_column_size":50,"_inline_size":30,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"3cda780d","settings":{"heading":"Economy","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"53b005de","settings":{"columns":"1","meta_items_default":"","meta_above":["author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","excerpts":"","content_center":"1","_padding":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#9FB0D7","posts":3,"style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"8aa0091","settings":{"heading":"Forex & Markets","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"6bde63ce","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#0A1633","background_color_b":"#142857","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"query_type":"custom"},"elements":[{"id":"73bd8202","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"69a03aea","settings":{"posts":1,"columns":"1","space_below":"none","title_lines":"4","content_vcenter":"1","media_pos":"right","media_width":67,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"scheme":"dark","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"grid_on_sm":"1","css_media_max_width_tablet":{"unit":"px","size":350,"sizes":[]},"media_ratio_custom_tablet":1.3,"css_title_typo_font_size_tablet":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"2d77d365","settings":{"text":"Divider","color":"#3C4C63","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"2242f1a1","settings":{"posts":2,"columns":"2","space_below":"none","title_lines":"4","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":35,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"media_ratio":"4-3","meta_items_default":"","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"scheme":"dark","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"34f83f84","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"6b7c5759","settings":{"_column_size":50,"_inline_size":70,"space_between_widgets":0},"elements":[{"id":"3ecdff8d","settings":{"columns":"1","meta_items_default":"","meta_below":["cat","author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":1,"space_below":"none","excerpt_length":40,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":26,"sizes":[]},"heading":"International Markets","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_title_typo_font_size_mobile":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"24b30fde","settings":{"columns":"3","meta_items_default":"","meta_below":["author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":3,"space_below":"none","excerpt_length":14,"column_gap":"sm","_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"style":"sm"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"48bddfdf","settings":{"posts":2,"columns":"2","space_below":"none","title_lines":"3","excerpts":"","content_vcenter":"1","media_pos":"right","show_media":"","media_width":35,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"media_ratio":"3-2","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators_cols":"1","css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_l_post_pad":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_background_background":"classic","_background_color":"#E9F2FB","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#C8DEF5","_border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_background_sd_background":"classic","_background_sd_color":"#1F1F1F","query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"css_row_gap_mobile":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"6c1b9442","settings":{"posts":2,"columns":"1","space_below":"none","title_lines":"4","content_vcenter":"1","media_width":32,"css_media_max_width":{"unit":"px","size":833,"sizes":[]},"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"6","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_row_gap":{"unit":"px","size":40,"sizes":[]},"query_type":"section","skip_posts":6,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1ddac2e8","settings":{"_column_size":50,"_inline_size":30,"space_between_widgets":0},"elements":[{"id":"216ebb1b","settings":{"heading":"Opinion","css_bhead_color":"#C34444","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5d191ce7","settings":{"columns":"1","meta_items_default":"","meta_above":["author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","excerpts":"","content_center":"1","media_ratio":"1-1","css_media_radius":100,"css_l_post_pad":{"unit":"px","top":"0","right":"42","bottom":"0","left":"42","isLinked":false},"css_content_margin":{"unit":"px","top":"0","right":"-42","bottom":"0","left":"-42","isLinked":false},"_padding":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#9FB0D7","style":"sm","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6e531616","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/national-press\/wp-content\/uploads\/sites\/55\/2024\/07\/smartmag-sports.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"6e130093","settings":{"_column_size":33,"is_sidebar":"main-sidebar","add_separator":"el-col-sep","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"3a4f503b","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/national-press\/wp-content\/uploads\/sites\/55\/2024\/07\/Tall-Woman.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"6b2ffe67","settings":{"columns":"1","meta_items_default":"","meta_below":["cat","author"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"posts":5,"space_below":"none","excerpt_length":13,"numbers":"b","heading":"Top Trending","columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"4ba06797","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"5dfac2da","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4d13a374","settings":{"columns":"5","meta_items_default":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"space_below":"none","column_gap":"sm","posts":5,"meta_below":["author","date"],"heading":"Don't Miss!","separators_cols":"1","_padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_background_background":"classic","_background_color":"#F3F9FF","_border_border":"solid","_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","excerpt_length":14,"_background_sd_background":"classic","_background_sd_color":"#0A1633","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":"","query_id":"","exclude_current":false},"style":"sm","title_lines":"3","heading_more_text":"View More","heading_more":"b","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/national-press\/category\/example-2\/","_border_sd_border":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"50001": [{"id":"2ee0983d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#121418","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"is_dark_section":"s-dark"},"elements":[{"id":"1c096dee","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"cde4d86","settings":{"add_label":"","label_text":"You are at:","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-breadcrumbs","elType":"widget"},{"id":"1706cd68","settings":{"heading":"Our PIcks","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":5,"sizes":[]},"container_width":100,"__dynamic__":{"heading":"[elementor-tag id=\"3f91f7f\" name=\"archive-title\" settings=\"%7B%7D\"]"},"type":"c","css_bhead_border_color":"#3B3B3B","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"ad54465","settings":{"posts":1,"scheme":"dark","space_below":"none","excerpts":"","media_pos":"right","media_width":62,"media_ratio":"16-9","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_padding":{"unit":"%","top":"3","right":"0","bottom":"5","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"grid_on_sm":"1","css_title_typo_font_size_tablet":{"unit":"px","size":27,"sizes":[]},"content_vcenter":"1","css_content_pad_tablet":{"unit":"%","top":"2","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_pad_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_title_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"40a6e938","settings":{"posts":3,"scheme":"dark","style":"stylish","columns":"3","space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","media_ratio":"3-2","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"offset":1,"css_title_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"45e2f49","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"56a2845c","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"47462f56","settings":{"posts":10,"pagination_type":"load-more","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Posts","space_below":"sm","title_lines":"2","excerpt_length":22,"content_vcenter":"1","media_width":43,"media_ratio":"4-3","read_more":"basic","heading_type":"none","css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"pagination":"1","skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"offset":4,"grid_on_sm":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"62401d7e","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7e530569","settings":{"sidebar":"smartmag-primary"},"elements":[],"isInner":false,"widgetType":"sidebar","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"206fd0a2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"55","right":0,"bottom":"70","left":0,"isLinked":false}},"elements":[{"id":"3cc284cb","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7cc9a67e","settings":{"columns":"4","space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","media_ratio":"1-1","numbers":"c","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"More From Site","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":3,"query_type":"custom","sort_by":"comments"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"51001": [{"id":"39eb9e53","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#212121","is_dark_section":"s-dark","margin":{"unit":"px","top":"65","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"60","right":"0","bottom":"40","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"2a4c192a","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"5dc7ec9a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"314085c7","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"482eeea","settings":{"image":{"url":"https:\/\/smartmag.theme-sphere.com\/smart-times\/wp-content\/uploads\/sites\/30\/2022\/03\/[email protected]","id":3540,"alt":"","source":"library"},"image_size":"full","align":"left","width":{"unit":"px","size":250,"sizes":[]},"width_tablet":{"unit":"px","size":"","sizes":[]},"width_mobile":{"unit":"px","size":"","sizes":[]},"align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"21","left":"0","isLinked":false},"link_to":"custom","__dynamic__":{"link":"[elementor-tag id=\"2e430ca\" name=\"site-url\" settings=\"%7B%7D\"]"}},"elements":[],"isInner":false,"widgetType":"image","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"44004672","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6686c203","settings":{"brand_colors":"","services":["facebook","twitter","pinterest","vimeo","whatsapp","tiktok","instagram"],"css_align":"right","css_icon_size":{"unit":"px","size":17,"sizes":[]},"css_spacing":{"unit":"px","size":12,"sizes":[]},"css_colors":"#EFEFEF","_element_vertical_align":"center","container_width":33,"css_icon_size_mobile":{"unit":"px","size":16,"sizes":[]},"css_spacing_mobile":{"unit":"px","size":10,"sizes":[]},"css_align_mobile":"center"},"elements":[],"isInner":false,"widgetType":"smartmag-socialicons","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"3f08d451","settings":{"text":"Divider","color":"#FFFFFF30","gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"396694a7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"40","margin":{"unit":"px","top":"25","right":0,"bottom":"25","left":0,"isLinked":true}},"elements":[{"id":"4999319d","settings":{"_column_size":25,"_inline_size":20,"space_between_widgets":20,"_inline_size_tablet":33.333,"_inline_size_mobile":50},"elements":[{"id":"22cef195","settings":{"type":"b","heading":"News ","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":0,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7998940c","settings":{"view":"vertical","links_list":[{"text":"World","_id":"19f3065","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"US Politics","_id":"287f02b","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"EU Politics","_id":"cc07d9f","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"44134bc","text":"Business","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d64ee3c","text":"Opinions","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"009e2d2","text":"Connections","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"fb097c5","text":"Science","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":10,"sizes":[]},"item_typography_typography":"custom"},"elements":[],"isInner":false,"widgetType":"ts-links-list","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"15e6ab5a","settings":{"_column_size":25,"_inline_size":20,"_inline_size_tablet":33.333,"_inline_size_mobile":50},"elements":[{"id":"70ed4a19","settings":{"type":"b","heading":"Company","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":0,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"589adcd2","settings":{"view":"vertical","links_list":[{"text":"Information","_id":"19f3065","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Advertising","_id":"287f02b","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"44134bc","text":"Classified Ads","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d64ee3c","text":"Contact Info","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Do Not Sell Data","_id":"cc07d9f","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"009e2d2","text":"GDPR Policy","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"fb097c5","text":"Media Kits","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}}],"item_typography_typography":"custom","space_between":{"unit":"px","size":10,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"ts-links-list","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"51b423cb","settings":{"_column_size":25,"_inline_size":20,"_inline_size_tablet":33.33333,"margin_mobile":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"18dc805d","settings":{"type":"b","heading":"Services","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":15,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":0,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"40d57795","settings":{"view":"vertical","links_list":[{"text":"Subscriptions","_id":"19f3065","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Customer Support","_id":"287f02b","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"44134bc","text":"Bulk Packages","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d64ee3c","text":"Newsletters","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Sponsored News","_id":"cc07d9f","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"009e2d2","text":"Work With Us","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"fb097c5","text":"","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}}],"item_typography_typography":"custom","space_between":{"unit":"px","size":10,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"ts-links-list","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"16771288","settings":{"_column_size":25,"_inline_size":40,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6d2b97ed","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","scheme":"dark","fields_style":"inline","align":"left","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":19,"sizes":[]},"css_message_typo_typography":"custom","css_message_typo_font_size":{"unit":"px","size":14,"sizes":[]},"_margin":{"unit":"px","top":"-12","right":"0","bottom":"0","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"791f7679","settings":{"text":"Divider","color":"#FFFFFF30","gap":{"unit":"px","size":20,"sizes":[]},"gap_mobile":{"unit":"px","size":10,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5ef1d997","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"10","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"7b255876","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"18900305","settings":{"text_color":"#ABABAB","typography_typography":"custom","typography_font_size":{"unit":"px","size":13,"sizes":[]},"__dynamic__":{"editor":"[elementor-tag id=\"4d78cf1\" name=\"ts-copyright\" settings=\"%7B%7D\"]"},"align_tablet":"center"},"elements":[],"isInner":false,"widgetType":"text-editor","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"4c2957e8","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6440fb44","settings":{"links_list":[{"text":"Privacy Policy","_id":"8a07899","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Terms","_id":"ecc5622","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Accessibility","_id":"a2f84d8","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":30,"sizes":[]},"text_align":"right","divider":"yes","divider_height":{"unit":"px","size":12,"sizes":[]},"text_color":"#D3D3D3","item_typography_typography":"custom","item_typography_font_size":{"unit":"px","size":13,"sizes":[]},"text_align_tablet":"center","_margin_mobile":{"unit":"px","top":"15","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"ts-links-list","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"500": [{"id":"55ced63","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3485cea0","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"19eaaa89","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Grid Block - 2 Columns"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"44c935f1","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"501": [{"id":"754011ad","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"1e905698","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"19eaaa88","settings":{"container_width":100,"post_ids":[],"tax_ids":[],"heading":"Grid Block - 2 Columns"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"502": [{"id":"55ced64","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3485cea1","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3c05217a","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Grid Small  3 Cols ","posts":6,"style":"sm","columns":"3","title_lines":"2","excerpts":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"44c935f2","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"503": [{"id":"17c6e7b1","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"31b084a9","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"78412a13","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[{"id":"7d2f25cd","settings":{"columns":"1","excerpts":"","numbers":"a","meta_items_default":"","meta_below":["author","date","comments"],"container_width":33,"post_ids":[],"tax_ids":[],"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"504": [{"id":"3b90437b","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"6de11cb4","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"145003da","settings":{"columns":"2","excerpts":"","numbers":"a","meta_items_default":"","meta_below":["author","date","comments"],"container_width":33,"post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"505": [{"id":"9fd44ee","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"cdd3b81","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"17e3ff2","settings":{"media_location":"below","container_width":66,"post_ids":[],"tax_ids":[]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"41467663","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"506": [{"id":"2d8a1179","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"6431bd22","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"66079975","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"title_lines":"3","excerpt_length":20,"heading":"*Focus* Grid","heading_more_text":"See More >","heading_colors":"force"},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7e14539e","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"507": [{"id":"24c54667","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"318e2d47","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"64bc24d6","settings":{"container_width":"100","post_ids":[],"tax_ids":[],"title_lines":"3","excerpt_length":20,"heading":"*Focus* Grid Full","heading_more_text":"See More >","read_more":"btn","heading_colors":"force","css_title_typo_typography":"custom"},"elements":[],"isInner":false,"widgetType":"smartmag-focusgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"508": [{"id":"5bbb9f8e","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"22670e04","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2a7bd8f6","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*News* Focus","separators":"1","filters":"category"},"elements":[],"isInner":false,"widgetType":"smartmag-newsfocus","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"24ec49a6","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"509": [{"id":"28da4e7a","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"2abb921a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"3fb7a835","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"15986a51","settings":{"columns":"1","excerpt_length":9,"container_width":33,"post_ids":[],"tax_ids":[],"heading":"Highlights","separators":"1","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"510": [{"id":"365143d6","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"26aed1d1","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6ba1ede0","settings":{"columns":"2","container_width":33,"post_ids":[],"tax_ids":[],"heading":"Highlights","posts":6,"title_lines":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"21729c7a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"511": [{"id":"779c3a6d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"1bf65911","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4f771226","settings":{"posts":6,"columns":"2","container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*Small* Posts"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"73732b3d","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"512": [{"id":"a2c592e","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"38a969a6","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5cecde09","settings":{"posts":6,"columns":"2","media_pos":"right","media_ratio":"4-3","container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*Small* Posts"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"61ebc44","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"513": [{"id":"5f6571d3","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"24f7f220","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"53e30db6","settings":{"media_ratio":"1-1","container_width":"66","post_ids":[],"tax_ids":[],"heading":"Overlay Block"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"67b84b2a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"514": [{"id":"33d7e1fb","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"5f74064b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"96f1c2b","settings":{"columns":"4","media_ratio":"3-4","meta_items_default":"","meta_below":["author","date"],"container_width":"100","post_ids":[],"tax_ids":[],"heading":"Overlay Block"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"515": [{"id":"717c625e","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"1b9f3a31","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2e0f8009","settings":{"columns":"4","cat_labels":"0","media_ratio":"3-4","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":"100","post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"516": [{"id":"4c69b738","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3223c5e","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8f33cde","settings":{"posts":3,"columns":"3","cat_labels":"0","media_ratio":"3-2","meta_items_default":"","meta_below":["date"],"container_width":"66","post_ids":[],"tax_ids":[],"heading":"Overlay Block","css_column_gap":{"unit":"px","size":2,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"169fb56d","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"517": [{"id":"40234479","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3801178f","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b905cb2","settings":{"pagination":"1","pagination_type":"load-more","container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"*List* Block"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4bb36f17","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"518": [{"id":"5142b469","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"2de6844","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d7da145","settings":{"container_width":"100","post_ids":[],"tax_ids":[],"style":"sm","excerpt_length":38,"read_more":"btn","content_vcenter":"1","css_media_margin":{"unit":"px","size":32,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"pagination":"1","pagination_type":"load-more","css_media_margin_tablet":{"unit":"px","size":25,"sizes":[]},"css_media_margin_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"519": [{"id":"16108943","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"1569a9b3","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1f716916","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"Latest","posts":6,"excerpts":"","heading_type":"none","heading_colors":"force","cat_labels":"0","media_width":29.94923858,"css_media_max_width":{"unit":"%","size":"","sizes":[]},"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","comments"],"read_more":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"c2c7521","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"520": [{"id":"1ad49886","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"616e1eab","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"167e5a99","settings":{"posts":5,"space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","heading":"","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"521": [{"id":"1ad49886","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"616e1eab","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"167e5a99","settings":{"posts":5,"space_below":"none","grid_width":"viewport","post_ids":[],"tax_ids":[],"heading_type":"none","heading":"","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"522": [{"id":"3fe92d7a","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":0,"right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"2d7ad0a","settings":{"_column_size":100,"_inline_size":null,"content_position":"bottom"},"elements":[{"id":"6f30dc51","settings":{"grid_type":"grid-b","space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"523": [{"id":"3550c81d","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"31384118","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"498ceefd","settings":{"posts":3,"grid_type":"grid-b","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","tags":[],"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"524": [{"id":"3fe92d7a","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"2d7ad0a","settings":{"_column_size":100,"_inline_size":null,"content_position":"bottom"},"elements":[{"id":"6f30dc51","settings":{"grid_type":"grid-b","space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"525": [{"id":"36034e21","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":0,"right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"6f50b74b","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6133b2a1","settings":{"grid_type":"grid-c","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","tags":[],"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"526": [{"id":"3fa17ac0","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"4389fe11","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"eb6794e","settings":{"grid_type":"grid-d","space_below":"none","post_ids":[],"tax_ids":[],"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"527": [{"id":"44da2866","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":0,"right":0,"bottom":"60","left":0,"isLinked":true},"layout":"full_width"},"elements":[{"id":"5143a75f","settings":{"_column_size":100,"_inline_size":null,"content_position":"bottom"},"elements":[{"id":"64369900","settings":{"grid_type":"grid-d","space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","container_width":100,"grid_width":"viewport","has_ratio":"","css_title_typo_md_font_size":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"528": [{"id":"772b3b22","settings":{"layout":"full_width","gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"2e11ee6e","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"14e0fed8","settings":{"grid_type":"grid-eq1","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","tags":[],"space_below":"none","posts":1,"content_position":"bot-center","css_title_size_lg":38,"css_title_typo_lg_font_size":{"unit":"px","size":38,"sizes":[]},"css_title_max_width":{"unit":"px","size":820,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"529": [{"id":"20d561e0","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"50d739d","settings":{"_column_size":100,"_inline_size":null,"content_position":"bottom"},"elements":[{"id":"62d13e5f","settings":{"grid_type":"grid-eq2","space_below":"none","terms":[],"post_ids":[],"tax_ids":[],"heading_type":"none","container_width":100,"posts":2,"overlay_style":"b","content_position":"center","css_grid_gap":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"530": [{"id":"224b85fa","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"4d7f1dc1","settings":{"_column_size":100,"_inline_size":null,"content_position":"bottom"},"elements":[{"id":"47963008","settings":{"grid_type":"grid-eq3","space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","container_width":100,"posts":3,"css_grid_gap":{"unit":"px","size":3,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"531": [{"id":"57ccdd18","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"layout":"full_width","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"3f209fdb","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7edd2ae","settings":{"grid_type":"grid-eq3","grid_width":"viewport","post_ids":[],"tax_ids":[],"container_width":100,"has_ratio":"","tags":[],"space_below":"none","posts":3,"content_position":"bot-center","css_title_typo_md_typography":"custom","css_title_typo_md_font_size_tablet":{"unit":"px","size":22,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"532": [{"id":"47b0b612","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":0,"right":0,"bottom":"60","left":0,"isLinked":false},"layout":"full_width"},"elements":[{"id":"64739525","settings":{"_column_size":100,"_inline_size":null,"content_position":"bottom"},"elements":[{"id":"4a58d104","settings":{"grid_type":"grid-eq4","grid_width":"viewport","space_below":"none","has_ratio":"","terms":[],"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"Grid Style 1","css_grid_gap":{"unit":"px","size":1,"sizes":[]},"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"533": [{"id":"3b924ae6","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true}},"elements":[{"id":"315cd04b","settings":{"_column_size":100,"_inline_size":null,"content_position":"bottom"},"elements":[{"id":"392ebc3","settings":{"grid_type":"grid-eq3","space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","css_grid_gap":{"unit":"px","size":6,"sizes":[]},"container_width":100,"posts":6,"css_media_ratio":0.75,"overlay_style":"b","content_position":"center","css_title_size_md":22},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"534": [{"id":"22cecdfb","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3878b9b","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"224ef035","settings":{"container_width":66,"post_ids":[],"tax_ids":[],"carousel":"1","carousel_dots":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"74ce2918","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"535": [{"id":"2afe8f8c","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#202020","margin":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"60","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"4cfc88ca","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"191bad6e","settings":{"title":"Grid 3 Cols + Carousel","title_color":"#FBFBFB","container_width":100},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"3625bc1a","settings":{"posts":9,"scheme":"dark","columns":"3","space_below":"none","container_width":100,"post_ids":[],"tax_ids":[],"title_lines":"2","carousel":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"536": [{"id":"29c2502c","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"b35be19","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7c95d544","settings":{"posts":6,"columns":"3","media_ratio":"1-1","container_width":100,"post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":3,"sizes":[]},"carousel":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"537": [{"id":"1babfaf9","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"90","right":0,"bottom":"90","left":0,"isLinked":true}},"elements":[{"id":"3e5a06b9","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2c2fbe1b","settings":{"posts":9,"columns":"3","media_ratio":"4-3","container_width":66,"post_ids":[],"tax_ids":[],"separators":"","carousel":"1","carousel_autoplay":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"538": [{"id":"5f47eb0d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","exclude_ids":[]},"elements":[{"id":"3aa06ba9","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7918c0","settings":{"pagination_type":"load-more","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Tech* News","space_below":"none","excerpt_length":16,"media_width":48,"media_ratio":"3-2","read_more":"basic","meta_items_default":"","meta_above":["cat"],"css_row_gap":{"unit":"px","size":2,"sizes":[]},"separators":"","css_content_pad":{"unit":"%","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_weight":"600","cat":"3","heading_colors":"none","heading_more_text":"View More >","heading_more_link":"#","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"title_lines":"3","css_row_gap_mobile":{"unit":"px","size":20,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"537c30ca","settings":{"_column_size":33,"is_sidebar":"main-sidebar","sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"539": [{"id":"296455cd","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"134d261e","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"40b4f247","settings":{"posts":5,"pagination_type":"load-more","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Latest Posts","space_below":"sm","title_lines":"2","excerpt_length":22,"content_vcenter":"1","media_width":43,"media_ratio":"4-3","read_more":"basic","heading_type":"none","css_row_gap":{"unit":"px","size":0,"sizes":[]},"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"pagination":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5b481de7","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"540": [{"id":"5faddb46","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"1ab4b59a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5f107fdb","settings":{"gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#EFEFEF","background_sd_background":"classic","background_sd_color":"#393939","border_border":"solid","border_width":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"#9B61BC","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"779a80c7","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"border_color":"#00000012","padding":{"unit":"px","top":"25","right":"35","bottom":"30","left":"35","isLinked":false},"padding_mobile":{"unit":"px","top":"20","right":"24","bottom":"25","left":"24","isLinked":false}},"elements":[{"id":"1ee5ee3f","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"16-9","meta_items_default":"","meta_below":["cat","date"],"meta_cat_style":"text","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"b","heading":"Top Posts","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_line_height":{"unit":"em","size":1.4,"sizes":[]},"css_title_padding":{"unit":"%","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_typo_font_weight":"bold","css_bhead_typo_text_transform":"none","css_bhead_typo_letter_spacing":{"unit":"px","size":-0.1,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":14,"sizes":[]},"css_bhead_color":"#DC2446","_border_border":"solid","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"query_type":"section","css_format_icon_size_mobile":0.8,"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_media_height_mobile":{"unit":"px","size":240,"sizes":[]},"post_formats_pos":"top-right"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"1039a99e","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"_border_border":"solid","query_type":"section","css_row_gap_mobile":{"unit":"px","size":24,"sizes":[]},"skip_posts":1,"section_data":{"query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"1e84312a","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"541": [{"id":"7f6b9ebc","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"45","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"7ce87331","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"14226018","settings":{"columns":"4","space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","media_ratio":"1-1","numbers":"c","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Our Picks","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"542": [{"id":"34e1a159","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"55","right":0,"bottom":"55","left":0,"isLinked":true}},"elements":[{"id":"5bc64597","settings":{"_column_size":66,"_inline_size":null,"space_between_widgets":0,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"31b50a54","settings":{"heading":"Most Recent","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"70ac75c4","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"662ea537","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"32104d15","settings":{"columns":"1","space_below":"sm","cat_labels_pos":"top-right","excerpt_length":19,"read_more":"none","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"carousel_dots":"","carousel_autoplay":"1","_background_background":"classic","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"_border_color":"#E8E8E8","heading":"Trending *Now*","posts":1,"heading_type":"none","meta_items_default":"","meta_below":["author","date"],"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1c5f4e0b","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"2a0446d5","settings":{"columns":"2","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","heading_colors":"none","heading":"Editors' Choice","exclude_ids":[],"cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"posts":2,"space_below":"none","offset":1,"column_gap":"sm","reviews":"bars","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"70268fdf","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#444444"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"f2e8a36","settings":{"columns":"1","title_lines":"2","media_width":50,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"4-3","meta_items_default":"","meta_below":["date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Block","separators":"","posts":2,"offset":3,"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"17cf1751","settings":{"_column_size":33,"_inline_size":null,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"543": [{"id":"16defd1d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"hide_mobile":"hidden-mobile"},"elements":[{"id":"7b5e222e","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EDEDED","background_sd_background":"classic","background_sd_color":"#FFFFFF0F","border_sd_border":"solid","border_sd_color":"#FFFFFF21"},"elements":[{"id":"12caa3de","settings":{"posts":3,"columns":"3","space_below":"none","title_lines":"2","media_width":40,"media_pos":"right","meta_items_default":"","meta_above":["cat"],"meta_below":["read_time"],"meta_cat_style":"labels","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":4,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"544": [{"id":"1da3933d","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"35","right":"0","bottom":"35","left":"0","isLinked":false},"exclude_ids":[],"background_background":"classic","background_color":"#F7F5F5","background_sd_background":"classic","background_sd_color":"#383838"},"elements":[{"id":"41c95086","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"63ba57bf","settings":{"columns":"5","title_lines":"3","excerpts":"","excerpt_length":13,"media_ratio":"1-1","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Editor's Picks","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","posts":5,"space_below":"none","meta_items_default":"","css_media_radius":300,"numbers":"b","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"columns_mobile":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"545": [{"id":"6b6491a3","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"690d0c2f","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"28ea787b","settings":{"columns":"3","title_lines":"3","excerpts":"","excerpt_length":13,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Our Picks","css_bhead_line_weight":4,"css_bhead_line_color":"#E53030","space_below":"none","column_gap":"sm","posts":6,"style":"stylish","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"600","terms":["707"]},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"546": [{"id":"666d2db4","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"25","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"31e9a72","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6afb4512","settings":{"columns":"4","excerpts":"","media_ratio":"3-2","space_below":"none","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading":"Celebs News","title_lines":"2","css_title_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"posts":8,"exclude_ids":[],"css_column_gap":{"unit":"px","size":1,"sizes":[]},"css_l_post_bg":"#F2F3FD","css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"carousel":"1","css_l_post_radius":8,"css_l_post_bg_sd":"#252323","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"heading_more_text":"View More","heading_more":"b","heading_more_link":"https:\/\/smartmag.theme-sphere.com\/magazine-co\/category\/example-2\/celebs\/"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"547": [{"id":"3640c7d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"7e9b132a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"76f93897","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"30d6b983","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"461de4bd","settings":{"heading":"Diet & Health","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"41856dc2","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading":"","container_width":"50","cat_labels_pos":"top-right","exclude_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","read_time"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"posts":1,"excerpt_length":18,"content_vcenter":"1","media_width":65.5,"css_media_max_width":{"unit":"%","size":65.5,"sizes":[]},"css_media_max_width_tablet":{"unit":"%","size":"","sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":"","sizes":[]},"media_ratio":"3-2","css_l_post_bg":"#252424","css_content_pad":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"read_more":"none","scheme":"dark","css_l_post_border_box_border_type":"yes","css_l_post_border_border":"solid","css_l_post_border_color":"#E8E8E8","css_l_post_radius":8,"_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"heading_type":"none","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false},"css_excerpt_visible_tablet":"none","css_excerpt_visible_mobile":"block","css_excerpt_visible_tablet_extra":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"56a4c648","settings":{"columns":"4","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"55","left":"0","isLinked":false},"offset":1,"css_title_typo_font_size_tablet":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"3fb1a097","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"548": [{"id":"3640c7d","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"7e9b132a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"76f93897","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"30d6b983","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"9dd49ee","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"372fec56","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"d3e6390","settings":{"posts":2,"columns":"2","space_below":"none","excerpts":"","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Lifestyle","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"294793c2","settings":{"text":"Divider","color":"#E8E8E8","_padding":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"2c00303e","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":2,"_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"3fb1a097","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"549": [{"id":"446a8559","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"3702c58f","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"5e8d7ae0","settings":{"columns":"2","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"offset":1,"show_post_formats":"","style":"card","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-left","css_l_post_radius":10,"css_title_margin":{"unit":"px","top":"14","right":0,"bottom":"14","left":0,"isLinked":true},"css_cat_labels_margins":{"unit":"px","top":"0","right":"0","bottom":"-1","left":"24","isLinked":false},"skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"heading_type":"none","reviews":"radial","query_type":"section","css_row_gap":{"unit":"px","size":25,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4c05a553","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","_inline_size":null},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"550": [{"id":"ecc4cf7","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"541154b","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"5ab8a556","settings":{"pagination_type":"load-more","cat_labels":"1","cat_labels_pos":"bot-left","excerpt_length":22,"content_vcenter":"1","grid_on_sm":"1","media_width":36,"media_ratio":"custom","media_ratio_custom":1.3,"meta_author_img":"1","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_l_post_shadow_box_shadow":{"horizontal":0,"vertical":2,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.09)"},"css_l_post_radius":10,"css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size":{"unit":"px","size":14,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":32,"sizes":[]},"style":"card","css_row_gap":{"unit":"px","size":30,"sizes":[]},"space_below":"none","heading_type":"e3","media_ratio_custom_mobile":1.5,"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"27a97855","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","_inline_size":null},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"950": [{"id":"64c42b35","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"4ca003e4","settings":{"_column_size":50,"_inline_size":66.667,"is_main":"main-content","_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"d26c8bd","settings":{"_column_size":50,"is_sidebar":"main-sidebar","_inline_size":33.333,"_inline_size_tablet":100},"elements":[{"id":"11836b3a","settings":{"icon":"mail-bg"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"951": [{"id":"64c42b35","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"4ca003e4","settings":{"_column_size":50,"_inline_size":66.667,"is_main":"main-content","_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"d26c8bd","settings":{"_column_size":50,"is_sidebar":"main-sidebar","_inline_size":33.333,"_inline_size_tablet":100},"elements":[{"id":"11836b3a","settings":{"icon":"mail-top"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"952": [{"id":"64c42b35","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"4ca003e4","settings":{"_column_size":50,"_inline_size":66.667,"is_main":"main-content","_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"d26c8bd","settings":{"_column_size":50,"is_sidebar":"main-sidebar","_inline_size":33.333,"_inline_size_tablet":100},"elements":[{"id":"11836b3a","settings":{"icon":"mail-bg","scheme":"dark"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"953": [{"id":"4e66622e","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"3f3dc950","settings":{"_column_size":50,"_inline_size":66.667,"is_main":"main-content","_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"},{"id":"3a64498e","settings":{"_column_size":50,"is_sidebar":"main-sidebar","_inline_size":33.333,"_inline_size_tablet":100},"elements":[{"id":"7d3ff7d7","settings":{"scheme":"dark","css_bg_color":"#011E4A","style":"c","icon":"mail-bg","css_button_bg":"#04060B"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"954": [{"id":"1eb16924","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"501a0d77","settings":{"_column_size":50,"_inline_size":66.667,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"42e3ed42","settings":{"fields_style":"inline","icon":"mail-bg"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"46d9f669","settings":{"_column_size":50,"is_sidebar":"main-sidebar","_inline_size":33.333,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"955": [{"id":"1eb16924","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"501a0d77","settings":{"_column_size":50,"_inline_size":66.667,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"42e3ed42","settings":{"icon":"mail-bg"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"46d9f669","settings":{"_column_size":50,"is_sidebar":"main-sidebar","_inline_size":33.333,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"956": [{"id":"1eb16924","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"501a0d77","settings":{"_column_size":50,"_inline_size":66.667,"is_main":"main-content","_inline_size_tablet":100},"elements":[{"id":"42e3ed42","settings":{"align":"left","field_style":"inline"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"46d9f669","settings":{"_column_size":50,"is_sidebar":"main-sidebar","_inline_size":33.333,"_inline_size_tablet":100},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"957": [{"id":"273841cb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_image":{"id":6973,"url":"https:\/\/smartmag.theme-sphere.com\/magazine-co\/wp-content\/uploads\/sites\/39\/2023\/06\/brian-mcgowan-0A450BR1JWk-unsplash.jpg","alt":"","source":"library","size":""},"background_position":"center center","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"cover","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"4cf72849","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4dd63bc9","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"2ea0e1d5","settings":{"_column_size":50,"_inline_size":71.808},"elements":[{"id":"5fa459d1","settings":{"headline":"Subscribe to Updates","submit_text":"Subscribe","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"a","scheme":"dark","fields_style":"inline","align":"left","css_heading_typo_typography":"custom","css_heading_typo_font_size":{"unit":"px","size":42,"sizes":[]},"css_heading_typo_font_weight":"500","container_width":50,"css_heading_typo_line_height":{"unit":"em","size":1.7,"sizes":[]},"css_heading_typo_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"7f54a28","settings":{"_column_size":50,"_inline_size":28.192,"space_between_widgets":0},"elements":[{"id":"5f6e0c60","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/magazine-co\/wp-content\/uploads\/sites\/39\/2023\/06\/smartmag-sports.jpg\" width=\"300\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":50,"_padding_mobile":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"3d85300c","settings":{"title":"Advertisement","align":"center","title_color":"#DADADA","typography_typography":"custom","typography_font_size":{"unit":"px","size":12,"sizes":[]},"typography_font_weight":"400","typography_font_style":"italic","_margin":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1001": [{"id":"51b2b327","settings":{"gap":"no","background_background":"classic","background_color":"#0A0A0A","margin":{"unit":"px","top":"65","right":0,"bottom":"65","left":0,"isLinked":true},"padding":{"unit":"px","top":"70","right":"0","bottom":"65","left":"0","isLinked":false},"gutter":"default","margin_mobile":{"unit":"px","top":"50","right":0,"bottom":"50","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false},"post_ids":[],"tax_ids":[]},"elements":[{"id":"3e7ca0f1","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6f2e5209","settings":{"type":"e","accent_colors":"force","heading":"In Spotlight","css_bhead_space_below":{"unit":"px","size":5,"sizes":[]},"container_width":50,"css_bhead_line_color":"#333333"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"c450f39","settings":{"gutter":"default","gap":"no","structure":"20","post_ids":[],"tax_ids":[],"tags":[],"query_type":"custom"},"elements":[{"id":"350f0a6e","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6f1644db","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"tags":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"5bb78d56","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"d2e0549","settings":{"scheme":"dark","style":"sm","excerpts":"","media_ratio":"3-2","container_width":50,"post_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":44,"sizes":[]},"space_below":"none","cat_labels":"0","title_lines":"2","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"tags":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1002": [{"id":"33409028","settings":{"gutter":"default","gap":"no","margin":{"unit":"px","top":"80","right":0,"bottom":"60","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"60","right":0,"bottom":"60","left":0,"isLinked":true},"post_ids":[],"tax_ids":[],"query_type":"custom"},"elements":[{"id":"21261929","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"3c978c72","settings":{"type":"e","accent_colors":"force","heading":"*Mobile* Tech","align":"center","css_bhead_inner_pad":25,"container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"108e0d4c","settings":{"posts":2,"space_below":"none","cat_labels":"0","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":100,"query_type":"section","post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"post_formats_pos":"center","css_format_icon_size":1.25},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"3aaa9ce5","settings":{"style":"sm","columns":"4","space_below":"none","cat_labels":"0","excerpts":"","media_ratio":"3-2","container_width":100,"query_type":"section","post_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":2,"sizes":[]},"css_row_gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"2","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":2,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""},"css_row_gap_tablet":{"unit":"px","size":30,"sizes":[]},"css_row_gap_mobile":{"unit":"px","size":30,"sizes":[]},"_margin_tablet":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1003": [{"id":"5a2cf0df","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"40","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"5f08099","settings":{"_column_size":25,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"2c3deb6b","settings":{"columns":"1","cat_labels":"1","meta_items_default":"","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"force","space_below":"none","css_title_typo_typography":"custom","posts":3,"tags":[],"pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","media_ratio":"3-2","heading_type":"none","offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"27859c96","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":66.6667,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"7cdd7090","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"1-1","container_width":"66","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":38,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.76,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"tags":[],"css_title_typo_font_size_tablet":{"unit":"px","size":30,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"20b455bf","settings":{"space_below":"none","excerpt_length":21,"container_width":"50","post_ids":[],"tax_ids":[],"heading":"Latest","posts":1,"heading_colors":"force","pagination_type":"load-more","media_pos":"right","media_ratio":"1-1","heading_type":"none","offset":1,"tags":[]},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"58b8dd44","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":33.333},"elements":[{"id":"5eac7076","settings":{"columns":"1","cat_labels":"1","meta_items_default":"","meta_below":["date"],"container_width":"33","post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"GAME REVIEWS","space_below":"none","css_title_typo_typography":"custom","posts":1,"tags":[],"pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","media_ratio":"3-2","heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"015","left":"0","isLinked":false},"offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6dd7fd7","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading":"Top Headlines","heading_type":"c","heading_colors":"force","tags":[],"space_below":"none","show_media":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"700","css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.36,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"1004": [{"id":"7985d677","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"query_type":"custom","tags":[]},"elements":[{"id":"748653c","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1f472cdb","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"21-9","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":"100","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":24,"sizes":[]},"css_media_height_mobile":{"unit":"px","size":310,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","tags":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3,"heading_type":"b","_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"heading":"CES 2021","heading_colors":"force","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"100005d6","settings":{"columns":"3","cat_labels":"0","excerpts":"","meta_items_default":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_colors":"force","posts":3,"heading_type":"none","css_column_gap":{"unit":"px","size":36,"sizes":[]},"css_title_typo_typography":"custom","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","tags":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1005": [{"id":"371eba04","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false}},"elements":[{"id":"5626a536","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"62cbd8b3","settings":{"columns":"1","excerpt_length":10,"container_width":33,"cat":"4","post_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Apps","separators":"1","space_below":"none","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5b8f8a66","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4bd61ce6","settings":{"columns":"1","excerpt_length":10,"container_width":33,"cat":"3","post_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Gadgets","separators":"1","space_below":"none","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5be3e72b","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"480d879","settings":{"columns":"1","excerpt_length":10,"container_width":33,"cat":"56","post_ids":[],"tax_ids":[],"heading_type":"e2","heading":"Gear","separators":"1","space_below":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1006": [{"id":"5935adb","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"11567c66","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1aaa8158","settings":{"query_type":"custom","post_ids":[],"tax_ids":[]},"elements":[{"id":"422f8fde","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets_mobile":0},"elements":[{"id":"6d19d8ef","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading":"*Mixed* List","query_type":"section","heading_colors":"force","skip_posts":0,"section_data":{"query_type":"custom","post_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"13e2e9a2","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":"100","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"skip_posts":4,"section_data":{"query_type":"custom","post_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3,"heading_type":"none","_margin":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"2d8d827a","settings":{"space_below":"none","excerpt_length":18,"container_width":66,"post_ids":[],"tax_ids":[],"heading_type":"none","pagination":"1","pagination_type":"load-more","query_type":"section","skip_posts":5,"section_data":{"query_type":"custom","post_ids":[],"tax_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"7ff44fc5","settings":{"_column_size":33,"is_sidebar":"main-sidebar","_inline_size":null,"_inline_size_tablet":100,"sidebar_sticky":"main-sidebar ts-sticky-col","space_between_widgets":45},"elements":[],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1007": [{"id":"2dc20bb1","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"structure":"31","margin":{"unit":"px","top":"45","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"50","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"17391598","settings":{"_column_size":50,"_inline_size":57.5,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"6c940b21","settings":{"columns":"1","container_width":66,"post_ids":[],"tax_ids":[],"heading_colors":"force","heading":"","space_below":"none","css_title_typo_typography":"custom","posts":1,"pagination_type":"load-more","excerpt_length":40,"media_ratio":"4-3","heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"015","left":"0","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_weight":"700","read_more":"btn"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"345c9c02","settings":{"_column_size":25,"_inline_size":20.5,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"7d31268b","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading":"TOP HEADLINES","heading_colors":"force","space_below":"none","show_media":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"600","css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"posts":6,"meta_items_default":"","meta_below":["cat","date"],"css_title_typo_typography":"custom","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4a75df5e","settings":{"_column_size":25,"_inline_size":22,"_inline_size_tablet":50},"elements":[{"id":"1ca293e5","settings":{"columns":"1","meta_below":["date"],"container_width":50,"post_ids":[],"tax_ids":[],"heading_colors":"force","space_below":"none","posts":3,"pagination_type":"load-more","excerpt_length":11,"style":"sm","excerpts":"","heading_type":"none","offset":7,"css_title_typo_font_weight":"700"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1008": [{"id":"227c4d1c","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"60","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"30","right":0,"bottom":"050","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"c7add79","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null},"elements":[{"id":"31c1d1f8","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_typography":"custom","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"f8beb11","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"-15","right":"0","bottom":"15","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"69231a39","settings":{"posts":2,"columns":"2","space_below":"none","excerpts":"","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"040","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"2d11a287","settings":{"_column_size":33,"add_separator":"el-col-sep","_inline_size":null},"elements":[{"id":"3f4b2de9","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"75abb6f0","settings":{"text":"Divider","color":"#E6E6E6","container_width":33,"gap":{"unit":"px","size":2,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4411d25d","settings":{"posts":6,"space_below":"none","show_media":"","container_width":33,"post_ids":[],"tax_ids":[],"excerpts":"","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"1009": [{"id":"728c0aa3","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"19214190","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"59293dd8","settings":{"posts":3,"space_below":"none","container_width":50,"post_ids":[],"tax_ids":[],"excerpt_length":12,"media_width":43,"media_ratio":"16-9","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"offset":1,"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"69dadfc","settings":{"_column_size":50,"add_separator":"el-col-sep","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"a2dff06","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","excerpt_length":10,"meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1010": [{"id":"87a03ad","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"0","right":0,"bottom":"80","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"2930d062","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null},"elements":[{"id":"702db3f3","settings":{"posts":1,"columns":"1","space_below":"none","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"meta_below":["date","author"],"css_content_pad":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":34,"sizes":[]},"excerpts":"","heading_type":"none","query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"37f5ebb0","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"-15","right":"0","bottom":"15","left":"0","isLinked":false},"container_width":66},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"cf2acd9","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","content_center":"1","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"6517b38b","settings":{"_column_size":33,"add_separator":"el-col-sep","_inline_size":null},"elements":[{"id":"3a501e42","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"2558ec8b","settings":{"text":"Divider","color":"#E6E6E6","gap":{"unit":"px","size":2,"sizes":[]},"container_width":33},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"95d3e88","settings":{"posts":5,"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","space_below":"none","query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1011": [{"id":"7ee1a049","settings":{"gap":"no","margin":{"unit":"px","top":"50","right":0,"bottom":"50","left":0,"isLinked":false},"gutter":"default","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"post_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"4d7afbe7","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"67bbe52d","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"css_format_icon_size":1.3,"media_ratio_custom":0.92},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"591240cd","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"55748041","settings":{"excerpts":"","media_ratio":"4-3","container_width":50,"post_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":35,"sizes":[]},"space_below":"none","title_lines":"3","query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""},"meta_cat_style":"labels","css_title_typo_typography":"custom","cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1012": [{"id":"70c9a18e","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"55","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"13b054a8","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"6a39c614","settings":{"type":"e","heading":"Top *Stories*","align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":22,"sizes":[]},"css_bhead_typo_font_weight":"bold","css_bhead_line_weight":2,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":100,"css_bhead_space_below":{"unit":"px","size":31,"sizes":[]},"__globals__":{"css_bhead_line_color":""}},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"7fac3891","settings":{"gutter":"sm","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"7e00dc68","settings":{"_column_size":25,"_inline_size":50,"_inline_size_tablet":100,"column_order_tablet":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":2},"elements":[{"id":"25c6043f","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","container_width":33,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1e34743a","settings":{"_column_size":25,"_inline_size":25,"_inline_size_tablet":50,"column_order_tablet":2,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":1},"elements":[{"id":"b191566","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":33,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6a2b05ba","settings":{"_column_size":50,"_inline_size":25,"column_order_tablet":3,"_inline_size_tablet":50,"column_order":3},"elements":[{"id":"7076027c","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":50,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","post_formats":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7dd3ea11","settings":{"columns":"4","cat_labels":"1","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"space_below":"none","pagination":"1","pagination_type":"load-more","cat_labels_pos":"bot-center","title_lines":"2","content_center":"1","media_ratio":"4-3","column_gap":"sm","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1013": [{"id":"501cc40b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_slideshow_loop":"","background_size":"cover","background_color":"#121418","padding":{"unit":"px","top":"70","right":"0","bottom":"0","left":"0","isLinked":false},"margin":{"unit":"px","top":"80","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true}},"elements":[{"id":"75eb347d","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6b57c8cf","settings":{"type":"e","accent_colors":"none","heading":"Featured Videos","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":21,"sizes":[]},"css_bhead_typo_font_weight":"bold","css_bhead_space_below":{"unit":"px","size":5,"sizes":[]},"css_bhead_color":"#FFFFFF","css_bhead_line_color":"#2B303C","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"5d55d124","settings":{"posts":1,"scheme":"dark","space_below":"none","excerpts":"","media_pos":"right","media_width":62,"media_ratio":"16-9","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_pad":{"unit":"%","top":"9","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_padding":{"unit":"%","top":"3","right":"0","bottom":"5","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"heading_type":"none","css_title_typo_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"hide_mobile":"hidden-phone"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"28d0f873","settings":{"columns":"1","space_below":"none","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"","css_title_typo_typography":"custom","scheme":"dark","excerpts":"","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"posts":1,"meta_items_default":"","meta_above":["cat"],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"carousel_autoplay":"1","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"6c1c46ca","settings":{"columns":"4","space_below":"none","excerpt_length":12,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"","css_title_typo_typography":"custom","scheme":"dark","excerpts":"","media_ratio":"3-2","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":0.4,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"posts":8,"meta_items_default":"","meta_above":["cat"],"carousel":"1","_margin":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"offset":1,"carousel_autoplay":"1","css_title_typo_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1014": [{"id":"45e7aeb","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"45","right":0,"bottom":"75","left":0,"isLinked":false}},"elements":[{"id":"5decd640","settings":{"_column_size":33,"_inline_size":27.33,"column_order":"","column_order_mobile":2,"column_order_tablet":2,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"1cd07e2a","settings":{"posts":2,"columns":"1","excerpt_length":12,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"none","heading":"Top Stories","css_title_typo_typography":"custom","css_bhead_typo_typography":"custom","offset":1,"excerpts":"","media_ratio":"3-2","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"51adde","settings":{"_column_size":33,"_inline_size":44.672,"column_order":"","column_order_mobile":1,"column_order_tablet":1,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"32b3aa6e","settings":{"posts":1,"columns":"1","excerpt_length":23,"media_ratio":"1-1","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":34,"sizes":[]},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5744a5d","settings":{"_column_size":33,"_inline_size":27.33,"column_order":"","column_order_mobile":3,"column_order_tablet":3,"_inline_size_tablet":50},"elements":[{"id":"5d2f1fd9","settings":{"posts":5,"title_lines":"2","media_width":33,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":3,"media_pos":"right","css_row_gap":{"unit":"px","size":40,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_title_typo_font_weight":"bold","heading_type":"none","space_below":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1015": [{"id":"1120947b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","background_background":"classic","background_color":"#142135","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6669447f","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"5b871761","settings":{"posts":1,"columns":"1","excerpt_length":35,"media_ratio":"16-9","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"scheme":"dark","meta_cat_style":"labels"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"5a10b864","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1c155bc2","settings":{"posts":1,"columns":"1","space_below":"none","excerpt_length":35,"media_ratio":"16-9","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"scheme":"dark","excerpts":"","meta_cat_style":"labels","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3bf72a5","settings":{"text":"Divider","color":"#313F4E","gap":{"unit":"px","size":3,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"4305379","settings":{"posts":2,"title_lines":"2","media_width":33,"media_ratio":"4-3","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"scheme":"dark","show_media":"","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1016": [{"id":"346b648c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#131312","margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"60","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"47dadc79","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"50941e52","settings":{"posts":3,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Gamers* Point","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"sm","excerpt_length":13,"media_ratio":"3-2","scheme":"dark","columns":"3","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"5064aa1a","settings":{"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_colors":"none","pagination_type":"load-more","excerpt_length":13,"media_ratio":"3-2","scheme":"dark","columns":"4","title_lines":"2","excerpts":"","meta_items_default":"","meta_below":["date"],"heading_type":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_weight":"600","offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1017": [{"id":"58e805c9","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"45","right":"0","bottom":"0","left":"0","isLinked":false},"background_background":"classic","background_color":"#F3EEF2","is_full_xs":"is-full-xs","padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"78eaca42","settings":{"_column_size":100,"_inline_size":null,"text_align":"center","space_between_widgets":0},"elements":[{"id":"2ea681b9","settings":{"posts":1,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":37,"sizes":[]},"title_lines":"0","excerpt_length":17,"meta_items_default":"","pagination_type":"load-more","media_width":63,"css_bhead_accent":"#DC2430","cat_labels":"0","cat_labels_pos":"top-left","meta_above":["cat","date"],"meta_author_img":"","content_vcenter":"1","read_more":"none","css_content_pad":{"unit":"px","top":"28","right":"28","bottom":"28","left":"28","isLinked":true},"space_below":"none","heading_type":"none","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"grid_on_sm":"1","css_media_max_width_tablet":{"unit":"%","size":50,"sizes":[]},"css_media_margin":{"unit":"px","size":0,"sizes":[]},"css_content_pad_tablet":{"unit":"px","top":"26","right":"26","bottom":"26","left":"26","isLinked":true},"css_content_pad_mobile":{"unit":"px","top":"10","right":"10","bottom":"30","left":"10","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":26,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"excerpt_lines":"5","css_excerpt_typo_typography":"custom","css_excerpt_typo_font_size_tablet":{"unit":"px","size":13,"sizes":[]},"css_excerpt_lines_tablet":1,"css_l_post_bg":"#FFFFFF","css_l_post_bg_sd":"#474747","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"38f7fb37","settings":{"columns":"4","excerpts":"","excerpt_length":8,"media_ratio":"4-3","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"heading_type":"none","offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1018": [{"id":"19d2b8f","settings":{"gutter":"lg","gap":"no","post_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"30","right":0,"bottom":"60","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"1473624a","settings":{"_column_size":66,"is_main":"main-content","_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b14f749","settings":{"posts":1,"grid_type":"grid-eq1","space_below":"sm","css_media_ratio":1.55,"meta_cat_style":"text","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_lg_typography":"custom","css_title_typo_lg_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.4,"sizes":[]},"container_width":66,"heading_type":"none","css_title_typo_lg_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"-20","bottom":"-10","left":"-20","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"3b0aac82","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","container_width":66,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"2","exclude_ids":[],"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"3a6fdc1a","settings":{"_column_size":33,"_inline_size":null,"is_sidebar":"main-sidebar","_inline_size_tablet":100},"elements":[{"id":"22ff4372","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","offset":3},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"2e19b58e","settings":{"text":"Divider","color":"#E6E6E6","container_width":33,"gap":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"5ecde30d","settings":{"media_pos":"right","container_width":33,"post_ids":[],"tax_ids":[],"heading_type":"none","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"exclude_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_letter_spacing":{"unit":"px","size":-0.3,"sizes":[]},"title_lines":"2","offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1019": [{"id":"4aab3f95","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"5ec89","settings":{"_column_size":25,"_inline_size":21,"border_color":"#994433","ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100},"elements":[{"id":"57ee0605","settings":{"posts":8,"media_ratio":"3-2","container_width":33,"post_ids":[],"tax_ids":[],"heading":"Popular","heading_colors":"none","css_bhead_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_bhead_typo_text_transform":"uppercase","exclude_ids":[],"columns":"1","excerpts":"","meta_items_default":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"space_below":"md","css_row_gap":{"unit":"px","size":29,"sizes":[]},"title_lines":"2","cat_labels":"0","columns_tablet":"3"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4294ad88","settings":{"_column_size":50,"_inline_size":51,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"261c2368","settings":{"posts":1,"media_ratio":"16-9","container_width":50,"post_ids":[],"tax_ids":[],"heading":"Latest News","css_bhead_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_bhead_typo_text_transform":"uppercase","exclude_ids":[],"columns":"1","space_below":"none","excerpt_length":26,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":25,"sizes":[]},"css_title_typo_font_weight":"700","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"322cd9eb","settings":{"text":"Divider","color":"#E8E8E8","gap":{"unit":"px","size":5,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"36af6360","settings":{"posts":3,"pagination_type":"load-more","excerpt_length":24,"media_width":39,"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"cat_labels":"1","meta_items_default":"","meta_below":["author","date","comments"],"meta_cat_style":"labels","space_below":"sm","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":40,"sizes":[]},"content_vcenter":"1","media_ratio":"3-2","offset":1,"title_lines":"3","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"285a5a62","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/game-zone\/wp-content\/uploads\/sites\/23\/2021\/11\/LatestNews-Mid.jpg\" width=\"571\" height=\"70\" alt=\"Demo\" \/>\n<\/a>","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"container_width":50},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"ac2b6f6","settings":{"pagination_type":"load-more","excerpt_length":24,"media_width":39,"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"cat_labels":"1","meta_items_default":"","meta_below":["author","date","comments"],"meta_cat_style":"labels","exclude_ids":[],"cat_labels_pos":"top-left","excerpts":"","css_row_gap":{"unit":"px","size":40,"sizes":[]},"content_vcenter":"1","pagination":"1","media_ratio":"3-2","space_below":"none","offset":4,"css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4f021b6c","settings":{"_column_size":25,"_inline_size":28,"sidebar_sticky":"main-sidebar ts-sticky-col","_inline_size_tablet":100,"ts_sticky_col":"ts-sticky-native"},"elements":[{"id":"20b59406","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"New Release","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"css_title_typo_sm_font_weight":"700","css_title_typo_font_weight":"700","title_lines":"2","media_ratio":"3-2"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"},{"id":"253804b4","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/game-zone\/wp-content\/uploads\/sites\/23\/2021\/11\/Sidebar-Mid.jpg\" width=\"300\" height=\"600\" alt=\"Demo\" \/>\n<\/a>","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"2861b9c3","settings":{"wp":{"title":"We Are Social!","style":"c-2","counters":"","social":["facebook","youtube","tiktok","whatsapp","twitter","instagram"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"6125d126","settings":{"headline":"Subscribe to Updates","disclaimer":"By signing up, you agree to the our terms and our <a href=\"#\">Privacy Policy<\/a> agreement.","style":"c","icon":"mail-top","container_width":33,"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"submit_text":"Subscribe"},"elements":[],"isInner":false,"widgetType":"smartmag-newsletter","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1020": [{"id":"25c3a730","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"77ab04af","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#003087","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E2E2E2","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"background_overlay_background":"classic","_inline_size_tablet":50},"elements":[{"id":"faa1ca9","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"Playstation","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"title_lines":"2","space_below":"none","_border_border":"solid","scheme":"dark","heading_colors":"force","css_bhead_accent":"#FFFFFF","css_title_hov_color_sd":"#FFFFFFB5","cat_labels":"0","css_title_color":"#FBFBFB"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"56686194","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#107C10","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E2E2E2","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"_inline_size_tablet":50},"elements":[{"id":"91752b9","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"Xbox","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"space_below":"none","title_lines":"2","scheme":"dark","heading_colors":"force","css_bhead_accent":"#FFFFFF","css_title_hov_color_sd":"#FFFFFFB5","cat_labels":"0","css_title_color":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"25f941b9","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#BD0211","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E2E2E2","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5b82ec37","settings":{"columns":"1","container_width":33,"post_ids":[],"tax_ids":[],"exclude_ids":[],"css_title_typo_typography":"custom","excerpts":"","heading":"Nintendo","css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_title_typo_sm_typography":"custom","css_title_typo_sm_font_size":{"unit":"px","size":15,"sizes":[]},"title_lines":"2","scheme":"dark","space_below":"none","heading_colors":"force","css_bhead_accent":"#FFFFFF","css_title_hov_color_sd":"#FFFFFFB5","cat_labels":"0","css_title_color":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1021": [{"id":"3eb652b2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","padding":{"unit":"px","top":"30","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"1dd6d99a","settings":{"_column_size":33,"_inline_size":24,"column_order":"","column_order_mobile":2,"ts_sticky_col":"ts-sticky-native","column_order_tablet":2,"_inline_size_tablet":50},"elements":[{"id":"de1ba0b","settings":{"posts":2,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Opinion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"none","excerpt_length":13,"media_ratio":"3-2","columns":"1","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"700","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1","meta_items_default":"","meta_below":["author"],"offset":1,"heading_type":"none","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"65918fbf","settings":{"_column_size":33,"_inline_size":51.332,"border_border":"dotted","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#C5C5C5","column_order":"","column_order_mobile":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"column_order_tablet":1,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"efbc131","settings":{"posts":1,"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Opinion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"sm","excerpt_length":20,"media_ratio":"4-3","columns":"1","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"css_title_typo_font_weight":"700","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1","meta_items_default":"","meta_below":["author"],"heading_type":"none","css_title_typo_typography":"custom","css_content_margin":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":28,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"134a4096","settings":{"_column_size":33,"_inline_size":24,"column_order":"","column_order_mobile":3,"ts_sticky_col":"ts-sticky-native","column_order_tablet":3,"_inline_size_tablet":50,"align_tablet":"center"},"elements":[{"id":"257b65ed","settings":{"posts":1,"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Opinion","reviews":"radial","heading_colors":"none","pagination_type":"load-more","space_below":"none","excerpt_length":13,"media_ratio":"3-2","columns":"1","excerpts":"","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"cat_labels":"1","cat_labels_pos":"bot-center","content_center":"1","meta_items_default":"","meta_below":["author"],"offset":3,"heading_type":"none","css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"15f1075","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/health\/wp-content\/uploads\/sites\/22\/2021\/11\/MedicalHealth.jpg\" width=\"250\" height=\"250\" alt=\"Demo\" \/>\n<\/a>","container_width":33},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1022": [{"id":"4e9a1a20","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#014C62","padding":{"unit":"px","top":"50","right":"0","bottom":"115","left":"0","isLinked":false}},"elements":[{"id":"50ea7e8c","settings":{"_column_size":100,"_inline_size":null,"_inline_size_tablet":100,"space_between_widgets":0},"elements":[{"id":"382e18fb","settings":{"type":"b","heading":"Featured Videos","css_bhead_color":"#FFFFFF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"346fafac","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"16bc2212","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"f3b6189","settings":{"posts":1,"columns":"1","cat_labels":"0","media_ratio":"custom","media_ratio_custom":1.71,"meta_items_default":"","meta_below":["author","date"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3bd83754","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"12c2933","settings":{"scheme":"dark","cat_labels":"0","excerpts":"","excerpt_length":18,"content_vcenter":"1","media_width":30,"meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"offset":1,"columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"},{"id":"663fd76a","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"30","margin":{"unit":"px","top":"-100","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"2ea97dce","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E8E8E8","padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_inline_size_tablet":50},"elements":[{"id":"5a0d509f","settings":{"posts":3,"space_below":"sm","title_lines":"2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"*Pro* Lifestyle","filters":"category","filters_terms":["10","568"],"css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_title_typo_font_weight":"600","heading_colors":"none","columns":"1","excerpt_length":11,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-highlights","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"4cb51d44","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E8E8E8","padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"26c18682","settings":{"space_below":"sm","title_lines":"3","excerpts":"","excerpt_length":18,"content_vcenter":"1","media_width":30,"media_ratio":"1-1","meta_items_default":"","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"c2","heading":"Nutrition","separators":"","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_bhead_line_weight":3,"cat_labels":"0","heading_align":"center"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"12d975dd","settings":{"_column_size":33,"_inline_size":null,"background_background":"classic","background_color":"#FFFFFF","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E8E8E8","text_align":"center","padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"108f710e","settings":{"space_below":"sm","title_lines":"3","excerpts":"","excerpt_length":18,"content_vcenter":"1","show_media":"","media_width":30,"media_ratio":"1-1","show_post_formats":"","meta_items_default":"","meta_below":["author","date"],"container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading_type":"c2","heading":"Opinion","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"heading_align":"center","css_bhead_line_weight":3},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1023": [{"id":"5797437","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"45","right":0,"bottom":"45","left":0,"isLinked":true},"is_full_xs":"is-full-xs","margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"11834b48","settings":{"_column_size":66,"_inline_size":73.133,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"4649433e","settings":{"posts":1,"style":"stylish","columns":"1","space_below":"none","cat_labels":"0","content_center":"1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_above_margins":{"unit":"px","top":"-32","right":"0","bottom":"8","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"excerpt_lines":"3","css_excerpt_lines_mobile":2,"css_title_typo_font_size_mobile":{"unit":"px","size":27,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"7b451a68","settings":{"_column_size":33,"_inline_size":26.532,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":false}},"elements":[{"id":"3c85cc3","settings":{"posts":2,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"3-2","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"offset":1,"columns_tablet":"2"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1024": [{"id":"2a020f2c","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"cf6b3bb","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"673c9b42","settings":{"heading":"Top Programs","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"27f15b31","settings":{"gutter":"default","gap":"no","query_type":"custom","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"1f85df79","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":60,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"6a499ec7","settings":{"posts":1,"style":"stylish","columns":"1","cat_labels":"0","content_center":"1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"labels","container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_meta_above_margins":{"unit":"px","top":"-32","right":"0","bottom":"8","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"space_below":"none","query_type":"section","css_title_typo_font_size_tablet":{"unit":"px","size":25,"sizes":[]},"skip_posts":0,"section_data":{"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2fb7ba65","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":40},"elements":[{"id":"382ca56e","settings":{"space_below":"none","title_lines":"3","excerpts":"","media_pos":"right","media_width":33,"media_ratio":"1-1","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":21,"sizes":[]},"css_media_margin":{"unit":"px","size":21,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_media_max_width_mobile":{"unit":"%","size":33,"sizes":[]},"query_type":"section","css_title_typo_font_size_tablet":{"unit":"px","size":16,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"skip_posts":1,"section_data":{"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],
	
	"1025": [{"id":"15d2090b","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#121418","margin":{"unit":"px","top":"70","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"55","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"12a231ff","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4997da8a","settings":{"heading":"Featured Videos","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":5,"sizes":[]},"css_bhead_color":"#EFEFEF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"24c5ce02","settings":{"posts":1,"scheme":"dark","space_below":"none","excerpts":"","media_pos":"right","media_width":62,"media_ratio":"16-9","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"css_title_padding":{"unit":"%","top":"3","right":"0","bottom":"5","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"grid_on_sm":"1","css_title_typo_font_size_tablet":{"unit":"px","size":27,"sizes":[]},"content_vcenter":"1","css_content_pad_tablet":{"unit":"%","top":"2","right":"0","bottom":"0","left":"0","isLinked":false},"css_content_pad_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_title_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"6da88dce","settings":{"posts":3,"scheme":"dark","style":"stylish","columns":"3","space_below":"none","cat_labels":"0","title_lines":"2","excerpts":"","media_ratio":"3-2","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"offset":1,"css_title_color_sd":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1026": [{"id":"68f14e82","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#262C45","background_color_b":"#020203","background_gradient_angle":{"unit":"deg","size":170,"sizes":[]},"is_dark_section":"s-dark","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5280a43d","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"ba1ffd","settings":{"heading":"Trending Videos","css_bhead_color":"#FFFFFF","container_width":100},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"2e90a642","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"45","left":0,"isLinked":false}},"elements":[{"id":"20834a14","settings":{"_column_size":50,"_inline_size":65.047},"elements":[{"id":"b692c20","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"0","media_ratio":"16-9","media_ratio_custom":2.15,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_format_icon_size":1.4,"css_content_pad":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin":{"unit":"%","top":"0","right":"12","bottom":"0","left":"0","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_title_typo_typography":"custom","css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"66ad2011","settings":{"_column_size":50,"_inline_size":34.953},"elements":[{"id":"43bb6007","settings":{"space_below":"none","excerpt_length":21,"container_width":50,"post_ids":[],"tax_ids":[],"heading":"*Latest In* Tech","cat_labels_pos":"top-right","title_lines":"2","excerpts":"","media_pos":"right","media_width":30,"media_ratio":"3-2","meta_cat_style":"labels","exclude_ids":[],"heading_type":"none","css_row_gap":{"unit":"px","size":39,"sizes":[]},"css_title_typo_typography":"custom","scheme":"dark","post_formats_pos":"center","meta_author_img":"","css_format_icon_size":0.8,"separators":"","cat_labels":"0","css_title_typo_font_size":{"unit":"px","size":15,"sizes":[]},"offset":1},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5cffd8c9","settings":{"columns":"5","excerpts":"","meta_below":["date"],"container_width":100,"post_ids":[],"tax_ids":[],"heading_type":"none","heading_colors":"force","heading":"*Editors'* Choice","exclude_ids":[],"scheme":"dark","cat_labels_pos":"bot-left","title_lines":"2","meta_cat_style":"labels","css_content_pad":{"unit":"%","top":"0","right":"3","bottom":"0","left":"0","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"posts":5,"style":"sm","offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1027": [{"id":"2f1c2b67","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"55","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"exclude_ids":[],"background_background":"gradient","background_color":"#262C45","background_color_b":"#020203","background_gradient_angle":{"unit":"deg","size":170,"sizes":[]}},"elements":[{"id":"bd1f788","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"7b73fb9f","settings":{"type":"e","heading":"Editor's Choice","align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_bhead_line_weight":2,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":100,"css_bhead_space_below":{"unit":"px","size":31,"sizes":[]},"__globals__":{"css_bhead_line_color":""},"css_bhead_color":"#FFFFFF","css_bhead_line_color":"#323E60"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"2145e362","settings":{"gutter":"sm","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"1ed80151","settings":{"_column_size":25,"_inline_size":50,"_inline_size_tablet":100,"column_order_tablet":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":2},"elements":[{"id":"693620da","settings":{"posts":1,"columns":"1","media_ratio":"16-9","meta_items_default":"","meta_below":["author","date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"cat_labels":"0","meta_above":["cat"],"css_title_typo_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"28e6bdaa","settings":{"_column_size":25,"_inline_size":25,"_inline_size_tablet":50,"column_order_tablet":2,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":1},"elements":[{"id":"67fd511b","settings":{"posts":1,"columns":"1","space_below":"none","excerpts":"","media_ratio":"4-3","media_ratio_custom":1.15,"container_width":33,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2afe98f7","settings":{"_column_size":50,"_inline_size":25,"column_order_tablet":3,"_inline_size_tablet":50,"column_order":3},"elements":[{"id":"7d4f5d65","settings":{"posts":1,"columns":"1","excerpts":"","media_ratio":"4-3","media_ratio_custom":1.15,"container_width":50,"post_ids":[],"tax_ids":[],"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"offset":2,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5bfaea4e","settings":{"columns":"5","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"space_below":"none","pagination_type":"load-more","title_lines":"2","media_ratio":"3-2","column_gap":"sm","css_row_gap":{"unit":"px","size":30,"sizes":[]},"css_content_pad":{"unit":"px","top":"0","right":"15","bottom":"0","left":"0","isLinked":false},"offset":3,"scheme":"dark","exclude_ids":[],"posts":5,"css_column_gap":{"unit":"px","size":26,"sizes":[]},"style":"sm","heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1028": [{"id":"590ca6b0","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"is_full_xs":"is-full-xs"},"elements":[{"id":"15e83b55","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"background_background":"gradient","background_color":"#7E5E81","background_color_b":"#1D2B64","background_gradient_angle":{"unit":"deg","size":150,"sizes":[]},"border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#E6E6E6","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0.23)"},"padding":{"unit":"px","top":"25","right":"35","bottom":"35","left":"35","isLinked":false}},"elements":[{"id":"6f6d8e3","settings":{"heading":"Today's Picks","container_width":100,"type":"b","css_bhead_typo_typography":"custom","css_bhead_typo_text_transform":"none","css_bhead_color":"#FFFFFF","css_bhead_line_color":"#FFFFFF"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"6bc78d19","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","query_type":"custom"},"elements":[{"id":"1bfc92eb","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7500df5d","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"16-9","container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"text","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"heading_type":"none","css_title_typo_font_size_tablet":{"unit":"px","size":19,"sizes":[]},"query_type":"section","css_media_height_mobile":{"unit":"px","size":300,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"75c0d8dd","settings":{"posts":2,"columns":"2","space_below":"none","excerpts":"","container_width":50,"post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"css_title_typo_line_height":{"unit":"px","size":"","sizes":[]},"heading_type":"none","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"title_lines":"2","media_ratio":"16-9","meta_items_default":"","exclude_ids":[],"scheme":"dark","query_type":"section"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"32132755","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ff1a21","settings":{"posts":3,"pagination_type":"load-more","media_width":42,"container_width":50,"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"From *Block*","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"meta_items_default":"","meta_below":["date"],"space_below":"sm","exclude_ids":[],"cat_labels_pos":"top-left","css_row_gap":{"unit":"px","size":30,"sizes":[]},"content_vcenter":"1","media_ratio":"3-2","title_lines":"2","css_media_max_width_mobile":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"media_pos":"right","separators":"","scheme":"dark","excerpt_length":13,"query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1029": [{"id":"68ff8270","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"gradient","background_color":"#F5F2EE","background_color_stop":{"unit":"%","size":18,"sizes":[]},"background_color_b":"#293462","background_color_b_stop":{"unit":"%","size":18,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"55","left":"0","isLinked":false},"background_sd_background":"gradient","background_sd_color":"#FFFFFF14","background_sd_color_stop":{"unit":"%","size":18,"sizes":[]},"background_sd_color_b":"#0000000D","background_sd_color_b_stop":{"unit":"%","size":18,"sizes":[]}},"elements":[{"id":"2c99aad6","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"text_align":"center"},"elements":[{"id":"3ada0a48","settings":{"posts":1,"columns":"1","media_ratio":"custom","meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_cat_style":"text","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Pets & Pet Care","heading_type":"b","css_content_margin":{"unit":"%","top":"0","right":"20","bottom":"5","left":"20","isLinked":false},"css_content_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"2","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":28,"sizes":[]},"css_title_typo_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"space_below":"none","media_ratio_custom":2.33,"media_ratio_custom_tablet":1.75,"media_ratio_custom_mobile":1,"_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"},{"id":"116fd1cc","settings":{"posts":10,"scheme":"dark","columns":"5","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"carousel":"1","carousel_dots":"","_margin":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"_margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"offset":1,"heading_type":"none","css_title_typo_font_weight":"400","carousel_autoplay":"1","css_title_color_sd":"#FFFFFF","css_title_hov_color_sd":"#EAEAEA","meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1030": [{"id":"776ba9ba","settings":{"gutter":"lg","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22"},"elements":[{"id":"39f0338f","settings":{"_column_size":66,"_inline_size":72.665,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"3239b661","settings":{"heading":"Health","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"1eabb80e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"2cb372fa","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"78576bbc","settings":{"posts":1,"columns":"1","media_ratio":"1-1","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":23,"sizes":[]},"heading_type":"none","css_title_typo_font_weight":"400","meta_cat_style":"text","meta_above":["cat"],"meta_below":["author","date"],"meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1fd6433f","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"254f34cf","settings":{"posts":3,"columns":"1","title_lines":"3","media_width":40,"css_media_width":{"unit":"px","size":124,"sizes":[]},"media_ratio":"custom","media_ratio_custom":1.1,"meta_below":["date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"separators":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7d8ef7a2","settings":{"code":"<a href=\"https:\/\/theme-sphere.com\/buy\/go.php?theme=smartmag\" target=\"_blank\">\n<img src=\"https:\/\/smartmag.theme-sphere.com\/blogger\/wp-content\/uploads\/sites\/31\/2022\/10\/Top-Mid.jpg\" width=\"728\" height=\"90\" alt=\"Demo\" \/>\n<\/a>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":66,"hide_mobile":"hidden-mobile"},"elements":[],"isInner":false,"widgetType":"smartmag-codes","elType":"widget"},{"id":"65252e20","settings":{"heading":"Technology","container_width":66},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"1ee23a63","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20"},"elements":[{"id":"25e72d22","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"33e79d88","settings":{"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"16-9","media_ratio_custom":1.65,"meta_items_default":"","meta_below":["date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Heading","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_color_sd":"#C13163","posts":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"33b61493","settings":{"columns":"1","title_lines":"3","media_width":35,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","media_ratio_custom":1.65,"meta_items_default":"","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":30,"sizes":[]},"separators":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_background_color":"#F5F2EE","heading_type":"none","css_title_typo_line_height":{"unit":"em","size":1.3,"sizes":[]},"posts":3,"meta_below":["date"],"offset":2},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1d2c9641","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"7bdd615c","settings":{"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"16-9","media_ratio_custom":1.65,"meta_items_default":"","meta_below":["date"],"container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Heading","css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_font_size":{"unit":"px","size":20,"sizes":[]},"css_bhead_color_sd":"#C13163","posts":1,"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"34b42baa","settings":{"columns":"1","title_lines":"3","media_width":35,"css_media_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","media_ratio_custom":1.65,"meta_items_default":"","container_width":"50","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":30,"sizes":[]},"separators":"","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_background_color":"#F5F2EE","heading_type":"none","css_title_typo_line_height":{"unit":"em","size":1.3,"sizes":[]},"posts":3,"meta_below":["date"],"offset":5},"elements":[],"isInner":false,"widgetType":"smartmag-postssmall","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"},{"id":"6d372d35","settings":{"_column_size":33,"ts_sticky_col":"ts-sticky-native","_inline_size":27,"space_between_widgets":0,"_inline_size_tablet":100,"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1050b0ab","settings":{"wp":{"title":"Social","style":"b-2","counters":"n","social":["facebook","twitter","pinterest","instagram","reddit","vimeo"]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"container_width":33},"elements":[],"isInner":false,"widgetType":"wp-widget-bunyad-social","elType":"widget"},{"id":"490e3b01","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"background_background":"classic","background_color":"#F5F2EE","background_sd_background":"classic","background_sd_color":"#FFFFFF12","margin":{"unit":"px","top":"0","right":0,"bottom":"55","left":0,"isLinked":false}},"elements":[{"id":"294e1b31","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7510d064","settings":{"posts":3,"columns":"1","space_below":"none","title_lines":"3","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"numbers":"b","container_width":33,"post_ids":[],"exclude_ids":[],"tax_ids":[],"heading":"Trending","heading_type":"b","css_column_gap":{"unit":"px","size":30,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"25","right":"25","bottom":"30","left":"25","isLinked":false},"_background_background":"classic","css_row_gap":{"unit":"px","size":30,"sizes":[]},"meta_items_default":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1031": [{"id":"9839df2","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[]},"elements":[{"id":"5a90d085","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"75f78a30","settings":{"posts":1,"space_below":"none","excerpts":"","content_vcenter":"1","media_width":72,"css_media_max_width":{"unit":"px","size":1000,"sizes":[]},"media_ratio":"custom","media_ratio_custom":2.05,"meta_items_default":"","meta_above":["cat"],"meta_below":["author"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":27,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#293462","grid_on_sm":"1","css_content_pad_mobile":{"unit":"px","top":"0","right":"15","bottom":"25","left":"15","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"scheme":"dark","media_pos":"right","css_title_typo_font_size_mobile":{"unit":"px","size":23,"sizes":[]},"media_ratio_custom_mobile":1.5},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"},{"id":"2e1da994","settings":{"posts":5,"columns":"5","excerpts":"","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_column_gap":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":1,"show_post_formats":""},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1032": [{"id":"2881e792","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"22","margin":{"unit":"px","top":"35","right":0,"bottom":"55","left":0,"isLinked":false},"query_type":"custom"},"elements":[{"id":"68431f9f","settings":{"_column_size":66,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"76bad30a","settings":{"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"*Latest In* Tech","css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"pagination_type":"load-more","meta_author_img":"","container_width":"66","exclude_ids":[],"posts":1,"pagination_links":"","columns":"1","space_below":"none","excerpt_length":32,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":30,"sizes":[]},"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date","views"],"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"24427e00","settings":{"text":"Divider","color":"#E8E8E8","_padding":{"unit":"px","top":"5","right":"0","bottom":"5","left":"0","isLinked":false},"color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"257e189f","settings":{"posts":3,"columns":"3","space_below":"none","excerpts":"","media_ratio":"3-2","meta_items_default":"","meta_above":["cat"],"container_width":66,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_l_post_radius":8,"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"_margin":{"unit":"px","top":"6","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"1b69a883","settings":{"_column_size":33,"_inline_size":null,"space_between_widgets":0,"ts_sticky_col":"ts-sticky-native","margin_mobile":{"unit":"px","top":"35","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"2de2d837","settings":{"post_ids":[],"tax_ids":[],"heading_type":"none","heading":"*Latest In* Tech","css_title_margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"pagination_type":"load-more","meta_cat_style":"plain","meta_author_img":"","container_width":33,"exclude_ids":[],"posts":1,"pagination_links":"","columns":"1","space_below":"none","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":21,"sizes":[]},"meta_items_default":"","meta_below":["date","views"],"query_type":"section","skip_posts":4,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_title_typo_font_size_tablet":{"unit":"px","size":18,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"},{"id":"3f79fc4","settings":{"text":"Divider","color":"#E8E8E8","color_sd":"#333333"},"elements":[],"isInner":false,"widgetType":"divider","elType":"widget"},{"id":"30ba4588","settings":{"space_below":"none","post_ids":[],"tax_ids":[],"heading_type":"none","heading":"*Latest In* Tech","container_width":33,"cat_labels_pos":"top-right","media_pos":"right","exclude_ids":[],"meta_items_default":"","meta_above":["cat","views"],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":16,"sizes":[]},"posts":3,"title_lines":"2","excerpts":"","media_width":26,"media_ratio":"1-1","css_row_gap":{"unit":"px","size":26,"sizes":[]},"query_type":"section","skip_posts":5,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"css_content_margin":{"unit":"px","top":"0","right":"-7","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1033": [{"id":"4fe8bba1","settings":{"gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"44","right":0,"bottom":"50","left":0,"isLinked":false},"structure":"20","query_type":"custom","margin_mobile":{"unit":"px","top":"20","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[{"id":"7d32eb11","settings":{"_column_size":50,"_inline_size":69.194,"space_between_widgets":0,"_inline_size_tablet":100},"elements":[{"id":"21bc6b31","settings":{"css_media_ratio":1,"meta_below":["date"],"post_ids":[],"tax_ids":[],"css_grid_gap":{"unit":"px","size":2,"sizes":[]},"container_width":50,"space_below":"none","cat_labels_pos":"top-left","posts":1,"css_title_typo_lg_typography":"custom","show_post_formats":"","css_title_typo_sm_font_size":{"unit":"px","size":1,"sizes":[]},"css_title_typo_lg_line_height":{"unit":"em","size":1.45,"sizes":[]},"exclude_ids":[],"grid_type":"grid-eq1","css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_lg_font_size":{"unit":"px","size":29,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"34","left":"0","isLinked":false},"title_style":"bg","meta_author_img":"1","css_title_typo_lg_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"has_ratio":"","css_media_height_eq":{"unit":"px","size":480,"sizes":[]},"css_media_height_eq_mobile":{"unit":"px","size":350,"sizes":[]},"heading_type":"none","css_media_radius":10},"elements":[],"isInner":false,"widgetType":"smartmag-featgrid","elType":"widget"},{"id":"1b5f91d3","settings":{"posts":2,"style":"card","columns":"2","excerpts":"","media_ratio":"custom","media_ratio_custom":1.8,"container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_media_radius":10,"css_l_post_radius":10,"css_content_border_border":"solid","css_content_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"css_content_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":"rgba(0, 0, 0, 0)"},"space_below":"none","cat_labels":"1","cat_labels_pos":"bot-left","css_column_gap":{"unit":"px","size":32,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":18,"sizes":[]},"css_cat_labels_margins":{"unit":"px","top":"0","right":"0","bottom":"-2","left":"25","isLinked":false},"title_lines":"3","css_title_margin":{"unit":"px","top":"15","right":0,"bottom":"15","left":0,"isLinked":true},"css_content_pad_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"css_cat_labels_margins_mobile":{"unit":"px","top":"0","right":"0","bottom":"-2","left":"20","isLinked":false},"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"offset":1,"heading_type":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"},{"id":"75dca0a4","settings":{"_column_size":50,"_inline_size":30.806452,"space_between_widgets":0,"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"42","isLinked":false},"ts_sticky_col":"ts-sticky-native","_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"10","bottom":"0","left":"10","isLinked":false}},"elements":[{"id":"3338c580","settings":{"posts":5,"title_lines":"3","excerpts":"","content_vcenter":"1","media_pos":"right","media_width":30,"css_media_max_width":{"unit":"px","size":90,"sizes":[]},"media_ratio":"1-1","meta_items_default":"","meta_above":["cat"],"meta_below":["author","read_time"],"container_width":50,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_row_gap":{"unit":"px","size":38,"sizes":[]},"css_media_radius":999,"css_media_margin":{"unit":"px","size":25,"sizes":[]},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"css_cat_labels_typo_typography":"custom","show_post_formats":"","css_content_margin":{"unit":"px","top":"-6","right":"0","bottom":"-3","left":"0","isLinked":false},"css_title_margin":{"unit":"px","top":"12","right":0,"bottom":"12","left":0,"isLinked":true},"media_vpos":"center","css_title_typo_font_weight":"700","space_below":"none","cat_labels":"0","heading_type":"c","heading":"People's Favorite","css_title_typo_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"css_bhead_space_below":{"unit":"px","size":32,"sizes":[]},"heading_colors":"none"},"elements":[],"isInner":false,"widgetType":"smartmag-postslist","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1034": [{"id":"42a68d50","settings":{"gutter":"default","gap":"no","post_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"0","right":0,"bottom":"60","left":0,"isLinked":false},"padding":{"unit":"px","top":"40","right":"0","bottom":"55","left":"0","isLinked":false},"exclude_ids":[],"background_background":"gradient","background_color":"#0A0F15","background_color_stop":{"unit":"%","size":25,"sizes":[]},"background_color_b":"#181F2A","background_color_b_stop":{"unit":"%","size":25,"sizes":[]},"background_sd_background":"gradient","background_sd_color":"#FFFFFF14","background_sd_color_stop":{"unit":"%","size":18,"sizes":[]},"background_sd_color_b":"#0000000D","background_sd_color_b_stop":{"unit":"%","size":18,"sizes":[]},"query_type":"custom"},"elements":[{"id":"46960b41","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"5562b406","settings":{"type":"b","heading":"Physical Fitness","align":"center","css_bhead_typo_typography":"custom","css_bhead_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_bhead_typo_font_weight":"500","css_bhead_line_weight":2,"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_z_index":1,"container_width":100,"css_bhead_space_below":{"unit":"px","size":25,"sizes":[]},"__globals__":{"css_bhead_line_color":""},"css_bhead_color":"#FFFFFF","css_bhead_line_color":"#000000"},"elements":[],"isInner":false,"widgetType":"smartmag-heading","elType":"widget"},{"id":"46b39c02","settings":{"gutter":"sm","gap":"no","post_ids":[],"tax_ids":[],"structure":"33","margin":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"query_type":"custom","exclude_ids":[]},"elements":[{"id":"577b6c44","settings":{"_column_size":25,"_inline_size":50,"_inline_size_tablet":100,"column_order_tablet":1,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":2},"elements":[{"id":"61bf9c3d","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","container_width":"50","post_ids":[],"tax_ids":[],"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":22,"sizes":[]},"query_type":"section","skip_posts":0,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","style":"card","exclude_ids":[],"css_l_post_radius":6,"css_title_typo_font_weight":"500"},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"1548955c","settings":{"_column_size":25,"_inline_size":25,"_inline_size_tablet":50,"column_order_tablet":2,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"column_order":1},"elements":[{"id":"27c84e8d","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":33,"post_ids":[],"tax_ids":[],"query_type":"section","skip_posts":1,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"css_l_post_radius":6,"css_l_post_bg":"#000000","css_content_margin":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2f9a75ff","settings":{"_column_size":50,"_inline_size":25,"column_order_tablet":3,"_inline_size_tablet":50,"column_order":3},"elements":[{"id":"125f75ee","settings":{"posts":1,"columns":"1","space_below":"none","cat_labels":"1","cat_labels_pos":"bot-center","excerpts":"","content_center":"1","media_ratio":"custom","media_ratio_custom":1.15,"container_width":50,"post_ids":[],"tax_ids":[],"query_type":"section","skip_posts":2,"section_data":{"post_ids":[],"tax_ids":[],"query_type":"custom","exclude_ids":[],"sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""},"scheme":"dark","exclude_ids":[],"css_l_post_radius":6,"css_l_post_bg":"#000000","css_content_margin":{"unit":"px","top":"0","right":"15","bottom":"15","left":"15","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"c9306fc","settings":{"columns":"4","cat_labels":"1","excerpts":"","container_width":100,"post_ids":[],"tax_ids":[],"space_below":"none","pagination_type":"load-more","cat_labels_pos":"bot-center","title_lines":"2","content_center":"1","column_gap":"sm","css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"offset":3,"scheme":"dark","media_ratio_custom":1.15,"exclude_ids":[],"css_l_post_radius":6,"css_l_post_bg":"#000000","css_content_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"style":"card","query_type":"section","skip_posts":3,"section_data":{"post_ids":[],"tax_ids":[],"exclude_ids":[],"query_type":"custom","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}],

	"1035": [{"id":"3cbc799e","settings":{"gutter":"default","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"margin":{"unit":"px","top":"30","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"1d3eb6fa","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"30c80152","settings":{"gutter":"sm","gap":"no","post_ids":[],"exclude_ids":[],"tax_ids":[],"structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"38","left":0,"isLinked":false}},"elements":[{"id":"4787156a","settings":{"_column_size":50,"_inline_size":64.966},"elements":[{"id":"eb52415","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","media_ratio_custom":1.65,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":"66","post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_pad":{"unit":"%","top":"5","right":"18","bottom":"5","left":"5","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":32,"sizes":[]},"css_title_typo_font_weight":"500","skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"media_ratio_custom_tablet":1.25,"media_ratio_custom_mobile":0.85,"css_title_typo_font_size_mobile":{"unit":"px","size":26,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"36","left":"0","isLinked":false},"css_title_typo_font_size_tablet":{"unit":"px","size":27,"sizes":[]},"media_style_shadow":"1","css_media_radius":6},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"597c2853","settings":{"_column_size":50,"_inline_size":35.034},"elements":[{"id":"7b9707d7","settings":{"posts":1,"columns":"1","space_below":"none","media_ratio":"custom","media_ratio_custom":0.86,"meta_items_default":"","meta_above":["cat"],"meta_below":["author","date"],"meta_author_img":"1","container_width":50,"offset":1,"post_ids":[],"exclude_ids":[],"tax_ids":[],"css_content_pad":{"unit":"%","top":"5","right":"25","bottom":"10","left":"5","isLinked":false},"css_content_pad_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_content_pad_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"css_meta_above_margins":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"css_meta_below_margins":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":24,"sizes":[]},"css_title_typo_font_weight":"500","skip_posts":0,"section_data":{"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","terms":[],"cat":"","offset":"","reviews_only":"","tags":[],"post_ids":[],"post_formats":[],"exclude_tags":[],"exclude_ids":[],"taxonomy":"","tax_ids":[],"post_type":""},"media_ratio_custom_tablet":0.64,"css_title_typo_font_size_tablet":{"unit":"px","size":20,"sizes":[]},"media_style_shadow":"1","css_media_radius":6},"elements":[],"isInner":false,"widgetType":"smartmag-overlay","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"57dfae62","settings":{"columns":"4","space_below":"none","title_lines":"3","excerpts":"","container_width":100,"post_ids":[],"exclude_ids":[],"tax_ids":[],"column_gap":"sm","css_l_post_radius":6,"css_title_typo_typography":"custom","css_title_typo_font_size":{"unit":"px","size":17,"sizes":[]},"media_ratio":"3-2","style":"card","offset":2,"skip_posts":0,"section_data":{"post_ids":[],"exclude_ids":[],"tax_ids":[],"query_type":"none","sort_by":"","sort_days":30,"sort_order":"","cat":"","offset":"","reviews_only":"","tags":[],"post_formats":[],"exclude_tags":[],"taxonomy":"","post_type":""}},"elements":[],"isInner":false,"widgetType":"smartmag-grid","elType":"widget"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]

}PK03Y�Ĕ22*smartmag-core/inc/studio/css/elementor.css/**
 * Studio for Elementor elements.
 */
#ts-el-studio .dialog-widget-content {
  width: 1440px;
  max-width: 100vw;
}

#ts-el-studio .dialog-message {
  height: 700px;
  max-height: calc(100vh - 100px);
  overflow: auto;
}

body:not(.ts-el--dark) #ts-el-studio ::-webkit-scrollbar {
  width: 6px;
  height: 0;
  border-radius: 3px;
}

body:not(.ts-el--dark) #ts-el-studio ::-webkit-scrollbar-button {
  width: 0;
  height: 10px;
}

body:not(.ts-el--dark) #ts-el-studio ::-webkit-scrollbar-thumb {
  background-color: #d1d4d6;
  border: 0px none #d1d4d6;
  border-radius: 3px;
}

body:not(.ts-el--dark) #ts-el-studio ::-webkit-scrollbar-track {
  border: 0px none #fff;
  border-radius: 0;
}

body:not(.ts-el--dark) #ts-el-studio ::-webkit-scrollbar-corner {
  background: transparent;
}

.ts-el-studio-launch {
  padding: 0 15px;
  margin-left: 7px;
  width: auto;
  color: #fff;
  background: linear-gradient(45deg, #ea2404, #c3175e);
  border-radius: 4px;
  height: 38px;
  line-height: 38px;
  text-transform: uppercase;
  font-size: 11px;
  font-family: Roboto, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: .05em;
  border: 0;
  vertical-align: bottom;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.ts-el-studio .dialog-widget-content {
  background: #f9f9f9;
}

.ts-el--dark .ts-el-studio .dialog-widget-content {
  background: #34383c;
}

.ts-el-studio .dialog-header {
  padding: 0;
}

.ts-el-studio .dialog-message {
  padding: 15px 15px;
}

.ts-el-studio__header {
  text-align: center;
  color: #6d7882;
  font-size: 13px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  height: 50px;
  background: #fff;
}

.ts-el--dark .ts-el-studio__header {
  color: #eee;
  background: #222;
}

.ts-el-studio__header__tab {
  width: auto;
  padding: 17px 26px;
}

.ts-el-studio__header__back {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: 15px;
}

.ts-el-studio__btn_preview {
  margin-right: 8px;
  background: #000;
  color: #fff;
}

.ts-el-studio__brand {
  color: #000;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 15px;
  margin-right: -15px;
}

.ts-el--dark .ts-el-studio__brand {
  color: #fff;
}

.ts-el-studio__listing {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: left;
  min-height: 100%;
  padding-top: 6px;
}

.ts-el-studio__filters {
  width: 20%;
  max-width: 250px;
  height: 500px;
  margin-right: 24px;
  padding: 10px 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.ts-el-studio__filters__item {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #3a3c41;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
}

.ts-el-studio__filters__item:hover, .ts-el-studio__filters__item.active {
  color: #93003c;
}

.ts-el--dark .ts-el-studio__filters__item {
  color: #efefef;
}

.ts-el--dark .ts-el-studio__filters__item:hover, .ts-el--dark .ts-el-studio__filters__item.active {
  color: #fff;
}

.ts-el-studio__items {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.ts-el-studio__item {
  position: relative;
  width: calc(100% / 3 - 32px);
  margin: 16px;
  padding: 8px;
  background-color: #fff;
  box-shadow: 0 3px 25px -5px rgba(27, 25, 51, 0.26);
  border-radius: 3px;
  overflow: hidden;
  text-align: center;
}

.ts-el--dark .ts-el-studio__item {
  background-color: #404349;
}

.ts-el-studio__item__body {
  position: relative;
  min-height: 180px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}

.ts-el-studio__item__name {
  margin-top: 8px;
  font-weight: 500;
  font-weight: 500;
  color: #53565f;
  margin-bottom: 3px;
}

.ts-el--dark .ts-el-studio__item__name {
  color: rgba(255, 255, 255, 0.85);
}

.ts-el-studio__item__preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity .5s;
  cursor: pointer;
}

.ts-el-studio__item__preview:not(:hover) {
  opacity: 0;
}

.ts-el-studio__item__preview i {
  font-size: 20px;
  color: #d5dadf;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ts-el-studio__item img {
  max-width: 100%;
}

.ts-el-studio__item:hover .ts-el-studio__item__insert {
  transform: none;
  pointer-events: auto;
  cursor: pointer;
}

.ts-el-studio__item__insert {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 99%;
  height: 28px;
  background: #fff;
  transform: translateY(100%);
  pointer-events: none;
}

.ts-el--dark .ts-el-studio__item__insert {
  background: #404349;
}

.ts-el-studio__preview {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}

.ts-el-studio__preview img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
PK03Y@�ut t (smartmag-core/inc/studio/js/elementor.js/**
 * ThemeSphere Smart Studio.
 */
(function($, _) {
	'use strict';

	const SphereStudio = {
		atIndex: 0,
		modal: null,
		modalEl: {},
		contentEl: {},
		allItems: {},
		items: {},
		filters: {},
		activeTab: 'blocks',
		importing: false,
		
		init() {
			elementor.on('preview:loaded', this.setup.bind(this));
			this.modifyAddTemplate();
		},

		setup() {
			if (!this.modal) {
				this.modal = elementor.dialogsManager.createWidget('lightbox', {
					id: 'ts-el-studio',
					closeButton: false
				});
			}

			// Modal button events.
			if (!elementor.$previewContents) {
				return;
			}

			elementor.$previewContents.on(
				'click.ts-studio',
				'.ts-el-studio-launch',
				this.launchModal.bind(this)
			);

		},

		modifyAddTemplate() {
			const tpl = $('#tmpl-elementor-add-section');
			const content = tpl.text().replace(
				'<div class="elementor-add-section-drag-title',
				`<button class="ts-el-studio-launch" type="button">Smart Studio</button><div class="elementor-add-section-drag-title`
			);

			tpl.text(content);
		},

		/**
		 * The main modal initialization.
		 */
		initModal() {

			this.modalEl = $('#ts-el-studio');
			this.modalEl.addClass('ts-el-studio');

			this.initData();
			this.renderModalView();

			// Event: Close.
			$(this.modalEl).on('click', '.elementor-templates-modal__header__close', () => this.modal.hide());

			// Event: Tab.
			$(this.modalEl).on('click', '.ts-el-studio__header__tab', e => {
				e.preventDefault();

				const ele = $(e.currentTarget);
				this.activeTab = ele.data('tab');
				this.renderListing(this.activeTab);

				ele.parent().find('.elementor-active').removeClass('elementor-active');
				ele.addClass('elementor-active');
			});

			// Event: Filter.
			$(this.modalEl).on('click', '.ts-el-studio__filters__item', e => {
				e.preventDefault();

				const ele = $(e.currentTarget);
				this.renderItems(this.activeTab, ele.data('filter'));

				ele.parent().find('.active').removeClass('active');
				ele.addClass('active');
			});

			// Event: Item Preview.
			$(this.modalEl).on('click', '.ts-el-studio__item__preview', e => {
				const ele = $(e.currentTarget);
				this.renderPreview(ele.data('id'));

				return false;
			});

			// Event: Back in preview.
			$(this.modalEl).on('click', '.ts-el-studio__header__back', e => {
				this.renderModalView();
			});

			// Event: Insert template.
			$(this.modalEl).on('click', '.ts-el-studio__insert', e => {
				const ele = $(e.currentTarget);
				ele.html('Importing...');
				this.showLoader();
				this.importTemplate(ele.data('id'));
			});

			// Event: Insert template - inline.
			$(this.modalEl).on('click', '.ts-el-studio__item__insert', e => {
				const ele = $(e.currentTarget);
				const id  = ele.data('id');

				this.renderPreview(id);
				$(this.modalEl).find('.ts-el-studio__insert').trigger('click');
			});
		},

		initData() {

			this.allItems = SphereStudioData.elTemplates;

			const toArray = items => Object.entries(items).map(item => {
				return {id: item[0], ...item[1]};
			});

			this.items = {
				blocks: toArray(_.pick(this.allItems, value => value.tab === 'blocks')),
				pages: toArray(_.pick(this.allItems, value => value.tab === 'pages')),
			};

			this.filters = {
				blocks: {
					all: 'All',
					block: 'Posts Blocks',
					section: 'Home Sections',
					featured: 'Featured & Sliders',
					structure: 'Structure',
					carousel: 'Carousels',
					newsletter: 'Newsletters'
				},
				pages: {
					all: 'All',
					home: 'Homepages',
					archive: 'Category/Archives',
					footer: 'Footers'
				}
			};
		},

		renderModalView() {
			// Add header template.
			this.modalEl.find('.dialog-lightbox-header').html(
				wp.template('ts-el-studio-header')({
					activeTab: this.activeTab
				})
			);

			// The content wrapper.
			this.contentEl = this.modalEl.find('.dialog-lightbox-message');

			// Default to block listsing.
			this.renderListing(this.activeTab);
		},

		showLoader() {
			this.contentEl.html(
				wp.template('elementor-template-library-loading')()
			);
		},

		/**
		 * Render a listing and add to content element.
		 * 
		 * @param {String} type 
		 */
		renderListing(type) {
			type = type || 'blocks';

			let template = wp.template('ts-el-studio-' + type)({
				filters: this.filters[type]
			});

			// Default to all filter.
			template = $(template);
			template.find('[data-filter=all]').addClass('active');

			this.contentEl.html(template);
			this.renderItems(type);
		},

		/**
		 * Render items with or without filters.
		 * 
		 * @param {String} type 
		 * @param {String} filter 
		 */
		renderItems(type, filter) {
			type = type || 'blocks';

			const setThumbnails = items => items.map(item => {
				if (item.thumbnail) {
					item.thumbnailSrc = item.thumbnail;
					item.thumbnailSrcset = '';

					if (item.thumbnail.includes('@2x')) {
						item.thumbnailSrc = item.thumbnail.replace('@2x', '@1x');
						item.thumbnailSrcset = `${item.thumbnail} 2x`;
					}
				}
			
				return item;
			});

			const items = setThumbnails(
				this.filterItems(this.items[type], filter)
			);

			let sortedItems = items;
			if (!filter || filter === 'all') {
				sortedItems = items.reverse().sort((a, b) => {
					a.order = a.order || 0;
					b.order = b.order || 0;

					if (a.order < b.order) {
						return 1;
					}

					if (a.order > b.order) {
						return -1;
					}

					return 0;
				});
			}
			
			const template = wp.template('ts-el-studio-items')({
				items: sortedItems
			});

			const itemsEl = this.contentEl.find('.ts-el-studio__items');
			itemsEl.html(template);
			itemsEl.imagesLoaded(() => new Masonry(itemsEl[0]));
		},

		filterItems(items, filter) {
			if (!filter || filter === 'all') {
				return items;
			}
			
			return items.filter(value => value.tags.includes(filter));

		},

		/**
		 * Render preview view.
		 * 
		 * @param {String|Number} id 
		 */
		renderPreview(id) {

			const item = this.getItem(id);

			// Replace header.
			this.modalEl.find('.dialog-lightbox-header').html(
				wp.template('ts-el-studio-header-preview')({
					id: id,
					livePreview: item.livePreview
				})
			);

			if (item.preview) {
				item.previewSrc = item.preview;
				item.previewSrcset = '';

				if (item.preview.includes('@2x')) {
					item.previewSrc = item.preview.replace('@2x', '@1x');
					item.previewSrcset = `${item.preview} 2x`;
				}
			}

			const template = wp.template('ts-el-studio-preview')({item});
			this.contentEl.html(template);
		},

		getItem(id, tab) {
			tab = tab || this.activeTab;
			return this.items[tab].find(e => e.id == id);
		},

		/**
		 * Import a template into the editor.
		 * 
		 * @param {String|Number} id 
		 */
		importTemplate(id, type) {
			// type = type || this.activeTab;

			if (this.importing) {
				return;
			}

			this.importing = true;

			$.get(
				ajaxurl,
				{
					action: 'ts-el-studio-template',
					id: id
				}, 
				response => {

					this.importing = false;
					if (!response.success) {
						return;
					}

					const model = new Backbone.Model({
						title: this.allItems[id].title
					});

					$e.run('document/elements/import', {
						model,
						data: response.data,
						options: {at: this.atIndex}
					});

					this.modal.hide();
				}
			);
		},

		/**
		 * Show the modal.
		 */
		launchModal(e) {

			/**
			 * Dark mode detection.
			 */
			if (elementor.settings.editorPreferences.model) {
				let scheme = elementor.settings.editorPreferences.model.get('ui_theme');
				if (scheme === 'auto') {
					scheme = matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
				}

				$('body').removeClass('ts-el--dark');
				if (scheme === 'dark') {
					$('body').addClass('ts-el--dark');
				}
			}

			/**
			 * Store at position.
			 */
			const section = $(e.currentTarget).closest('.elementor-top-section');
			const modelID = section.data('model-cid');

			// Setup index position.
			if (elementor.getPreviewView && elementor.getPreviewView().collection.length) {
				$.each(elementor.getPreviewView().collection, (index, model) => {
					if (modelID === model.cid) {
						this.atIndex = index;
					}
				});
			}

			this.modal.show();
			this.initModal();
		},
	}

	$(window).on('elementor:init', () => SphereStudio.init());

})(jQuery, window._);PK03Y�c8���,smartmag-core/inc/studio/sass/elementor.scss/**
 * Studio for Elementor elements.
 */
#ts-el-studio {
	.dialog-widget-content {
		width: 1440px;
		max-width: 100vw;
	}

	// Can't be applied to widget-content or it won't take full height.
	.dialog-message {
		height: 700px;
		max-height: calc(100vh - 100px);
		overflow: auto;
		
	}

	body:not(.ts-el--dark) & {

		::-webkit-scrollbar {
			width: 6px;
			height: 0;
			border-radius: 3px;
		}
		
		::-webkit-scrollbar-button {
			width: 0;
			height: 10px;
		}
		
		::-webkit-scrollbar-thumb {
			background-color: #d1d4d6;
			border: 0px none #d1d4d6;
			border-radius: 3px;
		}
		
		::-webkit-scrollbar-track {
			border: 0px none #fff;
			border-radius: 0;
		}
		
		::-webkit-scrollbar-corner {
			background: transparent;
		}
	}
}

.ts-el-studio {

	// Launcher button.
	&-launch {
		padding: 0 15px;
		margin-left: 7px;
		width: auto;
		color: #fff;
		background: linear-gradient(45deg, #ea2404, #c3175e);
		border-radius: 4px;
		height: 38px;
		line-height: 38px;
		text-transform: uppercase;
		font-size: 11px;
		font-family: Roboto, system-ui, sans-serif;
		font-weight: 500;
		letter-spacing: .05em;
		border: 0;
		vertical-align: bottom;
		box-shadow: 0 2px 2px rgba(0,0,0, .1);
	}

	.dialog-widget-content {
		background: #f9f9f9;

		.ts-el--dark & {
			background: #34383c;
		}
	}

	.dialog-header {
		padding: 0;
	}

	.dialog-message {
		padding: 15px 15px;
	}

	&__header {
		text-align: center;
		color: #6d7882;
		font-size: 13px;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
		height: 50px;
		background: #fff;
		
		.ts-el--dark & {
			color: #eee;
			background: #222;
		}

		&__tab {
			width: auto;
			padding: 17px 26px;
		}

		&__back {
			display: flex;
			align-items: center;
			margin-left: 15px;
		}
	}

	&__btn_preview {
		margin-right: 8px;
		background: #000;
		color: #fff;
	}

	&__brand {
		color: #000;
		font-size: 15px;
		text-transform: uppercase;
		font-weight: 700;
		letter-spacing: 0.04em;
		padding-left: 15px;

		// Flexbox pseudo centering help.
		margin-right: -15px;

		.ts-el--dark & {
			color: #fff;
		}
	}

	&__listing {
		display: flex;
		width: 100%;
		text-align: left;
		// overflow: auto;
		min-height: 100%;
		padding-top: 6px;
	}

	&__filters {
		width: 20%;
		max-width: 250px;
		height: 500px;
		margin-right: 24px;
		padding: 10px 15px;
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		// overflow: auto;
		position: sticky;
		top: 10px;

		&__item {
			padding: 11px 0;
			border-bottom: 1px solid rgba(0, 0, 0, 0.1);
			color: #3a3c41;
			text-transform: uppercase;
			letter-spacing: .03em;
			cursor: pointer;

			&:hover,
			&.active {
				color: #93003c;
			}

			.ts-el--dark & {
				color: #efefef;

				&:hover,
				&.active {
					color: #fff;
				}
			}
		}
	}

	&__items {
		flex-grow: 1;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	&__item {
		position: relative;
		width: calc(100% / 3 - 32px);
		margin: 16px;
		padding: 8px;
		background-color: #fff;
		box-shadow: 0 3px 25px -5px rgba(27, 25, 51, .26);
		border-radius: 3px;
		overflow: hidden;
		text-align: center;

		.ts-el--dark & {
			background-color: #404349;
		}

		&__body {
			position: relative;
			min-height: 180px;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}

		&__name {
			margin-top: 8px;
			font-weight: 500;
			font-weight: 500;
			color: #53565f;
			margin-bottom: 3px;

			.ts-el--dark & {
				color: rgba(255,255,255,.85);
			}
		}

		&__preview {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0,0,0,.5);
			transition: opacity .5s;
			cursor: pointer;

			&:not(:hover) {
				opacity: 0;
			}

			i {
				font-size: 20px;
				color: #d5dadf;
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
			}
		}

		img {
			max-width: 100%;
		}

		&:hover &__insert {
			transform: none;
			pointer-events: auto;
			cursor: pointer;
		}

		&__insert {
			position: absolute;
			bottom: 0;
			left: 0;
			width: 99%;
			height: 28px;
			background: #fff;
			transform: translateY(100%);
			pointer-events: none;

			.ts-el--dark & {
				background: #404349;
			}
		}
	}

	&__preview {
		width: 100%;
		display: flex;

		img {
			max-width: 100%;
			margin: 0 auto;
			display: block;
		}
	}
}PK03Y�w���,smartmag-core/inc/studio/views/el-blocks.php<script type="text/template" id="tmpl-ts-el-studio-blocks">
	<div class="ts-el-studio__listing">
		<div class="ts-el-studio__filters">
			<# 
			for (const key in data.filters) { 
				const label = data.filters[key];
			#>

				<a class="ts-el-studio__filters__item" data-filter="{{ key }}">{{ label }}</a>

			<# } #>

		</div>

		<div class="ts-el-studio__items"></div>
	</div>
</script>
PK03Y����tt4smartmag-core/inc/studio/views/el-header-preview.php<script type="text/template" id="tmpl-ts-el-studio-header-preview">
<div class="elementor-templates-modal__header ts-el-studio__header ts-el-studio__header--preview">

	<div id="elementor-template-library-header-preview-back" class="ts-el-studio__header__back">
		<i class="eicon-" aria-hidden="true"></i>
		<span><?php esc_html_e('Back to Listing', 'bunyad-admin'); ?></span>
	</div>

	<div class="elementor-templates-modal__header__menu-area"></div>
	
	<div class="elementor-templates-modal__header__items-area">
		<div class="elementor-templates-modal__header__close elementor-templates-modal__header__close--normal elementor-templates-modal__header__item" title="<?php esc_html_e('Close', 'bunyad-admin'); ?>">
			<i class="eicon-close" title="Close"></i>
		</div>
		<div id="elementor-template-library-header-tools">
			<div id="elementor-template-library-header-preview">
				<div id="elementor-template-library-header-preview-insert-wrapper" class="elementor-templates-modal__header__item">
		
				<# if (data.livePreview) { #>
					<a href="{{ data.livePreview }}" target="_blank" class="ts-el-studio__btn_preview elementor-button">
						<span class="elementor-button-title"><?php esc_html_e('Full Preview', 'bunyad-admin'); ?></span>
					</a>
				<# } #>

				<a data-id="{{ data.id }}" class="ts-el-studio__insert elementor-template-library-template-action elementor-template-library-template-insert elementor-button">
					<i class="eicon-file-download" aria-hidden="true"></i>
					<span class="elementor-button-title"><?php esc_html_e('Insert', 'bunyad-admin'); ?></span>
				</a>

				</div>
			</div>
		</div>
	</div>
</div>
</script>
PK03Y�U��,smartmag-core/inc/studio/views/el-header.php<script type="text/template" id="tmpl-ts-el-studio-header">
<div class="elementor-templates-modal__header ts-el-studio__header">

	<div class="ts-el-studio__brand">
		Smart Studio
	</div>

	<div class="elementor-templates-modal__header__menu-area">
		<div class="ts-el-studio__header__tab elementor-component-tab elementor-template-library-menu-item <# if (data.activeTab === 'blocks') { #> elementor-active <# } #>" data-tab="blocks">Blocks & Sections</div>
		<div class="ts-el-studio__header__tab elementor-component-tab elementor-template-library-menu-item <# if (data.activeTab === 'pages') { #> elementor-active <# } #>" data-tab="pages">Homepages & Layouts</div>
	</div>
	
	<div class="elementor-templates-modal__header__items-area">
		<div class="elementor-templates-modal__header__close elementor-templates-modal__header__close--normal elementor-templates-modal__header__item" title="<?php esc_html_e('Close', 'bunyad-admin'); ?>">
			<i class="eicon-close" title="Close"></i>
		</div>
	</div>
</div>
</script>
PK03Yֵ-���+smartmag-core/inc/studio/views/el-items.php<script type="text/template" id="tmpl-ts-el-studio-items">
<# 
for (const item of data.items) {
	const key = item.id;
#>

	<div class="ts-el-studio__item">

		<div class="ts-el-studio__item__body">
			<div class="ts-el-studio__item__preview elementor-template-library-template-preview ts-el-studio__item__preview" data-id="{{ key }}">
				<i class="eicon-zoom-in-bold" aria-hidden="true"></i>
			</div>
			<img src="{{ item.thumbnailSrc }}" srcset="{{ item.thumbnailSrcset }}" alt="{{ item.title }}"  width="{{ item.thumbWidth }}" />
		</div>

		<div class="elementor-template-library-template-footer">
			<div class="ts-el-studio__item__name">{{ item.title }}</div>
			<a class="elementor-template-library-template-action elementor-template-library-template-insert ts-el-studio__item__insert" data-id="{{ key }}">
				<i class="eicon-file-download" aria-hidden="true"></i>
				<?php esc_html_e('Insert', 'bunyad-admin'); ?>
			</a>
		</div>

	</div>

<# } #>
</script>PK03Y�\S���+smartmag-core/inc/studio/views/el-pages.php<script type="text/template" id="tmpl-ts-el-studio-pages">
	<div class="ts-el-studio__listing">
		<div class="ts-el-studio__filters">
			<# 
			for (const key in data.filters) { 
				const label = data.filters[key];
			#>

				<a class="ts-el-studio__filters__item" data-filter="{{ key }}">{{ label }}</a>

			<# } #>

		</div>

		<div class="ts-el-studio__items"></div>
	</div>
</script>
PK03YR�9��-smartmag-core/inc/studio/views/el-preview.php<script type="text/template" id="tmpl-ts-el-studio-preview">
	
	<div class="ts-el-studio__preview">
		<img src="{{ data.item.previewSrc }}" srcset="{{ data.item.previewSrcset }}" alt="{{ data.item.title }}" />
	</div>

</script>PK03Y��r0r0*smartmag-core/inc/widgets/block-widget.php<?php
namespace Bunyad\Widgets;
use \Bunyad;

/**
 * Base widget class for block widgets.
 */
class BlockWidget extends \WP_Widget
{
	public $conf = [];

	/**
	 * Options object
	 */
	public $options;
	public $block_class;
	public $has_css = false;

	protected $block_options;
	protected $block_data;
	protected $block_id;

	protected $is_loop;

	/** 
	 * @var \Bunyad_Admin_OptionRenderer
	 */
	private $option_renderer;

	public function __construct()
	{
		/**
		 * The name of this class is supposed to match: \Bunyad\Widgets\Grid_Block
		 * which will be converted \Bunyad\Blocks\Loops\Grid for loops namespace.
		 * Note: The excessive slashing is tricky but required. 
		 */
		$class = get_called_class();
		if (strpos($class, '\Loops') !== false) {
			$this->block_class = preg_replace('/.+?([a-z]+)\_Block$/i', 'Bunyad\Blocks\Loops\\\\$1', $class);
			$this->is_loop     = true;
		}
		else {
			$this->block_class = preg_replace('/.+?([a-z]+)\_Block$/i', 'Bunyad\Blocks\\\\$1', $class);
		}
		
		$this->block_id = $this->get_block_id();
		$data = $this->conf;

		if (!$data) {
			return;
		}

		parent::__construct(
			'smartmag-block-' . $this->block_id,
			esc_html($data['title']),
			[
				'description' => isset($data['description']) ? $data['description'] : 'SmartMag posts listings block.', // pre-escaped 
				'classname'   => 'ts-block-widget smartmag-widget-' . $this->block_id
			]
		);
	}

	/**
	 * Get the block options.
	 */
	public function init_options() 
	{
		if (!$this->options) {

			$class = $this->block_class . '_Options';

			$this->options = new $class;
			$this->options->init('widget');
		}
	}

	public function get_options()
	{
		if (!$this->options) {
			$this->init_options();
		}

		/**
		 * Specific changes for some options.
		 */
		$this->options->remove_options([
			'filters',
			'filters_tags',
			'filters_terms',
		]);

		$options = $this->options->get_all();

		// Only custom option.
		if (isset($options['sec-filter']['query_type'])) {
			$options['sec-filter']['query_type']['options'] = [
				'custom'  => esc_html__('Custom', 'bunyad-admin'),
				'related'     => esc_html__('Related Posts (for Single Post)', 'bunyad-admin'),
			];
		}

		if (isset($options['sec-layout']['space_below'])) {
			$options['sec-layout']['space_below']['default'] = 'none';
		}

		foreach (['tags', 'exclude_tags'] as $id) {
			if (!isset($options['sec-filter'][$id])) {
				continue;
			}

			$options['sec-filter'][$id] = array_replace(
				$options['sec-filter'][$id],
				[
					'type'        => 'text',
					'options'     => '',
					'description' => esc_html__('Enter a tag slug or multiple slugs separated by comma.', 'bunyad-admin')
				]
			);
		}

		return $options;
	}

	/**
	 * Deduce block id from class name
	 */
	public function get_block_id() 
	{
		$class = explode('\\', $this->block_class);
		$id    = end($class);

		// Convert FooBar to Foo-Bar and FooBar3 to Foo-Bar-3
		$id    = preg_replace('/(.)(?=[A-Z])/u', '$1-', $id);
		$id    = preg_replace('/(.)(?=[0-9])/u', '$1-', $id);

		return strtolower($id);
	}

	/**
	 * The widget render function.
	 * 
	 * Note: This may also be called manually by legacy widgets.
	 */
	public function widget($args, $instance)
	{
		$settings = $instance + [
			'is_sc_call' => true
		];

		// Default to custom query.
		if (!isset($settings['query_type'])) {
			$settings['query_type'] = 'custom';
		}

		?>

		<?php 

		// Related is only for single posts.
		if ($settings['query_type'] === 'related' && !is_single()) {
			return;
		}
		
		echo $args['before_widget'];

		// Widget title if it exists.
		if (!empty($instance['widget_title'])) {
			echo $args['before_title'] . $instance['widget_title'] . $args['after_title'];
		}

		?>
		
		<div class="block">
			<?php 
				/** @var \Bunyad\Blocks\Base\LoopBlock $block */
				$block = Bunyad::blocks()->load(
					str_replace('Bunyad\Blocks\\', '', $this->block_class),
					$settings
				);

				// Only for loop blocks.
				if ($this->is_loop) {
					// Process first to get right heading etc.
					$block->process();

					// Use sidebar default heading.
					if (empty($block->props['heading_type']) && !empty($block->data['heading'])) {
						$block->data['heading_custom'] = $args['before_title'] . $block->data['heading'] . $args['after_title'];
					}
				}

				$block->render();
	
				if (!empty($instance['has_css'])) {
					$this->render_css(
						'.block-sc[data-id="' . $block->data['unique_id'] . '"]', 
						$instance
					);
				}
			?>
		</div>

		<?php

		echo $args['after_widget'];
	}

	/**
	 * Render dynamic CSS needed for this widget.
	 */
	protected function render_css($wrapper, array $instance)
	{
		// $this->init_options();

		$options  = $this->get_options();
		$css      = [];

		foreach ($options as $section) {
			foreach ($section as $key => $option) {

				if (empty($instance[$key]) || empty($option['selectors'])) {
					continue;
				}
				
				$css[] = $this->create_option_css(
					(array) $option['selectors'],
					$wrapper, 
					$instance[$key]
				);
			}
		}

		$css = array_filter($css);
		if (!empty($css)) {
			printf(
				'<style>%s</style>',
				join("\n", $css)
			);
		}
	}

	/**
	 * Create CSS given selectors, wrapper id and a value.
	 */
	private function create_option_css(array $selectors, $wrapper, $value = '') 
	{
		$css = [];
		foreach ($selectors as $selector => $rule) {
			$selector = str_replace('{{WRAPPER}}', $wrapper, $selector);
			
			// Replacement variables.
			$rule    = str_replace('{{VALUE}}', $value, $rule);
			$rule    = str_replace('{{UNIT}}', 'px', $rule);
			$rule    = str_replace('{{SIZE}}', $value, $rule);

			$css[]    = "{$selector} { {$rule} }";
		}

		return join("\n", $css);
	}

	/**
	 * @inheritDoc
	 */
	public function update($new, $old)
	{

		$this->init_options();
		$options = $this->options->get_all(true);

		// Sanitize all.
		array_walk_recursive($new, function(&$value, $key) use ($options) {
			$sanitizer = 'wp_kses_post';

			if (isset($options[$key]['sanitize_callback'])) {
				$sanitizer = $options[$key]['sanitize_callback'];
			}

			// Add back sanitizer if current user can't use unfiltered html.
			if (!$sanitizer && !current_user_can('unfiltered_html')) {
				$sanitizer = 'wp_kses_post';
			}

			if ($sanitizer) {
				$value = call_user_func($sanitizer, $value);
			}
		});

		return $new;
	}

	protected function init_editor() 
	{
		$this->init_options();

		// Init editor.
		$this->options->init_editor();
	}

	/**
	 * Backend form
	 *
	 * @param array $instance Previously saved values from database.
	 */
	public function form($instance) 
	{
		$this->init_editor();
		$this->option_renderer = Bunyad::factory('admin/option-renderer');

		$sections = $this->options->get_sections();
		$options  = $this->get_options();

		// Wrapper.
		printf('<div id="bunyad-widget-%1$s">', esc_attr($this->id));

		// We want heading option first at top.
		if (isset($options['sec-heading'])) {
			$heading = $options['sec-heading']['heading'];
			unset($options['sec-heading']['heading']);

			$heading_value = isset($instance['heading']) ? $instance['heading'] : '';
			$this->_render_option('heading', $heading, $heading_value);
		}

		/**
		 * Render all section headings and options.
		 */
		$count   = 0;
		foreach ($sections as $sec_key => $data) {
			$count++;

			// Options cannot be empty.
			if (empty($options[$sec_key])) {
				continue;
			}

			ob_start();
			foreach ($options[$sec_key] as $key => $option) {
				$this->_render_option(
					$key, 
					$option,
					isset($instance[$key]) ? $instance[$key] : null
				);
			}

			$rendered_options = ob_get_clean();
			$rendered_options = trim($rendered_options);

			// Skip empty groups.
			if (!$rendered_options) {
				continue;
			}

			if (empty($data['widget_no_group'])) {
				printf(
					'<details class="bunyad-widget-tab"%1$s>
						<summary class="heading"><span>%2$s</span></summary>
						%3$s
					</details>',
					($count === 1 ? ' open' : ''),
					esc_html($data['label']),
					$rendered_options // Escaped by _render_option()
				);
			}
			else {
				printf(
					'<div>%s</div>',
					$rendered_options  // Escaped by _render_option()
				);
			}
		}

		// Close bunyad-widget id wrapper.
		echo '</div>'; 

		// Add the has_css flag to be saved.
		if ($this->has_css) {
			printf(
				'<input type="hidden" name="%1$s" value="%2$s" />',
				$this->get_field_name('has_css'),
				(int) $this->has_css
			);
		}

		$this->render_form_js();
	}

	/**
	 * Render a field for the widget
	 *
	 * @param string $key    ID/name of the option.
	 * @param array $option  Option configs.
	 * @param mixed $value   Current value. If null, default is used.
	 */
	public function _render_option($key, $option, $value = null)
	{
		$show_label = true;

		// Unsupported type.
		if (in_array($option['type'], ['color', 'heading'])) {
			return;
		}

		$allowed_css = [
			'css_column_gap',
			'css_row_gap',

			// Media ratio can't be used until dependencies are properly removed.
			// 'media_ratio_custom',
			
			// Better handled in global only.
			// 'media_width',
		];

		// CSS values are mostly unsupported.
		if (isset($option['selectors']) || isset($option['selector'])) {
			if (!in_array($key, $allowed_css)) {
				return;
			}
			
			$this->has_css = true;
		}

		switch ($option['type']) {
			case 'text':
			case 'media':
				$option['type'] = 'text';
				$option['input_class'] = 'widefat';
				
				break;

			case 'select':
				$option['type']  = 'select';
				$option['class'] = 'widefat';

				break;

			case 'select2':
			case 'bunyad-selectize':
				$option = array_replace($option, [
					'type'    => 'select',
					'class'   => 'widefat bunyad-selectize'
				]);

				break;

			case 'slider':
				$option['type'] = 'number';
				break;

			case 'switcher':
			case 'checkbox':
				$option['type'] = 'checkbox';
				$option['label_block'] = true;

				// Checkbox renderer has a label built-in
				$show_label = false;

				break;
			
			case 'richtext':
				$option['type'] = 'textarea';
				break;

			// Unsupported.
			case 'html':
				return;

		}

		$default = isset($option['default']) ? $option['default'] : '';
		$option  = array_replace($option, [
			'name'    => $this->get_field_name($key),
			'value'   => $value !== null ? $value : $default,
			'no_wrap' => true
		]);

		// Not all pagination types are supported for widgets.
		if ($key === 'pagination_type') {
			$option['options'] = array_intersect_key(
				$option['options'], 
				array_flip([
					'numbers-ajax',
					'load-more'
				])
			);
		}

		/**
		 * Convert 'conditions' data to be valid with our JS context checker.
		 */
		$context = [];
		if (isset($option['condition'])) {
			foreach ($option['condition'] as $opt_key => $val) {
				$compare = '=';
				if (strpos($opt_key, '!') !== false) {
					$compare = '!=';
					$opt_key = str_replace('!', '', $opt_key);
				}

				$context[$opt_key] = [
					'value'   => $val,
					'compare' => $compare
				];
			}
		}

		$class = [
			'bunyad-widget-option'
		];

		if (empty($option['label_block'])) {
			$class[] = 'bunyad-widget-option-inline';
		}

		if ($option['type'] === 'hidden') {
			echo $this->option_renderer->render($option);
			return;	
		}

		$attribs = [
			'class'        => $class,
			'data-element' => $key,
			'data-type'    => $option['type'],
			'data-value'   => is_array($option['value']) ? json_encode($option['value']) : $option['value'],
			'data-context' => $context ? json_encode($context) : ''
		];

		if (isset($option['selectize_options'])) {
			$attribs['data-selectize-options'] = json_encode($option['selectize_options']);
		}

		?>

		<div <?php Bunyad::markup()->attribs('widget-' . $this->block_id, $attribs);?>>

			<?php if ($show_label): ?>
				
				<label for="<?php echo esc_attr($this->get_field_name($key)); ?>" class="label">
					<?php echo esc_html($option['label']); ?>
				</label>

			<?php endif; ?>

			<?php echo $this->option_renderer->render($option); ?>

			<?php if (!empty($option['description'])): ?> 

				<p class="small-desc"><?php echo esc_html($option['description']); ?></p>

			<?php endif; ?>

		</div>

		<?php
	}

	/**
	 * JS to initialize the widet form.
	 */
	public function render_form_js()
	{
		?>
		<script>
		jQuery(function($) {
			Bunyad.widgets.init('bunyad-widget-<?php echo esc_attr($this->id); ?>');
		});
		</script>
		<?php
	}
}PK03Y#��!��.smartmag-core/inc/widgets/classmap-widgets.php<?php
/**
 * All the widgets to be used as blocks
 */
namespace Bunyad\Widgets\Loops {
	use Bunyad\Widgets\BlockWidget;

	if (!function_exists('esc_html')) {
		return;
	}

	class Grid_Block extends BlockWidget {
		public $conf = [
			'title' => 'SmartMag Block - Grid',
		];
	}

	// class Large_Block extends BlockWidget {
	// 	public $conf = [
	// 		'title' => 'SmartMag Block - Large',
	// 	];
	// }

	class Overlay_Block extends BlockWidget {
		public $conf = [
			'title' => 'SmartMag Block - Overlay',
		];
	}

	// class FocusGrid_Block extends BlockWidget {
	// 	public $conf = [
	// 		'title' => 'SmartMag Block - Focus Grid',
	// 	];
	// }

	// class NewsFocus_Block extends BlockWidget {
	// 	public $conf = [
	// 		'title' => 'SmartMag Block - News Focus',
	// 	];
	// }

	class Highlights_Block extends BlockWidget {
		public $conf = [
			'title' => 'SmartMag Block - Highlights',
		];
	}

	// class PostsList_Block extends BlockWidget {
	// 	public $conf = [
	// 		'title' => 'SmartMag Block - List',
	// 	];
	// }

	class PostsSmall_Block extends BlockWidget {
		public $conf = [
			'title'       => 'SmartMag - Latest Posts',
			'description' => 'Widget to show latest posts. Uses Small Posts block.',
		];
	}

	// class PostsGallery_Block extends BlockWidget {
	// 	public $conf = [
	// 		'title' => 'SmartMag - Posts Gallery',
	// 	];
	// }
}

namespace Bunyad\Widgets {

	class Newsletter_Block extends BlockWidget {
		public $conf = [
			'title' => 'SmartMag - Newsletter',
			'description' => 'Newsletter subscribe widget.',
		];
	}

	class Codes_Block extends BlockWidget {
		public $conf = [
			'title' => 'SmartMag - Ads / Code',
			'description' => 'Advertisements or codes widget.',
		];
	}
}PK03Y7)�--smartmag-core/js/widget-tabs.jsjQuery(function($) {
	
	$('.widget-liquid-right').on('change', '[name*="[cats]["]', function() {
		if ($(this).val() == 'tag') {
			$(this).parent().find('.tax_tag').show();
		}
		else {
			$(this).parent().find('.tax_tag').hide();
		}
	});
	
	$('.widget-liquid-right').on('click', '.remove-recent-tab', function() {
		$(this).parent().parent().prev('.title').remove();
		$(this).parent().parent().remove();
	});
	
	$('.widget-liquid-right').on('click', '#add-more-tabs', function(e, data) {

		// current tabs count
		var tabs_count = $(this).parent().data('bunyad_tabs') || 0,
			 max_id =  $(this).parent().data('max_id') || 0;
		
		if (tabs_count === 0) {
			tabs_count = $(this).parent().parent().find('.title').length;
		}

		if (tabs_count >= 6) { 
			alert('Woah, slow down. Do you really wish to be adding that many tabs?');
		}
		
		tabs_count++;
		max_id++;

		// get our template and modify it
		var html = $(this).parent().parent().find('.template-tab-options').html();
		
		
		/**
		 * Editing? - load template values
		 */
		
		// defaults
		var selected;
		if (data !== Object(data)) {
			data = {title: '', selected: 'recent', tax_tag: '', n: max_id, posts: 4};
		}

		// template replace
		for (i in data) {
			html = html.replace(new RegExp('%' + i + '%', 'g'), data[i]);
		}
		
		// set max id if editing 
		if (parseInt(data['n']) > max_id) {
			max_id = parseInt(data['n']);
		}
			
		selected = data.selected;

		html = $(html);
		html.find('label span').html(tabs_count);
		
		// select the pre-provided option
		if (selected) {
			html.find('select').val(selected);
		}
		
		$(this).parent().before(html);
		$(this).parent().parent().find('select').trigger('change');

		// update counter
		$(this).parent().data({'bunyad_tabs': tabs_count, 'max_id': max_id});
		
		e.stopPropagation();
		return false;
	});
});
PK03Y7{&���smartmag-core/js/widgets.js/**
 * Widgets related setup.
 */
"use strict";

if (!Bunyad) {
	var Bunyad = {};
}

(function($) {

	/**
	 * Initialize a widget.
	 * 
	 * @param {String} id 
	 */
	function init(id) {
		
		// Ignore if id missing or called from a placeholder.
		if (!id || id.includes('__i__')) {
			return;
		}
		
		const widget = $(`#${id}`);
		widgetContexts(widget);
		setupCustomControls(widget);

		// Remove hidden elements on submit (disabled context uses display=none).
		// Shouldn't be relied on as it will not effect the ajax call on first add.
		widget.closest('.widget').find('[type="submit"]').on('click', function() {
			widget.find('.bunyad-widget-option')
				.filter(function() {
					return $(this).css('display') === 'none';
				})
				.remove();
		});
	}

	function setupCustomControls(widget) {

		/**
		 * Selectize.
		 */
		widget.find('.bunyad-selectize').each(function() {
			const select   = $(this);
			const element  = select.closest('.bunyad-widget-option');

			const params = Object.assign(
				{
					sortable: true,
					multiple: true,
					create: false,
					ajax: false,
					preload: true
				},
				element.data('selectize-options') || {}
			);

			const currentValue = element.data('value');
			const initArgs = {
				create: params.create,

				// Setting it here to preserve sort for multiple. Single value should still be an array.
				items: currentValue,
				plugins: []
			};

			if (params.sortable) {
				initArgs.plugins.push('drag_drop');
			}

			if (params.multiple) {
				initArgs.plugins.push('remove_button');
			}

			if (params.ajax) {
				// initArgs.preload = params.preload;
				initArgs.preload = false;
				initArgs.load = (query, cb, fetchSaved) => {
					// if (!query.length) {
					// 	return cb();
					// }

					if (!window.bunyadAjaxCache) {
						window.bunyadAjaxCache = {};
					}
					
					let url = params.url || '';
					if (params.endpoint) {
						url = wpApiSettings.root + wpApiSettings.versionString + params.endpoint;
						url = url.replace('{query}', encodeURIComponent(query));
					}

					if (fetchSaved) {
						url = wpApiSettings.root + wpApiSettings.versionString + params.endpoint_saved;
						url = url.replace('{ids}', query);
					}

					// Not for first load where requests may happen at same time.
					if (url in window.bunyadAjaxCache) {
						// console.log('getting from cache ', url);
						return cb(window.bunyadAjaxCache[url]);
					}

					$.ajax({
						url,
						type: 'GET',
						dataType: 'json',
						beforeSend: xhr => xhr.setRequestHeader('X-WP-Nonce', wpApiSettings.nonce),
						error: () => cb(),
						success: data => {
							const items = [];
							data.forEach(opt => {
								if (opt.id) {
									items.push({text: opt.name, value: opt.id});
								}
							});

							window.bunyadAjaxCache[url] = items;
							cb(items);
						}
					});
				}

				// Load labels / data for currently saved terms (usually ids).
				if (currentValue) {
					let values = currentValue;
					if (Array.isArray(currentValue)) {
						// Ensure only ids, when create enabled.
						values = currentValue.filter(v => parseInt(v)).join(',');
					}
					
					const loadSavedOptions = () => {
						const selectize = select[0].selectize;

						initArgs.load(values, (items) => {
							if (!items) {
								return;
							}

							items.forEach(item => selectize.addOption(item));
							selectize.clear(true);
							selectize.setValue(currentValue, true);
						}, true);
					}

					if (values) {
						initArgs.onInitialize = loadSavedOptions;
					}
				}
			}

			select.selectize(initArgs);

			// Select2 interference from buggy plugins.
			select.parent().find('.select2').remove();
		});
	}

	/**
	 * Hide or show elements based on context for a widget.
	 * 
	 * @param {Object} widget jQuery object of container.
	 */
	function widgetContexts(widget) {

		let contexts = [];

		function setup() {

			// Setup contexts.
			widget.find('[data-context]').each(function() {
			
				const context = $(this).data('context');
				if (!context) {
					return;
				}
	
				const element     = $(this).data('element');
				contexts[element] = context;
			});

			const setChangeEvent = element => {
				const ele = widget.find(`[name*="[${element}]"]`);
				ele.on('change', processChange);
			};

			// Setup change handlers.
			Object.keys(contexts).forEach(element => {
				const depends = contexts[element];
				
				// Set change detection for both the dependents.
				setChangeEvent(element);
				for (let key in depends) {
					setChangeEvent(key);
				}
			});

			// Run at init.
			processChange();
		}

		function doCompare(value, expected, compare) {

			if (Array.isArray(expected)) {
				compare = compare == '!=' ? 'not in' : 'in';
			}
		
			switch (compare) {
				case 'in':
				case 'not in':
					const result = expected.indexOf(value) !== -1;
					return compare == 'in' ? result : !result;

				case '!=':
					return value != expected;

				default:
					return value == expected;
			}
		}

		function checkConditions(conditions) {

			let passed = true;

			Object.keys(conditions).forEach(element => {
				const condition    = conditions[element];
				const currentValue = getElementValue(element);

				if (!passed) {
					return;
				}

				passed = doCompare(
					currentValue, 
					condition.value,
					condition.compare
				);

				// console.log(element, condition, currentValue, passed);
			});

			return passed;
		}
	
		function getElementValue(element) {
			const ele = widget.find(`[data-element="${element}"]`);

			switch (ele.data('type')) {
				case 'checkbox':
					return ele.find('input[type=checkbox]').is(':checked') ? 1 : 0;

				case 'select':
					return ele.find('select').val();

				default:
					return ele.find(`[name*="[${element}]"][type!=hidden]`).val();
			}
		}

		function processChange() {

			Object.keys(contexts).forEach(element => {
				const conditions = contexts[element];
				const ele = widget.find(`[data-element="${element}"]`);

				if (!checkConditions(conditions)) {
					ele.hide();
				}
				else {
					ele.show();
				}
			});
		}

		setup();
		
		return {setup};
	}

	(function() {
		/**
		 * This is required for first time addition of widgets. Core can run the widget 
		 * JS on first add without passing a real id. The correct JS call only happens 
		 * on edits. 
		 */
		$(document).on('widget-added', function(e, widget) {
			// Only apply to widgets that include our options.
			if (!widget || !widget.find('.bunyad-widget-option').length) {
				return;
			}

			Bunyad.widgets.init(widget.prop('id'));
		});
	})();

	Bunyad.widgets = {
		init
	};
})(jQuery);PK03Y"
�c??%smartmag-core/js/elementor/preview.js(function($) {
	"use strict";

	$(window).on('elementor/frontend/init', () => {

		// elementorFrontend.hooks.addAction('frontend/element_ready/smartmag-featgrid.default', function (element) {

		elementorFrontend.hooks.addAction('frontend/element_ready/widget', element => {
			Bunyad.sliders();
		});
	});
})(jQuery);PK03Y�}�Lsmartmag-core/lib/bunyad.php<?php
/**
 * Bunyad Framework - factory and pseudo-registry for objects
 * 
 * Basic namespacing utility is provided by this factory for easy changes
 * for a a theme that has different needs than the original one. 
 * 
 * @package Bunyad
 */
class Bunyad_Base 
{
	
	protected static $_cache = array();
	protected static $_registered = array();

	public static $fallback_path;
	
	/**
	 * Build the required object instance
	 * 
	 * @param string  $object
	 * @param boolean $fresh 	Whether to get a fresh copy; will not be cached and won't override 
	 * 							current copy in cache.
	 * @param mixed ...$args    Arguments to pass to the constructor.
	 * @return false|object
	 */
	public static function factory($object = 'core', $fresh = false, ...$args)
	{
		if (isset(self::$_cache[$object]) && !$fresh) {
			return self::$_cache[$object];
		}
		
		// Pre-defined class relation?
		if (!empty(self::$_registered[$object]['class'])) {
			$class = self::$_registered[$object]['class'];
		}
		else {

			// Convert short-codes to Bunyad_ShortCodes; core to Bunyad_Core etc.
			$class = str_replace('/', '_', $object);
			$class = apply_filters('bunyad_factory_class', 'Bunyad_' . self::file_to_class_name($class));
		}
		
		// Try auto-loading the class.
		// @todo Handle in autoloader.
		if (!class_exists($class)) {
			self::load_file($object);
		}
		
		// Class not found
		if (!class_exists($class)) {
			return false;
		}
		
		// Don't cache fresh objects
		if ($fresh) {
			return new $class(...$args); 
		}
		
		/**
		 * Forced singleton if property $singleton is defined.
		 * 
		 * Mainly for classes which use the object just registered in __construct() method. 
		 * This makes object available in cache before the __construct() is called.
		 */
		if (!empty($class::$singleton)) {

			$reflection = new ReflectionClass($class);
			$new_object = $reflection->newInstanceWithoutConstructor();
			self::$_cache[$object] = $new_object;

			if ($reflection->hasMethod('__construct')) {
				$new_object->__construct();
			}
		}
		else {
			self::$_cache[$object] = new $class(...$args);
		}

		return self::$_cache[$object];
	}

	/**
	 * Load a specific class's file.
	 */
	public static function load_file($id) 
	{
		// Locate file in child theme or parent theme lib
		$file = locate_template('lib/' . $id . '.php');

		// Check fallback path if not found in theme
		if (!$file && static::$fallback_path) {
			$file = static::$fallback_path . $id . '.php';

			if (!file_exists($file)) {
				return false;
			}
		}

		if ($file) {
			require_once $file;
		}
	}
	
	public static function file_to_class_name($file_name)
	{
		return implode('', array_map('ucfirst', explode('-', $file_name)));
	}
	
	/**
	 * Core class
	 * 
	 * @return Bunyad_Core
	 */
	public static function core($fresh = false) 
	{
		return static::factory('core', $fresh);
	}
	
	/**
	 * Global Registry class
	 * 
	 * @return Bunyad_Registry
	 */
	public static function registry($fresh = false) 
	{
		return static::factory('registry', $fresh);
	}
	
	/**
	 * Options class
	 * 
	 * @return Bunyad_Options
	 */
	public static function options($fresh = false)
	{
		return static::factory('options', $fresh);
	}
	
	/**
	 * Posts related functionality
	 * 
	 * @return Bunyad_Posts
	 */
	public static function posts($fresh = false)
	{
		return static::factory('posts', $fresh);
	}
	
	/**
	 * WordPress Menus related functionality
	 * 
	 * @return Bunyad_Menus
	 */
	public static function menus($fresh = false)
	{
		return static::factory('menus', $fresh);
	}
	
	/**
	 * Markup generator for HTML
	 * 
	 * @return Bunyad_Markup
	 */
	public static function markup($fresh = false)
	{
		return static::factory('markup', $fresh);
	}
	
	/**
	 * Register an object for namespacing or for factory loading
	 * 
	 * @param string $name
	 * @param array  $options  set class to map and init to 
	 */
	public static function register($name, $options = array())
	{	
		// Pre-initialized object?
		if (isset($options['object'])) {
			self::$_cache[$name] = $options['object'];
			
			return $options['object'];
		}
		
		// Need a class at this point
		if (!isset($options['class'])) {
			return;
		}
		
		self::$_registered[$name] = $options;
		
		// Init it ?
		if (!empty($options['init'])) {
			return static::factory($name);
		}
	}
	
	/**
	 * Call registered loaders or registry objects - alias for factory at the moment.
	 * 
	 * @param string $name
	 * @param array  $fresh
	 */
	public static function get($name, $fresh = false)
	{
		// Auto-load it via factory.
		return static::factory($name, $fresh);
	}

	/**
	 * Shortcut magic for factory for the inexplicitly defined methods.
	 *
	 * @param string $name
	 * @param array  $args
	 * @return object|false
	 */
	public static function __callStatic($name, array $args)
	{
		// Auto-load it via factory.
		return static::factory($name, ...$args);
	}
}PK03Y�L\)\)smartmag-core/lib/core.php<?php
/**
 * Deals with the basic initialization and core methods for theme.
 */
class Bunyad_Core
{
	private $cache = [
		'body_classes' => [],
		'options'      => []
	];

	private $is_theme = false;
	
	public function init($options = [])
	{
		$this->cache['options'] = $options;
		
		// Register Sphere Core plugin components options
		add_filter('sphere_plugin_components', array($this, '_sphere_components'));
		
		// Pre-initialization hook.
		do_action('bunyad_core_pre_init', $this);

		// Include core utility functions.
		require_once get_template_directory() . '/lib/util.php';
		
		/*
		 * Setup framework internal functionality
		 */
		// initialize options and add to cache
		Bunyad::options()->set_config(array_replace(
			[
				'meta_prefix'  => '_bunyad',
				'theme_prefix' => strtolower($options['theme_name']),
				'customizer'   => [],
			],
			$options
		))->init();

		// Set as a valid theme.
		$this->is_theme = true;
		
		if (isset($options['options']) && is_array($options['options'])) {
			Bunyad::options()->set($options['options']);
		}
		
		// Initialize admin.
		if (is_admin()) {
			$this->init_admin($options);
		}
		
		// Default sidebar from global options.
		$this->set_sidebar(Bunyad::options()->default_sidebar);

		/*
		 * Add theme related functionality using the after_setup_theme hook
		 */
		add_action('after_setup_theme', array($this, 'setup'), 11);

		// Add support for type=module and nomodule.
		add_filter('script_loader_tag', array($this, 'add_module_nomodule'), 10, 2);

		/**
		 * Fire up a post initialization hook with self reference
		 * 
		 * @param  Bunyad_Core  $this
		 */
		do_action('bunyad_core_post_init', $this);
		
		return $this;
	}
	
	/**
	 * Action callback: Setup theme related functionality at after_setup_theme hook
	 */
	public function setup()
	{
		$options = $this->cache['options'];
		
		// Default theme support.
		add_theme_support('post-thumbnails');
		add_theme_support('automatic-feed-links');
		add_theme_support('html5', array('comment-list', 'comment-form', 'search-form'));
		add_theme_support('title-tag');
		
		add_theme_support('post-formats', $options['post_formats']);
		
		// Add body class filter.
		add_filter('body_class', array($this, '_add_body_classes'));
		
		// Add filter for excerpt.
		add_filter('excerpt_more', array(Bunyad::posts(), 'excerpt_read_more'));
		add_filter('the_content_more_link', array(Bunyad::posts(), 'excerpt_read_more'));
		
		// Fix title on home page - with SEO plugins compatibilty.
		add_filter('wp_title', array($this, '_fix_home_title'));
		
		// Set sidebar on setup.
		add_action('wp', array($this, '_auto_set_sidebar'));

		// Add inline CSS.
		add_action('wp_enqueue_scripts', array($this, '_add_inline_css'), 200);

		// Setup comments script.
		add_action('wp_enqueue_scripts', array($this, '_enqueue_comments_reply'), 200);
	}
	
	/**
	 * Whether a valid Bunyad theme exists.
	 *
	 * @return boolean
	 */
	public function is_theme()
	{
		return $this->is_theme;
	}

	/**
	 * Filter: Sphere Core plugin components
	 * 
	 * @param array $components
	 * @see \Sphere\Core\Plugin::setup()
	 * @return array 
	 */
	public function _sphere_components($components)
	{	
		if (isset($this->cache['options']['sphere_components'])) {
			return $this->cache['options']['sphere_components'];
		}
		
		return $components;
	}
		
	/**
	 * Initialize admin related classes
	 */
	private function init_admin($options)
	{		
		add_action('admin_enqueue_scripts', array($this, '_admin_assets'));

		Bunyad::factory('admin/options');
	}
	
	// callback function for assets
	public function _admin_assets()
	{
		wp_enqueue_style(
			'bunyad-base', 
			get_template_directory_uri() . '/css/admin/base.css', 
			array(), 
			Bunyad::options()->get_config('theme_version')
		);
	}

	/**
	 * Set current layout sidebar
	 * 
	 * @param string $type none or right
	 */
	public function set_sidebar($type)
	{
		$this->cache['sidebar'] = $type;

		if ($type == 'right') {
			$this->add_body_class('right-sidebar');
			$this->remove_body_class('no-sidebar');
		}
		else {
			$this->remove_body_class('right-sidebar');
			$this->add_body_class('no-sidebar');
		}
		
		return $this;
	}
	
	/**
	 * Get current active sidebar value outside
	 */
	public function get_sidebar()
	{
		if (!array_key_exists('sidebar', $this->cache)) {
			return (string) Bunyad::options()->default_sidebar;
		}
		
		return $this->cache['sidebar'];
	}
	
	/**
	 * Include main sidebar
	 * 
	 * @see get_sidebar()
	 */
	public function theme_sidebar()
	{
		if ($this->get_sidebar() !== 'none') {
			get_sidebar();
		}
		
		return $this;
	}

	/**
	 * Callback: Set the relevant theme layout sidebar for current page / post
	 */
	public function _auto_set_sidebar()
	{
		// Posts, pages, attachments etc.
		if (is_singular()) {
		
			// set layout
			$layout = Bunyad::posts()->meta('layout_style');

			// Fallback to global settings
			if (!$layout) {

				if (is_page()) {
					$layout = Bunyad::options()->page_sidebar;
				}
				else {
					$layout = Bunyad::options()->single_sidebar;
				}
			}

			if ($layout) {
				$this->set_sidebar(($layout == 'full' ? 'none' : $layout));
			}
		}	
	}

	/**
	 * Callback: Enqueue script for threaded comments
	 */
	public function _enqueue_comments_reply()
	{
		if (Bunyad::amp() && Bunyad::amp()->active()) {
			return;
		}
		
		if (is_singular() && comments_open()) {
			wp_enqueue_script('comment-reply', null, array(), false, true);
		}
	}
	
	/**
	 * Add a custom class to body - MUST be called before get_header() in theme
	 * 
	 * @param string $class
	 */
	public function add_body_class($class)
	{
		$this->cache['body_classes'][] = esc_attr($class);
		return $this;
	}
	
	/**
	 * Remove body class - MUST be called before get_header() in theme
	 */
	public function remove_body_class($class)
	{
		foreach ($this->cache['body_classes'] as $key => $value) {
			if ($value === $class) {
				unset($this->cache['body_classes'][$key]);
			}
		}
		
		return $this;
	}
	
	/**
	 * Filter callback: Add stored classes to the body 
	 */
	public function _add_body_classes($classes)
	{
		return array_merge($classes, $this->cache['body_classes']);
	}
	
	/**
	 * Filter callback: Fix home title - stay compatible with SEO plugins
	 */
	public function _fix_home_title($title = '')
	{
		if (!is_front_page() && !is_home()) {
			return $title;
		}

		// modify only if empty
		if (empty($title)) {
			$title = get_bloginfo('name');
			$description = get_bloginfo('description');
			
			if ($description) {
				$title .= ' &mdash; ' . $description;
			} 
		}
		
		return $title;
	}
	
	/**
	 * Queue inline CSS to be added to the header 
	 * 
	 * @param string $script
	 * @param mixed $data
	 * @see wp_add_inline_style
	 */
	public function enqueue_css($script, $data)
	{
		$this->cache['inline_css'][$script] = $data;
	}
	
	/**
	 * Add any inline CSS that was enqueued properly using wp_add_inline_style()
	 */
	public function _add_inline_css()
	{		
		if (!array_key_exists('inline_css', $this->cache)) {
			return;
		}
		
		foreach ($this->cache['inline_css'] as $script => $data) {
			wp_add_inline_style($script, $data);
		}
	}
	
	/**
	 * Gets license key if theme is licensed
	 * 
	 * @return bool|string  false if unregistered, API key if registered
	 */
	public function get_license()
	{
		$option = get_option(Bunyad::options()->get_config('theme_name') . '_license');
		
		if (!empty($option)) {
			return $option;
		}
		
		return false;
	}

	/**
	 * Get common global conf/options data.
	 * 
	 * @param string $type Currently supported: options.
	 * @return boolean|array
	 */
	public function get_common_data($type = '')
	{
		if (!$type) {
			return false;
		}

		$file = null;
		switch ($type) {
			case 'options':
				$file = get_theme_file_path('admin/options/common-data.php');
				break;
		}

		if ($file && is_file($file)) {
			return include $file; // phpcs:ignore WordPress.Security.EscapeOutput -- Safe output from get_theme_file_path() above.
		}

		return [];
	}

	/**
	 * Add type="module" and nomodule parameters to a script tag.
	 *
	 * Add type="module" and nomodule parameters to script tags when the values are set via wp_script_add_data.
	 *
	 * wp_script_add_data( 'script-handle', 'type', 'module' );
	 * wp_script_add_data( 'script-handle', 'nomodule', true );
	 * 
	 * Based on: https://github.com/kylereicks/wp-script-module-nomodule
	 */
	public function add_module_nomodule($tag, $handle) 
	{
		global $wp_scripts;

		if (!empty($wp_scripts->registered[$handle]->extra['type'])) {
			if (preg_match('/\stype="[^"]*"/', $tag, $match)) {
				$tag = str_replace($match[0], ' type="' . esc_attr($wp_scripts->registered[$handle]->extra['type']) . '"', $tag);
			} else {
				$tag = str_replace('<script ', '<script type="' . esc_attr($wp_scripts->registered[$handle]->extra['type']) . '" ', $tag);
			}
		}

		if (!empty($wp_scripts->registered[$handle]->extra['nomodule'])) {
			// if (preg_match('#\snomodule([=\s]?([\'\"]).+?\2)?#', $tag, $match)) {
			// 	$tag = str_replace($match[0], ' nomodule', $tag);

			// A simple check should be enough, we don't wish to override nomodule.
			if (strpos($tag, ' nomodule') === false) {
				$tag = str_replace('<script ', '<script nomodule ', $tag);
			}
		}

		return $tag;
	}
	
	/**
	 * A get_template_part() improvement with variable scope 
	 * 
	 * @see get_template_part()
	 * @see locate_template()
	 * 
	 * @param string $slug   The template part to locate.
	 * @param array  $props  An array of variables to make available in local scope.
	 * @param string $name   An extension to the partial name.
	 */
	public function partial($slug, $props = [], $name = '')
	{
		/** 
		 * Set a few essential globals to match load_template(), without cluttering 
		 * the local scope.
		 */
		global $wp_query, $post;
		
		/**
		 * Fires before the specified template part file is loaded.
		 * 
		 * @param string $slug The slug name for the generic template.
		 * @param string $name The name of the specialized template.
		 */
		do_action("get_template_part_{$slug}", $slug, $name);

		$templates = [];
		$name      = (string) $name;
		
		if (!empty($name)) {
			$templates[] = "{$slug}-{$name}.php";
		}

		$templates[] = "{$slug}.php";
		
		// Make data array available in local scope.
		extract($props);

		// Include the template.
		$located = locate_template($templates);
		if (!$located) {
			return trigger_error('Cannot find any file for partial: ' . $slug, E_USER_WARNING);
		}

		include $located; // phpcs:ignore WordPress.Security.EscapeOutput Safe Output from locate_template() above.
	}
}PK03YF��s��smartmag-core/lib/init.php<?php
/**
 * Bunyad Framework - Initialization
 * 
 * Recommended method is to extend Bunyad_Base from bunyad.php file. Include
 * this file only if not defining Bunyad in a theme. 
 * 
 * @package  Bunyad
 * @see      Bunyad_Base
 */

$main_file = 'bunyad.php';
require_once $main_file;

/**
 * Define Bunyad class if it doesn't exist
 */
if (!class_exists('Bunyad')) {
	class Bunyad extends Bunyad_Base {}	
}PK03Y��DC��smartmag-core/lib/loader.php<?php

namespace Bunyad\Lib;

/**
 * Autoloader for loading classes off defined namespaces or a class map.
 */
class Loader
{
	public $class_map;
	public $namespaces = [];
	protected $is_theme = false;

	public function __construct($namespaces = null, $prepend = false)
	{
		if (is_array($namespaces)) {
			$this->namespaces = $namespaces;
		}

		spl_autoload_register([$this, 'load'], true, $prepend);
	}

	/**
	 * Set if the loader is being used in a theme or not.
	 */
	public function set_is_theme($value = true)
	{
		$this->is_theme = $value;
		return $this;
	}

	/**
	 * Autoloader the class either using a class map or via conversion of 
	 * class name to file.
	 * 
	 * @param string $class
	 */
	public function load($class)
	{
		if (isset($this->class_map[$class])) {
			$file = $this->class_map[$class];
		}
		else {
			foreach ($this->namespaces as $namespace => $options) {
				if (strpos($class, $namespace) !== false) {
					$file = $this->get_file_by_namespace($class, $namespace, $options);
					break;
				}
			}
		}

		if (!empty($file)) {
			require_once $file;
		}
	}

	/**
	 * Locate file path for the provided class, given a namespace and directory.
	 *
	 * @param string $class         Fully qualified class name.
	 * @param string $namespace     Namespace associated with the paths.
	 * @param string|array $options Either the string path or an array of options.
	 * @return string|boolean
	 */
	public function get_file_by_namespace($class, $namespace, $options)
	{
		$path = $options;
		if (is_array($options)) {
			$path = $options['paths'];
		}

		if (is_array($path)) {
			foreach ($path as $dir) {
				$options['paths'] = $dir;
				$file = $this->get_file_by_namespace($class, $namespace, $options);

				// Found. Don't have to search in alternate paths.
				if ($file) {
					return $file;
				}
			}
		}

		return $this->get_file_path(
			$class, $namespace, $path, $options['search_reverse'] ?? false
		);
	}

	/**
	 * Get file path to include.
	 * 
	 * @param string $class
	 * @param string $prefix
	 * @param string $path
	 * @param boolean $search_reverse  Set true to set search order in reverse of default.
	 * 
	 * Examples:
	 * 
	 *  Bunyad_Theme_Foo_Bar to inc/foo/bar/bar.php (fallback to inc/foo/bar.php)
	 *  Bunyad\Blocks\FooBar to blocks/foo-bar.php (fallback to blocks/foo-bar/foo-bar.php)
	 * 
	 * @return string  Relative path to the file from the theme dir
	 */
	public function get_file_path($class, $prefix = '', $path = '', $search_reverse = false) 
	{
		// Enable reverse search order for non-namespaced classes.
		if (!$search_reverse && strpos($class, '\\') === false) {
			$search_reverse = true;
		}

		// Remove namespace and convert underscore as a namespace delim.
		$class = str_replace($prefix, '', $class);
		$class = str_replace('_', '\\', $class);
		
		// Split to convert CamelCase.
		$parts = explode('\\', $class);
		foreach ($parts as $key => $part) {
			
			$test = substr($part, 1); 
					
			// Convert CamelCase to Camel-Case
			if (strtolower($test) !== $test) {
				$part = preg_replace('/(.)(?=[A-Z])/u', '$1-', $part);
			}

			$parts[$key] = $part;
		}

		$name = strtolower(array_pop($parts));
		$path = $path . '/' . strtolower(
			implode('/', $parts)
		);
		$path = trailingslashit($path);

		// Preferred and fallback file path.
		$pref_file = $path . "{$name}.php";
		$alt_file  = $path . "{$name}/{$name}.php";

		// Swap file search order.
		if ($search_reverse) {
			list($pref_file, $alt_file) = [$alt_file, $pref_file];
		}

		// Try with directory path pattern first.
		if (file_exists($pref_file)) {
			return $pref_file;
		}
		else if (file_exists($alt_file)) {
			return $alt_file;
		}

		return false;

		// DEBUG: 
		// trigger_error('Class file not found: ' . $class . " - Pref: {$pref_file} - Alt: {$alt_file} ");
	}
}PK03Y���55smartmag-core/lib/markup.php<?php
/**
 * Generic HTML Markup generator methods
 */

class Bunyad_Markup
{

	/**
	 * Output dynamic attributes while escaping as necessary.
	 * 
	 * @param string $id          Unique id to use in filters.  
	 * @param array  $attributes  Associative array of attributes.
	 * @param array  $options     Method configs.
	 * @return mixed
	 */
	public function attribs($id, $attributes = array(), $options = array())
	{
		
		$options = wp_parse_args($options, array(
			'echo' => true,
			'esc_src_url' => true
		));
		
		/**
		 * Attributes array can be filtered before processing.
		 * 
		 * @param array $attributes
		 */
		$attributes = apply_filters('bunyad_attribs_' . $id, $attributes);
		
		// Generate the output string.
		$attribs = '';
		foreach ($attributes as $key => $value) {
			
			// Handle srcset images
			if ($key == 'srcset') {
				$value = $this->_srcset($value);
				
				if (!$value) {
					continue;
				}
			}
			else if (is_array($value)) {
				$value = join(' ', array_filter($value));
			}
			
			// HTML5 supports attributes of type itemscope, checked can be without value.
			if (empty($value)) {
				$attribs .= ' ' . esc_html($key);
				continue;
			}
			
			// Handle src URL with esc_url()
			$value = ($key == 'src' && $options['esc_src_url']) ? esc_url($value) : esc_attr($value);
			
			// Escape the attribute key with esc_html()
			$attribs .=  sprintf(' %s="%s"', esc_html($key), $value);
		}
		
		// Remove starting space
		$attribs = ltrim($attribs);
		
		if ($options['echo']) {
			echo $attribs; // phpcs:ignore WordPress.Security.EscapeOutput -- Escaped set of attributes.
		}
		
		return $attribs;
	}
	
	/**
	 * Get a unique id to be used mainly in blocks.
	 * 
	 * WARNING: Not persistent - will change with request order.
	 * 
	 * @param string   $prefix          A prefix for internal distinction and for output unless disabled.  
	 * @param boolean  $return_id_only  Return id without prefix.
	 */
	public function unique_id($prefix = '', $return_id_only = false)
	{
		// get item from registry
		$ids = (array) Bunyad::registry()->bunyad_markup_ids;
		$key = $prefix ? $prefix : 'default';
		
		if (!isset($ids[$key])) {
			$ids[$key] = 0;
		}
		
		$ids[$key]++;
		
		// update registry
		Bunyad::registry()->set('bunyad_markup_ids', $ids);
		
		return ($return_id_only ? '' : $prefix) . $ids[$key];
	}
	
	/**
	 * Create srcset for images.
	 * 
	 * @param array $images  An associative array of image url => descriptor
	 */
	public function _srcset($images)
	{
		if (is_string($images)) {
			return $images;
		}
		
		$sources = array();
		foreach ($images as $url => $descriptor) {
			if (!$url) {
				continue;
			}
			
			$sources[] = esc_url($url) . ' ' . $descriptor;
		}
		
		// Empty it if srcset only has a single entry
		if (count($sources) == 1) {
			return '';
		}
		
		return implode(',', $sources);
	}
	
}PK03Yb�Ĵ�&smartmag-core/lib/menu-walker-edit.php<?php
/**
 * A walker to add custom menu fields
 */
class Bunyad_MenuWalkerEdit extends Walker_Nav_Menu_Edit 
{
	public $locations = [];
	public $current_menu;
	
	public function __construct() 
	{
		// Create an [3] => ['main', 'header'] type of array
		$locations = (array) get_nav_menu_locations();
		foreach ($locations as $key => $id) {
			
			if (!isset($this->locations[$id])) {
				$this->locations[$id] = [];
			}
			
			array_push($this->locations[$id], $key);
		}

		// Only adds to Appearance > Menus. For customizer, the hook needed is:
		// wp_nav_menu_item_custom_fields_customize_template
		add_action('wp_nav_menu_item_custom_fields', [$this, 'the_custom_fields'], 10, 3);
	}
	
	/**
	 * Identify the current menu and add custom fields if needed.
	 */
	public function start_el(&$output, $item, $depth = 0, $args = [], $id = 0) 
	{
		// get current menu id
		if (!$this->current_menu) {
			$menu = wp_get_post_terms($item->ID, 'nav_menu');
			
			if (!empty($menu[0])) {
				$this->current_menu = $menu[0]->term_id;
			}
			
			if (!$this->current_menu && $_REQUEST['menu']) {
				$this->current_menu = $_REQUEST['menu'];
			}
		}
		
		$item_output = '';
				
		parent::start_el($item_output, $item, $depth, $args, $id);

		/**
		 * Only needed for older versions. Handled by native hook wp_nav_menu_item_custom_fields for later.
		 */
		if (!did_action('wp_nav_menu_item_custom_fields')) {
            
			ob_start();
            do_action('wp_nav_menu_item_custom_fields', $item->ID, $item, $depth, $args);
			$fields = ob_get_clean();
			
			// Add new fields before <div class="menu-item-actions description-wide submitbox">
            if ($fields) {
                $item_output = preg_replace('/(?=<div[^>]+class="[^"]*submitbox)/', $fields, $item_output);
            }
		}
		
		$output .= $item_output;
	}
	
	/**
	 * Action Callback: Output the custom fields.
	 */
	public function the_custom_fields($item_id, $item, $depth = 0) 
	{
		echo $this->get_custom_fields($item, $depth);
	}
	
	/**
	 * Get custom fields for this menu item.
	 */
	public function get_custom_fields($item, $depth = 0)
	{
		$fields = apply_filters('bunyad_custom_menu_fields', []);
		$output = '';
		
		foreach ($fields as $key => $field) {
			
			// Parent menu field only?
			if (!empty($field['parent_only']) && $depth > 0) {
				continue;
			}
			
			// Only applies to a specific location?
			if (!empty($field['locations']) && !empty($this->locations[ $this->current_menu ]) 
				&& !array_intersect($this->locations[ $this->current_menu ], $field['locations'])
			) {
					continue;
			}
			
			// Relevant field values.
			$name = 'menu-item-' . esc_attr($key) . '[' . $item->ID . ']';
			$value = esc_attr($item->{$key});
			
			// Use renderer or a template?
			if (is_array($field['element'])) {
				
				/** @var $renderer Bunyad_Admin_OptionRenderer */
				$renderer = Bunyad::factory('admin/option-renderer');
				
				if ($field['element']['type'] == 'select') {
					$template = $renderer->render_select(
						array_merge(
							[
								'name'  => $name, 
								'value' => $value
							], 
							$field['element']
						)
					);
				}
			}
			else {
				// String template.
				$template = str_replace(
					['%id%', '%name%', '%value%'], 
					[$item->ID, $name, $value], 
					$field['element']
				);
			}
			
			$output .= '
			<p class="field-custom description description-wide">
				<label for="edit-menu-item-subtitle-' . esc_attr($item->ID) . '">
					' . $field['label'] . '<br />' . $template  . '
				</label>
			</p>';

			// Add nonce for security.
			$output .= sprintf(
				'<input type="hidden" name="bunyad_menu_fields_nonce" value="%s">',
				wp_create_nonce('bunyad_menu_fields_nonce')
			);
		}
		
		return $output;
	}
}
PK03Y�gX�!smartmag-core/lib/menu-walker.php<?php

class Bunyad_MenuWalker extends Walker_Nav_Menu
{
	public $in_mega_menu = false;
	public $current_item;
	
	/**
	 * Stores mega menu inner-data.
	 */
	public $last_lvl;
	public $sub_items = array();
	
	public function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) 
	{
		
		// Add category class to menu items
		if ($item->object == 'category') {
			$item->classes = array_merge((array) $item->classes, array('menu-cat-' . $item->object_id)); 
		}
		
		// Add mega-menu class
		if (!empty($item->mega_menu)) {
			$item->classes = array_merge((array) $item->classes, array('menu-item-has-children item-mega-menu'));
		}
		
		parent::start_el($item_output, $item, $depth, $args, $id);

		// Reset at beginning
		if ($depth == 0) {
			$this->in_mega_menu = false;
			$this->current_item = null;
			$this->last_lvl     = '';
			$this->sub_items    = array();
		}
		
		// DEBUG:  $depth .' -- ' . $item->title . "\n\n";
		
		// Is it a mega menu parent?
		if ($item->mega_menu) {
			$this->in_mega_menu = true;
			$this->current_item = $item;
		}
		
		// In mega menu
		if ($this->in_mega_menu && $depth > 0) {
			$this->last_lvl .= $item_output;
			
			// Store the sub-item object - only needs to be captured here since it's not using output
			$this->sub_items[] = $item;
			
			return;
		}
		
		$output .= $item_output;
	}
	
	public function end_el(&$output, $item, $depth = 0, $args = array()) 
	{	
		$item_output = '';
		parent::end_el($item_output, $item, $depth, $args);
		
		if ($this->in_mega_menu && $depth > 0) {
			$this->last_lvl .= $item_output;
			return;
		}
		
		/**
		 * Attach mega-menu at end of element for items that don't have sub-items
		 * 
		 * Note: Top-level elements have depth 0 at end_el.
		 */
		if ($this->in_mega_menu && $depth == 0 && empty($this->sub_items)) {
			$output .= apply_filters('bunyad_mega_menu_end_lvl',
					array(
						'sub_menu'  => '', 
						'item'      => $item, 
						'sub_items' => null,
						'args'      => $args
					)
			);
		}
				
		$output .= $item_output;
	}
	
	public function start_lvl(&$output, $depth = 0, $args = array()) 
	{
		$item_output = '';
		parent::start_lvl($item_output, $depth, $args);

		if ($this->in_mega_menu) {
			
			// mega-menu item level greater than 2 - start a default WordPress start_lvl
			if ($depth >= 1) {
				$this->last_lvl .= $item_output;
			}
			
			return;
		}
		
		$output .= $item_output;
	}
	
	public function end_lvl(&$output, $depth = 0, $args = array())
	{	
		$item_output = '';
		parent::end_lvl($item_output, $depth, $args);

		// Processing sub-levels of mega-menu
		if ($this->in_mega_menu) {
			
			// End of mega-menu parent - at top-level!
			if ($depth == 0) {
				
				$output .= apply_filters('bunyad_mega_menu_end_lvl', 
					array(
						'sub_menu'  => $this->last_lvl, 
						'item'      => $this->current_item, 
						'sub_items' => $this->sub_items,
						'args'      => $args
					)
				);
				
				// unset
				$this->last_lvl = '';
				
				return;
			}
			
			$this->last_lvl .= $item_output;
			return;
		}

		$output .= $item_output;
	}
}PK03Y2��	�	smartmag-core/lib/menus.php<?php

/**
 * Custom WordPress menu related functionality is handled by this class
 */
class Bunyad_Menus
{
	public $fields = array();
	
	public function __construct() 
	{
		// low priority init, give theme a chance to register hooks
		add_action('init', array($this, 'init'), 50);
	}
	
	public function init()
	{
		$this->fields = apply_filters('bunyad_custom_menu_fields', array());

		// have custom fields?
		if (count($this->fields)) {
			
			add_filter('wp_setup_nav_menu_item', array($this, 'setup_menu_fields'));
			
			// only needed for admin
			if (is_admin()) {
				add_action('wp_update_nav_menu_item', array( $this, 'save_menu_fields'), 10, 3);
				add_filter('wp_edit_nav_menu_walker', array($this, 'walker_menu_fields'));
			}
			
			// front-side walker
			add_filter('wp_nav_menu_args', array($this, 'walker_front'));
		}
	}
	
	/**
	 * Setup custom walker for editing the menu
	 */
	public function walker_menu_fields($walker, $menu_id = null)
	{
		Bunyad::load_file('menu-walker-edit');
		return 'Bunyad_MenuWalkerEdit'; 
	}
	
	/**
	 * Load the correct walker on demand when needed for the frontend menu
	 */
	public function walker_front($args) 
	{
		// Initialize new object for menu walker
		if ($args['walker'] == 'Bunyad_MenuWalker') {

			$is_amp = is_callable(['Bunyad', 'amp']) && Bunyad::amp()->active();

			// Set walker, but not in AMP mode
			$args['walker'] = !$is_amp ? Bunyad::factory('menu-walker', true) : '';
		}
		
		return $args;
	} 
	
	/**
	 * Load custom fields to the menu
	 */
	public function setup_menu_fields($menu_item)
	{
		foreach ($this->fields as $key => $field) {
			$menu_item->{$key} = get_post_meta($menu_item->ID, '_menu_item_' . $key, true);
		}
		
		return $menu_item;
	}
	
	/**
	 * Save menu custom fields
	*/
	public function save_menu_fields($menu_id, $menu_item_db_id, $args) 
	{	
        if (!isset($_POST['bunyad_menu_fields_nonce']) || ! wp_verify_nonce($_POST['bunyad_menu_fields_nonce'], 'bunyad_menu_fields_nonce')) {
            return;
        }

		foreach ($this->fields as $key => $field) {

			// Add / update meta
			if (!empty($_POST['menu-item-' . $key]) && is_array($_POST['menu-item-' . $key])) {
				
				if (!isset($_POST['menu-item-' . $key][$menu_item_db_id])) {
					$_POST['menu-item-' . $key][$menu_item_db_id] = null;
				}
				
				update_post_meta($menu_item_db_id, '_menu_item_' . $key, $_POST['menu-item-' . $key][$menu_item_db_id]);
			}
		}
	}
		
}PK03Y�)�k� � smartmag-core/lib/options.php<?php
/**
 * All the theme options are loaded and fetched via this class.
 */
class Bunyad_Options
{
	protected $configs    = [];
	protected $cache      = [];
	protected $short_load = true;

	/**
	 * @var array Values changed via the API instead of init.
	 */
	protected $mutated = [];

	/**
	 * @var array A multi-dimensional array of keys and option elements.
	 */
	public $defaults = [];
	
	/**
	 * Initialize options.
	 * 
	 * @param bool $short When true, a short list of options are loaded. Otherwise a
	 *                    full options tree load is done. See load_elements().
	 * @return void
	 */
	public function init($short = true)
	{
		// Save flag for whether it was a short load or not.
		$this->short_load = $short;

		/**
		 * Filter 'bunyad_theme_options' can be used to provide extra options that are added 
		 * both on normal run and to the customizer.
		 * 
		 * Handled by code below via running 'bunyad_theme_options' for both:
		 *  bunyad_options_tree and bunyad_options_elements
		 */
		// On full load/customizer, add via 'bunyad_options_tree' filter.
		add_filter('bunyad_options_tree', function($tree) {
			return apply_filters('bunyad_theme_options', $tree, 'tree');
		}, 2);

		// For short load/frontend, add the elements from 'bunyad_theme_options' filter.
		add_filter('bunyad_options_elements', function($options, $short) {

			// Only needed for short load. Full load in tree above.
			if (!$short) {
				return $options;
			}

			$options_tree = apply_filters('bunyad_theme_options', [], 'short');

			if (!empty($options_tree)) {
				// Flatten the extra options.
				$options = array_merge(
					$options,
					Bunyad::factory('admin/options')->get_elements_from_tree($options_tree)
				);
			}

			return $options;
		}, 2, 2);

		// Flattened key => element pair of elments from options tree.
		$this->defaults = $this->load_elements($short);

		// Get our options
		$options = (array) get_option($this->configs['theme_prefix'] . '_theme_options');

		// Remove options that have unmet context conditions, essentially reset to default.
		$options = Bunyad::factory('admin/options')->remove_disabled_contexts(
			$options, 
			$this->defaults
		);

		if (is_array($options) && $options) {
			$this->cache = $options;
		}

		do_action('bunyad_options_initialized');
	}

	/**
	 * A reinit preserves currently set options, instead of a clean init.
	 * Useful in case something was overridden via API by a plugin / dev.
	 */
	public function reinit($short = true)
	{
		$current = $this->cache;
		$this->init($short);

		// Add back all the values that were previously changed using the API, in this instance.
		foreach ($current as $key => $value) {
			if (in_array($key, $this->mutated)) {
				$this->cache[$key] = $value;
			}
		}
	}
	
	/**
	 * Loads options tree, or short options, and returns a flattened key => element pair. 
	 * 
	 * @uses Bunyad_Admin_Options::get_elements_from_tree()
	 * 
	 * @param boolean $short Short loads a pre-generated array for performance reasons.
	 * @return array
	 */
	public function load_elements($short = true)
	{
		// Short loads a pre-generated array with memory and speed optimizations.
		if ($short === true) {
			$options = include get_template_directory() . '/admin/options-short.php';

		}
		else {

			$options_tree = $this->load_options_tree();

			// Process tree to add group pseudo-options and defaults.
			$options_tree = Bunyad::get('customizer')->process_options($options_tree, false);

			// Flatten the options tree.
			$options = Bunyad::factory('admin/options')->get_elements_from_tree($options_tree);
		}

		/**
		 * Filter the final key => element pair.
		 */
		return apply_filters(
			'bunyad_options_elements',
			$options,
			$short
		);
	}

	/**
	 * Load the options tree from file and apply filters.
	 * 
	 * @return array Raw options tree.
	 */
	public function load_options_tree()
	{
		// Get the main full options data.
		$options_tree = include get_template_directory() . '/admin/options.php';

		/**
		 * Filter for the raw options tree. 
		 * 
		 * This is used in Customizer so any options that have to be added to 
		 * customizer can be added via this filter.
		 * 
		 * Note: If the options have non-empty default values, they should also 
		 * be added via the bunyad_options_elements filter.
		 * 
		 * Alternatively, 'bunyad_theme_options' filter will add to both tree and short.
		 */
		$options_tree = apply_filters('bunyad_options_tree', $options_tree);

		return $options_tree;
	}

	/**
	 * Whether current options loaded were via short load.
	 *
	 * @return boolean
	 */
	public function is_short_load() 
	{
		return $this->short_load;
	}
	
	/**
	 * Get an option from the database (cached) or the default value provided 
	 * by the options setup. 
	 * 
	 * Note: Fallback to default value of the related element unless fallbacks are
	 * defined explicity in arguments.
	 * 
	 * @param string|array $key   An option key to get value of.
	 * @param mixed ...$fallbacks Fallback option keys, if the main key is not set.
	 * @return mixed|null
	 */
	public function get($key, ...$fallbacks)
	{
		// Multiple keys can be provided to use the other if one's not set.
		if ($fallbacks && !isset($this->cache[$key])) {

			foreach ($fallbacks as $option) {
				if (isset($this->cache[$option])) {
					return $this->cache[$option];
				}
			}

			// Nothing found yet, use the last key as fallback.
			$fallback = end($fallbacks);
			return $this->get($fallback);
		}
		
		if (isset($this->cache[$key])) {
			return $this->cache[$key];
		}
		
		if (isset($this->defaults[$key]['value'])) {
			return $this->defaults[$key]['value'];
		}
		
		return null;
	}
	
	/**
	 * Get value with a fallback default value specified manually.
	 * 
	 * @param string
	 * @param mixed
	 * @return mixed Either the option value or default fallback.
	 */
	public function get_or($key, $default = '')
	{
		if (isset($this->cache[$key])) {
			return $this->cache[$key];
		}
		
		return $default;
	}

	public function __set($key, $value)
	{
		return $this->set($key, $value);
	}

	public function __get($key)
	{
		return $this->get($key);
	}
	
	/**
	 * Remove all cache options - USE WITH CARE!
	 * 
	 * It will destroy changes made via meta to categories if it's used before saving options. 
	 */
	public function clear()
	{
		$this->cache = array();
		return $this;
	}
	
	/**
	 * Get all the options with non-default values (that were saved in the DB/storage).
	 * 
	 * @param null|string $prefix Prefix to limit by
	 */
	public function get_all($prefix = null) 
	{
		if ($prefix) {
			$options = array();
			
			foreach ($this->cache as $key => $value) {
				if (preg_match('/^' . preg_quote($prefix) . '/', $key)) {
					$options[$key] = $value;
				}
			}
			
			return $options;
		}
		
		return $this->cache;
	}
	
	/**
	 * Overwrite all options in cache.
	 * 
	 * @param array $options
	 */
	public function set_all(array $options)
	{
		$this->cache = $options;
		return $this;
	}
	
	/**
	 * Updates local cache - DOES NOT saves to DB. Use update() to save.
	 * 
	 * @param string|array $key
	 * @param mixed $value  a value of null will unset the option
	 * @return Bunyad_Options
	 */
	public function set($key, $value = null)
	{
		// Arrays have to be merged.
		if (is_array($key)) {
			$this->cache = array_replace($this->cache, $key);
			array_push($this->mutated, ...array_keys($key));
			return $this;
		}

		array_push($this->mutated, $key);
		
		if ($value === null) {
			unset($this->cache[$key]);
		}
		else {
			$this->cache[$key] = $value;
		}
		
		return $this;
	}
	
	/**
	 * Updates the options from local cache to the database.
	 * 
	 * @param null|mixed $key
	 * @param null|mixed $value
	 */
	public function update($key = null, $value = null) 
	{
		if ($key != null && $value != null) {
			$this->set($key, $value);
		}
		
		unset($this->cache['shortcodes']);
		
		return update_option($this->configs['theme_prefix'] . '_theme_options', (array) $this->cache);
	}
	
	/**
	 * Set local configurations.
	 * 
	 * @param string|array $key
	 * @param mixed  $value
	 */
	public function set_config($key, $value = '')
	{
		if (is_array($key)) {
			$this->configs = array_merge($this->configs, $key);
			return $this;
		}
		
		$this->configs[$key] = $value;
		return $this;
	}
	
	/**
	 * Get local configurations.
	 */
	public function get_config($key)
	{
		return isset($this->configs[$key]) ? $this->configs[$key] : null;
	}
}PK03Y�D�=HLHLsmartmag-core/lib/posts.php<?php
/**
 * Helpers and functionality relevant to posts (single and multiple).
 */
class Bunyad_Posts
{
	public $read_more;
	public $more_text = null;
	public $more_html = null;
	private $state    = [];
	
	public function __construct()
	{
		// Add offsets support with correct pagination.
		add_filter('found_posts', [$this, 'fix_offset_pagination'], 10, 2);
		add_action('pre_get_posts', [$this, 'pre_get_posts']);
	}
	
	/**
	 * Custom excerpt function - utilize existing wordpress functions to add real support for <!--more-->
	 * to excerpts which is missing in the_excerpt().
	 * 
	 * Maintain plugin functionality by utilizing wordpress core functions and filters. 
	 * 
	 * @param  string|null  $text
	 * @param  integer  $length
	 * @param  array   $options  {
	 *     Options to modify excerpt behavior.
	 * 
	 *     @type  bool    $add_more    Add read more text if needed based on excerpt length.
	 *     @type  string  $more_text   More link anchor text.
	 *     @type  bool    $force_more  Always add more link.
	 *     @type  bool    $use_teaser  Whether or not to use <!--more--> teaser as excerpt.
	 * }
	 * @return string
	 */
	public function excerpt($text = null, $length = 55, $options = [])
	{
		global $more;

		// Add defaults.
		$options = array_merge([
			'add_more'   => null,
			'force_more' => null,
			'use_teaser' => false,
			'filters'    => true,
			'more_text'  => $this->more_text,
			'more_html'  => $this->more_html,
		], $options);

		$this->_store_state();
		
		// Add support for <!--more--> cut-off on custom home-pages and the like
		$old_more      = $more;
		$more          = false;
		
		// Override options
		extract($options);

		// Maybe overridden in parameters.
		$this->more_text = $more_text;
		$this->more_html = $more_html;

		if ($force_more) {
			$this->read_more = true;
		}
		
		if (!$text) {
			
			// have a manual excerpt?
			if (has_excerpt()) {
				return apply_filters('the_excerpt', get_the_excerpt()) . ($force_more ? $this->excerpt_read_more() : '');
			}
			
			// don't add "more" link
			$text = get_the_content('');
		}
		
		$text = strip_shortcodes(apply_filters('bunyad_excerpt_pre_strip_shortcodes', $text));
		$text = str_replace(']]>', ']]&gt;', $text);

		// Matches wp_trim_excerpt()
		if (has_blocks()) {
			$text = excerpt_remove_blocks($text);
			if (function_exists('excerpt_remove_footnotes')) {
				$text = excerpt_remove_footnotes($text);
			}
		}
		
		// Has <!--more--> teaser to use as excerpt?
		$post = get_post();
		if ($use_teaser && preg_match('/<!--more(.*?)?-->/', $post->post_content)) {
			$excerpt = $text;
		}
		else {
			// Get plaintext excerpt trimmed to right length
			$excerpt = wp_trim_words($text, $length, apply_filters('bunyad_excerpt_hellip', '&hellip;') . ($add_more !== false ? $this->excerpt_read_more() : '')); 
		}

		/**
		 * Force "More" link?
		 * 
		 * wp_trim_words() will only add the read more link if it's needed - if the length actually EXCEEDS. In some cases,
		 * for styling, read more has to be always present.
		 */
		if ($force_more) {
			
			$read_more = $this->excerpt_read_more();

			if (substr($excerpt, -strlen($read_more)) !== $read_more) {
				$excerpt .= $read_more;
			}
		}
		
		// Fix extra spaces
		$excerpt = trim(str_replace('&nbsp;', ' ', $excerpt)); 
		
		// apply filters after to prevent added html functionality from being stripped
		// REMOVED: the_content filters often clutter the HTML - use the_excerpt filter instead 
		// $excerpt = apply_filters('the_content', $excerpt);

		// VC excerpts can go in infinte loop with do_shortcode(). Disable filters if nested.
		if (doing_filter('the_excerpt')) {
			$filters = false;   
		}
		
		if ($filters) {
			$excerpt = apply_filters('the_excerpt', apply_filters('get_the_excerpt', $excerpt));
		}
		else {
			
			// Still apply the defaults to remain consistent
			$excerpt = wpautop(
				wptexturize($excerpt)
			);
		}
		
		// Revert original states.
		$more = $old_more;
		$this->_restore_state();
		
		return $excerpt;
	}

	/**
	 * Wrapper for the_content()
	 * 
	 * @see the_content()
	 */
	public function the_content($more_link_text = null, $strip_teaser = false, $options = [])
	{
		$options = array_merge([
			'ignore_more' => false,
		], $options);

		// Add <!--more--> support on static pages when not using excerpts.
		// Conflicts with pagination 1st page active, so we restore it.
		if (is_page() && !$options['ignore_more']) {
			global $more;
			$old_more = $more;
			$more = 0;
		}

		// Get the content
		$content = get_the_content($more_link_text, $strip_teaser);
		
		// Delete first gallery shortcode if featured area is enabled.
		if (get_post_format() == 'gallery' && !$this->meta('featured_disable')) {
			$content = $this->_strip_shortcode_gallery($content);
		}

		// Apply bunyad_main_content filters first - for page builder.
		$content = apply_filters('the_content',  $content, 'bunyad_main_content');
		$content = str_replace(']]>', ']]&gt;', $content);

		echo $content; // phpcs:ignore WordPress.Security.EscapeOutput -- Pre-filtered/escaped from get_the_content()

		// Restore if needed.
		if (isset($old_more)) {
			$more = $old_more;
		}
	}

	/**
	 * Deletes first gallery shortcode and returns content.
	 */
	public function _strip_shortcode_gallery($content) 
	{
		$gallery = $this->get_first_gallery_block($content);
		if ($gallery) {

			// WordPress 5.9+ - innerHTML is incomplete.
			if (!empty($gallery['useRegex'])) {

				$regex  = '\<\!--\s*wp:gallery(.+?)';
				$regex .= array_reduce(
					$gallery['attrs']['ids'],
					function($acc, $item) {
						return $acc . '\<\!--\s*wp:image(.+?)"id"\s*:\s*' . $item . '(.+?)';
					},
					''
				);
				$regex .= '\<\!--\s*\/wp:gallery\s*--\>';

				$content = preg_replace('#' . $regex . '#is', '', $content);
			}
			else {
				// Strip it once.
				$pos = strpos($content, $gallery['innerHTML']);
				if ($pos !== false) {
					$content = substr_replace($content, '', $pos, strlen($gallery['innerHTML']));
				}
			}
		}
		
		return $content;
	}

	/**
	 * Get the first gallery block - provided block editor content.
	 *
	 * @param string $content
	 * @return boolean|array
	 */
	public function get_first_gallery_block($content = null)
	{
		if (!$content) {
			$content = get_the_content();
		}

		// First try a Gutenberg / block editor gallery.
		if (function_exists('has_block') && has_block('gallery', $content)) {
			$post_blocks = parse_blocks($content);
			$found       = false;
			
			while ($block = array_shift($post_blocks)) {
				if ('core/gallery' === $block['blockName']) {
					$found = $block;
					break;
				}
				// Look into nested blocks as well.
				elseif (!empty($block['innerBlocks'])) {
					while ($inner = array_pop($block['innerBlocks'])) {
						array_push($post_blocks, $inner);
					}
				}
			}

			// WordPress 5.9+ gallery has images in innerBlocks now.
			if ($found && $found['innerBlocks']) {

				$ids = [];
				foreach ($found['innerBlocks'] as $image) {
					$ids[]  = $image['attrs']['id'] ?? '';
				}

				$found['useRegex'] = true;
				$found['attrs']['ids'] = array_filter($ids);
			}

			if ($found) {
				return $found;
			}
		}

		// Legacy / Classic Editor's gallery shortcode.
		preg_match_all('/'. get_shortcode_regex() .'/s', $content, $matches, PREG_SET_ORDER);
		
		if (!empty($matches)) {
			foreach ($matches as $shortcode) {
				if ('gallery' === $shortcode[2]) {
					
					// We need innerHTML and attrs['ids].
					$pseudo_block = [
						'innerHTML' => $shortcode[0]
					];

					$atts = shortcode_parse_atts($shortcode[3]);
					if (!empty($atts['ids'])) {
						$pseudo_block['attrs'] = [
							'ids' => explode(',', $atts['ids'])
						];
					}
					
					return $pseudo_block;
				}
			}
		}

		return false;
	}
	
	/**
	 * Get the image ids used in the first gallery block/shortcode.
	 *
	 * @param string|null $content
	 * @return boolean|array
	 */
	public function get_first_gallery_ids($content = null) 
	{
		$gallery = $this->get_first_gallery_block();
		if ($gallery && !empty($gallery['attrs']['ids'])) {
			return $gallery['attrs']['ids'];
		}
		
		return false;
	}
	
	/**
	 * Get custom post meta using the bunyad prefix.
	 * 
	 * @param string|null $key
	 * @param integer|null $post_id
	 * @param boolean $defaults  whether or not to use default options mapped to certain keys - only when $key is set
	 * @uses  Bunyad::options()  used when defaults are tested for a specific key
	 */
	public function meta($key = null, $post_id = null, $defaults = true)
	{
		$prefix = Bunyad::options()->get_config('meta_prefix') . '_';
		
		if (!$post_id) {
			
			$post = get_post();
			
			if (is_object($post)) {
				$post_id = $post->ID;
			}
			
			// Fallback to queried object id.
			if (!$post_id) {
				$post_id = get_queried_object_id();
			}
		}
		
		if (is_string($key)) {
			
			$meta = get_post_meta($post_id, $prefix . $key, true);

			/**
			 * Use values from specified key mapping of Bunyad::options() if meta value is empty
			 */
			if ($defaults) {
			
				
				// bool_inverse will inverse the value in Bunyad::options() 
				$default_map = [
					'featured_disable' => ['key' => 'show_featured', 'bool_inverse' => true],
					'layout_template'  => ['key' => 'post_layout_template'],
					'layout_spacious'  => ['key' => 'post_layout_spacious'],
				];

				// Legacy Fix: In CheerUp <6.1.0 & CB <1.6, featured disabled was saved with 
				// "0" value instead of empty: ''
				if ($key === 'featured_disable' && !$meta) {
					$meta = '';
				}
				
				// Have a key association with theme settings?
				//  get_post_meta() returns '' when it can't find a record.
				if ($meta === '' && array_key_exists($key, $default_map)) {
					
					$expression = Bunyad::options()->get($default_map[$key]['key']);
										
					$meta = (!empty($default_map[$key]['bool_inverse']) ? !$expression : $expression);
				}
			}

			return apply_filters('bunyad_meta_' . $key, $meta);
		}
		
		return $this->get_all_meta($post_id, true);
	}

	/**
	 * Get custom post meta that's using the bunyad prefix.
	 * 
	 * @param string|null $post_id
	 * @param boolean $remove_prefix  Return keys with bunyad prefix removed.
	 * @return array
	 */
	public function get_all_meta($post_id = null, $remove_prefix = true)
	{
		$prefix   = Bunyad::options()->get_config('meta_prefix') . '_';
		$meta     = get_post_custom($post_id);
		$new_meta = [];

		foreach ($meta as $key => $value) {
			
			// Preserve meta with our prefix.
			if (strpos($key, $prefix) === 0) {
				if ($remove_prefix) {
					$key = substr($key, strlen($prefix));
				}

				$new_meta[$key] = $this->_fix_meta_value($value);
			}
		}
		
		return $new_meta;
	}
	
	// Helper to fix meta value
	private function _fix_meta_value($value) 
	{
		if (count($value) === 1) {
			return $value[0];
		}
		
		return $value;
	}

	/**
	 * Get meta for page first if available
	 */
	public function page_meta($key = null, $post_id = null)
	{
		global $page;
		
		if (!$post_id) {
			$post_id = $page->ID;
		}
		
		return $this->meta($key, $post_id);
	}

	/**
	 * Get bunyad term meta removing our prefix when returning all.
	 * 
	 * @param string|null $key
	 * @param int|null    $term_id
	 * @return mixed Array or single value.
	 */
	public function term_meta($key = null, $term_id = '') 
	{
		$prefix = Bunyad::options()->get_config('meta_prefix') . '_';

		if (!$term_id) {
			$term_id = get_query_var('cat');
		}
		
		// Single value.
		if ($key) {
			return apply_filters(
				'bunyad_term_meta_' . $key,
				get_term_meta($term_id, $prefix . $key, true),
				$term_id
			);
		}

		$meta     = (array) get_term_meta($term_id);
		$new_meta = []; 
		foreach ($meta as $key => $value) {
			
			// Preserve meta with our prefix.
			if (strpos($key, $prefix) === 0) {
				$key = substr($key, strlen($prefix));
				$new_meta[$key] = $this->_fix_meta_value($value);
			}	
		}
		
		return apply_filters('bunyad_term_meta', $new_meta, $term_id);
	}
	
	/**
	 * Get related posts
	 * 
	 * @param integer $count number of posts to return
	 * @param integer|null $post_id
	 * @return WP_Query
	 */
	public function get_related($count = 5, $post_id = null, $options = [])
	{
		if (!$post_id) {
			global $post;
			$post_id = $post->ID;
		}

		$options = array_replace([
			'yarpp'    => Bunyad::options()->related_posts_yarpp,
			'posts_by' => Bunyad::options()->related_posts_by,
			'custom'   => false,
		], $options);
		
		$args = [
			'posts_per_page'      => $count,
			'post__not_in'        => [$post_id],
			'ignore_sticky_posts' => true
		];

		if ($options['yarpp'] && function_exists('yarpp_get_related')) {
			$yarpp = yarpp_get_related(['limit' => $count], $post_id);
			
			return new WP_Query(array_merge($args, [
				'post__in' => wp_list_pluck($yarpp, 'ID')
			]));
		}

		// Get related posts using tags or categories?
		switch ($options['posts_by']) {

			// Match by tags.
			case 'tags':
				$args['tag__in'] = wp_get_post_tags($post_id, ['fields' => 'ids']);
				break;
			
			// Match posts either by tags or categories.
			case 'cat_tags':
				$args['tax_query'] = [
					
					// OR relationship - one of the below
					'relation' => 'OR',
					[
						'taxonomy' => 'category',
						'field'    => 'term_id',
						'terms'    => (array) wp_get_post_categories($post_id),
					],
					[
						'taxonomy' => 'post_tag',
						'field'    => 'term_id',
						'terms'    => (array) wp_get_post_tags($post_id, ['fields' => 'ids']),
					]
				];
				
				break;
				
			// Match by category.
			default:
				$args['category__in'] = wp_get_post_categories($post_id);				
				break;
			
		}

		$related = new WP_Query(apply_filters('bunyad_get_related_query', $args, $options));

		return $related;		
	}
	
	/**
	 * Custom pagination
	 * 
	 * @param array $options extend options for paginate_links()
	 * @see paginate_links()
	 */
	public function paginate($options = [], $query = null)
	{
		// Paged is global only for always_prev_next use-case
		global $wp_rewrite, $wp_query, $paged;

		if (!$query) {
			$query = $wp_query;
		}
		
		$total_pages = $query->max_num_pages;

		// use page on static front-page - paged isn't set there
		// non-static home-page, and other archives use paged 
		$paged = ($query->get('paged') ? $query->get('paged') : $query->get('page'));
		
		$args = [
			//'base'    => add_query_arg('paged', '%#%'), 
			//'format'  => '',
			'current' => max(1, $paged),
			'total'   => $total_pages,

			// accessibility + fontawesome for pagination links
			'next_text' => '<span class="visuallyhidden">' . esc_html_x('Next', 'pagination', 'bunyad') . '</span><i class="tsi tsi-angle-right"></i>',
			'prev_text' => '<i class="tsi tsi-angle-left"></i><span class="visuallyhidden">' . esc_html_x('Previous', 'pagination', 'bunyad') . '</span>'
		];
		
		$args = array_replace($args, $options);

		if ($args['total'] <= 1) {
			return '';
		}
		
		/**
		 * Always show previous / next?
		 */
		$prev_link = $next_link = '';
		if (!empty($options['always_prev_next'])) {
			
			// Disable it for paginate_links()
			$args['prev_next'] = false;
			
			// Previous link
			$prev_link = get_previous_posts_link($args['prev_text']);
			if (!$prev_link) {
				$prev_link = '<span class="disabled">' . $args['prev_text'] . '</span>';
			}
			
			// Next link
			$next_link = get_next_posts_link($args['next_text']);
			if (!$next_link) {
				$next_link = '<span class="disabled">' . $args['next_text'] . '</span>';
			}
			
			// Wrap them
			$prev_link = '<span class="page-numbers label-prev">' . $prev_link . '</span>';
			$next_link = '<span class="page-numbers label-next">' . $next_link . '</span>';
		}
		
		$pagination = paginate_links($args);
		
		
		// Add wrapper?
		if (!empty($options['wrapper_before'])) {
			$pagination = $options['wrapper_before'] . $pagination . $options['wrapper_after'];
		}
		
		return $prev_link . $pagination . $next_link;	
	}
	
	/**
	 * Fix query LIMIT when using offsets.
	 * 
	 * @param object $query
	 */
	public function fix_query_offset(&$query) 
	{
		if (empty($query->query_vars['offset']) || empty($query->query_vars['orig_offset'])) {
			return;
		}
		
		// When paged, manually determine page query offset.
		if ($query->is_paged) {	

			// (offset + current page (minus one) x posts per page)
			$page_offset = $query->query_vars['offset'] + (($query->query_vars['paged'] - 1) * $query->query_vars['posts_per_page']);
			$query->set('offset', $page_offset);
				
		}
		else {
			// First page? Just use the offset.
			$query->set('offset', $query->query_vars['offset']);
		}
	}
	
	/**
	 * Preserve original offset query var as it will be changed.
	 * 
	 * @param array $query Query vars.
	 */
	public function add_query_offset($query = [])
	{
		if (isset($query['offset'])) {
			$query['orig_offset'] = $query['offset'];
		}
		
		return $query;
	}	
	
	/**
	 * A wrapper for common pre_get_posts filters.
	 * 
	 * @param object $query
	 */
	public function pre_get_posts(&$query) 
	{
		$this->fix_query_offset($query);
	}

	/**
	 * Fix found_posts when an offset is set.
	 * 
	 * WordPress found_posts doesn't account for offset.

	 * @param integer $found_posts
	 * @param object $query
	 */
	public function fix_offset_pagination($found_posts, $query)
	{
		if (empty($query->query_vars['offset']) OR empty($query->query_vars['orig_offset'])) {
			return $found_posts;
		}
		
		$offset = $query->query_vars['orig_offset'];
	
		// Reduce WordPress's found_posts count by the offset.
		return $found_posts - $offset;
	}

	/**
	 * Callback: Record post ids to prevent duplicates later. Use on loop_end hook.
	 * 
	 * @param \WP_Query $query
	 * @return void
	 */
	public function _record_displayed(&$query)
	{
		// The query must enable logging.
		if (empty($query->query_vars['record_displayed'])) {
			return;
		}

		// Add to list.
		$displayed = (array) Bunyad::registry()->page_displayed_posts;
		foreach ($query->posts as $post) {
			array_push($displayed, $post->ID); 
		}

		Bunyad::registry()->set('page_displayed_posts', $displayed);
	}

	/**
	 * Callback: Enable displayed posts prevention the provided query args.
	 * 
	 * @param array $args Arguments for WP_Query.
	 * @return array
	 */
	public function _exclude_displayed($args)
	{	
		$displayed = (array) Bunyad::registry()->page_displayed_posts;

		$args['post__not_in'] = array_merge(
			isset($args['post__not_in']) ? (array) $args['post__not_in'] : [],
			$displayed
		);

		$args['record_displayed'] = true;

		return $args;	
	}
	
	/**
	 * Add the read more text to excerpts
	 */
	public function excerpt_read_more()
	{
		global $post;
		
		if (is_feed()) {
			return ' [...]';
		}

		// Add more link if enabled.
		if ($this->read_more) {
			
			$text = $this->more_text;
			if (!$text) {
				$text = esc_html__('Read More', 'bunyad');
			}
			
			if ($this->more_html === null) {
				$this->more_html = '<div class="read-more"><a href="%1$s" title="%2$s">%3$s</a></div>';
			}

			return sprintf(
				apply_filters('bunyad_read_more_html', $this->more_html), 
				get_permalink($post->ID),
				esc_attr($text),
				$text
			);
		}
		
		return '';
	}
	
	/**
	 * Make a copy of original state to be restored later.
	 */
	protected function _store_state()
	{
		$this->state = [
			'read_more' => $this->read_more,
			'more_text' => $this->more_text,
			'more_html' => $this->more_html
		];
	}

	/**
	 * Restore state after it was temporarily changed.
	 */
	protected function _restore_state()
	{
		foreach ($this->state as $key => $value) {
			$this->{$key} = $value;
		}
	}
}PK03Y���#smartmag-core/lib/registry.php<?php
/**
 * Global Shared Registry 
 * 
 * An in-memory global shared registry to store shared objects and variables in memory.
 */
class Bunyad_Registry
{
	private $registry = array();

	/**
	 * Magic method for get()
	 * 
	 * @see Bunyad_Registry::get()
	 */
	public function __get($key)
	{
		return $this->get($key);
	}
	
	/**
	 * Magic method for set()
	 * 
	 * @see Bunyad_Registry::set()
	 */
	public function __set($key, $value)
	{
		return $this->set($key, $value);
	}
	
	/**
	 * Get a key stored in registry
	 * 
	 * @param string $key
	 * @return mixed|null
	 */
	public function get($key)
	{		
		if (isset($this->registry[$key])) {
			return $this->registry[$key];
		}
		
		return null;
	}
	
	/**
	 * Empty the registry
	 */
	public function clear()
	{
		$this->registry = array();
		return $this;
	}
	
	/**
	 * Add an entry or multiple entries to registry
	 * 
	 * @param string|array $key
	 * @param mixed $value  a value of null will unset the option
	 * @return Bunyad_Registry
	 */
	public function set($key, $value = null)
	{
		// array? merge it!
		if (is_array($key)) {
			$this->registry = array_merge($this->registry, $key);
			return $this;
		}
		
		if ($value === null) {
			unset($this->registry[$key]);
		}
		else {
			$this->registry[$key] = $value;
		}
		
		return $this;
	}
}PK03Y�CH�GGsmartmag-core/lib/util.php<?php
namespace Bunyad\Util;

/**
 * Utility PHP functions and other utils.
 */

/**
 * Insert into array after a certain key.
 * 
 * Note: Doesn't play with numeric indices in inserted arrays when 
 * dealing with associative arrays.
 *
 * @param array $array         The array to modify.
 * @param integer|string $key  Target key to insert before or after.
 * @param array $insert        Array to insert.
 * @param string $position     'before' or 'after'.
 * 
 * @return void
 */
function array_insert(&$array, $key, $insert, $position = 'after') 
{
	$index = array_search($key, array_keys($array));

	// Inserting after or before.
	if ($position === 'after') {
		$pos = false === $index ? count($array) : $index + 1;
	}
	else {
		$pos = false === $index ? 0 : $index;
	}

	// Add at beginning.
	if ($key === null || $pos < 0) {
		$pos = 0;
	}

	$array = array_merge(
		array_slice($array, 0, $pos), 
		$insert, 
		array_slice($array, $pos)
	);
}

/**
 * Modify both keys and values in a an array recursively, while preserving sort.
 *
 * @param array    $array    Original array.
 * @param callable $callback Callback function takes two params (key, value) and 
 *                           returns the new [key, value] to as an array.
 *
 * @return array
 */
function array_modify_recursive(array $array, callable $callback) 
{
	$output = [];

	foreach ($array as $key => $value) {

		if (is_array($value)) {
			$value = array_modify_recursive($value, $callback);
		}

		$new_key   = $key;
		$new_value = $value;

		// Get output from callback and use as key/value.
		$replace   = $callback($key, $value);
		if (is_array($replace)) {
			list($new_key, $new_value) = $replace;
		}

		// If callback returns false, skip.
		if ($replace !== false) {
			$output[$new_key] = $new_value;
		}
	}

	return $output;
}


/**
 * Remove prefix/suffix from set of keys, recursively.
 *
 * @param array   $array
 * @param string  $affix
 * @param boolean $is_prefix
 * @return array
 */
function deaffix_keys(array $array, $affix, $is_prefix = true, $args = []) 
{
	$args = array_replace([
		'require_affix' => false
	], $args);

	$new_array = [];

	foreach ($array as $key => $val) {
		if (is_array($val)) {
			$val = deaffix_keys($val, $affix, $is_prefix);
		}

		// Flag to denote if an affix was found and changes made.
		$affixed = false;

		// Prefix
		if ($is_prefix && strpos($key, $affix) === 0) {
			$affixed = true;
			$key     = substr($key, strlen($affix));
		}
		elseif (!$is_prefix) {
			
			// Finding and removing a suffix.
			$offset = strlen($key) - strlen($affix);
			if (strpos($key, $affix, $offset) !== false) {
				$affixed = true;
				$key     = substr($key, 0, -strlen($affix));
			}
		}

		// Discard if affix is required.
		if ($args['require_affix'] && !$affixed) {
			continue;
		}
		
		$new_array[$key] = $val;
	}

	return $new_array;
}

/**
 * Remove affix in keys of array and pick only the affixed keys.
 *
 * @see defaffix_keys()
 * @return array
 */
function pick_deaffixed(array $array, $affix, $is_prefix = true) 
{
	return deaffix_keys($array, $affix, $is_prefix, ['require_affix' => true]);
}

/**
 * Create multiple options based on provided replacements and a template array.
 *
 * @param array $templates
 * @param array $field_types
 * @param array $options
 * @param array $config
 * @return void
 */
function repeat_options($templates, $field_types, &$options, $config = []) 
{
	$config = array_replace([

		// Main dynamic key to be replaced by $field_types[$key] in loop.
		'key'          => '{key}',

		// By default, {key} is replaced in 'name' and recursively for 'css'.
		'replace_in'   => ['css'],
		
		// Static keys to replace besides main dynamic key in {key}.
		// Replacements can also be added to $field_types[replacements]
		'replacements' => [],
	], $config);

	foreach ($field_types as $key => $type) {
		foreach ($templates as $id => $template) {

			// Skip this specific field.
			if (isset($type['skip']) && in_array($template['name'], $type['skip'])) {
				continue;
			}

			// Copy all provided data except for internal function-specific configs.
			$copy_data = array_diff_key($type, array_flip([
				'overrides', 
				'replace_in', 
				'fields_css', 
				'skip',
				'replacements'
			]));

			$to_add         = array_replace_recursive($template, $copy_data);
			$to_add['name'] = str_replace($config['key'], $key, $to_add['name']);

			// Overrides for specific keys.
			if (!empty($type['overrides']) && isset($type['overrides'][ $template['name'] ])) {
					$to_add = array_replace(
						$to_add, 
						(array) $type['overrides'][ $template['name'] ]
				);
			}

			// Override 'css' with data from 'fields_css'.
			if (!empty($type['fields_css'][$id])) {
				$to_add['css'] = $type['fields_css'][$id];
			}

			// Use substitute options.
			if (isset($template['template']) && !empty($template['template'][$key])) {

				// Not doing recursive replace as things like 'css' and 'options' have to
				// replaced, not necessarily merged.
				$to_add  = array_replace($to_add, $template['template'][$key]);

				// 'template' is intentionally preserved for a second run at replacement.
				// unset($to_add['template']);
			}

			/**
			 * All the replacements the keys in replace_in.
			 */
			if ($config['replace_in']) {
				// {key} already done above. But we need to perform for 'replacements' too.
				array_push($config['replace_in'], 'name');
			}

			// Use config replacements map and add main key from fields loop.
			$replacements = array_replace(
				$config['replacements'],
				(isset($type['replacements']) ? $type['replacements'] : []),
				[
					$config['key'] => $key
				]
			);

			$replace_keys = array_keys($replacements);
			$replace_vals = array_values($replacements);

			foreach ($config['replace_in'] as $replace) {
				if (empty($to_add[ $replace ])) {
					continue;
				}

				if (is_array($to_add[ $replace ])) {

					/**
					 * Recursively replace provided key => value map in both keys and values.
					 */
					$to_add[ $replace ] = \Bunyad\Util\array_modify_recursive($to_add[ $replace ], function($new_key, $new_val) use($replace_keys, $replace_vals) {
						$new_key = str_replace($replace_keys, $replace_vals, $new_key);

						if (is_string($new_val)) {
							$new_val = str_replace($replace_keys, $replace_vals, $new_val);
						}

						return [$new_key, $new_val];
					});
				}
				else {
					$to_add[ $replace ] = str_replace($replace_keys, $replace_vals, $to_add[ $replace ]);
				}
			}

			$options[] = $to_add;
		}
	}
}

/**
 * Format a provided number into a readable shorter version with K or M.
 *
 * @param int|float $number
 * @return int|float
 */
function readable_number($number)
{
	if ($number < 1000) {
		return $number;
	}

	if ($number < 10^6) {
		return number_format_i18n(round($number / 1000, 1)) . 'K';
	}
	
	return number_format_i18n(round($number / 10^6, 1)) . 'M';
}

/**
 * Get any callback as string.
 */
function get_as_string($callback, ...$args)
{
	if (!is_callable($callback)) {
		throw new \Exception('Invalid callback provided.');
	}

	ob_start();
	$return_value = call_user_func_array($callback, $args);
	$capture = ob_get_clean();

	if ($return_value && is_string($return_value)) {
		return $return_value;
	}

	return $capture;
}

/**
 * Remove empty string values from an array.
 *
 * @param array $array
 * @return array
 */
function filter_empty_strings($array)
{
	return array_filter($array, static function($v) {
		return $v !== '';
	});
}PK03Yǃ.��smartmag-core/lib/widgets.php<?php
/**
 * Initialize widgets from the plugin with a fallback path to theme if set.
 * 
 * @package Bunyad
 */
class Bunyad_Widgets
{
	public $active  = [];
	public $path    = '';
	public $prefix  = 'Bunyad_';

	public function __construct()
	{
		add_action('widgets_init', array($this, 'setup'));
	}
	
	/**
	 * Initialize the widgets
	 */
	public function setup() 
	{
		$widgets = apply_filters('bunyad_active_widgets', $this->active);

		// Activate widgets
		foreach ($widgets as $widget) {

			$file = $this->path . 'widgets/widget-'. sanitize_file_name($widget) .'.php';
			
			// Try from theme if widget file doesn't exist in specified path.
			if (!file_exists($file)) {
				$file = locate_template('inc/widgets/widget-'. sanitize_file_name($widget) .'.php');
			}

			$class =  $this->prefix. implode('', array_map('ucfirst', explode('-', $widget)));
			
			// Skip if already included or if file is missing.
			if (class_exists($class) OR !file_exists($file)) {
				continue;
			}
			
			// Include the widget class
			require_once $file;  // Escaped above.
			
			if (!class_exists($class)) {
				continue;
			}
			
			/**
			 * Use register widget method of the Bunyad_XYZ_Widget class if available.
			 * Fallback to register_widget.
			 * 
			 * @see register_widget()
			 */
			if (method_exists($class, 'register_widget')) {
				$caller = new $class;
				$caller->register_widget(); 
			}
			else {
				register_widget($class);
			}
		}
	}
}PK03Y:_e�
�
%smartmag-core/lib/admin/meta-base.php<?php
/**
 * Base class for handling common meta methods.
 */
abstract class Bunyad_Admin_MetaBase
{
	protected $options = [];

	/**
	 * Using _ underscore hides it in custom metabox fields.
	 */
	protected $option_prefix = '_bunyad_';

	/**
	 * Save meta for the object post or taxonomy.
	 * 
	 * @param integer $object_id
	 */
	public function save_meta($object_id)
	{
		do_action('bunyad_meta_before_save', $object_id);

		$options = $this->options;

		// Save all meta data with the right prefix
		foreach ($_POST as $key => $value) {
			
			// Not a meta value with our desired prefix? Skip.
			if (strpos($key, $this->option_prefix) !== 0) {
				continue;
			}

			// Current value
			$meta = $this->get_meta($object_id, $key, true);

			if ($value == '_default') {
				$value = '';
			}

			// The string "0" is valid value, but false/integer 0 aren't.
			$is_empty    = ($value == '');
			$is_default  = false;

			// Remove empty for arrays.
			if (is_array($value)) {
				$value = array_filter($value);
				$is_empty = !count($value);
			}

			// Check if value matches default in options array. The default is in key 'value'.
			if (!empty($options[$key]) && array_key_exists('value', $options[$key])) {
				$is_default = ($value == $options[$key]['value']);
			}
			
			// Add or update metadata
			if (!$is_default && !$is_empty && $meta != $value) {
				
				// allowed_html available for this value in options?
				if (!empty($options[$key]) && array_key_exists('allowed_html', $options[$key])) {
					if (!is_array($value)) {
						$filtered_value = addslashes(
							wp_kses(stripslashes($value), $options[$key]['allowed_html'])
						);
					}
					else {
						$filtered_value = map_deep(
							$value,
							function($value) use ($options, $key) {
								return addslashes(
									wp_kses(stripslashes($value), $options[$key]['allowed_html'])
								);
							}
						);
					}
				}
				else {
					// Default filtered values
					$filtered_value = (current_user_can('unfiltered_html') ? $value : wp_kses_post_deep($value));
				}
				
				// filtered_value is expected to have slashes
				$this->update_meta($object_id, $key, $filtered_value);

			}
			else {

				// get_post_meta() returns '' when it can't find a record.
				$meta_exists = ($meta !== '');

				// Remove empty or default values
				if ($meta_exists && ($is_empty || $is_default)) {
					$this->delete_meta($object_id, $key);
				}
			}
		}
	}

	/**
	 * Delete a meta field.
	 */
	abstract public function delete_meta($object_id, $key);

	/**
	 * Update a meta field.
	 */
	abstract public function update_meta($object_id, $key, $value);
	
	/**
	 * Get meta field value.
	 */
	abstract public function get_meta($object_id, $key, $single = false);
}PK03Y[���kk&smartmag-core/lib/admin/meta-boxes.php<?php
/**
 * Metaboxes: Not to be used in themes
 */
class Bunyad_Admin_MetaBoxes extends Bunyad_Admin_MetaBase
{
	private $prefix;
	private $cache = [];
	
	public function __construct()
	{
		add_action('add_meta_boxes', array($this, 'init'));
		add_action('admin_enqueue_scripts', array($this, 'register_assets'));
		add_action('save_post', array($this, 'process_save'));
		
		// Add metabox id prefix 
		$this->prefix = Bunyad::options()->get_config('theme_prefix') . '_';

		// Set meta options prefix if exists
		if (Bunyad::options()->get_config('meta_prefix')) {
			$this->option_prefix = Bunyad::options()->get_config('meta_prefix') . '_';
		}
	}
	
	/**
	 * Setup metaboxes
	 */
	public function init()
	{
		// get theme meta configs
		$meta = apply_filters('bunyad_meta_boxes', Bunyad::options()->get_config('meta_boxes'));
		if (!is_array($meta)) {
			return;
		}
		
		$this->register_boxes($meta);
	}

	/**
	 * Register metaboxes with Wordpress API.
	 */
	public function register_boxes(array $meta)
	{
		// Set some nifty defaults
		$defaults = [
			'page'     => 'post',
			'priority' => 'high',
			'context'  => 'normal'
		];
		
		// Add metaboxes
		foreach ($meta as $box) {

			// Add defaults.
			$box = array_merge($defaults, $box);
			
			// Prefix it.
			$box['id']    = $this->prefix . $box['id'];			
			
			// Fix screen.
			$box['pages'] = is_array($box['page']) ? $box['page'] : ['post'];

			// Legacy used 'file' instead of 'form'.
			$form_file = !empty($box['form']) ? $box['form'] : '';
			if (isset($box['file'])) {
				$form_file = (string) $box['file'];
			}
			
			foreach ($box['pages'] as $screen) {
				add_meta_box(
					$box['id'], 
					$box['title'], 
					[$this, 'render'],
					$screen,
					$box['context'],
					$box['priority'],
					[
						'id'      => $box['id'],
						'form'    => $form_file,
						'options' => !empty($box['options_file']) ? $box['options_file'] : '',
					]
				);
			}
		}
	}

	/**
	 * Callback: Register assets for the right admin pages.
	 */
	public function register_assets($hook)
	{
		if (in_array($hook, ['post-new.php', 'post.php'])) {
			wp_enqueue_script('bunyad-lib-options');
		}
	}

	/**
	 * Get a theme metabox by id.
	 * 
	 * @return array
	 */
	public function get_box($box_id)
	{
		$meta = (array) Bunyad::options()->get_config('meta_boxes');
		foreach ($meta as $box) {
			if ($this->prefix . $box['id'] == $box_id) {
				return $box;
			}
		}
		
		return [];
	}
	
	/**
	 * Render the metabox - used via callback
	 * 
	 * @param object $post
	 * @param array $args
	 */
	public function render($post = null, $args = null)
	{
		if (!$args['id']) {
			return false;
		}
		
		// Add nonce for security
		if (!isset($this->cache['nonce'])) {
			wp_nonce_field('meta_save', '_nonce_' . $this->prefix . 'meta', false);
		}
		
		Bunyad::factory('admin/option-renderer');
		
		// Metabox file defined.
		$file = $args['args']['form'];

		// @deprecated Legacy way of meta file from theme.
		if (empty($file)) {
			$file = sanitize_file_name(str_replace($this->prefix, '', $args['id'])) . '.php';
			$file = locate_template('admin/meta/' . $file);
		}

		/** @var Bunyad_Admin_MetaRenderer $meta */
		$meta = Bunyad::factory('admin/meta-renderer', true); 

		// Render the template
		$meta->set_prefix($this->option_prefix)->template(
			[],
			$file,
			// We need meta with prefixes, hence remove_prefix=false.
			Bunyad::posts()->get_all_meta($post->ID, false),
			[
				'post'   => $post, 
				'box'    => $this->get_box($args['id']), 
				'box_id' => $args['id']
			]
		);
	}
	
	/**
	 * Save custom post meta.
	 * 
	 * @param integer $post_id
	 */
	public function process_save($post_id)
	{
		// Just an auto-save
		if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
			return;
		}
	
		// Security checks
		if (
			!current_user_can('edit_post', $post_id)
			|| (
				isset($_POST['_nonce_' . $this->prefix . 'meta']) 
				&& !wp_verify_nonce($_POST['_nonce_' . $this->prefix . 'meta'], 'meta_save')
			) 
		) {
			return false;
		}
		
		// Load meta-box fields and set in $this->options. This is later used for 
		// default value chekcs in save_meta() method.
		if (!empty($_POST['bunyad_meta_box'])) {

			$metaboxes = (array) $_POST['bunyad_meta_box'];

			foreach ($metaboxes as $box_id) {
				$box  = $this->get_box($box_id);

				// Use options file if specified.
				if ($box && isset($box['options'])) {
					$file = $box['options'];
				}
				// @deprecated - Legacy way of getting from theme.
				else if (is_string($_POST['bunyad_meta_box'])) {
					$path = apply_filters('bunyad_metabox_options_dir', get_theme_file_path('admin/meta/options'));
					$file = trailingslashit($path) . sanitize_file_name($_POST['bunyad_meta_box']) . '.php';
				}
			
				if (!empty($file)) {
					include $file; // phpcs:ignore WordPress.Security.EscapeOutput -- From safe internal config. 
					
					$this->options = array_replace(
						$this->options,
						$this->_build_meta_map($options)
					);
				}
			}
		}

		$this->save_meta($post_id);
	}

	/**
	 * @inheritDoc
	 */
	public function get_meta($object_id, $key, $single = false)
	{
		return get_post_meta($object_id, $key, $single);
	}

	/**
	 * @inheritDoc
	 */
	public function update_meta($object_id, $key, $value)
	{
		return update_post_meta($object_id, $key, $value);
	}

	/**
	 * @inheritDoc
	 */
	public function delete_meta($object_id, $key)
	{
		return delete_post_meta($object_id, $key);
	}

	/**
	 * Build meta options array using field name as key with the prefix
	 * 
	 * @param array $options
	 */
	public function _build_meta_map($options)
	{
		$map = array();
		
		foreach ($options as $option) {
			$map[ $this->option_prefix . $option['name'] ] = $option;
		}
		
		return $map;
	}
}PK03Y�11)smartmag-core/lib/admin/meta-renderer.php<?php

class Bunyad_Admin_MetaRenderer extends Bunyad_Admin_OptionRenderer
{
	private $prefix;
	
	public function set_prefix($prefix)
	{
		$this->prefix = $prefix;
		return $this;
	}
	
	/**
	 * Renders a specific element adding in the default values.
	 * 
	 * @param array $element
	 */
	public function render($element)
	{
		// Set default value if available (the known value).
		if (isset($this->default_values[$element['name']])) {
			$default = $this->default_values[$element['name']];

			// Array? - possible messed up import.
			if (is_array($default) && isset($default[0])) {
				$default = $default[0];
			}

			$element['value'] = $default;
		}

		return $this->render_element($element);
	}

	/**
	 * Get compatible options - currently just adds prefix to name.
	 * 
	 * @param array $options multi-dimensional array of options
	 */
	public function options($options)
	{
		$new_options = array();
		foreach ($options as $key => $option) {
			$option['name']    = $this->prefix . $option['name'];
			$new_options[$key] = $option;
		}
		
		return $new_options;
	}
}PK03Yҁ+4��&smartmag-core/lib/admin/meta-terms.php<?php
/**
 * Custom term meta for taxonomies.
 */
class Bunyad_Admin_MetaTerms extends Bunyad_Admin_MetaBase
{
	/**
	 * @var Bunyad_Admin_MetaRenderer
	 */
	public $renderer;

	public $taxonomy;
	public $options_file;
	public $form_file;
	
	/**
	 * Setup the hooks for this particular taxonomy.
	 */
	public function init()
	{
		if (!$this->options_file || !$this->form_file) {
			return;
		}

		/**
		 * Setup handlers for each taxonomy spe
		 */
		add_action($this->taxonomy . '_edit_form_fields', [$this, 'edit_form'], 10, 2);
		add_action($this->taxonomy . '_add_form_fields', [$this, 'edit_form'], 10, 2);
		
		add_action('edited_' . $this->taxonomy, [$this, 'process_save'], 10, 2);
		add_action('create_' . $this->taxonomy, array($this, 'process_save'), 10, 2);
	}

	public function load_options()
	{
		$this->options = include_once $this->options_file;

		// No auto-loader, so manual load.
		Bunyad::factory('admin/option-renderer');

		$this->renderer = Bunyad::factory('admin/meta-renderer');
		$this->renderer->set_prefix($this->option_prefix);

		$this->options = $this->renderer->options(
			apply_filters('bunyad_meta_terms_options', $this->options, $this->taxonomy)
		);
	}
	
	/**
	 * Action callback: Add form fields to term editing / adding form.
	 */
	public function edit_form($term = null)
	{
		// Add required assets.
		wp_enqueue_style('wp-color-picker');
		wp_enqueue_script('wp-color-picker');
		
		// Add media scripts.
		wp_enqueue_media(); 
		wp_enqueue_script('bunyad-lib-options');
		
		// Load the options and pass them to the renderer to add prefixes etc.
		$this->load_options();
	
		// Note: Don't add prefix at start or it will be saved in meta.
		wp_nonce_field('term_save', '_nonce_' . $this->option_prefix . 'terms_meta');
		
		$existing_options = [];
		$context = 'add';

		if (is_object($term)) {
			$context = 'edit';
			$existing_options = (array) get_term_meta($term->term_id);
		}

		$this->renderer->template(
			$this->options,
			$this->form_file,
			$existing_options,
			[
				'context' => $context
			]
		);
	}
	
	/**
	 * Action callback: Save custom meta for the term.
	 */
	public function process_save($term_id)
	{
		// Just an auto-save.
		if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
			return;
		}

		// Security verification.
		$nonce = '_nonce_' . $this->option_prefix . 'terms_meta';
		if (!isset($_POST[$nonce]) || !wp_verify_nonce($_POST[$nonce], 'term_save')) {
			return false;
		}

		$this->load_options();
		$this->save_meta($term_id);

		// Clear custom css cache.
		delete_transient('bunyad_custom_css_cache');
	}

	/**
	 * @inheritDoc
	 */
	public function get_meta($object_id, $key, $single = false)
	{
		return get_term_meta($object_id, $key, $single);
	}

	/**
	 * @inheritDoc
	 */
	public function update_meta($object_id, $key, $value)
	{
		return update_term_meta($object_id, $key, $value);
	}

	/**
	 * @inheritDoc
	 */
	public function delete_meta($object_id, $key)
	{
		return delete_term_meta($object_id, $key);
	}
}
PK03Y�ѭ��5�5+smartmag-core/lib/admin/option-renderer.php<?php

class Bunyad_Admin_OptionRenderer
{
	public $default_values = array();
	
	/**
	 * Initialize the template file
	 * 
	 * @param array $options
	 * @param string $file
	 * @param array $populate  default form values for elements
	 * @param array $data 
	 */
	public function template($options, $file, $populate = [], $data = [])
	{
		$this->default_values = (array) $populate;
		extract($data);

		require_once $file;
	}
	
	/**
	 * Render and output an element.
	 */
	public function render($element)
	{
		// Defaults.
		$element = array_replace([
			'name'  => null, 
			'label' => null
		], $element);
		
		// Set default value if available.
		if (isset($this->default_values[$element['name']])) {
			$element['value'] = $this->default_values[$element['name']];
		}

		$output = $this->render_element($element);
	
		// Decorate it.
		if ($output && empty($element['no_wrap'])) {
			$output = '<label class="element-title">'. $element['label'] . '</label>'
					. '<div class="element-control">' . $output . (isset($element['html_post_output']) ? $element['html_post_output'] : '') . '</div>';
		}
		
		return $output;
	}

	/**
	 * Render an element with the element data specified.
	 * 
	 * @param array $element
	 * @return string
	 */
	public function render_element($element)
	{
		$output = '';

		switch ($element['type']) {

			case 'select':
				$output = $this->render_select($element);
				break;
			
			case 'checkbox':
				$output = $this->render_checkbox($element);
				break;
				
			case 'text':
				$output = $this->render_text($element);
				break;
				
			case 'number':
				$output = $this->render_text(array_replace([
					'input_type'  => 'number', 
					'input_size'  => '4', 
					'input_class' => 'small'
					],
					$element
				));
				break;

			case 'hidden':
				$output = $this->render_text(array_merge(array('input_type' => 'hidden'), $element));
				break;
				
			case 'textarea':
				$output = $this->render_textarea($element);
				break;
				
			case 'radio':
				$output = $this->render_radio($element);
				break;
				
			case 'color':
				$output = $this->render_color_picker($element);
				break;
				
			case 'bg_image':
				$output = $this->render_bg_image($element);
				break;
				
			case 'upload':
				$output = $this->render_upload($element);
				break;
				
			case 'html':
				$output = $element['html'];
				break;
				
			case 'file':
				$output = include locate_template($element['render']);
				break;
				
			case 'multiple':
				$output = $this->render_multiple($element);
				break;
				
			default:
				break;
		}

		return $output;
	}
	
	/**
	 * Render a select element.
	 */
	public function render_select($element)
	{
		$element = array_replace([
			'value'    => '',
			'multiple' => false,
			'class'    => '',
		], $element);

		// To treat as array.
		if ($element['multiple']) {
			$element['name'] .= '[]';
		}

		$output = sprintf(
			'<select name="%1$s" class="%2$s"%3$s>',
			esc_attr($element['name']),
			$element['class'] ? esc_attr($element['class']) : '',
			$element['multiple'] ? ' multiple' : ''
		);
		
		foreach ((array) $element['options'] as $key => $option) 
		{
			if (is_array($option)) {
				$output .= '<optgroup label="' . esc_attr($key) . '">' . $this->_render_options($option, $element['value']) . '</optgroup>';
			}
			else {
				$output .= $this->_render_options(array($key => $option), $element['value']);
			}
		}
		
		return $output . '</select>';
	}
	
	/**
	 * Helper for: render_select()
	 */
	private function _render_options($options, $selected = '') 
	{
		$output = '';
		
		foreach ($options as $key => $option) {

			if (is_array($selected)) {
				$is_selected = in_array($key, $selected) ? ' selected' : '';
			}
			else {
				$is_selected = selected((string) $selected, $key, false);
			}

			$output .= '<option value="'. esc_attr($key) .'"'. $is_selected .'>' . esc_html($option) . '</option>';
		}
		
		return $output;
	}
	
	/**
	 * Render a single checkbox or a group of multiple checkboxes
	 * 
	 * @param array $element
	 */
	public function render_checkbox($element)
	{
		$output = '';
		
		// multiple checkboxes?
		if (!empty($element['multiple'])) 
		{
			$element['value'] = (array) $element['value'];
			foreach ((array) $element['multiple'] as $key => $option) 
			{
				$value = isset($element['value'][$key]) ? $element['value'][$key] : '';
				
				$sub_element = array_merge($element, array(
					'name'  => $element['name'] . '[' . $key . ']',
					'label' => $option,
					'value' => $value,
				));
				
				$output .= '<div class="checkbox"> ' . $this->_render_checkbox($sub_element) . '</div>';
			}
		}
		else {
			return $this->_render_checkbox($element);
		}
						
		return $output;
	}
	
	// helper for: render_checkbox()
	public function _render_checkbox($element) {
		
		$element = array_merge(array('value' => null), $element);
		$element['options'] = array_merge(
			array('checked' => esc_html('Yes', 'bunyad-admin'), 'unchecked' => esc_html('No', 'bunyad-admin')), 
			!empty($element['options']) ? $element['options'] : array()
		);
		
		$output = '<input type="hidden" name="'. esc_attr($element['name']) .'" value="0" />' // always send in POST - even when empty
				. '<input type="checkbox" name="'. esc_attr($element['name']) .'" value="1" id="'. esc_attr($element['name']) .'"'
				. checked($element['value'], 1, false) . ' data-yes="'. esc_attr($element['options']['checked']) .'" data-no="'. esc_attr($element['options']['unchecked']) .'" />
				<label for="'. esc_attr($element['name']) .'">' . $element['label'] . '</label>
				';
				
		return $output;
	}
	
	/**
	 * Renders a text input field
	 */
	public function render_text($element)
	{
		$element = array_replace([
			'value'       => '', 
			'input_class' => '', 
			'input_type'  => 'text', 
			'input_size'  => '', 
			'input_attrs' => [],
			'placeholder' => ''
		], $element);

		$args = array_filter(
			$element['input_attrs'] + [
				'type'  => $element['input_type'],
				'name'  => $element['name'],
				'value' => $element['value'],
				'class' => ['input', $element['input_class']],
				'size'  => $element['input_size'],
				'placeholder' => $element['placeholder']
			]
		);

		$attribs = Bunyad::markup()->attribs(
			'element-' . $element['name'],
			$args,
			array('echo' => false)
		);

		$output = '<input ' . $attribs . ' />';

		return $output;
	}
	
	public function render_html($element)
	{
		return $element['html'];
	}
	
	/**
	 * Renders a textarea element 
	 */
	public function render_textarea($element)
	{
		// defaults
		$element = array_merge(array(
			'value' => null,
			'placeholder' => '',
			'options' => array('rows' => null, 'cols' => null)
		), $element);
		
		
		$attribs = array(
			'name'  => $element['name'],
			'placeholder' => $element['placeholder']
		);
		
		// Add rows and cols if set
		if ($element['options']['rows'] || $element['options']['cols']) {
			$attribs = array_merge($attribs, array(
				'rows' => intval($element['options']['rows']),
				'cols' => intval($element['options']['cols'])
			));
		}
		
		// Create attributes
		$attribs = Bunyad::markup()->attribs(
			'element-' . $element['name'], 
			array_filter($attribs),
			array('echo' => false)
		);
		
		$output = '<textarea '. $attribs . '>'. esc_html($element['value']) .'</textarea>';
		
		return $output;
	}
	
	public function render_radio($element)
	{
		$output = '';
		
		foreach ($element['options'] as $key => $option)
		{
			$output .= '<div class="radio-option"><label><input type="radio" name="'. esc_attr($element['name']) .'" value="'. esc_attr($key) . '"'
					.  checked($element['value'], $key, false) .' /><span>' . esc_html($option) . '</span></label></div>';
		}
				
		return $output;
	}
	
	public function render_color_picker($element)
	{
		$element = array_merge(array('value' => null), $element);
		
		$output = '<input type="text" class="bunyad-color-picker" name="'. esc_attr($element['name']) .'"'
				. ' value="' . esc_attr($element['value']) . '" /><div class="color-picker-element"></div>';
				
		return $output;
	}
	
	/**
	 * Render background image selector with options to select bg position
	 * 
	 * @param array $element
	 * @uses Bunyad_Admin_OptionRenderer::render_upload()
	 */
	public function render_bg_image($element)
	{
		// future themes on-need-basis implementation
	}
	
	/**
	 * Render an upload element
	 * 
	 * @param array $element
	 */
	public function render_upload($element)
	{
		$button_label = esc_html('Upload', 'bunyad-admin');
		if (!empty($element['options']['button_label'])) {
			$button_label = $element['options']['button_label'];
		}
		
		$element = array_merge(array('value' => null), $element);
		$element['options'] = array_replace(array(
				'editable'    => null, 
				'title'       => null, 
				'type'        => null,
				'media_type' => 'url'
			), 
			$element['options']
		);
		$element = $this->set_sub_values($element, array('bg_type'));
		
		$classes = $image = '';
		
		$output = '<input type="'. ($element['options']['editable'] ? 'text' : 'hidden') .'" name="'. esc_attr($element['name']) .'" class="element-upload" value="'
				. esc_attr($element['value']) .'" />'
				. '<input type="button" class="button upload-btn" value="'. esc_attr($button_label) .'"' 
				. ' data-insert-label="'. esc_attr($element['options']['insert_label']) .'"'
				. ' data-title="'. esc_attr($element['options']['title']) .'"'
				. ' data-title="'. esc_attr($element['options']['type']) .'"'
				. ' data-media-type="'. esc_attr($element['options']['media_type']) .'"'
				.' />';
		
		// For type image, we can have a preview.
		if ($element['options']['type'] == 'image') { 
			
			// Image exists / editing.
			if ($element['value']) {

				$media_src = $element['value'];
				if ($element['options']['media_type'] == 'id') {
					$media_src = wp_get_attachment_url($media_src);
				}

				$image   = '<img src="'. esc_url($media_src) .'" />';
				$classes = ' visible ';
			}
		
			// Background type.
			$type = '';
			if (isset($element['bg_type'])) {
				
				$type .= $this->render_select(array(
					'name' => $element['name'] . '_bg_type',
					'value' => $element['bg_type']['value'],
					'options' => array(
						'repeat'    => esc_html('Repeat Horizontal and Vertical - Pattern', 'bunyad-admin'),
						'cover'     => esc_html('Fully Cover Background - Photo', 'bunyad-admin'),
						'repeat-x'  => esc_html('Repeat Horizontal', 'bunyad-admin'),
						'repeat-y'  => esc_html('Repeat Vertical', 'bunyad-admin'),
						'no-repeat' => esc_html('No Repeat', 'bunyad-admin'),
					),
				));
			}
			
			$output .= '<a href="" class="remove-image button after-upload'. $classes .'">'. esc_html('Remove', 'bunyad-admin') .'</a>';			
			$output .= '<div class="image-upload'. $classes .'">'. $image . '</div>';
			
			$output .= '<div class="image-type after-upload'. $classes .'">' . $type . '</div>';
		}
				
		return $output;
	}
	
	/**
	 * Render multiple repeating fields - where multiple of the same can be dynamically added
	 */
	public function render_multiple($element)
	{
		$element = array_merge(
			array(
				'html'  => '',
				'value' => ''
			),
			$element
		);
		

		/**
		 * Print existing field groups while editing
		 */
		$fields = '';
		if (!empty($element['value'])) {
			
			$iterator = $element['value'];
			$first    = current($iterator);
			
			// possibly multi-dimensional array - created by multiple fields in a group
			if (is_array($first)) {
				$iterator = $first;
			}
			
			foreach ($iterator as $key => $value) {
				$fields .= $this->_render_multiple_fields($element, $key);
			}

		}
		else {
			// add an empty field group
			$fields = $this->_render_multiple_fields($element);	
		}
		
		$output = '<div class="element-multiple">' . $fields . '<a href="#">' . esc_html('Add More', 'bunyad-admin')  . '</a></div>';
		
		return $output;
	}
	
	/**
	 * Helper for render_multiple() to add a field
	 * 
	 * @param array   $element  the main element to render sub-elements from
	 * @param integer  $key      position to get the value from saved values, if any
	 */
	public function _render_multiple_fields($element, $key = null)
	{
		// no sub fields for this element?
		if (empty($element['sub_fields'])) {
			return '';
		}
		
		$fields = '';
		
		foreach ($element['sub_fields'] as $field) {

			// defaults
			$field = array_merge(array('label' => '', 'no_wrap' => 1), $field);
			
			/**
			 * If name is omitted, there's likely only one field. The field will become available in an array of type:
			 * 
			 * main_field[]  instead of  main_field['sub_field'][]
			 */

			if (!isset($field['name'])) {
				$field = array_merge($field, array(
					'value' => ($key !== null ? $element['value'][$key] : ''),
					'name'  => $element['name'] . '[]',
				));
			}
			else {
				$field = array_merge($field, array(
					'value' => ($key !== null ? $element['value'][ $field['name'] ][$key] : ''),
					'name'  => $element['name'] . '[' . $field['name'] . '][]'
				));
			}
			
			$label   = ($field['label'] ? '<label>' . $field['label'] . '</label>' : '');
			$fields .= '<div class="field">' . $label . $this->render($field) . '</div>';
			
		}
		
		return '<div class="fields'. ($key == null ? ' default' : '') .'">' . $fields . '<a href="#" class="remove">' . esc_html('Remove', 'bunyad-admin') . '</a></div>';
		
	}
	
	/**
	 * Set the default values for sub elements as specified
	 */
	public function set_sub_values($element, $sub = array())
	{
		foreach ($sub as $ele) 
		{
			$key = $element['name'] . '_' . $ele;
			
			// populate saved value if available
			if (isset($element[$ele]) && array_key_exists($key, $this->default_values)) {
				$element[$ele]['value'] = $this->default_values[$key];
			}
		}
		
		return $element;
	}
}PK03Y��g+g+#smartmag-core/lib/admin/options.php<?php
/**
 * Theme Options handler on admin side
 */
class Bunyad_Admin_Options
{
	public $option_key;
	public $options;
	
	public function __construct()
	{
		$this->option_key = Bunyad::options()->get_config('theme_prefix') .'_theme_options';

		// Initialize.
		add_action('admin_init', [$this, 'init']);
		add_action('after_switch_theme', [$this, 'check_version']);
		
		// Cleanup defaults. Caps will be pre-checked.
		add_action('customize_save_after', [$this, 'customizer_save_process']);
	}
	
	/**
	 * Initialize at admin_init hook.
	 */
	public function init()
	{
		// Current user should have sufficient priveleges to continue.
		if (!current_user_can('edit_theme_options')) {
			return;
		}

		// Check for a changed version in non-AJAX only.
		if (!wp_doing_ajax()) {
			$this->check_version();
		}
	}
	
	/**
	 * Check current theme version and run an update hook if necessary
	 */
	public function check_version()
	{
		$option = Bunyad::options()->get_config('theme_prefix') . '_theme_version';

		// Stored version info
		$version_info   = (array) get_option($option);
		$stored_version = !empty($version_info['current']) ? $version_info['current'] : null;

		// Legacy compat: Get from options.
		if (!$stored_version && Bunyad::options()->theme_version) {
			$stored_version = Bunyad::options()->theme_version;
		}
		
		// Update version if necessary.
		if (!$stored_version || !version_compare($stored_version, Bunyad::options()->get_config('theme_version'), '==')) {
			
			// This shouldn't happen, but just in case the previous version is known and we're in customizer. 
			// We can't update while in customizer preview. 
			if ($stored_version && function_exists('is_customize_preview') && is_customize_preview()) {
				return wp_die(
					'The theme has a pending update that may cause fatal errors on customizer. Please go back to your WordPress admin area first and then open Customizer again.',
					'Pending Update!'
				);
			}

			// Fire up the hook.
			do_action('bunyad_theme_version_change', $stored_version);

			// Can be filtered to stop the version update in db.
			if (!apply_filters('bunyad_theme_version_update_done', true)) {
				return;
			}
			
			// Update the theme version.
			$version_info['current'] = Bunyad::options()->get_config('theme_version');

			// Add in first install data if missing.
			$version_info['first_install'] = $version_info['first_install'] ?? time();

			if ($stored_version) {
				$version_info['previous'] = $stored_version;
			}
			
			// Update changes in database.
			update_option($option, array_filter($version_info));

			/**
			 * Force recheck plugin updates to get update prompts for required plugins.
			 */
			$transient = (object) get_site_transient('update_plugins');
			$transient->last_checked = time() - DAY_IN_SECONDS;
			set_site_transient('update_plugins', $transient);

			do_action('wp_update_plugins');

			/**
			 * Refresh TGMPA notices to alert of new plugin updates.
			 */
			$id = Bunyad::options()->get_config('theme_prefix') . '_tgmpa';
			delete_metadata('user', null, 'tgmpa_dismissed_notice_' . $id, null, true);
		}
	}
	
	/**
	 * Load options locally for the class
	 * 
	 * @deprecated No longer in use.
	 */
	public function set_options($options = null)
	{
		if ($options) {
			$this->options = $options;
		}
		else if (!$this->options) { 
			
			// Get default options if empty
			$this->options = include get_template_directory() . '/admin/options.php';
		}
		
		return $this;
	}

	/**
	 * Extract elements/fields from the options tree.
	 * 
	 * @param array   $options  Options tree.
	 * @param boolean $sub      Deprecated. Add partial sub-elements in the list.
	 * @param string  $tab_id   Filter using a tab id.
	 */
	public function get_elements_from_tree(array $options, $sub = false, $tab_id = null)
	{
		$elements = [];
		
		foreach ($options as $tab) {
			
			if ($tab_id != null && $tab['id'] !== $tab_id) {
				continue;
			}

			if (empty($tab['sections'])) {
				continue;
			}
			
			foreach ($tab['sections'] as $section) {
				foreach ($section['fields'] as $element) {
					// Pseudo element?
					if (empty($element['name'])) {
						continue;
					}
					
					$elements[$element['name']] = $element;					
				}
			}
		}
		
		return $elements;
	}

	/**
	 * Post-process Save customizer options.
	 * 
	 * This is needed to fix the defaults on customizer as it saves values in DB even when default is used.
	 * 
	 * @todo Refactor to Bunyad_Options::update()
	 */
	public function customizer_save_process()
	{
		// The save options (Just saved by Customizer before this hook)
		$options  = get_option($this->option_key);

		if (empty($options)) {
			return;
		}

		$options = $this->remove_defaults($options);

		// Remove dependencies disabled via context.
		// @deprecated Remove on runtime instead to preserve entered data in customizer.
		// $options = $this->remove_disabled_contexts($options, $elements);

		// Save the updated options
		update_option($this->option_key, $options);
	}

	/**
	 * Remove options that have default value based on provided elements tree.
	 * 
	 * @uses Bunyad::options()
	 * @param array $options   Key => value array.
	 * @param array $elements Optional options tree.
	 */
	public function remove_defaults($options, $elements = [])
	{
		if (!$elements) {
			// Get options and process them to add group pseudo-options and defaults.
			$elements = Bunyad::options()->load_elements(false);
		}

		// Remove defaults
		foreach ($options as $key => $value) {

			// Reset default as isset() is used later.
			unset($default);

			// Unrecognized element. Skip.
			// Note: Not unsetting as it might be a legacy value still needed in options storage.
			if (!isset($elements[$key])) {
				continue;
			}

			// Skip groups and other fields that should not have a value. This is also removed on runtime.
			if (isset($elements[$key]['type']) && in_array($elements[$key]['type'], ['group', 'message'])) {
				unset($options[$key]);
				continue;
			}

			// Default unspecified?
			if (isset($elements[$key]) && isset($elements[$key]['value'])) {
				$default = $elements[$key]['value'];
			}

			if (is_array($value)) {

				foreach ($value as $k => $v) {

					/**
			 		 * For special arrays that have keys in options as social_profile[facebook]
			 		 */
					$ele_key = "{$key}[{$k}]";
					if (isset($elements[$ele_key])) {
						$ele_default = $elements[$ele_key]['value'];

						if ($ele_default == $v) {
							unset($options[$key][$k]);
						}
					}
				}

				// Filter empty entries from devices array. If the default 'value' is known and available.
				if (!empty($elements[$key]['devices']) && isset($default)) {

					$filtered = array_filter($value);

					// If default value is empty, customizer module hasn't run process_options()
					// and there was no manual default value. Remove empty keys / use filtered.
					if (empty($default)) {
						$value = $filtered;
					}
					else {

						// If array is empty or the only value is limit, set to default / remove.
						if (!$filtered || (count($filtered) === 1 && isset($filtered['limit']))) {
							$value = $default;
						}
					}
				}

				// Empty arrays are removed only if the default value is empty too. (below)
				// Otherwise, selecting no checkboxes for example can be a problem.
			}
			
			// Remove default values.
			// Note: Arrays with same keys are equal as it's a loose match. Sortables shouldn't 
			// use string keys but dynamic integer keys.
			//
			// Caveat: Casting to int would mean, '#222' or 'e' == 0 in loose match, pre-php8.
			if (isset($default)) {
				
				// BC: PHP 8+ doesn't match 0 == '' anymore, so do int match.
				// Customizer often may save toggles as '' or 1. 
				// We're using floatval() so a value of 0.x won't be stripped when casted to int.
				// Using floatval() is non-locale-aware unlike (float) and works fine with non-decimals.
				$value = $default === 0 ? floatval($value) : $value;

				if ($default == $value) {
					unset($options[$key]);
				}
			}
		}

		return $options;
	}
	
	/**
	 * Remove disabled dependencies based on context.
	 *
	 * @param array $options
	 * @return array
	 */
	public function remove_disabled_contexts($options, $elements)
	{
		// Override default values on elements.
		foreach ($options as $key => $value) {
			if (isset($elements[$key])) {
				$elements[$key]['value'] = $value;

				// Remove groups and other fields that should not have a value.
				if (isset($elements[$key]['type']) && in_array($elements[$key]['type'], ['group', 'message'])) {
					unset($options[$key]);
				}
			}
		}

		// Note: Separate from previous loop as all values need to be made available beforehand
		// for the method is_context_active.
		foreach ($options as $key => $value) {

			if (!isset($elements[$key]) || !array_key_exists('context', $elements[$key])) {
				continue;
			}

			// Preserved flag - do not remove.
			if (!empty($elements[$key]['preserve'])) {
				continue;
			}

			$context = (array) $elements[$key]['context'];

			if (!$this->is_context_active($context, $elements)) {
				unset($options[$key]);
			}
		}

		return $options;
	}

	/**
	 * Check if an element is contextually active.
	 * 
	 * @param array $contexts  Context tests to conduct.
	 * @param array $elements  Elements expected with values overriden (not defaults).
	 * 
	 * @return boolean
	 */
	public function is_context_active($contexts, $elements)
	{
		$active = null;

		// Empty context means active.
		if (!$contexts) {
			return true;
		}

		foreach ($contexts as $data) {

			$data['relation'] = isset($data['relation']) ? $data['relation'] : 'AND';
			
			// Previous condition failed, continue no more with AND relation.
			if ($active === false && $data['relation'] !== 'OR') { 
				return false;
			}

			// Previous condition passed, stop with OR relation.
			if ($active === true && $data['relation'] === 'OR') {
				return true;
			}

			$expected = $data['value'];
			$value    = $elements[ $data['key'] ]['value'] ?? false;
			$compare  = isset($data['compare']) ? $data['compare'] : '';

			$active = $this->context_compare($value, $expected, $compare);
		}

		return $active;
	}

	/**
	 * Compare current with expected value.
	 * 
	 * @return boolean
	 */
	public function context_compare($value, $expected, $compare)
	{
		if (is_array($expected)) {
			$compare = $compare == '!=' ? 'not in' : 'in';
		}
		else {
			// BC: PHP 8+ doesn't match 0 == '' anymore, so int convert.
			$value    = $expected === 0 ? (int) $value : $value;
			$expected = $value === 0 ? (int) $expected : $expected;
		}

		switch ($compare) {
			case 'in':
			case 'not in':
				$return = in_array($value, $expected);
				return $compare == 'in' ? $return : !$return;

			case '!=':
				return $value != $expected;

			default:
				return $value == $expected;
		}
	}

	/**
	 * Delete / reset options - security checks done outside.
	 */
	public function delete_options($type = null)
	{
		// Empty it all.
		Bunyad::options()
			->set_all([])
			->update();
		
		do_action('bunyad_options_reset');

		return true;
	}
	
}PK03Yٛ�%��%smartmag-core/lib/js/admin/notices.js/**
 * Dismissable notices.
 */
jQuery(function($) {
	'use strict';

	// AJAX request to the URL
	$('.bunyad-admin-notice.is-dismissible').on('click', '.notice-dismiss', function() {

		const parent = $(this).parent('.notice');
		const noticeId = parent.data('notice-id');
		const nonce    = parent.data('nonce');

		if (!nonce || !noticeId) {
			return;
		}

		$.post(Bunyad.ajaxurl || ajaxurl, {
			'action': 'bunyad_dismiss_notice',
			'notice_id': noticeId,
			'_wpnonce': nonce
		});
	});
});PK03Y;��`xx%smartmag-core/lib/js/admin/options.js/**
 * Methods that deal with meta box and other options.
 */
(function($) {			
	"use strict";

	function handleUpload() {
		
		var element      = $(this),
			text_box     = element.parent().find('.element-upload'),
			insert_label = element.data('insert-label'),
			mediaType    = element.data('media-type'),
			file_frame   = null;
		
		if (file_frame) {
			return file_frame.open();
		}
		
		file_frame = wp.media({
			title: element.data('title'),
			button: {text: insert_label},
			multiple: false
		});
		
		file_frame.on('select', function() {
			var attachment = file_frame.state().get('selection').first().toJSON();
			
			// Set it in hidden input.
			text_box.val(
				mediaType == 'id' ? attachment.id : attachment.url
			);
		
			// Remove existing img and add the new one.
			element.parent().find('.image-upload').find('img').remove();
			element.parent().find('.image-upload').prepend('<img src="' + attachment.url + '" />').fadeIn();
			element.parent().find('.after-upload').addClass('visible');
			
		});
		
		file_frame.open();
		
		return;
	}

	function removeUpload() {
		$(this).parent().parent().find('.element-upload').val('');
		$(this).parent().find('img').remove();
		$(this).parent().find('.after-upload').removeClass('visible');
		
		return false;
	}

	const init = () => {

		// Setup colors.
		if ($.fn.wpColorPicker) {
			$('.bunyad-color-picker').wpColorPicker();
		}

		// Setup upload handler.
		$(document).on('click', '.bunyad-meta .upload-btn, .bunyad-option .upload-btn', handleUpload);
		$(document).on('click', '.bunyad-meta .remove-image, .bunyad-option .remove-image', removeUpload);

	};

	init();

})(jQuery);PK03Yo}1(smartmag-core/metaboxes/page-options.php<?php
/**
 * Render options metabox for pages.
 * 
 * @var Bunyad_Admin_MetaRenderer $this
 */

$dir = SmartMag_Core::instance()->path . 'metaboxes/options/';
include apply_filters('bunyad_metabox_options_dir', $dir) . 'page.php';

$options = $this->options(
	apply_filters('bunyad_metabox_page_options', $options)
);

?>

<div class="bunyad-meta bunyad-meta-editor cf">
	<input type="hidden" name="bunyad_meta_box[]" value="<?php echo esc_attr($box_id); ?>">

<?php foreach ($options as $element): ?>
	
	<div class="option <?php echo esc_attr($element['name']); ?>">
		<span class="label"><?php echo esc_html($element['label']); ?></span>
		<span class="field">
			
			<?php echo $this->render($element); // XSS ok. Bunyad_Admin_OptionRenderer::render() ?>
		
			<?php if (!empty($element['desc'])): ?>
			
			<p class="description"><?php echo esc_html($element['desc']); ?></p>
		
			<?php endif;?>
		
		</span>		
	</div>
	
<?php endforeach; ?>

</div>

<script>
/**
 * Conditional show/hide 
 */
jQuery(function($) {
	$('._bunyad_featured_slider select').on('change', function() {

		var depend_default = '._bunyad_slider_number, ._bunyad_slider_posts, ._bunyad_slider_tags, ._bunyad_slider_type',
			depend_rev = '._bunyad_slider_rev';

		// hide all dependents
		$([depend_default, depend_rev].join(',')).hide();
		
		if ($(this).val() == 'rev-slider') {
			$(depend_rev).show();
		}
		else if ($(this).val() != '') {
			$(depend_default).show();
		}

		return;
	});

	// on-load
	$('._bunyad_featured_slider select').trigger('change');
		
});
</script>PK03Y�V�M]
]
(smartmag-core/metaboxes/post-options.php<?php
/**
 * Meta box for post options.
 * 
 * @var Bunyad_Admin_MetaRenderer $this
 */

$dir = SmartMag_Core::instance()->path . 'metaboxes/options/';
include apply_filters('bunyad_metabox_options_dir', $dir) . 'post.php';

$options = $this->options(
	apply_filters('bunyad_metabox_post_options', $options)
);

// Legacy Fix: 'modern-b' no longer exists.
if (isset($this->default_values['_bunyad_layout_template'])
	&& $this->default_values['_bunyad_layout_template'] === 'modern-b'
) {
	$this->default_values['_bunyad_layout_template'] = 'modern';
	$this->default_values['_bunyad_layout_spacious'] = '0';
}

?>

<div class="bunyad-meta bunyad-meta-editor cf">
	<input type="hidden" name="bunyad_meta_box[]" value="<?php echo esc_attr($box_id); ?>">

<?php foreach ($options as $element): ?> 
	
	<div class="option <?php echo esc_attr($element['name']); ?>">
		<span class="label"><?php echo esc_html(isset($element['label_left']) ? $element['label_left'] : $element['label']); ?></span>
		<span class="field">

			<?php echo $this->render($element); // XSS ok. Bunyad_Admin_OptionRenderer::render() ?>
		
			<?php if (!empty($element['desc'])): ?>
			
			<p class="description"><?php echo esc_html($element['desc']); ?></p>
		
			<?php endif;?>
		
		</span>
	</div>
	
<?php endforeach; ?>

</div>

<script>
/**
 * Conditional show/hide 
 */

jQuery(function($) {

	/**
	 * Hide disable featured and featured video option on cover layout.
	 */
	var _global = '<?php echo esc_js(Bunyad::options()->post_layout_template); ?>';

	$('[name=_bunyad_layout_template]').on('change', function() {

		var current = $(this).val();
		if (!current) {
			current = _global;
		}

		// Subtitle isn't support for these.
		if (['cover', 'classic', 'classic-above'].indexOf(current) !== -1) {
			$('._bunyad_sub_title').hide();
		}
		else {
			$('._bunyad_sub_title').show();
		}

		// Cover doesn't support disabling featured area. And no video/audio supported.
		var coverUnsupported = '._bunyad_featured_disable, ._bunyad_featured_video';
		(current == 'cover' ? $(coverUnsupported).hide() : $(coverUnsupported).show());

		return;
	})
	.trigger('change');


	/**
	 * Conditional show/hide sponsor fields.
	 */
	const showSponsor = (current) => {
		current = $(current)
		const value = current.val();

		const elements = current.closest('.bunyad-meta')
			.find('[class*="_bunyad_sponsor"]:not(._bunyad_sponsor_name), .option-sep');

		if (value) {
			elements.show();
		} else {
			elements.hide();
		}
		
		return;
	};

	const sponsor = $('[name=_bunyad_sponsor_name]');
	sponsor.on('change keyup', () => showSponsor(sponsor));
	showSponsor(sponsor);
});
</script>PK03Y|�m�zz(smartmag-core/metaboxes/options/page.php<?php
/**
 * Options metabox for pages
 */
$options = [
	[
		'label'   => esc_html__('Layout Type', 'bunyad-admin'),
		'name'    => 'layout_style', // will be _bunyad_layout_style
		'desc'    => esc_html__('Default uses the site-wide general layout setting set in Appearance > Customize.', 'bunyad-admin'),
		'type'    => 'radio',
		'options' => [
			''      => esc_html__('Default', 'bunyad-admin'),
			'right' => esc_html__('Right Sidebar', 'bunyad-admin'),
			'full'  => esc_html__('Full Width', 'bunyad-admin')],
		'value' => '' // default
	],

	[
		'label'   => esc_html__('Show Page Title?', 'bunyad-admin'),
		'name'    => 'page_title', 
		'type'    => 'select',
		'options' => [
			''    => esc_html__('Default', 'bunyad-admin'),
			'yes' => esc_html__('Yes', 'bunyad-admin'),
			'no'  => esc_html__('No', 'bunyad-admin')
		],
		'value' => '' // default
	],

	[
		'label'   => esc_html__('Spacious / Narrow Style?', 'bunyad-admin'),
		'name'    => 'page_spacious',
		'desc'    => esc_html__('Enable to add extra left/right spacing to text to create a dynamic spacious feel. Especially great when used with Full Width. Only works with default and some other page templates.', 'bunyad-admin'),
		'type'    => 'select',
		'options' => [
			'_default' => esc_html__('Default', 'bunyad-admin'),
			'1'        => esc_html__('Yes', 'bunyad-admin'),
			'0'        => esc_html__('No', 'bunyad-admin')
		],
		'value' => '_default',
	],

	[
		'label'   => esc_html__('Hide Breadcrumbs', 'bunyad-admin'),
		'name'    => 'hide_breadcrumbs',
		'desc'    => esc_html__('Ignore global settings and disable breadcrumbs on this page.', 'bunyad-admin'),
		'type'    => 'checkbox',
		'value'   => 0,
	],
];

/**
 * Only for legacy.
 */
$is_legacy = Bunyad::options()->legacy_mode;

if ($is_legacy) {

	$rev_slider = (class_exists('RevSlider') 
		? 
		['rev-slider' => esc_html__('Revolution Slider Plugin', 'bunyad-admin')] 
		: []
	); 

	$options = array_merge($options, [
		[
			'label'   => esc_html__('(Legacy) Show Featured Area?', 'bunyad-admin'),
			'name'    => 'featured_slider',
			'desc'    => 'WARNING: This is an old feature for backward compatibility and not recommended. It is better to use a full-width template in Elementor and add it there instead.',
			'type'    => 'select',
			'options' => array_merge([
				''	              => esc_html__('None', 'bunyad-admin'),
				'default'        => esc_html__('Use Posts Marked as "Featured Slider Post?"', 'bunyad-admin'),
				'default-latest' => esc_html__('Use Latest Posts from Whole Site', 'bunyad-admin'),
			], $rev_slider),
			'value' => '' // default
		],
		
		[
			'label'   => esc_html__('Featured Style', 'bunyad-admin'),
			'name'    => 'slider_type',
			'type'    => 'select',
			'options' => [
				'grid-a'   => esc_html__('Featured Grid: 1 + 4', 'bunyad-admin'),
				'grid-d'   => esc_html__('Featured Grid: 1 + 3', 'bunyad-admin'),
				'classic'  => esc_html__('Legacy / Classic Slider', 'bunyad-admin'),
			],
			'value' => 'grid-a' // default
		],

		[
			'label' => esc_html__('Number of Slides', 'bunyad-admin'),
			'name'  => 'slider_number',
			'type'  => 'text',
			'desc'  => esc_html__('Number of posts to show on the left side of the slider. 3 are displayed on the right as a post grid.', 'bunyad-admin'),
			'value' => 5, // default
		],
		
		[
			'label' => esc_html__('Slider Limit by Tag', 'bunyad-admin'),
			'name'  => 'slider_tags',
			'desc'  => esc_html__('Optional: To limit slider to certain tag or tags. If multiple, separate tag slugs by comma.', 'bunyad-admin'),
			'type'  => 'text',
			'value' => '' // default
		],
		
		[
			'label' => esc_html__('Slider Manual Post Ids', 'bunyad-admin'),
			'name'  => 'slider_posts',
			'desc'  => esc_html__('Optional: ADVANCED! If you only want to show a set of selected pre-selected posts. Enter post ids separated by comma.', 'bunyad-admin'),
			'type'  => 'text',
			'value' => '' // default
		],
		
		[
			'label' => esc_html__('Revolution Slider Alias', 'bunyad-admin'),
			'name'  => 'slider_rev',
			'desc'  => esc_html__('Enter alias of a slider you created in revolution slider plugin.', 'bunyad-admin'),
			'type'  => 'text',
			'value' => '' // default
		],
	]);
}

if (Bunyad::options()->layout_type == 'boxed') {
	
	$options[] = [
		'label'   => esc_html__('Boxed: Background Image', 'bunyad-admin'),
		'name'    => 'bg_image',
		'type'    => 'upload',
		'options' => [
				'type'         => 'image',
				'title'        => esc_html__('Upload This Picture', 'bunyad-admin'), 
				'button_label' => esc_html__('Upload', 'bunyad-admin'),
				'insert_label' => esc_html__('Use as Background', 'bunyad-admin')
		],	
		'value'   => '', // default
		// 'bg_type' => ['value' => 'cover'],
	];
}
PK03YIҩ�vv(smartmag-core/metaboxes/options/post.php<?php
/**
 * Meta box for post options
 */

$_common = Bunyad::core()->get_common_data('options');

$options = [
	[
		'label'      => esc_html__('Sub Title', 'bunyad-admin'),
		'name'       => 'sub_title',
		'type'       => 'text',
		'input_size' => 90,
		'desc'       => esc_html__('Optional Sub-title/text thats displayed below main post title.', 'bunyad-admin')
	],

	[
		'label'   => esc_html__('Layout Type', 'bunyad-admin'),
		'name'    => 'layout_style', // will be _bunyad_layout_style
		'desc'    => esc_html__('Default uses the site-wide general layout setting set in Appearance > Customize.', 'bunyad-admin'),
		'type'    => 'radio',
		'options' => [
			''      => esc_html__('Default', 'bunyad-admin'),
			'right' => esc_html__('Right Sidebar', 'bunyad-admin'),
			'full'  => esc_html__('Full Width', 'bunyad-admin')],
		'value' => '' // default
	],

	[
		'label'   => esc_html__('Post Style', 'bunyad-admin'),
		'name'    => 'layout_template', // will be _bunyad_layout_style
		'type'    => 'select',
		'options' => [
			''              => esc_html__('Default (from Customizer)', 'bunyad-admin'),
		] + (array) $_common['post_style_options'],
		'value' => '' // default
	],

	[
		'label'   => esc_html__('Spacious / Narrow Style?', 'bunyad-admin'),
		'name'    => 'layout_spacious',
		'desc'    => esc_html__('Enable to add extra left/right spacing to text to create a dynamic spacious feel. Especially great when used with Full Width.', 'bunyad-admin'),
		'type'    => 'select',
		'options' => [
			'_default' => esc_html__('Default', 'bunyad-admin'),
			'1'        => esc_html__('Yes', 'bunyad-admin'),
			'0'        => esc_html__('No', 'bunyad-admin')
		],
		'value' => '_default',
	],
	
	[
		'label' => esc_html__('Primary Category', 'bunyad-admin'),
		'name'  => 'cat_label', // _bunyad_cat_label
		'type'  => 'html',
		'html'  => wp_dropdown_categories([
			'show_option_all' => esc_html__('-- Auto Detect--', 'bunyad-admin'), 
			'hierarchical'    => 1, 
			'hide_empty'      => 0,
			'order_by'        => 'name', 
			'class'           => '', 
			'name'            => '_bunyad_cat_label', 
			'echo' => false,
			'selected'        => Bunyad::posts()->meta('cat_label')
		]),
		'desc' => esc_html__('When you have multiple categories for a post, auto detection chooses one in alphabetical order. These labels are shown above image in category listings.', 'bunyad-admin')
	],

	[
		'label_left' => esc_html__('Disable Featured?', 'bunyad-admin'),
		'label'      => esc_html__('Do not show featured Image, Video, or Gallery at the top for this post, on post page.', 'bunyad-admin'),
		'name'       => 'featured_disable', // _bunyad_featured_post
		'type'       => 'checkbox',
		'value'      => 0
	],
	
	[
		'label'        => esc_html__('Featured Video/Audio', 'bunyad-admin'),
		'name'         => 'featured_video', // will be _bunyad_layout_style
		'type'         => 'textarea',
		'options'      => ['rows' => 2, 'cols' => 90],
		'value'        => '',
		'desc'         => esc_html__('When using Video or Audio post format, enter a link of the video or audio from a service like YouTube, Vimeo, SoundCloud. Shortcodes also supported.', 'bunyad-admin'),
		'allowed_html' => ['iframe' => ['scrolling' => true, 'src' => true, 'width' => true, 'height' => true, 'frameborder' => true, 'allowfullscreen' => true]]
	],

	[
		'label'   => esc_html__('Multi-page Content Slideshow?', 'bunyad-admin'),
		'desc'    => esc_html__('You can use <!--nextpage--> to split a page into multi-page content slideshow.', 'bunyad-admin'),
		'name'    => 'content_slider', // _bunyad_featured_post
		'type'    => 'select',
		'value'   => '',
		'options' => [
			''         => esc_html__('Disabled', 'bunyad-admin'),
			'ajax'     => esc_html__('AJAX - No Refresh', 'bunyad-admin'),
			'refresh'  => esc_html__('Multi-page - Refresh for next page', 'bunyad-admin'), 
		],
	],

	[
		'label' => esc_html__('Legacy: Featured Post', 'bunyad-admin'),
		'desc'  => esc_html__('Used for legacy elements only like Classic Slider, or Category Legacy Mega Menu.', 'bunyad-admin'),
		'name'  => 'featured_post', // _bunyad_featured_post
		'type'  => 'checkbox',
		'value' => 0
	],
	[
		'label' => esc_html__('Sponsor Name', 'bunyad-admin'),
		'desc'  => '',
		'value' => '',
		'name'  => 'sponsor_name',
		'type'  => 'text',
	],
	[
		'label' => esc_html__('Sponsor Logo', 'bunyad-admin'),
		'desc'  => 'Recommended height 52px. Optional: Will fallback to using text if no logo is available, or if not enabled to use a logo.',
		'value' => '',
		'name'    => 'sponsor_logo',
		'type'    => 'upload',
		'options' => [
			'type'         => 'image',
			'title'        => esc_html__('Upload This Logo', 'bunyad-admin'), 
			'button_label' => esc_html__('Upload Logo', 'bunyad-admin'),
			'insert_label' => esc_html__('Use Logo', 'bunyad-admin'),
			'media_type'   => 'id',
		],
	],	
	[
		'label' => esc_html__('Sponsor Logo Dark', 'bunyad-admin'),
		'desc'  => 'Optional: To be used in dark mode.',
		'value' => '',
		'name'    => 'sponsor_logo_sd',
		'type'    => 'upload',
		'options' => [
			'type'         => 'image',
			'title'        => esc_html__('Upload This Logo', 'bunyad-admin'), 
			'button_label' => esc_html__('Upload Logo', 'bunyad-admin'),
			'insert_label' => esc_html__('Use Logo', 'bunyad-admin'),
			'media_type'   => 'id',
		],
	],
	[
		'label' => esc_html__('Sponsor URL', 'bunyad-admin'),
		'desc'  => '',
		'value' => '',
		'name'    => 'sponsor_url',
		'type'    => 'text',
	],
];

if (Bunyad::options()->layout_type == 'boxed') {
	
	$options[] = [
		'label'   => esc_html__('Boxed: Background Image', 'bunyad-admin'),
		'name'    => 'bg_image',
		'type'    => 'upload',
		'options' => [
				'type'         => 'image',
				'title'        => esc_html__('Upload This Picture', 'bunyad-admin'), 
				'button_label' => esc_html__('Upload', 'bunyad-admin'),
				'insert_label' => esc_html__('Use as Background', 'bunyad-admin')
		],	
		'value'   => '', // default
		// 'bg_type' => ['value' => 'cover'],
	];
}PK03Y�����	�	/smartmag-core/metaboxes/terms/category-form.php<?php
/**
 * @var array $options Provided by the Bunyad_Admin_Meta_Terms::edit_form() method.
 * @var string $context 'add' or 'edit' screen.
 */

// Don't pollute the add screen - these are mostly legacy options anyways.
if ($context !== 'edit') {
	return;
}

?>

<?php foreach ($options as $element): ?>

	<?php if ($context === 'edit'): ?>
		<tr class="form-field bunyad-meta bunyad-meta-term <?php echo esc_attr($element['name']); ?>">
			<th scope="row" valign="top">
				<label for="<?php echo esc_attr($element['name']); ?>">
					<?php echo esc_html($element['label']); ?>
				</label>
			</th>
			<td>
				<?php echo $this->render($element); // Bunyad_Admin_OptionRenderer::render(); ?>

				<?php if (!empty($element['desc'])): ?>
					<p class="description custom-meta">
						<?php echo wp_kses_post($element['desc']); ?>
					</p>
				<?php endif; ?>
			</td>
		</tr>
	<?php else: ?>
		<div class="form-field bunyad-meta bunyad-meta-term <?php echo esc_attr($element['name']); ?>">
			<label for="<?php echo esc_attr($element['name']); ?>">
				<?php echo esc_html($element['label']); ?>
			</label>

			<?php echo $this->render($element); // Bunyad_Admin_OptionRenderer::render(); ?>

			<?php if (!empty($element['desc'])): ?>
				<p class="description custom-meta">
					<?php echo esc_html($element['desc']); ?>
				</p>
			<?php endif; ?>
		</div>
	<?php endif; ?>

<?php endforeach; ?>

<script>
/**
 * Conditional show/hide 
 */
jQuery(function($) {
	$('._bunyad_slider select').on('change', function() {

		var depend_default = '._bunyad_slider_tags, ._bunyad_slider_type, ._bunyad_slider_posts, ._bunyad_slider_number';

		// hide all dependents
		$(depend_default).hide();
		
		if (!['none', ''].includes($(this).val())) {
			$(depend_default).show();
		}

		return;
	});

	const globalLayout = '<?php echo esc_attr(Bunyad::options()->category_loop); ?>';

	$('._bunyad_custom_template select').on('change', function() {
		const hide = '._bunyad_custom_template, ._bunyad_color, ._bunyad_main_color';
		const depends = '.bunyad-meta-term:not(' + hide + ')';

		let layout = $(this).val();

		if (!layout) {
			// If global layout is set to custom, we have a layout.
			layout = globalLayout === 'custom' ? globalLayout : 'none';
		}

		if (layout !== 'none') {
			$(depends).hide();
		}
		else {
			$(depends).show();
			$('._bunyad_slider select').trigger('change');
		}
	});

	// On load.
	$('._bunyad_slider select').trigger('change');
	$('._bunyad_custom_template select').trigger('change');
		
});
</script>PK03Y��M�**2smartmag-core/metaboxes/terms/category-options.php<?php
/**
 * Options for category / term meta.
 */
$_common = Bunyad::core()->get_common_data('options');
$options = [];

$custom_archives = [];
if (class_exists('\Sphere\Core\Elementor\Layouts\Module')) {
	$custom_archives = \Sphere\Core\Elementor\Layouts\Module::instance()->get_options('ts-archive');
}

if ($custom_archives) {

	$custom_loop_desc = sprintf(
		'Create a custom layout from %1$sSmartMag > Custom Layouts%2$s of Archive type.',
		'<a href="'. admin_url('edit.php?post_type=spc-el-layouts') .'" target="_blank">',
		'</a>'
	);

	$options[] = [
		'name'    => 'custom_template', // will be _bunyad_template
		'label'   => esc_html__('Custom Listing Layout', 'bunyad-admin'),
		'desc'    => 'When using a custom layout, all settings below will be IGNORED. ' . $custom_loop_desc,
		'type'    => 'select',
		'options' => [
			'' => esc_html__('Default / Customizer Setting', 'bunyad-admin'),
			'none' => esc_html__('None / Disabled', 'bunyad-admin'),
		] + $custom_archives,
		'value' => '' // default
	];
}

array_push($options, ...[
	[
		'name'    => 'template', // will be _bunyad_template
		'label'   => esc_html__('Category Listing Style', 'bunyad-admin'),
		'desc'    => '',
		'type'    => 'select',
		'options' => [
			'' => esc_html__('Default / Global Style', 'bunyad-admin'),
		] + $_common['archive_loop_options'],
		'value' => '' // default
	],
	
	[
		'name'    => 'sidebar',
		'label'   => esc_html__('Show Sidebar', 'bunyad-admin'),
		'desc'    => esc_html__('Select layout sidebar preference for this category listing.', 'bunyad-admin'),
		'type'    => 'select',
		'options' => $_common['sidebar_options'],
		'value' => '' // default
	],

	[
		'name'    => 'slider',
		'label'   => esc_html__('Featured Area', 'bunyad-admin'),
		'desc'    => '',
		'type'    => 'select',
		'options' => [
			''         => esc_html__('Global Settings', 'bunyad-admin'),
			'latest'   => esc_html__('Show Latest Posts/Use a tag filter', 'bunyad-admin'),
			'default'  => esc_html__('Show Posts Marked for Featured Slider', 'bunyad-admin'),
			'none'     => esc_html__('Disabled', 'bunyad-admin'),
		],
		'value' => '' // default
	],

	[
		'name'    => 'slider_tags',
		'label'   => esc_html__('Featured Filter by Tag(s)', 'bunyad-admin'),
		'desc'    => esc_html__('Enter a tag slug, or multiple tag slugs separated by comma, to limit posts from.', 'bunyad-admin'),
		'type'    => 'text',
		'value' => '' // default
	],

	[
		'name'    => 'slider_type',
		'label'   => esc_html__('Featured Style', 'bunyad-admin'),
		'desc'    => '',
		'type'    => 'select',
		'options' => $_common['featured_type_options'] + [
			'classic' => 'Legacy: Classic Slider',
		],
		'value' => '' // default
	],

	[
		'name'    => 'slider_number',
		'label'   => esc_html__('Featured Posts', 'bunyad-admin'),
		'desc'    => esc_html__('Number of posts for featured area.', 'bunyad-admin'),
		'type'    => 'number',
		'value'   => 5 // default
	],

	[
		'name'    => 'pagination_type',
		'label'   => esc_html__('Pagination Type', 'bunyad-admin'),
		'desc'    => '',
		'type'    => 'select',
		'options' => [
			'' => esc_html__('Default / Global', 'bunyad-admin')
		] + $_common['pagination_options'],
		'value' => '' // default
	],

	[
		'name'    => 'per_page',
		'label'   => esc_html__('Custom Posts Per Page', 'bunyad-admin'),
		'desc'    => esc_html__('Override default posts per page setting for this category. Leave empty for default from Settings.', 'bunyad-admin'),
		'type'    => 'number',
		'value'   => '' // default
	],

	[
		'name'    => 'color',
		'label'   => esc_html__('Category Color', 'bunyad-admin'),
		'desc'    => esc_html__('SmartMag uses this for category overlay labels, heading color in home blocks, and in some styles of main navigation.', 'bunyad-admin'),
		'type'    => 'color',
		'value' => '' // default
	],

	[
		'name'    => 'main_color',
		'label'   => esc_html__('Main Site Color', 'bunyad-admin'),
		'desc'    => esc_html__('Not Recommended! Setting this color will change the entire site main color when viewing this category or posts that belong to this category.', 'bunyad-admin'),
		'type'    => 'color',
		'value' => '' // default
	],
]);

if (Bunyad::options()->layout_type === 'boxed') {
	$options[] = [
		'label'   => esc_html__('Boxed: Background Image', 'bunyad-admin'),
		'name'    => 'bg_image', // will be _bunyad_image
		'desc'    => esc_html__('SmartMag can use an image as body background in boxed layout. Note: It is not a repeating pattern. A large photo is to be used as background.', 'bunyad-admin'),
		'type'    => 'upload',
		'options' => [
			'type'         => 'image',
			'title'        => esc_html__('Upload This Picture', 'bunyad-admin'), 
			'button_label' => esc_html__('Upload', 'bunyad-admin'),
			'insert_label' => esc_html__('Use as Background', 'bunyad-admin'),
			// 'media_type'   => 'id',
		],
		'value' => '' // default
	];
}

return $options;PK03Y[�1l�
�
3smartmag-core/social-share/views/social-share-b.php<?php
/**
 * Partial template for social share buttons on single page.
 * 
 * See: inc/social.php for filters and caller.
 * 
 * How to Modify:
 *  - Use the action hooks below. 
 *  - OR, place it in your-child-theme/partials/social-share/social-share-b.php
 */

$props = array_replace([
	'active' => [
		'facebook', 'twitter', 'pinterest', 'linkedin', 'tumblr', 'email'
	],
	'style'   => '',

	// Add extra classes to wrapper.
	'classes' => [],

	'text'   => Bunyad::options()->get_or(
		'single_share_top_text',
		esc_html__('Share', 'bunyad')
	),
	'label'   => Bunyad::options()->single_share_top_label,
	'devices' => [],

	'follow_label'  => '',
	'follow_active' => [],

], $props);

$services = Bunyad::get('smartmag_social')->share_services();

if (!$props['active']) {
	return;
}

$classes = array_merge($props['classes'], [
	'post-share post-share-b',
	'spc-social-colors',
	(Bunyad::amp() && Bunyad::amp()->active() ? ' all' : ''),
]);

// Add BG colors.
if (!in_array($props['style'], ['b3', 'b3-circles', 'b4'])) {
	$social_class = 'spc-social-bg';
}

if ($props['follow_active']) {
	$classes[] = 'has-social-follow';
}

switch ($props['style']) {
	case 'b3-circles':
		array_push($classes, 'post-share-b3', 'post-share-b-circles', 'post-share-b3-circles');
		break;

	case 'circles':
		$classes[] = 'post-share-b-circles';
		break;

	default:
		if ($props['style']) {
			$classes[] = 'post-share-' . $props['style'];
		}

		break;
}

// Devices to show on.
if ($props['devices'] && !in_array('all', $props['devices'])) {
	if (in_array('sm', $props['devices'])) {
		$props['devices'][] = 'xs';
	}
	
	foreach ($props['devices'] as $device) {
		$classes[] = 'show-' . $device;
	}
}

$large_buttons = Bunyad::options()->single_share_top_large ?: 3;
?>

<?php 
// Start wrapper if follow bar is enabled.
if ($props['follow_active']) {
	echo '<div class="post-share post-share-follow-top">';
}
?>
	<div class="<?php echo esc_attr(join(' ', $classes)); ?>">

		<?php if ($props['label']): ?>
			<span class="share-text">
				<i class="icon tsi tsi-share1"></i>
				<?php echo esc_html($props['text']); ?>
			</span>
		<?php endif; ?>
		
		<?php do_action('bunyad_social_share_b_services_start'); ?>

		<?php 
			$i = 0;
			foreach ($props['active'] as $key): 
				$i++;
				$service  = $services[$key];
				$is_large = 

				$classes = [
					'cf service s-' . $key,
					$i <= $large_buttons ? 'service-lg' : 'service-sm'
				];
		?>
		
			<a href="<?php echo esc_url($service['url']); ?>" class="<?php echo esc_attr(join(' ', $classes)); ?>" 
				title="<?php echo esc_attr($service['label_full']); ?>" target="_blank" rel="nofollow noopener">
				<i class="<?php echo esc_attr($service['icon']); ?>"></i>
				<span class="label"><?php echo esc_html($service['label']); ?></span>
				<?php 
					if ($key === 'link') {
						printf(
							'<span data-message="%s"></span>',
							esc_attr__('Link copied successfully!', 'bunyad')
						);
					}
				?>
			</a>
				
		<?php endforeach; ?>

		<?php do_action('bunyad_social_share_b_services_end'); ?>
		
		<?php if (count($props['active']) > $large_buttons): ?>
			<a href="#" class="show-more" title="<?php esc_attr_e('Show More Social Sharing', 'bunyad'); ?>"><i class="tsi tsi-share"></i></a>
		<?php endif; ?>

		<?php do_action('bunyad_social_share_b_services_after'); ?>
		
	</div>

<?php 
if ($props['follow_active']) {
	Bunyad::core()->partial('partials/single/social-follow-top', [
		'props' => [
			'active' => $props['follow_active'],
			'label'  => $props['follow_label']
		]
	]);

	echo '</div>';
}
PK03Y+FT���7smartmag-core/social-share/views/social-share-float.php<?php
/**
 * Plugin Template: for Alternate Social share buttons on single page
 * 
 * See: inc/social.php for filters and caller.
 * 
 * How to Modify:
 *  - Use the action hooks below. 
 *  - OR, place it in your-child-theme/partials/social-share/social-share-float.php
 */

if (!is_single()) {
	return;
}

$props = array_replace([
	// 'active' => ['facebook', 'twitter', 'pinterest', 'email'],
	'active' => Bunyad::options()->share_float_services,
	'style'  => Bunyad::options()->share_float_style ? Bunyad::options()->share_float_style : 'a',
	'text'   => Bunyad::options()->get_or(
		'share_float_text',
		esc_html__('Share', 'bunyad')
	),
	'label' => Bunyad::options()->share_float_label,
], $props);

// Post and media URL
$services = Bunyad::get('smartmag_social')->share_services();

if (strstr($services['pinterest']['icon'], 'tsi')) {
	$services['pinterest']['icon'] = 'tsi tsi-pinterest-p';
}

$classes = [
	'post-share-float',
	'share-float-' . $props['style'],
	'is-hidden',
	'spc-social-colors'
];

if (in_array($props['style'], ['c', 'd'])) {
	$classes[] = 'spc-social-bg';
}
else {
	$classes[] = 'spc-social-colored';
}

?>
<div class="<?php echo esc_attr(join(' ', $classes)); ?>">
	<div class="inner">
		<?php if ($props['label'] && $props['text']): ?>
			<span class="share-text"><?php echo esc_html($props['text']); ?></span>
		<?php endif; ?>

		<div class="services">
			<?php do_action('bunyad_social_share_float_services_start'); ?>
		
		<?php 
			foreach ((array) $props['active'] as $key): 

				if (!isset($services[$key])) {
					continue;
				}

				$service = $services[$key];
		?>
		
			<a href="<?php echo $service['url']; ?>" class="cf service s-<?php echo esc_attr($key); ?>" target="_blank" title="<?php echo esc_attr($service['label'])?>" rel="nofollow noopener">
				<i class="<?php echo esc_attr($service['icon']); ?>"></i>
				<span class="label"><?php echo esc_html($service['label']); ?></span>

				<?php 
					if ($key === 'link') {
						printf(
							'<span data-message="%s"></span>',
							esc_attr__('Link copied successfully!', 'bunyad')
						);
					}
				?>
			</a>
				
		<?php endforeach; ?>

			<?php do_action('bunyad_social_share_float_services_end'); ?>
		
		</div>
	</div>		
</div>
PK03Y �k&..1smartmag-core/social-share/views/social-share.php<?php
/**
 * Partial template for social share buttons on single page.
 * 
 * See: inc/social.php for filters and caller.
 * 
 * How to Modify:
 *  - Use the action hooks below. 
 *  - OR, place it in your-child-theme/partials/social-share/social-share.php
 */

$props = array_replace([
	'active' => [
		'facebook', 'twitter', 'pinterest', 'linkedin', 'tumblr', 'email'
	]
], $props);

$services = Bunyad::get('smartmag_social')->share_services();

if (!$props['active']) {
	return;
}

?>

<?php if ((is_single() || Bunyad::options()->social_icons_classic) && Bunyad::options()->single_share_bot): ?>
	
	<div class="post-share-bot">
		<span class="info"><?php esc_html_e('Share.', 'bunyad'); ?></span>
		
		<span class="share-links spc-social spc-social-colors spc-social-bg">

			<?php do_action('bunyad_social_share_services_start'); ?>

			<?php 
				foreach ($props['active'] as $key): 
					$service = $services[$key];
			?>

				<a href="<?php echo esc_url($service['url']); ?>" class="service s-<?php echo esc_attr($key); ?> <?php echo esc_attr($service['icon']); ?>" 
					title="<?php echo esc_attr($service['label_full']); ?>" target="_blank" rel="nofollow noopener">
					<span class="visuallyhidden"><?php echo esc_html($service['label']); ?></span>

					<?php 
						if ($key === 'link') {
							printf(
								'<span data-message="%s"></span>',
								esc_attr__('Link copied successfully!', 'bunyad')
							);
						}
					?>
				</a>
					
			<?php endforeach; ?>

			<?php do_action('bunyad_social_share_services_end'); ?>

		</span>
	</div>
	
<?php endif; ?>
PK03Y���v%v%&smartmag-core/widgets/widget-about.php<?php
/**
 * About Me Widget
 */
class SmartMag_Widgets_About extends WP_Widget
{
	/**
	 * Setup the widget
	 * 
	 * @see WP_Widget::__construct()
	 */
	public function __construct()
	{
		parent::__construct(
			'bunyad_about_widget',
			'SmartMag - About Widget',
			array('description' => esc_html__('"About" site widget.', 'bunyad-widgets'), 'classname' => 'widget-about')
		);
	}
	
	public function widget($args, $instance)
	{
		extract($args);
		$title = apply_filters('widget_title', $instance['title']);

		$image_class = [];
		$image_type  = 'image';
		if (!empty($instance['image_type'])) {
			$image_class[] = 'image-' . $instance['image_type'];
			$image_type    = 'logo';
		}

		if (!empty($instance['image_circle'])) {
			$image_class[] = 'image-circle';
		}

		$image_class = join(' ', $image_class);
		
		?>

		<?php echo $args['before_widget']; ?>
		
		<?php if (!empty($title)): ?>
			
			<?php
				echo $args['before_title'] . wp_kses_post($title) . $args['after_title']; // before_title/after_title are built-in WordPress sanitized
			?>
			
		<?php endif; ?>
	
		<div class="inner <?php echo (!empty($instance['centered']) ? 'widget-about-centered' : ''); ?>">
		
			<?php if (!empty($instance['image'])): ?>
				<div class="<?php echo esc_attr($image_class); ?>">
					<img <?php
						/**
						 * Get escaped attributes and add optionally add srcset for retina.
						 */ 
						$retina = [];
						if (!empty($instance['image_2x'])) {
							$retina[$instance['image_2x']] = '2x';
						}

						Bunyad::markup()->attribs('widget-about-' . $image_type, 
							Bunyad::theme()->get_logo_data($instance['image'])
							+ [
								'src'    => $instance['image'],
								'alt'    => $instance['title'],
								'srcset' => [$instance['image'] => ''] + $retina
							]
						); ?> />
				</div>
			<?php endif; ?>
			
			<?php if (!empty($instance['logo_text'])): ?>
				<p class="logo-text"><?php echo $instance['logo_text']; ?></p>
			<?php endif; ?>
			
			<div class="base-text about-text"><?php 
				echo do_shortcode(
					wp_kses_post(
						apply_filters('shortcode_cleanup', wpautop($instance['text']))
					)
				); 
			?></div>

			<?php if (!empty($instance['social'])): ?>
				<?php 
					echo Bunyad::blocks()->load('SocialIcons', [
						'style'    => 'b',
						'services' => $instance['social']
					]);
				?>
			<?php endif; ?>

		</div>

		<?php echo $after_widget; ?>
		
		<?php
	}
	
	/**
	 * Save widget.
	 * 
	 * Strip out all HTML using wp_kses
	 * 
	 * @see wp_kses_post_deep()
	 */
	public function update($new, $old)
	{
		foreach ($new as $key => $val) {
			
			// Social just needs intval
			if ($key == 'social') {
				
				array_walk($val, 'intval');
				$new[$key] = $val;

				continue;
			}
			
			// Filter disallowed html 			
			$new[$key] = wp_kses_post_deep($val);
		}

		if (isset($old['image'])) {
			delete_transient('bunyad_logo_' . md5($old['image']));
		}
		
		// Spaces left in commonly.
		// $new['read_more']    = trim($new['read_more']);
		$new['image_circle'] = !empty($new['image_circle']) ? 1 : 0;
		
		return $new;
	}

	/**
	 * The widget form
	 */
	public function form($instance)
	{
		$defaults = [
			'title'          => 'About',
			'image'          => '',
			'image_circle'   => '',
			'image_type'     => 'logo',
			'image_2x'       => '',
			'logo_text'      => '',
			'text'           => '',
			'social'         => [],
			'centered'       => false,
			// 'text_below'     => ''
		];

		$instance = array_merge($defaults, (array) $instance);
		
		// Social options
		$icons = [
			'facebook'   => esc_html__('Facebook', 'bunyad-admin'),
			'twitter'    => esc_html__('X (Twitter)', 'bunyad-admin'),
			'instagram'  => esc_html__('Instagram', 'bunyad-admin'),
			'pinterest'  => esc_html__('Pinterest', 'bunyad-admin'),
			'vimeo'      => esc_html__('Vimeo', 'bunyad-admin'),
			'tumblr'     => esc_html__('Tumblr', 'bunyad-admin'),
			'rss'        => esc_html__('RSS', 'bunyad-admin'),
			'bloglovin'  => esc_html__('BlogLovin', 'bunyad-admin'),
			'youtube'    => esc_html__('Youtube', 'bunyad-admin'),
			'dribbble'   => esc_html__('Dribbble', 'bunyad-admin'),
			'linkedin'   => esc_html__('LinkedIn', 'bunyad-admin'),
			'flickr'     => esc_html__('Flickr', 'bunyad-admin'),
			'soundcloud' => esc_html__('SoundCloud', 'bunyad-admin'),
			'lastfm'     => esc_html__('Last.fm', 'bunyad-admin'),
			'vk'         => esc_html__('VKontakte', 'bunyad-admin'),
			'steam'      => esc_html__('Steam', 'bunyad-admin'),
		];

		if (is_callable([Bunyad::core(), 'get_common_data'])) {
			$_common = Bunyad::core()->get_common_data('options');

			if (isset($_common['social_services'])) {
				$icons = $_common['social_services'];	
			}
		}
		
		extract($instance);
	?>
	
	<div class="bunyad-widget-option">
		<label class="label" for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_html_e('Title:', 'bunyad-admin'); ?></label>
		<input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php 
			echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
	</div>

	<div class="bunyad-widget-option">
		<label class="label" for="<?php echo esc_attr($this->get_field_id('text')); ?>"><?php esc_html_e('About:', 'bunyad-admin'); ?></label>
		<textarea class="widefat" id="<?php echo esc_attr($this->get_field_id('text')); ?>" name="<?php 
			echo esc_attr($this->get_field_name('text')); ?>" rows="5"><?php echo esc_textarea($text); ?></textarea>
	</div>
		
	<div class="bunyad-widget-option" style="display: none;">
		<label class="label" for="<?php echo esc_attr($this->get_field_id('logo_text')); ?>"><?php esc_html_e('Logo Text:', 'bunyad-admin'); ?></label>
		<input class="widefat" id="<?php echo esc_attr($this->get_field_id('logo_text')); ?>" name="<?php 
			echo esc_attr($this->get_field_name('logo_text')); ?>" type="text" value="<?php echo esc_attr($logo_text); ?>" />
	</div>
	
	<div class="bunyad-widget-option">
		<label class="label" for="<?php echo esc_attr($this->get_field_id('image')); ?>"><?php esc_html_e('Logo / Image:', 'bunyad-admin'); ?></label>
		<input class="widefat" id="<?php echo esc_attr($this->get_field_id('image')); ?>" name="<?php 
			echo esc_attr($this->get_field_name('image')); ?>" type="text" value="<?php echo esc_attr($image); ?>" />
		<p class="small-desc">Copy an image URL from media library. You may use a logo image or general full width image, based on setting below.</p>
	</div>

	<div class="bunyad-widget-option">
		<label class="label" for="<?php echo esc_attr($this->get_field_id('image_2x')); ?>"><?php esc_html_e('Logo Retina/2x:', 'bunyad-admin'); ?></label>
		<input class="widefat" id="<?php echo esc_attr($this->get_field_id('image_2x')); ?>" name="<?php 
			echo esc_attr($this->get_field_name('image_2x')); ?>" type="text" value="<?php echo esc_attr($image_2x); ?>" />
	</div>

	<div class="bunyad-widget-option">
		<label class="label" for="<?php echo esc_attr($this->get_field_id('image_type')); ?>"><?php echo esc_html__('Image Type:', 'bunyad-admin'); ?></label>
		
		<select id="<?php echo esc_attr($this->get_field_id('image_type')); ?>" name="<?php echo esc_attr($this->get_field_name('image_type')); ?>" class="widefat">
			<option value="logo" <?php selected($image_type, 'logo'); ?>><?php echo esc_html__('Logo', 'bunyad-admin'); ?></option>
			<option value="full" <?php selected($image_type, 'full'); ?>><?php echo esc_html__('Full Width', 'bunyad-admin'); ?></option>
		</select>
	</div>
	
	
	<div class="bunyad-widget-option">
		<input class="widefat" type="checkbox" id="<?php echo esc_attr($this->get_field_id('centered')); ?>" name="<?php 
			echo esc_attr($this->get_field_name('centered')); ?>" value="1" <?php checked($centered); ?>/>
			
		<label for="<?php echo esc_attr($this->get_field_id('centered')); ?>"><?php echo esc_html__('Center Align Content', 'bunyad-admin'); ?></label>
		<p class="small-desc">Enable to center align all the widget content.</p>
	</div>

	<div class="bunyad-widget-option">
		<input class="widefat" type="checkbox" id="<?php echo esc_attr($this->get_field_id('image_circle')); ?>" name="<?php 
			echo esc_attr($this->get_field_name('image_circle')); ?>" value="1" <?php checked($image_circle); ?>/>
			
		<label for="<?php echo esc_attr($this->get_field_id('image_circle')); ?>"><?php echo esc_html__('Rounded / Circular Image?', 'bunyad-admin'); ?></label>
		<p class="small-desc">Only valid when using a full width image - not for logo image.</p>
	</div>

	
	<div class="bunyad-widget-option">
		<label class="label" for="<?php echo esc_attr($this->get_field_id('social')); ?>"><?php echo esc_html__('Social Icons: (optional)', 'bunyad-admin'); ?></label>
		<p class="small-desc"><?php esc_html_e('Drag and drop to re-order.', 'bunyad-admin'); ?></p>

		<div class="bunyad-social-services">
		<?php foreach ($icons as $icon => $label): ?>
		
			<p>
				<label>
					<input class="widefat" type="checkbox" name="<?php echo esc_attr($this->get_field_name('social')); ?>[]" value="<?php echo esc_attr($icon); ?>"<?php 
					echo (in_array($icon, $social) ? ' checked' : ''); ?> /> 
				<?php echo esc_html($label); ?></label>
			</p>
		
		<?php endforeach; ?>
		</div>
		
		<p class="bunyad-note"><strong><?php echo esc_html__('Note:', 'bunyad-admin'); ?></strong>
			<?php echo esc_html__('Configure URLs from Customize > General Settings > Social Media Links.', 'bunyad-admin'); ?></p>
		
	</div>
	
	<script>
		jQuery(function($) { 
			$('.bunyad-social-services').sortable();
		});
	</script>

	<?php
	}
}PK03Y�uc~
~
$smartmag-core/widgets/widget-ads.php<?php
/**
 * An ad widget wrapper
 */
class SmartMag_Widgets_Ads extends WP_Widget
{
	/**
	 * Setup the widget
	 * 
	 * @see WP_Widget::__construct()
	 */
	public function __construct()
	{
		parent::__construct(
			'bunyad_ads_widget',
			esc_html__('SmartMag Legacy - Advertisement', 'bunyad-admin'),
			array(
				'description' => esc_html__('Add advertisement code to your sidebar.', 'bunyad-admin'), 
				'classname'   => 'code-widget'
			)
		);
	}
	
	/**
	 * Widget output 
	 * 
	 * @see WP_Widget::widget()
	 */
	public function widget($args, $instance)
	{
		extract($args);
		$title = apply_filters('widget_title', esc_html($instance['title']));
		
		if (empty($instance['code'])) {
			return;
		}

		$instance['code'] = str_replace('<img', '<img loading="lazy"', $instance['code']);
		
		?>

		<?php echo $args['before_widget']; ?>

			<?php if (!empty($title)): ?>
				
				<?php
					echo $args['before_title'] . wp_kses_post($title) . $args['after_title']; // before_title/after_title are built-in WordPress sanitized
				?>
				
			<?php endif; ?>
			
			<div class="a-wrap">
				<?php echo do_shortcode($instance['code']); // It's an ad code - we shouldn't be escaping it ?>
			</div>

		
		<?php echo $args['after_widget']; ?>
		
		<?php
	}
	
	/**
	 * Save widget
	 * 
	 * Strip out all HTML using wp_kses
	 * 
	 * @see wp_filter_post_kses()
	 */
	public function update($new, $old)
	{
		// foreach ($new as $key => $val) {			
			// Filter disallowed html - Removed as Adsense code would get stripped here 			
			// $new[$key] = wp_kses_post($val);
		// }
		
		return $new;
	}
	
	/**
	 * The widget form
	 */
	public function form($instance)
	{
		$defaults = array(
			'title' => '', 
			'code' => '',
		);

		$instance = array_replace($defaults, (array) $instance);
		extract($instance);

		?>

		<p><strong>NOTE:</strong> This is a deprecated widget. We recommend using the <strong>SmartMag - Ads / Code</strong> widget instead.</p>

		<p>
			<label for="<?php echo esc_attr($this->get_field_id('code')); ?>"><?php echo esc_html__('Ad Code:', 'bunyad-admin'); ?></label>
			<textarea class="widefat" id="<?php echo esc_attr($this->get_field_id('code')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('code')); ?>" rows="5"><?php echo esc_textarea($code); ?></textarea>
		</p>
		
		<p>
			<label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php echo esc_html__('Title: (Optional)', 'bunyad-admin'); ?></label>
			<input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
		</p>		
	
	
		<?php
	}
}PK03Ya�	  *smartmag-core/widgets/widget-bbp-login.php<?php
/**
 * bbPress Login Widget.
 */
class SmartMag_Widgets_BbpLogin extends WP_Widget {

	/**
	 * bbPress Login Widget
	 *
	 * Registers the login widget
	 *
	 * @uses apply_filters() Calls 'bbp_login_widget_options' with the
	 *                        widget options
	 */
	public function __construct() 
	{
		$widget_ops = apply_filters( 'bunyad_bbp_login_widget_options', array(
			'classname'   => 'bbp_widget_login',
			'description' => esc_html__('A simple login form with optional links to sign-up and lost password pages.', 'bbpress')
		) );

		parent::__construct(false, esc_html__('(bbPress) SmartMag Login Widget', 'bunyad'), $widget_ops);
	}

	/**
	 * Register the widget
	 *
	 * @uses register_widget()
	 */
	public static function register_widget() 
	{
		
		if (class_exists('bbpress')) {
			register_widget(static::class);
		}
	}

	/**
	 * Displays the output, the login form
	 * 
	 * @param mixed $args Arguments
	 * @param array $instance Instance
	 * @uses apply_filters() Calls 'bbp_login_widget_title' with the title
	 * @uses get_template_part() To get the login/logged in form
	 */
	public function widget($args, $instance) 
	{

		// Get widget settings
		$settings = $this->parse_settings( $instance );

		// Typical WordPress filter
		$settings['title'] = apply_filters( 'widget_title', $settings['title'], $instance, $this->id_base );

		// bbPress filters
		$settings['title']    = apply_filters( 'bbp_login_widget_title',    $settings['title'],    $instance, $this->id_base );
		$settings['register'] = apply_filters( 'bbp_login_widget_register', $settings['register'], $instance, $this->id_base );
		$settings['lostpass'] = apply_filters( 'bbp_login_widget_lostpass', $settings['lostpass'], $instance, $this->id_base );

		if (empty($settings['register'])) {
			$settings['register'] = wp_registration_url();
		}

		if (empty($settings['lostpass'])) {
			$settings['lostpass'] = wp_lostpassword_url();
		}

		echo $args['before_widget'];

		if ( !empty( $settings['title'] ) ) {
			echo $args['before_title'] . $settings['title'] . $args['after_title'];
		}

		if (!is_user_logged_in()) : ?>

			<form method="post" action="<?php echo site_url('wp-login.php', 'login_post'); ?>" class="bbp-login-widget auth-widget">

				<div class="input-group">
					<input type="text" name="log" value="" placeholder="<?php esc_html_e('Username or Email', 'bunyad'); ?>" />
				</div>

				<div class="input-group">
					<input type="password" name="pwd" value="" placeholder="<?php esc_html_e('Password', 'bunyad'); ?>" />
				</div>

				<?php Bunyad::authenticate() && Bunyad::authenticate()->do_login_hooks(); // Calls native 'login_form' hook. ?>
				<?php !function_exists('bbp_user_login_fields') || bbp_user_login_fields(); ?>

				<button type="submit" name="wp-submit" id="user-submit" class="ts-button submit user-submit"><?php esc_html_e('Log In', 'bunyad'); ?></button>

				<div class="footer">
					<div class="remember">
						<input name="rememberme" type="checkbox" id="rememberme" value="forever" />
						<label for="rememberme"><?php esc_html_e('Remember Me', 'bunyad'); ?></label>
					</div>

					<a href="<?php echo esc_url($settings['lostpass']); ?>" title="<?php esc_attr_e('Lost password?', 'bunyad'); ?>" class="lost-pass">
						<?php esc_html_e('Lost password?', 'bunyad'); ?>
					</a>
				</div>

			</form>
			
			<?php  if (!empty($settings['register'])): ?>
				
			<div class="bbp-register-info"><?php echo esc_html_x("Don't have an account?", 'bbPress', 'bunyad'); ?>
				<a href="<?php echo esc_url( $settings['register'] ); ?>" class="register-modal"><?php esc_html_e('Register Now!', 'bunyad'); ?></a>
			</div>
							
			<?php endif; ?>
			

		<?php else : ?>

			<div class="bbp-logged-in">
				<a href="<?php bbp_user_profile_url(bbp_get_current_user_id()); ?>" class="submit user-submit"><?php echo get_avatar(bbp_get_current_user_id(), '60'); ?></a>
				<div class="content">
				
				<?php echo esc_html_x('Welcome back, ', 'bbPress', 'bunyad'); ?>
				<?php bbp_user_profile_link(bbp_get_current_user_id()); ?>
				
				<ol class="links">
					<li><a href="<?php bbp_user_profile_edit_url(bbp_get_current_user_id()); ?>">
						<?php echo esc_html_x('Edit Profile', 'bbPress', 'bunyad'); ?></a></li>
					<li><a href="<?php bbp_subscriptions_permalink(bbp_get_current_user_id()); ?>">
						<?php echo esc_html_x('Subscriptions', 'bbPress', 'bunyad'); ?></a></li>
					<li><a href="<?php bbp_favorites_permalink(bbp_get_current_user_id()); ?>">
						<?php echo esc_html_x('Favorites', 'bbPress', 'bunyad'); ?></a></li>
				</ol>

				<?php bbp_logout_link(); ?>
				
				</div>
			</div>

		<?php endif;

		echo $args['after_widget'];
	}

	/**
	 * Update the login widget options
	 *
	 *
	 * @param array $new_instance The new instance options
	 * @param array $old_instance The old instance options
	 */
	public function update( $new_instance, $old_instance ) {
		$instance             = $old_instance;
		$instance['title']    = strip_tags( $new_instance['title'] );
		$instance['register'] = esc_url_raw( $new_instance['register'] );
		$instance['lostpass'] = esc_url_raw( $new_instance['lostpass'] );

		return $instance;
	}

	/**
	 * Output the login widget options form
	 *
	 *
	 * @param $instance Instance
	 * @uses BBP_Login_Widget::get_field_id() To output the field id
	 * @uses BBP_Login_Widget::get_field_name() To output the field name
	 */
	public function form($instance) {

		// Get widget settings
		$settings = $this->parse_settings( $instance ); ?>

		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e('Title:', 'bunyad-admin'); ?>
			<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $settings['title'] ); ?>" /></label>
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'register' ); ?>"><?php esc_html_e('Register URI:', 'bunyad-admin'); ?>
			<input class="widefat" id="<?php echo $this->get_field_id( 'register' ); ?>" name="<?php echo $this->get_field_name( 'register' ); ?>" type="text" value="<?php echo esc_url( $settings['register'] ); ?>" /></label>
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'lostpass' ); ?>"><?php esc_html_e('Lost Password URI:', 'bunyad-admin'); ?>
			<input class="widefat" id="<?php echo $this->get_field_id( 'lostpass' ); ?>" name="<?php echo $this->get_field_name( 'lostpass' ); ?>" type="text" value="<?php echo esc_url( $settings['lostpass'] ); ?>" /></label>
		</p>

		<?php
	}

	/**
	 * Merge the widget settings into defaults array.
	 *
	 * @param $instance Instance
	 * @uses bbp_parse_args() To merge widget settings into defaults
	 */
	public function parse_settings( $instance = array() ) {
		return bbp_parse_args( $instance, array(
			'title'    => '',
			'register' => '',
			'lostpass' => ''
		), 'login_widget_settings' );
	}
}PK03YO�ዎ�'smartmag-core/widgets/widget-blocks.php<?php
/**
 * A super widget to add theme blocks in the sidebar
 */
class SmartMag_Widgets_Blocks extends WP_Widget
{
	public function __construct()
	{
		parent::__construct(
			'bunyad-blocks-widget',
			'SmartMag Legacy: Listing Block',
			array('description' => 'Only for legacy sites. Use newer SmartMag widgets instead.', 'classname' => 'page-blocks')
		);
	}
	
	/**
	 * Output the widget
	 * 
	 * @see WP_Widget::widget()
	 */
	public function widget($args, $instance) 
	{
		$title = apply_filters('widget_title', $instance['title'], $instance, $this->id_base);
		
		// Alias for same modern grid
		if ($instance['block'] == 'blog-modern-2') {
			
			$instance['type'] = 'modern';
			$instance['excerpts'] = 0;
			$instance['columns'] = 2;
		}

		$block_args = array_replace($instance, [
			'columns' => 1,
			'terms'   => isset($instance['cats']) ? $instance['cats'] : '',
			'heading' => $title,
			'space_below' => 'none'
		]);
		
		$instance['block'] = str_replace('blog-', '', $instance['block']);
		switch ($instance['block']) {
			case 'modern':
				$block = 'Grid_Block';
				break;

			case 'modern-2':
				$block = 'Grid_Block';
			
				$block_args = array_replace($block_args, [
					'columns' => 2,
					'excerpts' => false,
					'style'    => 'sm',
					'meta_items_default' => false,
					'meta_above' => [],
					'meta_below' => [],
					'column_gap' => 'sm',
				]);
			break;

			case 'grid-overlay':
				$block = 'Overlay_Block';
				$block_args['excerpts'] = false;
				break;

			case 'highlights':
				$block = 'Highlights_Block';
				$block_args['excerpt_length'] = Bunyad::options()->loop_grid_excerpt_length;
				break;

			// Not supported anymore.
			case 'timeline':
				return;
		}

		// Use the new widget.
		$class = 'Bunyad\Widgets\Loops\\' . $block;
		$widget = new $class;

		$widget->widget($args, $block_args);
	}

	/**
	 * Save the widget data.
	 * 
	 * @see WP_Widget::update()
	 */
	public function update($new, $old) 
	{
		foreach ($new as $key => $val) {
			
			if (is_array($val)) {
				foreach ($val as $key => $value) {
					$val[$key] = wp_kses_post($val);
				}
			}
			
			$new[$key] = wp_kses_post($val);
		}

		return $new;
	}


	/**
	 * Add/edit widget form.
	 */
	public function form($instance)
	{	
		$defaults = array(
			'title' => '', 
			'posts' => 4, 
			'type' => '', 
			'cats' => '',
			'cat_labels' => 0,
			'post_type' => '', 
			'tags' => '', 
			'offset' => 0, 
			'sort_by' => '',
			'sort_order' => '',
			'block' => ''
		);
		
		$instance = array_merge($defaults, (array) $instance);
		extract($instance);
				
		$render = Bunyad::factory('admin/option-renderer'); /* @var $render Bunyad_Admin_OptionRenderer */
		
	?>

	<p><strong>NOTE:</strong> This is a deprecated widget. Instead, we recommend using non-legacy block widgets labeled by <strong>SmartMag Block</strong>.</p>

	<p>
		<label><?php esc_html_e('Title:', 'bunyad-admin'); ?></label>
		<input name="<?php echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
	</p>		
		
	<p>
		<label><?php esc_html_e('Number of Posts:', 'bunyad-admin'); ?></label>
		<input name="<?php echo esc_attr($this->get_field_name('posts')); ?>" type="text" value="<?php echo esc_attr($posts); ?>" />
	</p>
	<p class="description"><?php esc_html_e('Configures posts to show for each listing. Leave empty to use theme default number of posts.', 'bunyad-admin'); ?></p>
	
	<p>
		<label><?php esc_html_e('Sort By:', 'bunyad-admin'); ?></label>
		<select name="<?php echo esc_attr($this->get_field_name('sort_by')); ?>">
			<option value=""><?php esc_html_e('Published Date', 'bunyad-admin'); ?></option>
			<option value="modified"  <?php selected($sort_by, 'modified'); ?>><?php esc_html_e('Modified Date', 'bunyad-admin'); ?></option>
			<option value="random" <?php selected($sort_by, 'random'); ?>><?php esc_html_e('Random', 'bunyad-admin'); ?></option>
		</select>
		
		<select name="<?php echo esc_attr($this->get_field_name('sort_order')); ?>">
			<option value="desc" <?php selected($sort_order, 'desc'); ?>><?php esc_html_e('Latest First - Descending', 'bunyad-admin'); ?></option>
			<option value="asc" <?php selected($sort_order, 'asc'); ?>><?php esc_html_e('Oldest First - Ascending', 'bunyad-admin'); ?></option>
		</select>
	</p>
	
	<p>
		<label><?php esc_html_e('Block:', 'bunyad-admin'); ?></label>
		
		<select class="widefat" name="<?php echo esc_attr($this->get_field_name('block')); ?>">
			<option value="blog-modern" <?php selected($block, 'blog-modern'); ?>><?php esc_html_e('Listing: Modern Grid', 'bunyad-admin'); ?></option>
			<option value="blog-modern-2" <?php selected($block, 'blog-modern-2'); ?>><?php esc_html_e('Listing: Modern Grid - 2 Columns', 'bunyad-admin'); ?></option>
			<option value="blog-grid-overlay" <?php selected($block, 'blog-grid-overlay'); ?>><?php esc_html_e('Listing: Grid Overlay Style', 'bunyad-admin'); ?></option>
			<!-- <option value="blog-timeline" <?php selected($block, 'blog-timeline'); ?>><?php esc_html_e('Listing: Timeline Style', 'bunyad-admin'); ?></option> -->
			<option value="highlights" <?php selected($block, 'highlights'); ?>><?php esc_html_e('Block: Highlights', 'bunyad-admin'); ?></option>
		</select>

	</p>
	<p class="description"><?php esc_html_e('Check docs and demo to choose the right style.', 'bunyad-admin'); ?></p>
	
	<div class="taxonomydiv"> <!-- borrow wp taxonomydiv > categorychecklist css rules -->
		<label><?php esc_html_e('Limit Categories:', 'bunyad-admin'); ?></label>
		
		<div class="tabs-panel">
			<ul class="categorychecklist">
				<?php
				ob_start();
				wp_category_checklist(0, 0, $cats, false, null, false);
				
				echo str_replace('post_category[]', $this->get_field_name('cats') .'[]', ob_get_clean());
				?>
			</ul>			
		</div>
	</div>
	<p class="description"><?php esc_html_e('By default, all categories will be used. Tick categories to limit to a specific category or categories.', 'bunyad-admin'); ?></p>
	
	<p>
		<label><?php esc_html_e('Show Category Overlays?', 'bunyad-admin'); ?></label>
		<select class="widefat" name="<?php echo esc_attr($this->get_field_name('cat_labels')); ?>">
			<option value="1" <?php selected($cat_labels, 1); ?>><?php esc_html_e('Yes', 'bunyad-admin'); ?></option>
			<option value="0" <?php selected($cat_labels, 0); ?>><?php esc_html_e('No', 'bunyad-admin'); ?></option>
		</select>
	</p>
	
	<p class="tag">
		<?php esc_html_e('or Limit with Tags: (optional)', 'bunyad-admin'); ?> 
		<input type="text" name="<?php echo $this->get_field_name('tags'); ?>" value="<?php echo esc_attr($tags); ?>" class="widefat" />
	</p>
	
	<p class="description"><?php esc_html_e('Separate tags with comma. e.g. cooking,sports', 'bunyad-admin'); ?></p>
	
	<p>
		<label><?php esc_html_e('Offset: (Advanced)', 'bunyad-admin'); ?></label> 
		<input type="text" name="<?php echo $this->get_field_name('offset'); ?>" value="<?php echo esc_attr($offset); ?>" />
	</p>
	<p class="description"><?php esc_html_e('By specifying an offset as 10 (for example), you can ignore 10 posts in the results.', 'bunyad-admin'); ?></p>
	
	<p>
		<label><?php esc_html_e('Post Types: (Advanced)', 'bunyad-admin'); ?></label>
		<input name="<?php echo esc_attr($this->get_field_name('post_type')); ?>" type="text" value="<?php echo esc_attr($post_type); ?>" />
	</p>
	<p class="description"><?php esc_html_e('Only for advanced users! You can use a custom post type here - multiples supported when separated by comma. Leave empty to use the default format.', 'bunyad-admin'); ?></p>
	
	<?php
	}
}PK03Yv�����'smartmag-core/widgets/widget-flickr.php<?php
class SmartMag_Widgets_Flickr extends WP_Widget
{
	public function __construct()
	{
		parent::__construct(
			'bunyad_flickr_widget',
			'SmartMag - Flickr',
			array('description' => esc_html__('Display latest photos from flickr.', 'bunyad-admin'), 'classname' => 'bunyad-flickr')
		);
	}
	
	public function widget($args, $instance)
	{
		extract($args);
		$title = apply_filters('widget_title', $instance['title']);
		
		extract($instance, EXTR_SKIP);
		
		$data = $this->get_flickr($instance); 
		
	?>

		<?php echo $before_widget; ?>
			<?php echo $before_title . $title . $after_title; ?>
		
			<div class="flickr-widget">

			<?php 
				foreach ((array) $data as $item): 
					
					if (empty($item['media']) OR empty($item['link'])):
						continue;
					endif;
			?>
			
				<div class="flickr_badge_image">
					<a href="<?php echo esc_url($item['link']); ?>" class="image-link media-ratio">
						<img loading="lazy" src="<?php echo esc_url($item['media']); ?>" alt="<?php echo esc_attr($item['title']); ?>" />
					</a>
				</div>
				
			<?php endforeach; ?>
			
			</div>
		
		<?php echo $after_widget; ?>
		
	<?php
	}
	
	public function get_flickr($instance)
	{
		extract($instance);
		
		if (empty($this->number)) {
			$this->number = md5(serialize($instance));
		}

		// get from cache
		$cache = get_transient('bunyad_flickr_widget');
		if (is_array($cache) && !empty($cache[$this->number])) {
			return $cache[$this->number];
		}
		
		$data = $this->parse_script(
			(is_ssl() ? 'https' : 'http') . '://api.flickr.com/services/feeds/photos_public.gne?format=json&id='. urlencode($user_id) .'&nojsoncallback=1&tags=' . urlencode($tags),
			$show_num
		);
		
		// store to cache
		$cache = array_merge( (array) $cache, array($this->number => $data));
		set_transient('bunyad_flickr_widget', $cache, 300); // 5 minutes expiry
		
		return $data;
				
	}
	
	/**
	 * Fetch and parse data off flickr feed 
	 * 
	 * @param string $url
	 * @param int $number  number of results
	 */
	public function parse_script($url, $number)
	{
		$file = wp_remote_get($url);
		
		if (is_wp_error($file) OR !$file['body']) {
			return '';
		}
		
		// fix flickr json escape bug
		$file['body'] = str_replace("\\'", "'", $file['body']);
		$data = json_decode($file['body'], true);
		
		if (!is_array($data)) {
			return array();
		}
		
		$data = array_slice($data['items'], 0, $number);
		
		// replace medium with small square image
		foreach ($data as $key => $item) {
			$data[$key]['media'] = preg_replace('/_m\.(jp?g|png|gif)$/', '_s.\\1', $item['media']['m']);	
		}
		
		return $data;
	}	
	
	public function update($new, $old)
	{
		foreach ($new as $key => $val) {
			$new[$key] = wp_filter_kses($val);
		}
		
		delete_transient('bunyad_flickr_widget');
		
		$new['show_num'] = intval($new['show_num']);
		
		return $new;
	}
	
	public function form($instance)
	{
		$defaults = array('title' => 'Flickr Photos', 'show_num' => 12, 'user_id' => '', 'tags' => '');
		$instance = array_merge($defaults, (array) $instance);
		extract($instance);
		
	?>
	
		<p>
			<label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_html_e('Title:', 'bunyad-admin'); ?></label>
			<input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
		</p>
		
		<p>
			<label for="<?php echo esc_attr($this->get_field_id('user_id')); ?>"><?php esc_html_e('Flickr ID (<a href="http://www.idgettr' . '.com">Get Your ID</a>):', 'bunyad-admin'); ?></label>
			<input class="widefat" id="<?php echo esc_attr($this->get_field_id('user_id')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('user_id')); ?>" type="text" value="<?php echo esc_attr($user_id); ?>" />
		</p>
		
		<p>
			<label for="<?php echo esc_attr($this->get_field_id('show_num')); ?>"><?php esc_html_e('Number of Photos:', 'bunyad-admin'); ?></label>
			<input class="width100" id="<?php echo esc_attr($this->get_field_id('show_num')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('show_num')); ?>" type="text" value="<?php echo esc_attr($show_num); ?>" />
		</p>
		
		<p>
			<label for="<?php echo esc_attr($this->get_field_id('tags')); ?>"><?php esc_html_e('Tags (comma separated, optional):', 'bunyad-admin'); ?></label>
			<input class="widefat" id="<?php echo esc_attr($this->get_field_id('tags')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('tags')); ?>" type="text" value="<?php echo esc_attr($tags); ?>" />

		</p>
		
	
	<?php
	
	} // end form()
}PK03Yb�Δ++-smartmag-core/widgets/widget-latest-posts.php<?php

class SmartMag_Widgets_LatestPosts extends WP_Widget
{
	public function __construct()
	{
		parent::__construct(
			'bunyad-latest-posts-widget',
			'SmartMag Legacy: Recent Posts',
			array('description' => 'Recent posts with thumbnail.', 'classname' => 'latest-posts')
		);
	}
	
	// code below is modified from default
	public function widget($args, $instance) 
	{
		if (!class_exists('\Bunyad') || !\Bunyad::get('blocks')) {
			return;
		}

		if (empty($instance['number']) || !$number = absint($instance['number'])) {
			$number = 5;
		}

		$title = apply_filters(
			'widget_title', 
			empty($instance['title']) ? 'Recent Posts' : $instance['title'],
			$instance, 
			$this->id_base
		);

		$new_args = [
			'query_type'     => 'custom',
			'pagination'     => false,
			'posts'          => $number,
			'columns'        => 1,
			'heading'        => $title,
			'space_below'    => 'none'
		];

		// Limit by category.
		if (!empty($instance['category'])) {
			$new_args['cat'] = $instance['category'];
		}
		
		// Limited by tag.
		if (!empty($instance['limit_tag'])) {
			$new_args['tags'] = $instance['limit_tag'];
		}

		$block = new \Bunyad\Widgets\Loops\PostsSmall_Block;
		$block->widget($args, $new_args);
	}

	public function update($new, $old) 
	{
		foreach ($new as $key => $val) {
			$new[$key] = wp_filter_kses($val);
		}

		return $new;
	}

	public function form($instance)
	{	
		$instance = array_merge(array('title' => '', 'number' => 5, 'category' => '', 'limit_tag' => ''), $instance);
		extract($instance);
		
		$fields = apply_filters('bunyad_widget_latest_posts_form', array('title' => '', 'category' => '', 'number' => ''));
?>

	<p><strong>NOTE:</strong> This is a deprecated widget. We recommend using the <strong>SmartMag - Latest Posts</strong> widget instead.</p>

	<?php if (isset($fields['title'])): ?>
		<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bunyad-admin'); ?></label>
		<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
	<?php endif; ?>

	<?php if (isset($fields['category'])): ?>
		<p><label for="<?php echo $this->get_field_id('category'); ?>"><?php esc_html_e('Limit to Category:', 'bunyad-admin'); ?></label>
		<?php wp_dropdown_categories(array(
				'show_option_all' => esc_html__('-- Not Limited --', 'bunyad-admin'), 
				'hierarchical' => 1,
				'hide_empty' => 0,
				'order_by' => 'name', 
				'class' => 'widefat', 
				'name' => $this->get_field_name('category'), 
				'selected' => $category
		)); ?>
		</p>
	<?php endif; ?>
	
		<p>
			<label for="<?php echo esc_attr($this->get_field_id('limit_tag')); ?>"><?php echo esc_html_x('Limit to Tag (Optional):', 'bunyad-widgets'); ?></label>
			
			<input id="<?php echo esc_attr($this->get_field_id('limit_tag')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('limit_tag')); ?>" type="text" class="widefat" value="<?php echo esc_attr($limit_tag); ?>" />
		</p>

	<?php if (isset($fields['type'])): ?>
	
		<p><label for="<?php echo $this->get_field_id('type'); ?>"><?php esc_html_e('Type:', 'bunyad-admin'); ?></label>
		
		<select id="<?php echo $this->get_field_id('type'); ?>" name="<?php echo $this->get_field_name('type'); ?>" class="widefat">
			<option value="list" <?php selected($type, 'list'); ?>><?php esc_html_e('List', 'bunyad-admin'); ?></option>
			<option value="blocks" <?php selected($type, 'blocks'); ?>><?php esc_html_e('Image Blocks', 'bunyad-admin'); ?></option>
			<option value="numbered" <?php selected($type, 'numbered'); ?>><?php esc_html_e('Numbered List (No Thumbnails)', 'bunyad-admin'); ?></option>
		</select>
		
		</p>
		
	<?php endif; ?>
	

	<?php if (isset($fields['number'])): ?>
		<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php esc_html_e('Number of posts to show:', 'bunyad-admin'); ?></label>
		<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
	<?php endif; ?>
	
<?php
	}
}PK03YJ�>�
�
/smartmag-core/widgets/widget-latest-reviews.php<?php

class SmartMag_Widgets_LatestReviews extends WP_Widget
{
	public function __construct()
	{
		parent::__construct(
			'bunyad-latest-reviews-widget',
			'SmartMag - Reviews (Basic)',
			array('description' => 'Latest Reviews with thumbnails.', 'classname' => 'latest-reviews')
		);
	}
	
	// code below is modified from default
	public function widget($args, $instance) 
	{
		if (!class_exists('\Bunyad') || !\Bunyad::get('blocks')) {
			return;
		}

		if (empty($instance['number']) || !$number = absint($instance['number'])) {
			$number = 5;
		}

		$title = apply_filters(
			'widget_title', 
			$instance['title'],
			$instance, 
			$this->id_base
		);

		$new_args = [
			'query_type'     => 'custom',
			'pagination'     => false,
			'posts'          => $number,
			'reviews_only'   => true,
			'columns'        => 1,
			'heading'        => $title,
			'sort_by'        => $instance['order'],
			'space_below'    => 'none'
		];

		$block = new \Bunyad\Widgets\Loops\PostsSmall_Block;
		$block->widget($args, $new_args);
	}

	public function update($new_instance, $old_instance) 
	{
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);
		$instance['number'] = (int) $new_instance['number'];
		$instance['order'] = strip_tags($new_instance['order']);
		
		return $instance;
	}

	public function form($instance) 
	{
		$values = array_merge(array('title' => '', 'number' => 5, 'order' => ''), (array) $instance);
		extract($values);
?>

		<p><strong>NOTE:</strong> This is a basic widget. We recommend using the <strong>SmartMag - Latest Posts</strong> widget (tick option "Review Posts Only" under Posts Source).</p>

		<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bunyad-admin'); ?></label>
		<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>

		<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php esc_html_e('Number of posts to show:', 'bunyad-admin'); ?></label>
		<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
		
		<p>
			<label for="<?php echo $this->get_field_id('order'); ?>"><?php esc_html_e('Order By:', 'bunyad-admin'); ?></label>
			<select name="<?php echo $this->get_field_name('order'); ?>" id="<?php echo $this->get_field_id('order'); ?>">
				<option value="date"<?php selected($order, 'date'); ?>><?php esc_html_e('Date', 'bunyad-admin'); ?></option>
				<option value="rating"<?php selected($order, 'rating'); ?>><?php esc_html_e('Rating', 'bunyad-admin'); ?></option>
			</select>
		</p>
<?php
	}
}PK03YT\3��.smartmag-core/widgets/widget-popular-posts.php<?php

class SmartMag_Widgets_PopularPosts extends WP_Widget
{
	public function __construct()
	{
		parent::__construct(
			'bunyad-popular-posts-widget',
			'SmartMag Legacy: Popular Posts',
			array('description' => 'Displays posts with most comments.', 'classname' => 'popular-posts')
		);
	}

	public function widget($args, $instance) 
	{
		if (!class_exists('\Bunyad') || !\Bunyad::get('blocks')) {
			return;
		}

		if (empty($instance['number']) || !$number = absint($instance['number'])) {
			$number = 5;
		}

		$title = apply_filters(
			'widget_title', 
			$instance['title'],
			$instance, 
			$this->id_base
		);

		$new_args = [
			'query_type'     => 'custom',
			'pagination'     => false,
			'posts'          => $number,
			'columns'        => 1,
			'heading'        => $title,
			'sort_by'        => isset($instance['type']) ? $instance['type'] : 'comments',
			'sort_days'      => isset($instance['days']) ? $instance['days'] : 30,
			'space_below'    => 'none'
		];

		$block = new \Bunyad\Widgets\Loops\PostsSmall_Block;
		$block->widget($args, $new_args);
	}

	public function update($new, $old) 
	{
		$new['title']  = strip_tags($new['title']);
		$new['number'] = intval($new['number']);
		$new['days']   = intval($new['days']);
		$new['type']   = strip_tags($new['type']);

		return $new;
	}

	public function form($instance) 
	{
		
		$instance = wp_parse_args($instance, array('title' => '', 'number' => 5, 'type' => 'comments', 'days' => 30));
		
		extract($instance, EXTR_SKIP);
				
		
?>
		<p><strong>NOTE:</strong> This is a deprecated widget. We recommend using the <strong>SmartMag - Latest Posts</strong> widget instead (Use sorting option under Posts Source).</p>

		<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'bunyad-admin'); ?></label>
		<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>

		<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php esc_html_e('Number of posts to show:', 'bunyad-admin'); ?></label>
		<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
		

		<p>
			<label for="<?php echo $this->get_field_id('type'); ?>"><?php esc_html_e('Sorting Type:', 'bunyad-admin'); ?></label>
			<select id="<?php echo $this->get_field_id('type'); ?>" name="<?php echo $this->get_field_name('type'); ?>" class="widefat bunyad-popular-posts-type">
				<option value="comments" <?php selected($type, 'comments'); ?>><?php esc_html_e('Comments', 'bunyad-admin'); ?></option>
				<option value="jetpack" <?php selected($type, 'jetpack'); ?>><?php 
					_e((!$this->has_jetpack() ? 'Views (Requires Jetpack plugin with Stats module)' : 'Views - via Jetpack Stats'), 'bunyad-widgets'); ?></option>
			</select>
		</p>
		
		<div class="jetpack-extras hidden">
			<p>
				<label for="<?php echo $this->get_field_id('days'); ?>"><?php esc_html_e('From past days:', 'bunyad-admin'); ?></label>
				<input id="<?php echo $this->get_field_id('days'); ?>" name="<?php echo $this->get_field_name('days'); ?>" type="text" value="<?php echo $days; ?>" size="3" />
			</p>
			
			<p><?php esc_html_e('Note that it may take a few hours before views are counted. It will fallback to comments sorting type until then.', 'bunyad-admin'); ?></p>
		</div>
		
		<script>
		
		// show days only if needed
		jQuery(function($) {
			$(document).on('change', '.bunyad-popular-posts-type', function() {

				var ele = $(this).closest('.widget-content').find('.jetpack-extras');

				if ($(this).val() == 'jetpack') {
					ele.show();
				}
				else {
					ele.hide();
				}
			});

			$('.bunyad-popular-posts-type').trigger('change');
		});
		</script>
		
<?php
	}
	
	public function has_jetpack() {
		return (class_exists('Jetpack') && Jetpack::is_module_active('stats'));
	}
	
}PK03YoT3M1!1!.smartmag-core/widgets/widget-social-follow.php<?php
/**
 * Register Social Follow widget.
 */
class SmartMag_Widgets_SocialFollow extends WP_Widget 
{
	/**
	 * Register widget with WordPress.
	 */
	public function __construct() {
		parent::__construct(
			'bunyad-social',
			esc_html__('SmartMag - Social Follow & Counters', 'bunyad-admin'),
			['description' => esc_html__('Show social follower buttons.', 'bunyad-admin'), 'classname' => 'widget-social-b']
		);
	}

	/**
	 * Register the widget if the plugin is active
	 */
	public function register_widget() {
		
		if (!class_exists('\Sphere\Core\SocialFollow\Module')) {
			return;
		}
		
		register_widget(__CLASS__);
	}
	
	/**
	 * Front-end display of widget.
	 *
	 * @see WP_Widget::widget()
	 *
	 * @param array $args     Widget arguments.
	 * @param array $instance Saved values from database.
	 */
	public function widget($args, $instance) 
	{
		$title = apply_filters('widget_title', esc_html($instance['title']));

		echo $args['before_widget'];

		if (!empty($title)) {	
			echo $args['before_title'] . wp_kses_post($title) . $args['after_title']; // before_title/after_title are built-in WordPress sanitized
		}

		$services = $this->services();
		$active   = !empty($instance['social']) ? $instance['social'] : [];
		$style    = !empty($instance['style']) ? $instance['style'] : 'a';
		$columns  = 1;
		$split_style = false;

		// Style set to type a-2 and so on.
		if (preg_match('/([a-z]+)\-(\d+)(\-(\w+)|$)/', $style, $match)) {
			$columns = intval($match[2]);
			$style   = $match[1];
			$split_style = $match[4] ?? false;
		}

		$show_counters = empty($instance['counters']) 
			? Bunyad::options()->sf_counters 
			: bool_from_yn($instance['counters']);


		$classes =  array_filter([
			'spc-social-follow',
			'spc-social-follow-' . $style,
			'spc-social-colors',

			// Background color for style a and b.
			in_array($style, ['a', 'b']) ? 'spc-social-bg' : '',
			in_array($style, ['c']) ? 'spc-social-colored' : '',

			$split_style ? 'spc-social-follow-split' : '',
			$show_counters ? 'has-counts' : ''
		]);

		$grid_classes = [
			'grid-' . $columns,
			'md:grid-4',
			'sm:grid-2',
		];

		?>
		<div class="<?php echo esc_attr(join(' ', $classes)); ?>">
			<ul class="services grid <?php echo esc_attr(join(' ', $grid_classes)); ?>" itemscope itemtype="http://schema.org/Organization">
				<link itemprop="url" href="<?php echo esc_url(home_url('/')); ?>">
				<?php 
				foreach ($active as $key):

					if (!isset($services[$key])) {
						continue;
					}
									
					$service = $services[$key];
					$count   = 0;
					
					if ($show_counters) { 
						$count = Bunyad::get('social-follow')->count($key);
					}

					$s_classes = array_filter([
						'service',
						'service-link s-' . $key,
						($count > 0 ? 'has-count' : '')
					]);
				?>
				
				<li class="service-wrap">

					<a href="<?php echo esc_url($service['url']); ?>" class="<?php echo esc_attr(join(' ', $s_classes)); ?>" target="_blank" itemprop="sameAs" rel="nofollow noopener">
						<i class="the-icon tsi tsi-<?php echo esc_attr($service['icon']); ?>"></i>
						<span class="label"><?php echo esc_html($service['text']); ?></span>

						<?php if ($count > 0): ?>
							<span class="count"><?php echo esc_html($this->readable_number($count)); ?></span>
						<?php endif; ?>	
					</a>

				</li>
				
				<?php 
				endforeach; 
				?>
			</ul>
		</div>
		
		<?php

		echo $args['after_widget'];
	}
	
	/**
	 * Supported services
	 */
	public function services()
	{
		return Bunyad::get('smartmag_social')->follow_services();
	}

	/**
	 * Make count more human in format 1.4K, 1.5M etc.
	 * 
	 * @param integer $number
	 */
	public function readable_number($number)
	{
		if ($number < 1051) {
			return $number;
		}

		if ($number < 10^6) {
			return round($number / 1000, 1) . 'K';
		}
		
		return round($number / 10^6, 1) . 'M';
	}
		

	/**
	 * Back-end widget form.
	 *
	 * @see WP_Widget::form()
	 *
	 * @param array $instance Previously saved values from database.
	 */
	public function form($instance)
	{
		$defaults = [
			'title'    => '', 
			'style'    => 'b-2',
			'social'   => [],
			'counters' => ''
		];

		$instance = array_replace($defaults, (array) $instance);
		
		extract($instance);
		
		// Merge current values for sorting reasons
		$services = array_replace(array_flip($social), $this->services());
		
		?>
		
		<div class="bunyad-widget-option">
			<label class="label" for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php echo esc_html__('Title:', 'bunyad-admin'); ?></label>
			<input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php 
				echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
		</div>

		<div class="bunyad-widget-option">
			<label class="label" for="<?php echo esc_attr($this->get_field_id('style')); ?>"><?php echo esc_html__('Style:', 'bunyad-admin'); ?></label>
			<select id="<?php echo esc_attr($this->get_field_id('style')); ?>" name="<?php echo esc_attr($this->get_field_name('style')); ?>" class="widefat">
				<option value="b-2" <?php selected($style, 'b'); ?>><?php echo esc_html__('Modern BG - 2 Columns', 'bunyad-admin') ?></option>
				<option value="b" <?php selected($style, 'b'); ?>><?php echo esc_html__('Modern BG - 1 Column', 'bunyad-admin') ?></option>
				<option value="a" <?php selected($style, 'a'); ?>><?php echo esc_html__('Classic BG - 1 Column', 'bunyad-admin') ?></option>
				<option value="a-2" <?php selected($style, 'a-2'); ?>><?php echo esc_html__('Classic BG - 2 Columns', 'bunyad-admin') ?></option>
				<option value="c" <?php selected($style, 'c'); ?>><?php echo esc_html__('Light - 1 Columns', 'bunyad-admin') ?></option>
				<option value="c-2" <?php selected($style, 'c-2'); ?>><?php echo esc_html__('Light - 2 Columns', 'bunyad-admin') ?></option>
				<option value="b-2-split" <?php selected($style, 'b-2-split'); ?>><?php echo esc_html__('Modern BG - 2 Col Multiline', 'bunyad-admin') ?></option>
				<option value="c-2-split" <?php selected($style, 'c-2-split'); ?>><?php echo esc_html__('Light - 2 Col Multiline', 'bunyad-admin') ?></option>
			</select>
		</div>

		<div class="bunyad-widget-option">
			<label class="label" for="<?php echo esc_attr($this->get_field_id('counters')); ?>"><?php echo esc_html__('Show Counters:', 'bunyad-admin'); ?></label>
			<select id="<?php echo esc_attr($this->get_field_id('counters')); ?>" name="<?php echo esc_attr($this->get_field_name('counters')); ?>" class="widefat">
				<option value="" <?php selected($counters, ''); ?>><?php echo esc_html__('Global Inherit (From Customize > Social Follow)', 'bunyad-admin') ?></option>
				<option value="y" <?php selected($counters, 'y'); ?>><?php echo esc_html__('Yes', 'bunyad-admin') ?></option>
				<option value="n" <?php selected($counters, 'n'); ?>><?php echo esc_html__('No', 'bunyad-admin') ?></option>
			</select>
		</div>
		
		<div class="bunyad-widget-option">
			<label class="label" for="<?php echo esc_attr($this->get_field_id('social')); ?>"><?php echo esc_html__('Social Icons:', 'bunyad-admin'); ?></label>
			<p class="small-desc"><?php esc_html_e('Drag and drop to re-order.', 'bunyad-admin'); ?></p>
			
			<div class="bunyad-social-services">
			<?php 
				foreach ($services as $key => $service): 
					if (!is_array($service)) {
						continue;
					}
			?>
				<p>
					<label>
						<input class="widefat" type="checkbox" name="<?php echo esc_attr($this->get_field_name('social')); ?>[]" value="<?php echo esc_attr($key); ?>"<?php 
						echo (in_array($key, $social) ? ' checked' : ''); ?> /> 
					<?php echo esc_html($service['label']); ?></label>
				</p>
			
			<?php endforeach; ?>
			
			</div>
			
			<p class="bunyad-note"><strong><?php echo esc_html__('Note:', 'bunyad-admin'); ?></strong>
			<?php echo esc_html__('Configure URLs from Customize > General Settings > Social Media Links.', 'bunyad-admin'); ?></p>
			
		</div>
		
		<script>
		jQuery(function($) { 
			$('.bunyad-social-services').sortable();
		});
		</script>
	
	
		<?php
	}

	/**
	 * Save widget.
	 * 
	 * Strip out all HTML using wp_kses
	 * 
	 * @see wp_kses_post()
	 */
	public function update($new, $old)
	{
		foreach ($new as $key => $val) {

			// Social just needs intval
			if ($key === 'social') {
				
				array_walk($val, 'intval');
				$new[$key] = $val;

				continue;
			}
			
			// Filter disallowed html.
			$new[$key] = wp_kses_post_deep($val);
		}
		
		return $new;
	}
}
PK03Y?ڌ��.smartmag-core/widgets/widget-tabbed-recent.php<?php

class SmartMag_Widgets_TabbedRecent extends WP_Widget
{
	public function __construct()
	{
		parent::__construct(
			'bunyad-tabbed-recent-widget',
			'SmartMag - Recent Tabs',
			array('description' => esc_html__('Tabs: Recent, category1, category2...', 'bunyad-admin'), 'classname' => 'widget-tabbed')
		);
	
		// Enqueue assets.
		add_action('admin_enqueue_scripts', array($this, 'add_assets'));
		
	}
	
	public function add_assets($hook) 
	{
		// only in admin cp for form
		if ($hook == 'widgets.php') {
			wp_enqueue_script('smartmag-widget-tabs', SmartMag_Core::instance()->path_url . 'js/widget-tabs.js', ['jquery']);
		}
	}

	public function widget($args, $instance) 
	{
		global $post; // setup_postdata not enough
		
		// Set defaults
		$titles = $cats = $tax_tags = array();
		
		extract($args);
		extract($instance);
				
		// Missing data.
		if (!count($titles) || !count($cats)) {
			esc_html_e('Recent tabs widget still need to be configured! Add tabs, add a title, and select type for each tab in widgets area.', 'bunyad-widgets');
			return; 
		}
		
		$tabs = array();
		foreach ($titles as $key => $title) {
			
			// defaults missing?
			if (empty($tax_tags[$key])) {
				$tax_tags[$key] = '';
			}
			
			if (empty($cats[$key])) {
				$cats[$key] = '';
			}
			
			if (empty($posts[$key])) {
				$posts[$key] = 4;
			}
			
			$tabs[$title] = [
				'cat_type' => $cats[$key], 
				'tag'      => $tax_tags[$key], 
				'posts'    => $posts[$key]
			];
		}
				
		// Latest posts.
		$posts = $this->get_posts($tabs);
		
		// Do custom loop if available
		if (has_action('bunyad_widget_tabbed_recent_loop')):
		
			$args['tabs'] = $tabs;
			do_action('bunyad_widget_tabbed_recent_loop', $args, $posts);
			
		else:
		
		?>
	
			<?php echo $before_widget; ?>

			<div class="block-head block-head-g">	
				<ul class="tabs-list">
				
					<?php
					$count = 0; 
					foreach ($posts as $key => $val): $count++; $active = ($count == 1 ? 'active' : ''); 
					?>
					
					<li class="heading <?php echo $active;?>">
						<a href="#" data-tab="<?php echo esc_attr($count); ?>"><?php echo $key; ?></a>
					</li>
					
					<?php endforeach; ?>
				</ul>
			</div>
			
			<div class="tabs-data">
			<?php
				$i = 0; 
				foreach ($posts as $tab => $tab_posts): 
					$i++; 
					$active = ($i == 1 ? 'active' : ''); 
			?>
					
				<div class="tab-posts <?php echo $active; ?>" id="recent-tab-<?php echo esc_attr($i); ?>">

					<?php

					$new_args = [
						'query_type'     => 'custom',
						'query'          => $tab_posts,
						'posts'          => $tabs[$tab]['posts'],
						'pagination'     => false,
						'columns'        => 1,
						'heading_type'   => 'none',
						'space_below'    => 'none'
					];

					$block = new \Bunyad\Widgets\Loops\PostsSmall_Block;
					$block->widget($args, $new_args);

					?>
					
				</div>

			<?php endforeach; ?>
			</div>
			
			<?php echo $after_widget; ?>
		
		<?php
		
		endif;
		
		wp_reset_postdata();
		wp_reset_query();
	}
	
	public function get_posts($tabs)
	{
		// Get posts
		$args = ['ignore_sticky_posts' => 1];
		foreach ($tabs as $key => $val) {	
			
			$opts = array();
			$opts['posts_per_page'] = $val['posts'];
			
			switch ($val['cat_type']) {
				case 'popular':
					$opts['orderby'] = 'comment_count';
					break;
					
				case 'comments':
					$posts[$key] = get_comments([
						'number' => $val['posts'], 
						'status' => 'approve'
					]);
					continue 2; // jump switch and foreach loop
					
				case 'top-reviews':
					// Get top rated of all time.
					$opts = array_replace($opts, [
						'orderby'  => 'meta_value', 
						'meta_key' => '_bunyad_review_overall'
					]);

					break;
					
				case 'recent':
					break;
					
				case 'tag':
					$opts['tag'] = $val['tag'];
					break;
					
				default:
					$opts['cat'] = intval($val['cat_type']);
					break;
			}
						
			// Setup the query
			$posts[$key] = new WP_Query(
				apply_filters('bunyad_widget_tabbed_recent_query_args', array_replace($args, $opts))
			);
		}
		
		return $posts;
	}
	
	public function update($new, $old)
	{
		foreach (['cats', 'titles', 'tax_tags', 'posts'] as $var) {	
			foreach ($new[$var] as $key => $val) {
				$new[$var][$key] = trim(strip_tags($val));				
			}			
		}

		return $new;
	}
	
	public function form($instance)
	{
		$instance = array_merge(
			array(
				'titles' => [], 
				'cats'   => [0], 
				'posts'  => [],
				'cat'    => 0, 
				'tax_tags' => []
			), 
			$instance
		);
		
		extract($instance);
		
	?>
		
		<style>
			.widget-content p.separator { padding-top: 10px; border-top: 1px solid #d8d8d8; }
			.widget-content .tax_tag { display: none; }
		</style>
		
		
		<div id="tab-options">
			

		<script type="text/html" class="template-tab-options">
		<p class="title separator">
			<label><?php printf(esc_html__('Tab #%s Title:', 'bunyad-widgets'), '<span>%n%</span>'); ?></label>
			<input class="widefat" name="<?php 
				echo esc_attr($this->get_field_name('titles')); ?>[%n%]" type="text" value="%title%" />
		</p>
		
		
		<div class="cat">
			<label><?php printf(esc_html__('Tab #%s Category:', 'bunyad-widgets'), '<span>%n%</span>'); ?></label>
			<?php
			
			$r = array('orderby' => 'name', 'hierarchical' => 1, 'selected' => $cat, 'show_count' => 0);
			
			// categories list
			$cats_list = walk_category_dropdown_tree(get_terms('category', $r), 0, $r);
			
			// custom options
			$options = apply_filters('bunyad_widget_tabbed_recent_options', array(
				'recent' => esc_html__('Recent Posts', 'bunyad-widgets'), 
				'popular' => esc_html__('Popular Posts', 'bunyad-widgets'), 
				'top-reviews' => esc_html__('Top Reviews', 'bunyad-widgets'),
				// 'comments' => esc_html__('Recent Comments', 'bunyad-widgets'),
				'tag' => esc_html__('Use a Tag', 'bunyad-widgets'),
			));
			
			?>

			<select name="<?php echo $this->get_field_name('cats') .'[%n%]'; ?>">

			<?php foreach ($options as $key => $val): ?>
	
				<option value="<?php echo esc_attr($key); ?>"<?php echo ($cat == $key ? ' selected' : ''); ?>><?php echo esc_html($val); ?></option>			
	
			<?php endforeach; ?>

				<optgroup label="<?php esc_html_e('Category', 'bunyad-admin'); ?>">
					<?php echo $cats_list; ?>
				</optgroup>

			</select>

			<div class="tax_tag">
				<p><label><?php printf(esc_html__('Tab #%s Tag:', 'bunyad-widgets'), '<span>%n%</span>'); ?></label> <input type="text" name="<?php 
					echo esc_attr($this->get_field_name('tax_tags')); ?>[%n%]" value="%tax_tag%" /></p>
			</div>

			<p><?php esc_html_e('Posts:', 'bunyad'); ?> <input name="<?php echo $this->get_field_name('posts'); ?>[%n%]" type="text" value="%posts%" size="3" /></p>

			<p><a href="#" class="remove-recent-tab">[x] <?php esc_html_e('remove', 'bunyad-admin'); ?></a></p>
		</div>
		</script>
				
			
			<p class="separator"><a href="#" id="add-more-tabs"><?php esc_html_e('Add More Tabs', 'bunyad-admin'); ?></a></p>
			
			<?php

			if (is_integer($this->number)): // create for valid instances only 
			
				foreach ($cats as $n => $cat):
				
					if (!isset($tax_tags[$n])) {
						$tax_tags[$n] = '';
					}
					
					// set posts to default number
					if (!isset($posts[$n])) {
						$posts[$n] = 4;
					}
			?>
			
				<script>
					jQuery(function($) {
	
						$('.widget-liquid-right [id$="bunyad-tabbed-recent-widget-'+ <?php echo $this->number; ?> +'"] #add-more-tabs').trigger(
								'click', 
								[{
									'n': <?php echo ($n+1); ?>, 
									'title': '<?php echo esc_attr($titles[$n]); ?>', 
									'selected': '<?php echo esc_attr($cat); ?>',
									'tax_tag': '<?php echo esc_attr($tax_tags[$n]); ?>',
									'posts' : '<?php echo esc_attr($posts[$n]); ?>',
								}]);
					});
				</script>
			
			<?php
				endforeach; 
			endif; 
			?>
			
		</div>	
		
	<?php
	}
	
}PK03Y���'smartmag-core/widgets/widget-tabber.php<?php
/**
 * Advanced tabber widget.
 */
class SmartMag_Widgets_Tabber extends WP_Widget
{

	public $count = 1;
	
	public function __construct()
	{
		parent::__construct(
			'bunyad-tabber-widget',
			'SmartMag Legacy: Tabber Advanced',
			array('description' => esc_html__('Advanced tabber that supports all widgets.', 'bunyad-admin'), 'classname' => 'tabbed')
		);
	}

	public function widget($args, $instance) 
	{
		add_filter('dynamic_sidebar_params', array($this, 'widget_sidebar_params'));
		extract($args, EXTR_SKIP);

		echo $before_widget;
		
		if ($args['id'] != $instance['sidebar']) {
			ob_start();
			
			dynamic_sidebar($instance['sidebar']);
			$tabs = ob_get_clean();

			
			echo '<ul class="tabs-list">';

			// Get the titles.
			preg_match_all('#<div class="bunyad-tab-title">(.+?)</div>#', $tabs, $titles);
			
			$count = 1;
			foreach ((array) $titles[1] as $key => $title) {
				$tabs = str_replace($titles[0][$key], '', $tabs);
				
				echo '<li class="'. ($count == 1 ? 'active' : '') .'"><a href="#" data-tab="'. $count++ .'">'. esc_html($title) .'</a></li>';
			}
			
			echo '</ul>';
			echo '<div class="tabs-data">' . $tabs . '</div>';
			
		}
		
        echo $after_widget;
        
        // Remove temporary filter
        remove_filter('dynamic_sidebar_params', array($this, 'widget_sidebar_params'));
		
	}

	public function update($new, $old) 
	{
		$new['sidebar'] = strip_tags($new['sidebar']);		
		return $new;
	}

	public function form($instance) 
	{
		global $wp_registered_sidebars;
		
		$instance = wp_parse_args((array) $instance, array('sidebar' => ''));
?>

		<?php if (!is_plugin_active('custom-sidebars/customsidebars.php')): ?>
			<p>
				<strong>WARNING:</strong> Plugin "Custom Sidebars" is not installed. 
				The plugin is recommended to create a custom sidebar for this widget.
			</p>
		<?php endif; ?>
		
		<p>To use this widget, first <strong>create a new sidebar</strong>. Then add widgets to the new sidebar. Finally select the newly created sidebar below.</p>

		<p><label><?php esc_html_e('Select the sidebar:', 'bunyad-widgets'); ?></label>

			<select class="widefat" name="<?php echo $this->get_field_name('sidebar'); ?>">
			<?php
			foreach ($wp_registered_sidebars as $id => $sidebar) {
				if ($id !== 'wp_inactive_widgets' && !strstr($sidebar['class'], 'inactive')) {
					$selected = $instance['sidebar'] == $id ? ' selected="selected"' : '';
					echo sprintf('<option value="%s"%s>%s</option>', $id, $selected, $sidebar['name']);
				}
			}

			?>
			</select>
		</p>		
	<?php

	}
	
	public function widget_sidebar_params($params) 
	{
		
		// We're not using <ul as parent so li should be converted.
		$current_before = str_replace('<li', '<div', $params[0]['before_widget']);
		
		// Column classes should be removed.
		$current_before = preg_replace('/col-[0-9]+/', '', $current_before);

		// Close tags properly.
		$current_after  = str_replace('</li>', '</div>', $params[0]['after_widget']);

		$params[0]['before_widget'] = '<div class="tab-posts tab-widget-wrap" id="recent-tab-'. $this->count++ .'">' . $current_before;
		$params[0]['after_widget'] = $current_after . '</div>';
		$params[0]['before_title'] = '<div class="bunyad-tab-title">';
		$params[0]['after_title'] = '</div>';

		return $params;
	}
}

/*
add_action('init', 'bunyad_widget_tabber_init');

if (!function_exists('bunyad_widget_tabber_init')) {
	function bunyad_widget_tabber_init() {
		register_sidebar(array('name' => 'Bunyad Tabber Area 1', 'description' => esc_html__('Used for advanced tabber widget.', 'bunyad-admin')));
	} 
}*/
PK03Y[���8�8��smartmag-core/smartmag-core.phpPK03Y@ً3���8smartmag-core/blocks/ajax.phpPK03Y�F@�� ��'@smartmag-core/blocks/helpers.phpPK03Y�%���#��GZsmartmag-core/blocks/base/block.phpPK03Y�kL;;,��opsmartmag-core/blocks/base/carousel-trait.phpPK03Y�
-Ȇj�j(���xsmartmag-core/blocks/base/loop-block.phpPK03Y6|֫���*����smartmag-core/blocks/base/loop-options.phpPK03Y�	�8��*����smartmag-core/blocks/base/options-data.phpPK03Y�N¿�%����smartmag-core/blocks/base/options.phpPK03Y˻��99#���smartmag-core/blocks/base/query.phpPK03Y��h80��;1smartmag-core/blocks/breadcrumbs/breadcrumbs.phpPK03YD�,�P
P
,���Hsmartmag-core/blocks/breadcrumbs/options.phpPK03Y��Y�qq$��6Vsmartmag-core/blocks/codes/codes.phpPK03Y��&���Ysmartmag-core/blocks/codes/options.phpPK03Y6�9��(�(&��<asmartmag-core/blocks/header/header.phpPK03Y�]�ʆ�(��u�smartmag-core/blocks/heading/heading.phpPK03Y(�f��&�&(��A�smartmag-core/blocks/heading/options.phpPK03Y����9�9-��\�smartmag-core/blocks/loop-posts/base-post.phpPK03Y	^H��2��/smartmag-core/blocks/loop-posts/feat-grid-post.phpPK03Y/,��__-��osmartmag-core/blocks/loop-posts/grid-post.phpPK03YTԋ�-��smartmag-core/blocks/loop-posts/list-post.phpPK03Y\�]9��0��d	smartmag-core/blocks/loop-posts/overlay-post.phpPK03Y�4L���.��y
smartmag-core/blocks/loop-posts/small-post.phpPK03Y���9�92���smartmag-core/blocks/loops/feat-grid/feat-grid.phpPK03YPҏԸ+�+0���Jsmartmag-core/blocks/loops/feat-grid/options.phpPK03Y�Kc���4���vsmartmag-core/blocks/loops/focus-grid/focus-grid.phpPK03Y�}����1���{smartmag-core/blocks/loops/focus-grid/options.phpPK03YE��cc(����smartmag-core/blocks/loops/grid/grid.phpPK03Y(<�n��+��H�smartmag-core/blocks/loops/grid/options.phpPK03YR�`4�� �smartmag-core/blocks/loops/highlights/highlights.phpPK03Y��331����smartmag-core/blocks/loops/highlights/options.phpPK03Y�W���*���smartmag-core/blocks/loops/large/large.phpPK03Y�-8(��,���smartmag-core/blocks/loops/large/options.phpPK03YXm����4����smartmag-core/blocks/loops/news-focus/news-focus.phpPK03Y��պ�1���smartmag-core/blocks/loops/news-focus/options.phpPK03Y?ޝ	�	.����smartmag-core/blocks/loops/overlay/options.phpPK03Y�~�(	(	.����smartmag-core/blocks/loops/overlay/overlay.phpPK03Y���Y}}1��S�smartmag-core/blocks/loops/posts-list/options.phpPK03Y&�.��4���smartmag-core/blocks/loops/posts-list/posts-list.phpPK03Y;Z�L772���smartmag-core/blocks/loops/posts-small/options.phpPK03Y�>Ay��6���smartmag-core/blocks/loops/posts-small/posts-small.phpPK03Y@F^��0���smartmag-core/blocks/loops/timeline/timeline.phpPK03Y_��vv.���smartmag-core/blocks/newsletter/newsletter.phpPK03Y�8�&+&++���#smartmag-core/blocks/newsletter/options.phpPK03Y����U�U,��$Osmartmag-core/blocks/post-meta/post-meta.phpPK03Y����-��f�smartmag-core/blocks/social-icons/options.phpPK03Y,"!���2��\�smartmag-core/blocks/social-icons/social-icons.phpPK03Y�N0jkk"��W�smartmag-core/css/admin/common.cssPK03Y��006���smartmag-core/css/admin/images/classic-large-block.pngPK03Y�wtt8����smartmag-core/css/admin/images/featured-slider-block.pngPK03Yc�=ANN/��P�smartmag-core/css/admin/images/grid-3-block.pngPK03YŒ��LL-���smartmag-core/css/admin/images/grid-block.pngPK03Yu2(~~3���smartmag-core/css/admin/images/highlights-block.pngPK03Y�D$yJJ3��Qsmartmag-core/css/admin/images/large-grid-block.pngPK03Y�?��cc3���smartmag-core/css/admin/images/large-list-block.pngPK03YH6U�kk-���smartmag-core/css/admin/images/list-block.pngPK03Y��QUU9��Vsmartmag-core/css/admin/images/mixed-large-grid-block.pngPK03Y����YY9��smartmag-core/css/admin/images/mixed-large-list-block.pngPK03Y]�bb;���#smartmag-core/css/admin/images/mixed-overlay-grid-block.pngPK03Y�F�__;��m)smartmag-core/css/admin/images/mixed-overlay-list-block.pngPK03Y���}��2��%/smartmag-core/css/admin/images/news-grid-block.pngPK03Y��OjEE5���4smartmag-core/css/admin/images/overlay-grid-block.pngPK03Y�n�hh5���:smartmag-core/css/admin/images/overlay-list-block.pngPK03Yee9��6��J@smartmag-core/css/admin/images/post-listings-block.pngPK03Y�������JLsmartmag-core/inc/bunyad.phpPK03Y��٤���GPsmartmag-core/inc/editor.phpPK03Y8K�@@��%`smartmag-core/inc/optimize.phpPK03Y��

 ��c�smartmag-core/inc/shortcodes.phpPK03Y=a��$�$"����smartmag-core/inc/social-share.phpPK03Y��IN�`�`4����smartmag-core/inc/convert-v5/bunyad-to-elementor.phpPK03Y�G5�vv+��"1smartmag-core/inc/convert-v5/convert-v5.phpPK03Yg�2!��-���Esmartmag-core/inc/convert-v5/js/convert-v5.jsPK03YOv 	 	1���Ksmartmag-core/inc/convert-v5/views/admin-page.phpPK03Yc�T��+��$Usmartmag-core/inc/elementor/base-widget.phpPK03Yl7p0��usmartmag-core/inc/elementor/classmap-widgets.phpPK03Y��?0��mysmartmag-core/inc/elementor/extend-container.phpPK03Yw���%�%.��ьsmartmag-core/inc/elementor/extend-section.phpPK03Y
l�2�%�%.��ݲsmartmag-core/inc/elementor/extend-widgets.phpPK03Y�!��	�	+��
�smartmag-core/inc/elementor/loop-widget.phpPK03Y��P�&�&&��%�smartmag-core/inc/elementor/module.phpPK03Y;*���-��

smartmag-core/inc/elementor/page-settings.phpPK03Yˀm=��/��smartmag-core/inc/elementor/section-options.phpPK03Yd�w��2���"smartmag-core/inc/elementor/controls/selectize.phpPK03Y�s3��6���+smartmag-core/inc/elementor/controls/groups/border.phpPK03Y�]��\8\84���1smartmag-core/inc/elementor/css/elementor-editor.cssPK03Y��=�	�	+���jsmartmag-core/inc/elementor/css/preview.cssPK03YSjqFF2��itsmartmag-core/inc/elementor/js/elementor-editor.jsPK03Y
X�F:.:.2����smartmag-core/inc/elementor/widgets/links-list.phpPK03Y$KO��$����smartmag-core/inc/reviews/module.phpPK03Y_�c���$����smartmag-core/inc/reviews/review.phpPK03Yl䰂�'�'*����smartmag-core/inc/reviews/metabox/form.phpPK03Yw�u��-���smartmag-core/inc/reviews/metabox/options.phpPK03Y�Q�w����"���5smartmag-core/inc/studio/data.jsonPK03Ya'(���#��d�smartmag-core/inc/studio/module.phpPK03Y��o�{�{�'��U�smartmag-core/inc/studio/templates.jsonPK03Y�Ĕ22*���smartmag-core/inc/studio/css/elementor.cssPK03Y@�ut t (����smartmag-core/inc/studio/js/elementor.jsPK03Y�c8���,��Ismartmag-core/inc/studio/sass/elementor.scssPK03Y�w���,��b,smartmag-core/inc/studio/views/el-blocks.phpPK03Y����tt4��2.smartmag-core/inc/studio/views/el-header-preview.phpPK03Y�U��,���4smartmag-core/inc/studio/views/el-header.phpPK03Yֵ-���+��=9smartmag-core/inc/studio/views/el-items.phpPK03Y�\S���+��O=smartmag-core/inc/studio/views/el-pages.phpPK03YR�9��-��?smartmag-core/inc/studio/views/el-preview.phpPK03Y��r0r0*��L@smartmag-core/inc/widgets/block-widget.phpPK03Y#��!��.��qsmartmag-core/inc/widgets/classmap-widgets.phpPK03Y7)�--��xsmartmag-core/js/widget-tabs.jsPK03Y7{&�����psmartmag-core/js/widgets.jsPK03Y"
�c??%����smartmag-core/js/elementor/preview.jsPK03Y�}�L��(�smartmag-core/lib/bunyad.phpPK03Y�L\)\)��j�smartmag-core/lib/core.phpPK03YF��s������smartmag-core/lib/init.phpPK03Y��DC������smartmag-core/lib/loader.phpPK03Y���55����smartmag-core/lib/markup.phpPK03Yb�Ĵ�&��d�smartmag-core/lib/menu-walker-edit.phpPK03Y�gX�!��\smartmag-core/lib/menu-walker.phpPK03Y2��	�	���smartmag-core/lib/menus.phpPK03Y�)�k� � ��nsmartmag-core/lib/options.phpPK03Y�D�=HLHL���:smartmag-core/lib/posts.phpPK03Y���#���smartmag-core/lib/registry.phpPK03Y�CH�GG��s�smartmag-core/lib/util.phpPK03Yǃ.�����smartmag-core/lib/widgets.phpPK03Y:_e�
�
%���smartmag-core/lib/admin/meta-base.phpPK03Y[���kk&��ݺsmartmag-core/lib/admin/meta-boxes.phpPK03Y�11)����smartmag-core/lib/admin/meta-renderer.phpPK03Yҁ+4��&���smartmag-core/lib/admin/meta-terms.phpPK03Y�ѭ��5�5+���smartmag-core/lib/admin/option-renderer.phpPK03Y��g+g+#�� smartmag-core/lib/admin/options.phpPK03Yٛ�%��%���C smartmag-core/lib/js/admin/notices.jsPK03Y;��`xx%���E smartmag-core/lib/js/admin/options.jsPK03Yo}1(���L smartmag-core/metaboxes/page-options.phpPK03Y�V�M]
]
(��S smartmag-core/metaboxes/post-options.phpPK03Y|�m�zz(���] smartmag-core/metaboxes/options/page.phpPK03YIҩ�vv(��qp smartmag-core/metaboxes/options/post.phpPK03Y�����	�	/��-� smartmag-core/metaboxes/terms/category-form.phpPK03Y��M�**2��a� smartmag-core/metaboxes/terms/category-options.phpPK03Y[�1l�
�
3��ۥ smartmag-core/social-share/views/social-share-b.phpPK03Y+FT���7��� smartmag-core/social-share/views/social-share-float.phpPK03Y �k&..1��8� smartmag-core/social-share/views/social-share.phpPK03Y���v%v%&���� smartmag-core/widgets/widget-about.phpPK03Y�uc~
~
$��o� smartmag-core/widgets/widget-ads.phpPK03Ya�	  *��/� smartmag-core/widgets/widget-bbp-login.phpPK03YO�ዎ�'���!smartmag-core/widgets/widget-blocks.phpPK03Yv�����'��j-!smartmag-core/widgets/widget-flickr.phpPK03Yb�Δ++-���?!smartmag-core/widgets/widget-latest-posts.phpPK03YJ�>�
�
/��P!smartmag-core/widgets/widget-latest-reviews.phpPK03YT\3��.��<[!smartmag-core/widgets/widget-popular-posts.phpPK03YoT3M1!1!.��k!smartmag-core/widgets/widget-social-follow.phpPK03Y?ڌ��.����!smartmag-core/widgets/widget-tabbed-recent.phpPK03Y���'��m�!smartmag-core/widgets/widget-tabber.phpPK���3��!Downloaded From GPLAstra.com

Youez - 2016 - github.com/yon3zu
LinuXploit